logo kso logo uni graz

20190606 - Filament data for 08 UTC
Available data for 20190606: »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 1397 1658 (N49W20 L=326)   306     56        2 (1376/1630-1423/1675)  45.0 W17-W22 N46-N51
      2  517 1194 (N02E35 L=271)   265     88        0 ( 506/1149- 527/1234) -76.0 E35-E33 N00-N04
      3  622 1114 (S01E26 L=280)  1031    323        0 ( 500/1045- 717/1213)  47.5 E34-E21 S06-N06
      4  966 1043 (N00E04 L=302)   205     49        1 ( 947/1016- 983/1064)  45.0 E05-E02 S01-N01
      5  897  950 (S06E06 L=299)   293     67        2 ( 864/ 925- 934/ 977)  26.6 E08-E04 S08-S04
  
Download Binary data for this image

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