logo kso logo uni graz

20210825 - Filament data for 12 UTC
Available data for 20210825: »10 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 1452  891 (S10W23 L= 60)   327    107        0 (1420/ 843-1492/ 924) -56.3 W21-W25 S13-S07
      2 1725  641 (S34W44 L= 81)   682     92        1 (1689/ 614-1762/ 675)  14.0 W40-W48 S35-S32
      3 1613  537 (S38W33 L= 70)   383     74        1 (1573/ 513-1641/ 564)   9.5 W29-W35 S39-S36
      4  935  353 (S34E23 L= 14)   981    203        0 ( 910/ 275- 966/ 442)  52.4 E28-E18 S40-S27
  
Download Binary data for this image

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