logo kso logo uni graz

20220216 - Filament data for 11 UTC
Available data for 20220216: »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 1166 1614 (N32E04 L=247)  1093    306        1 (1079/1495-1233/1729) -43.0 E13-W02 N25-N39
      2  546 1663 (N24E49 L=202)   824    102        2 ( 504/1629- 586/1702)  63.4 E51-E46 N20-N27
      3  145  906 (S27E69 L=182)   945    110        0 ( 104/ 875- 201/ 940) -10.0 E77-E60 S28-S24
      4  287  503 (S53E67 L=183)   612     65        0 ( 256/ 481- 323/ 518)   6.8 E82-E57 S54-S51
      5 1090  384 (S44W23 L=273)   748    183        0 (1046/ 329-1166/ 441) -12.1 W17-W31 S46-S40
      6 1441  391 (S34W49 L=299)  1090    222        0 (1356/ 363-1532/ 433)  32.5 W42-W54 S37-S28
  
Download Binary data for this image

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