logo kso logo uni graz

20130623 - Filament data for 07 UTC
Available data for 20130623: »04 UTC   »05 UTC   »06 UTC   »07 UTC   »08 UTC   »09 UTC   »10 UTC   »11 UTC   »12 UTC  
Click on image to open sensitive map!
 
  Color  xc   yc  (LatLon LCarr)  Area Length Branches (  x0/y0     x1/y1  )  Tilt Location
      1  413 1543 (N30E55 L=145)  1485    158        1 ( 351/1497- 489/1587) -10.3 E67-E45 N27-N32
      2  264  887 (S13E54 L=146)   581     95        0 ( 236/ 847- 290/ 929)  40.6 E58-E51 S15-S09
      3  204  835 (S17E63 L=137)   474     85        1 ( 186/ 798- 223/ 877) -63.4 E64-E60 S18-S14
      4  455  757 (S19E37 L=163)   455    132        0 ( 398/ 731- 491/ 801)  26.6 E42-E34 S20-S16
      5  754  771 (S16E16 L=184)   241     35        0 ( 730/ 754- 780/ 788)  26.6 E17-E13 S16-S14
      6 1187  743 (S14W12 L=212)   578    223        0 (1084/ 709-1276/ 775)  -4.4 W05-W18 S15-S12
      7 1684  644 (S18W52 L=252)  1373    231        5 (1612/ 596-1739/ 688)  33.7 W45-W58 S21-S14
      8  525  346 (S50E45 L=155)   505     89        0 ( 482/ 325- 560/ 367) -14.0 E50-E40 S51-S48
  
Download Binary data for this image

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