logo kso logo uni graz

20160916 - Filament data for 09 UTC
Available data for 20160916: »05 UTC   »06 UTC   »07 UTC   »08 UTC   »09 UTC   »10 UTC  
Click on image to open sensitive map!
 
  Color  xc   yc  (LatLon LCarr)  Area Length Branches (  x0/y0     x1/y1  )  Tilt Location
      1  825 1608 (N48W04 L= 94)   284     90        2 ( 801/1574- 841/1649)  63.4 W02-W07 N44-N50
      2 1542 1433 (N15W44 L=133)   344     37        1 (1519/1412-1568/1450) -14.0 W42-W46 N14-N16
      3  483 1124 (N25E32 L= 57)   275     97        0 ( 441/1096- 526/1143)   8.1 E35-E28 N24-N25
      4  221  807 (N11E62 L= 27)   573    107        3 ( 187/ 777- 245/ 831) -31.0 E65-E59 N08-N12
      5  345  644 (S01E55 L= 34)   694    143        1 ( 320/ 608- 371/ 694)  26.6 E59-E51 S03-N02
  
Download Binary data for this image

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