logo kso logo uni graz

20160615 - Filament data for 08 UTC
Available data for 20160615: »07 UTC   »08 UTC   »11 UTC   »12 UTC   »13 UTC  
Click on image to open sensitive map!
 
  Color  xc   yc  (LatLon LCarr)  Area Length Branches (  x0/y0     x1/y1  )  Tilt Location
      1  917 1357 (N20E11 L=229)   209     78        0 ( 894/1334- 953/1395) -36.9 E12-E08 N19-N22
      2  343 1265 (N08E50 L=189)  1599    261        5 ( 284/1150- 401/1380)  82.4 E53-E47 N00-N15
      3 1816 1267 (N24W57 L=297)  2009    301        4 (1714/1152-1874/1380) -40.9 W48-W63 N17-N30
      4  761 1015 (S02E16 L=224)   206     60        1 ( 733/ 982- 784/1039) -33.7 E17-E14 S04-N00
      5  676  973 (S06E21 L=219)   544    136        1 ( 653/ 890- 701/1030) -63.4 E23-E18 S10-S02
      6  361  944 (S11E44 L=196)   737    195        3 ( 294/ 915- 425/ 974)   0.0 E50-E38 S13-S08
  
Download Binary data for this image

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