logo kso logo uni graz

20220630 - Latest Filament data
Available data for 20220630: »06 UTC   »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  583 1539 (N34E38 L=242)  1232    234        4 ( 487/1497- 689/1594) -10.3 E49-E27 N31-N37
      2 1556 1386 (N27W38 L=317)   375    111        0 (1505/1355-1604/1411) -20.6 W33-W41 N25-N28
      3 1735 1258 (N19W52 L=331)   533    138        0 (1680/1206-1778/1288) -26.6 W47-W56 N15-N21
      4  579  444 (S38E34 L=245)  1160    237        2 ( 502/ 393- 648/ 520)  31.0 E45-E25 S43-S31
      5 1541  386 (S39W50 L=329)   581     83        0 (1502/ 368-1585/ 412) -12.1 W43-W57 S40-S36
  
Download Binary data for this image

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