logo kso logo uni graz

20170219 - Filament data for 12 UTC
Available data for 20170219: »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  417 1575 (N16E54 L=138)   360     61        0 ( 398/1557- 442/1597) -11.3 E56-E51 N14-N17
      2 1617 1451 (N33W31 L=223)   410     68        1 (1590/1424-1640/1486) -56.3 W28-W33 N30-N35
      3 1594 1301 (N22W30 L=222)   428     75        1 (1574/1262-1610/1341) -78.7 W28-W31 N19-N24
      4  402 1077 (S14E40 L=151)   283     47        1 ( 385/1056- 425/1109)  71.6 E41-E38 S15-S12
      5  373  999 (S19E42 L=150)   249      3        0 ( 351/ 982- 393/1018)   0.0 E43-E40 S20-S18
      6  324  974 (S22E46 L=146)   264     66        0 ( 294/ 961- 352/ 987)  11.3 E48-E43 S22-S20
  
Download Binary data for this image

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