logo kso logo uni graz

20170831 - Filament data for 12 UTC
Available data for 20170831: »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 1807 1314 (N03W63 L=224)   631    199        2 (1759/1285-1834/1358)   0.0 W57-W68 N01-N04
      2 1164 1256 (N17W14 L=175)   837    245        3 (1037/1197-1285/1308) -37.6 W06-W19 N11-N21
      3  256  946 (N17E55 L=106)   934    131        3 ( 221/ 903- 301/ 987) -50.2 E58-E50 N13-N19
      4  540  526 (S13E43 L=118)   425    112        1 ( 492/ 510- 583/ 551) -31.0 E46-E39 S14-S10
      5 1223  349 (S41E05 L=157)   289     58        0 (1209/ 321-1236/ 376)  53.1 E06-E02 S43-S38
      6  683  251 (S35E48 L=113)   489     81        2 ( 656/ 231- 715/ 277) -14.0 E50-E45 S37-S32
  
Download Binary data for this image

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