logo kso logo uni graz

20151110 - Filament data for 12 UTC
Available data for 20151110: »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  209 1213 (N32E54 L=179)  1271    230        3 ( 158/1173- 263/1250) -32.5 E59-E48 N28-N35
      2  278  667 (S01E60 L=173)  2762    399        1 ( 218/ 560- 380/ 734)  26.6 E71-E51 S06-N02
      3  291  584 (S06E62 L=170)   412     61        0 ( 266/ 567- 313/ 601) -21.8 E65-E59 S07-S05
      4  428  455 (S16E56 L=177)  1675    385        2 ( 373/ 373- 461/ 550)  26.6 E66-E48 S21-S10
      5  571  383 (S24E48 L=185)   443    112        1 ( 547/ 348- 604/ 402)  15.9 E51-E44 S26-S22
  
Download Binary data for this image

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