logo kso logo uni graz

20211224 - Filament data for 08 UTC
Available data for 20211224: »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 1868  792 (S19W65 L=308)  2363    198        9 (1816/ 735-1917/ 860)  60.3 W58-W74 S22-S15
      2 1493  561 (S33W32 L=275)  1029    210        1 (1413/ 518-1553/ 650)  37.9 W26-W36 S36-S27
      3 1666  519 (S37W51 L=294)  2176    320        4 (1539/ 447-1812/ 593)  11.3 W38-W70 S41-S32
      4 1311  318 (S51W22 L=265)   559     55        1 (1278/ 296-1350/ 338) -14.0 W18-W26 S53-S49
  
Download Binary data for this image

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