logo kso logo uni graz

20220111 - Filament data for 11 UTC
Available data for 20220111: »07 UTC   »08 UTC   »09 UTC   »10 UTC   »11 UTC   »12 UTC   »13 UTC   »14 UTC  
Click on image to open sensitive map!
 
  Color  xc   yc  (LatLon LCarr)  Area Length Branches (  x0/y0     x1/y1  )  Tilt Location
      1  855 1801 (N49E20 L=344)   437     44        0 ( 829/1769- 882/1826)  71.6 E21-E18 N45-N51
      2  304  763 (S21E52 L=313)   484     68        2 ( 284/ 723- 324/ 802) -90.0 E53-E49 S23-S18
      3 1480  580 (S29W35 L= 40)   699    162        2 (1411/ 540-1536/ 626)  32.0 W30-W39 S31-S25
      4 1343  529 (S33W26 L= 30)   267     20        0 (1319/ 508-1363/ 546) -14.0 W23-W27 S34-S32
      5  298  514 (S37E65 L=300)   676     51        0 ( 274/ 490- 328/ 541)  14.0 E71-E59 S38-S35
  
Download Binary data for this image

» All Filament Data of 20220111 ...
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