logo kso logo uni graz

20220112 - Filament data for 13 UTC
Available data for 20220112: »07 UTC   »08 UTC   »09 UTC   »10 UTC   »11 UTC   »12 UTC   »13 UTC   »14 UTC  
Click on image to open sensitive map!
 
  Color  xc   yc  (LatLon LCarr)  Area Length Branches (  x0/y0     x1/y1  )  Tilt Location
      1  484 1715 (N40E53 L=297)   810    103        2 ( 449/1655- 512/1745) -30.3 E61-E47 N35-N42
      2  211  817 (S18E61 L=289)   549    101        1 ( 198/ 762- 231/ 868)  50.2 E63-E57 S21-S15
      3  350  752 (S23E47 L=303)   394    125        0 ( 308/ 721- 382/ 807)  32.0 E51-E43 S24-S19
      4  460  764 (S22E37 L=313)   377     65        2 ( 437/ 730- 485/ 799) -90.0 E38-E35 S23-S19
      5  403  514 (S38E50 L=300)  1003    100        3 ( 367/ 482- 449/ 550)  14.0 E56-E44 S40-S35
      6 1379  493 (S35W30 L= 20)   330     97        0 (1367/ 444-1395/ 545) -60.3 W28-W32 S38-S31
  
Download Binary data for this image

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