logo kso logo uni graz

20130618 - Filament data for 09 UTC
Available data for 20130618: »06 UTC   »07 UTC   »08 UTC   »09 UTC   »10 UTC   »11 UTC   »12 UTC   »13 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  280 1400 (N17E63 L=202)   516     83        1 ( 265/1356- 295/1443) -68.2 E64-E60 N14-N19
      2  244  887 (S15E57 L=209)   989    151        1 ( 181/ 846- 304/ 914)  -3.8 E65-E50 S16-S13
      3  620  839 (S14E24 L=241)   292    146        0 ( 562/ 808- 669/ 878)  26.6 E28-E20 S16-S11
      4 1237  818 (S09W15 L=280)   326     89        1 (1195/ 794-1272/ 840)   0.0 W12-W17 S10-S07
      5  746  646 (S25E15 L=250)   294    111        0 ( 687/ 632- 796/ 665)   0.0 E19-E11 S25-S24
  
Download Binary data for this image

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