logo kso logo uni graz

20211021 - Filament data for 08 UTC
Available data for 20211021: »08 UTC   »09 UTC   »10 UTC  
Click on image to open sensitive map!
 
  Color  xc   yc  (LatLon LCarr)  Area Length Branches (  x0/y0     x1/y1  )  Tilt Location
      1 1004 1739 (N49W27 L= 33)   270     49        0 ( 991/1707-1017/1770)  45.0 W24-W29 N45-N50
      2  177 1104 (N30E63 L=304)   597     93        1 ( 134/1088- 236/1119)  -3.6 E70-E54 N28-N30
      3 1163  399 (S36E10 L=356)   478    126        0 (1123/ 364-1211/ 446)  18.4 E14-E05 S37-S33
      4 1249  235 (S53E13 L=353)   441     69        0 (1212/ 220-1285/ 252) -45.0 E15-E10 S56-S50
  
Download Binary data for this image

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