logo kso logo uni graz

20160929 - Filament data for 08 UTC
Available data for 20160929: »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 1409 1794 (N38W57 L=335)   499    157        1 (1380/1764-1436/1826)   0.0 W53-W61 N36-N38
      2 1884 1157 (S12W63 L=341)   559     83        1 (1859/1127-1905/1190)  76.0 W60-W65 S14-S10
      3  333 1061 (N25E44 L=234)  2397    554        5 ( 168/1007- 512/1143) -26.6 E59-E30 N18-N32
      4 1442  301 (S55W08 L=286)  2376    328        3 (1288/ 218-1594/ 390)  -1.7 E09-W25 S58-S51
  
Download Binary data for this image

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