logo kso logo uni graz

20161205 - Filament data for 10 UTC
Available data for 20161205: »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  857 1622 (N40E02 L=112)   903    261        0 ( 718/1595- 981/1645)  -2.9 E13-W07 N38-N42
      2 1672 1565 (N23W56 L=170)  2832    397        4 (1535/1438-1826/1644) -40.1 W46-W67 N13-N30
      3 1226 1330 (N15W17 L=130)   326     74        1 (1197/1307-1267/1350) -26.6 W14-W19 N14-N16
      4 1794  697 (S31W52 L=165)  1467    323        1 (1703/ 657-1889/ 735)   6.0 W43-W62 S32-S29
  
Download Binary data for this image

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