logo kso logo uni graz

20211228 - Filament data for 09 UTC
Available data for 20211228: »07 UTC   »08 UTC   »09 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 1648 1530 (N28W50 L=240)   345     45        2 (1624/1508-1669/1548) -33.7 W47-W52 N26-N29
      2 1681  823 (S16W44 L=234)   334     87        0 (1661/ 777-1697/ 869)  78.7 W42-W45 S18-S13
      3 1707  644 (S27W51 L=241)   364     45        2 (1682/ 626-1734/ 667)   0.0 W48-W54 S28-S25
      4  824  532 (S33E16 L=174)   213     65        0 ( 803/ 508- 854/ 560) -53.1 E17-E14 S34-S30
  
Download Binary data for this image

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