logo kso logo uni graz

20130607 - Filament data for 07 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  287 1385 (N11E61 L=351)   622     74        1 ( 264/1348- 313/1424)  68.2 E62-E58 N08-N13
      2 1527 1274 (N23W30 L= 82)   234     82        1 (1495/1243-1557/1301) -21.8 W27-W32 N21-N24
      3  398  797 (S23E40 L= 12)  1471    372        0 ( 284/ 696- 533/ 868)  26.6 E53-E29 S31-S16
      4  735  551 (S34E13 L= 39)   312     67        0 ( 710/ 535- 773/ 573)   0.0 E14-E09 S35-S32
      5 1502  354 (S36W55 L=107)   766    133        2 (1470/ 298-1534/ 414) -63.4 W50-W59 S40-S30
  
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