logo kso logo uni graz

20160909 - Filament data for 11 UTC
Available data for 20160909: »05 UTC   »06 UTC   »07 UTC   »08 UTC   »09 UTC   »10 UTC   »11 UTC   »12 UTC   »13 UTC   »14 UTC   »15 UTC   »16 UTC  
Click on image to open sensitive map!
 
  Color  xc   yc  (LatLon LCarr)  Area Length Branches (  x0/y0     x1/y1  )  Tilt Location
      1 1516 1614 (N27W51 L=232)  4127    797       11 (1278/1544-1712/1647) -14.4 W32-W71 N19-N34
      2 1545 1268 (N07W38 L=218)   304     59        1 (1514/1235-1572/1292) -76.0 W36-W39 N05-N09
      3 1265 1164 (N09W17 L=198)   325     99        1 (1211/1143-1315/1201) -51.3 W14-W19 N07-N12
      4  972  914 (N02E06 L=175)   529    275        1 ( 911/ 812-1074/1039) -75.1 E07-E02 S05-N10
      5  754  940 (N08E18 L=163)   339     70        2 ( 718/ 901- 786/ 971) -78.7 E19-E15 N05-N10
  
Download Binary data for this image

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