logo kso logo uni graz

20160518 - Filament data for 08 UTC
Available data for 20160518: »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  578 1732 (N32E53 L=197)  1601    426        1 ( 507/1683- 674/1794)  -8.5 E64-E44 N29-N35
      2  789 1589 (N27E30 L=221)   255     40        1 ( 763/1568- 812/1608)   0.0 E31-E27 N25-N28
      3  226 1155 (S11E59 L=191)   688    151        2 ( 183/1135- 264/1178)  11.3 E64-E54 S12-S08
      4 1235 1093 (N06W11 L=261)   574    143        1 (1198/1031-1256/1167)  90.0 W09-W12 N01-N10
      5  492  859 (S23E31 L=220)   320     69        1 ( 455/ 838- 518/ 876)  31.0 E33-E28 S24-S21
  
Download Binary data for this image

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