logo kso logo uni graz

20140410 - Filament data for 06 UTC
Available data for 20140410: »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  358 1568 (N09E63 L=258)   508    121        1 ( 338/1546- 388/1594)  -8.1 E67-E60 N07-N10
      2  304 1214 (S13E52 L=270)  1021    205        1 ( 237/1153- 370/1290)  51.3 E56-E48 S17-S07
      3  272 1066 (S22E51 L=271)   730    215        0 ( 215/1020- 330/1112)  37.9 E55-E46 S25-S18
      4 1716  962 (N11W44 L=  6)   300     39        2 (1698/ 936-1736/ 989) -33.7 W42-W45 N09-N12
      5  335  821 (S36E42 L=280)   370     89        2 ( 308/ 796- 373/ 842)  33.7 E44-E38 S37-S33
      6  238  670 (S48E53 L=269)   990    210        2 ( 187/ 651- 281/ 700)   4.8 E59-E47 S50-S45
      7 1295  387 (S33W40 L=  2)   743    176        0 (1239/ 328-1340/ 439) -12.1 W33-W47 S34-S31
      8 1431  339 (S31W53 L= 14)   894    200        1 (1378/ 310-1489/ 375)   4.8 W46-W58 S32-S28
  
Download Binary data for this image

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