logo kso logo uni graz

20170316 - Filament data for 12 UTC
Available data for 20170316: »07 UTC   »08 UTC   »09 UTC   »10 UTC   »11 UTC   »12 UTC   »13 UTC   »14 UTC   »15 UTC  
Click on image to open sensitive map!
 
  Color  xc   yc  (LatLon LCarr)  Area Length Branches (  x0/y0     x1/y1  )  Tilt Location
      1  841 1829 (N38E41 L=181)   628     88        1 ( 791/1806- 881/1852)  18.4 E43-E36 N36-N40
      2 1064 1761 (N39E21 L=201)   363     79        2 (1022/1740-1102/1781)  51.3 E23-E19 N36-N41
      3 1228 1353 (N17W03 L=225)   578    152        0 (1179/1275-1268/1422) -36.9 E01-W07 N12-N19
      4 1554  749 (S07W39 L=261)   838    169        0 (1525/ 662-1591/ 834) -66.0 W36-W42 S11-S02
  
Download Binary data for this image

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