logo kso logo uni graz

20201119 - Filament data for 09 UTC
Available data for 20201119: »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 1275 1861 (N49W55 L=176)   612     94        0 (1264/1814-1290/1907)  22.4 W47-W66 N45-N52
      2 1689 1054 (S10W43 L=164)   262    122        0 (1672/ 995-1707/1105)  81.9 W41-W43 S13-S06
      3  684  454 (S25E36 L= 86)   321    115        0 ( 663/ 402- 700/ 505)  63.4 E38-E33 S28-S20
      4  523  455 (S21E48 L= 74)   340     79        1 ( 499/ 422- 547/ 493)  53.1 E50-E45 S23-S19
  
Download Binary data for this image

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