logo kso logo uni graz

20161205 - Filament data for 07 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 1634 1568 (N24W53 L=168)  3091    484        6 (1446/1432-1805/1672) -42.3 W42-W65 N13-N33
      2  832 1612 (N40E04 L=111)   874    201        1 ( 723/1586- 934/1638)  -3.6 E12-W04 N37-N42
      3 1204 1320 (N15W15 L=130)   310     73        1 (1174/1299-1239/1339) -14.0 W13-W17 N13-N16
      4 1784  696 (S31W51 L=166)  1363    304        1 (1689/ 657-1878/ 749)   3.0 W42-W61 S33-S28
  
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