logo kso logo uni graz

20211207 - Filament data for 10 UTC
Available data for 20211207: »07 UTC   »08 UTC   »09 UTC   »10 UTC   »11 UTC   »12 UTC   »13 UTC  
Click on image to open sensitive map!
 
  Color  xc   yc  (LatLon LCarr)  Area Length Branches (  x0/y0     x1/y1  )  Tilt Location
      1 1146 1844 (N54W32 L=138)   349     47        0 (1126/1813-1166/1866)  24.0 W27-W36 N51-N55
      2  366 1289 (N25E42 L= 64)   453    102        0 ( 343/1263- 411/1334) -45.0 E44-E37 N22-N28
      3  988  659 (S21E07 L= 99)   258     51        0 ( 969/ 627-1005/ 685)  76.0 E08-E05 S23-S19
      4  823  224 (S50E37 L= 69)   821     70        2 ( 798/ 184- 847/ 262)  45.0 E41-E32 S54-S46
  
Download Binary data for this image

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