logo kso logo uni graz

20210801 - Filament data for 06 UTC
Available data for 20210801: »06 UTC   »07 UTC   »08 UTC  
Click on image to open sensitive map!
 
  Color  xc   yc  (LatLon LCarr)  Area Length Branches (  x0/y0     x1/y1  )  Tilt Location
      1 1802  915 (S12W55 L= 52)   754    135        2 (1760/ 866-1835/ 958) -33.7 W50-W59 S15-S09
      2 1623  795 (S16W38 L= 35)   289     63        0 (1596/ 773-1651/ 819)  26.6 W35-W40 S17-S15
      3 1508  577 (S29W29 L= 27)   481    113        1 (1459/ 535-1552/ 618)  23.2 W25-W32 S31-S26
      4 1391  263 (S56W25 L= 23)   451     62        1 (1373/ 244-1415/ 292) -78.7 W23-W29 S58-S52
  
Download Binary data for this image

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