logo kso logo uni graz

20210801 - Filament data for 07 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 1260 1305 (N20W19 L= 16)   239     94        0 (1215/1290-1306/1320) -18.4 W15-W21 N18-N21
      2 1801  921 (S12W55 L= 52)   632     97        3 (1763/ 868-1833/ 958) -45.0 W50-W58 S15-S09
      3 1514  579 (S29W30 L= 27)   643    134        1 (1458/ 529-1561/ 625)  45.0 W25-W33 S32-S26
      4 1392  260 (S56W26 L= 23)   477     57        1 (1372/ 240-1418/ 292)  90.0 W23-W30 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