logo kso logo uni graz

20130607 - Filament data for 10 UTC
Available data for 20130607: »06 UTC   »07 UTC   »08 UTC   »09 UTC   »10 UTC   »11 UTC  
Click on image to open sensitive map!
 
  Color  xc   yc  (LatLon LCarr)  Area Length Branches (  x0/y0     x1/y1  )  Tilt Location
      1  304 1393 (N12E59 L=351)   909    123        0 ( 277/1338- 333/1452) -82.9 E61-E57 N08-N16
      2 1558 1259 (N22W33 L= 83)   307    113        1 (1514/1213-1598/1294) -33.7 W29-W35 N19-N23
      3  416  789 (S23E39 L= 11)  1520    381        0 ( 300/ 688- 557/ 861)  30.3 E51-E27 S31-S16
      4  759  546 (S34E11 L= 39)   325     65        0 ( 728/ 530- 800/ 566)  -9.5 E13-E07 S35-S32
      5 1508  333 (S37W57 L=107)   610     88        1 (1478/ 298-1538/ 371) -63.4 W54-W59 S39-S33
  
Download Binary data for this image

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