logo kso logo uni graz

20210728 - Filament data for 06 UTC
Available data for 20210728: »06 UTC   »07 UTC   »08 UTC   »09 UTC   »10 UTC   »11 UTC   »12 UTC   »13 UTC  
Click on image to open sensitive map!
 
  Color  xc   yc  (LatLon LCarr)  Area Length Branches (  x0/y0     x1/y1  )  Tilt Location
      1  934 1460 (N34E02 L= 49)   336     95        1 ( 905/1423- 974/1487)  21.8 E04-W01 N31-N35
      2  619 1348 (N29E26 L= 25)   302     87        0 ( 596/1306- 641/1387) -51.3 E27-E23 N26-N31
      3  820  628 (S18E17 L= 34)   317     77        2 ( 789/ 593- 850/ 658)  38.7 E19-E14 S19-S15
      4 1697  623 (S29W48 L= 98)   367     49        0 (1675/ 602-1725/ 643)  11.3 W45-W50 S30-S27
      5  528  574 (S19E39 L= 11)   418     47        0 ( 507/ 546- 546/ 604)  36.9 E41-E37 S21-S17
      6  791  522 (S25E21 L= 30)   254     33        1 ( 773/ 493- 805/ 545)  76.0 E22-E19 S26-S22
  
Download Binary data for this image

» All Filament Data of 20210728 ...
IDL code for reading binary data:
    OPENR, u, binfile, /COMP, /GET_LUN
    head = FLTARR(6) ;[xsize,ysize,radius,hh,mm,ss]
    READU, u, head
    data = INTARR(FIX(head[0]),FIX(head[1]))
    READU, u, data
    FREE_LUN, u
    
  • each filament has the value of Fil_ID
  • all values are in pixel
to get the area of a filament:
  c = WHERE(data EQ Fil_ID, area)
  f = '(2(A,I6))'
  PRINT, FORM=f, "Area of Fil_ID", Fil_ID," =", area 
be careful: y-origin is upper left! you can transpose the data:
  data = ROTATE(data,7)
  Solar_y = 2048-Solar_y