logo kso logo uni graz

20140723 - Filament data for 11 UTC
Available data for 20140723: »06 UTC   »07 UTC   »10 UTC   »11 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 1684 1488 (N27W56 L= 79)   884    218        4 (1628/1456-1741/1511) -10.3 W50-W61 N24-N28
      2  303 1162 (N17E51 L=333)   524     95        2 ( 269/1143- 342/1186)   0.0 E54-E47 N15-N18
      3  183 1032 (N09E64 L=319)  2725    518        8 ( 139/ 941- 225/1125) -57.5 E70-E59 N03-N14
      4 1832  838 (S15W59 L= 82)  2635    438        7 (1797/ 744-1908/ 981) -82.9 W54-W69 S21-S05
      5  483  533 (S23E43 L=340)   528    150        1 ( 464/ 482- 509/ 589)  53.1 E46-E40 S27-S19
  
Download Binary data for this image

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