logo kso logo uni graz

20130618 - Filament data for 10 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  283 1388 (N16E62 L=203)   420     59        1 ( 269/1354- 297/1415) -76.0 E63-E59 N13-N17
      2  567  931 (S09E28 L=236)   253    100        0 ( 524/ 903- 615/ 948)  -8.1 E31-E24 S09-S07
      3  241  890 (S15E57 L=208)   787    134        1 ( 183/ 866- 300/ 914)   4.1 E64-E50 S16-S13
      4  626  838 (S14E24 L=241)   329    142        2 ( 567/ 807- 675/ 877)  29.7 E27-E20 S16-S11
      5 1250  813 (S09W16 L=281)   331     87        2 (1205/ 783-1280/ 838)   0.0 W12-W17 S11-S07
      6  491  718 (S23E34 L=231)   247     89        0 ( 474/ 695- 522/ 760) -53.1 E35-E31 S24-S20
      7  754  645 (S25E14 L=250)   283    108        0 ( 695/ 630- 800/ 662)  -8.1 E18-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