logo kso logo uni graz

20210815 - Latest Filament data
Available data for 20210815: »06 UTC   »07 UTC   »08 UTC   »09 UTC   »10 UTC   »11 UTC  
Click on image to open sensitive map!
 
  Color  xc   yc  (LatLon LCarr)  Area Length Branches (  x0/y0     x1/y1  )  Tilt Location
      1  521 1546 (N49E34 L=136)   550    113        1 ( 490/1510- 558/1592) -45.0 E38-E29 N45-N52
      2 1653  511 (S40W41 L=211)   592     53        1 (1616/ 492-1687/ 533) -21.8 W36-W46 S42-S37
      3 1542  437 (S43W30 L=200)   358     51        0 (1524/ 414-1561/ 464) -59.0 W27-W32 S45-S40
      4 1323  312 (S49W09 L=179)   340     44        1 (1303/ 293-1351/ 338) -51.3 W07-W11 S50-S45
  
Download Binary data for this image

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