logo kso logo uni graz

20211226 - Latest Filament data
Available data for 20211226: »08 UTC  
Click on image to open sensitive map!
 
  Color  xc   yc  (LatLon LCarr)  Area Length Branches (  x0/y0     x1/y1  )  Tilt Location
      1  303  629 (S22E57 L=160)   374     52        0 ( 281/ 605- 323/ 658)  23.2 E61-E54 S23-S20
      2  501  507 (S32E43 L=174)   332     65        1 ( 468/ 485- 533/ 533) -36.9 E45-E40 S33-S29
      3 1524  318 (S52W50 L=267)   518     31        1 (1502/ 300-1548/ 342) -18.4 W44-W54 S53-S49
  
Download Binary data for this image

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