logo kso logo uni graz

20211021 - Filament data for 09 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 1007 1740 (N48W27 L= 34)   341     55        1 ( 991/1706-1028/1770)  45.0 W24-W29 N45-N50
      2  167 1105 (N30E64 L=302)   577     48        0 ( 134/1089- 204/1119)   0.0 E70-E58 N28-N30
      3  494  533 (S10E47 L=319)   308     55        0 ( 462/ 512- 520/ 549) -45.0 E49-E45 S11-S08
      4 1165  399 (S36E10 L=356)   544    130        0 (1122/ 359-1218/ 445)  18.4 E14-E05 S37-S33
      5 1251  234 (S54E13 L=353)   506     70        0 (1212/ 215-1287/ 252) -56.3 E15-E10 S57-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