logo kso logo uni graz

20211011 - Filament data for 11 UTC
Available data for 20211011: »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  957 1588 (N40W15 L=152)   395     37        0 ( 928/1565- 986/1605) -11.3 W12-W17 N38-N42
      2 1672  523 (S46W34 L=171)   501     20        0 (1644/ 504-1696/ 540) -18.4 W30-W36 S47-S43
      3 1585  400 (S53W24 L=162)  1056    105        2 (1538/ 362-1635/ 434) -18.4 W18-W31 S56-S48
      4 1407  304 (S53W04 L=141)   564     82        0 (1364/ 287-1455/ 322) -36.9 W00-W08 S56-S49
  
Download Binary data for this image

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