logo kso logo uni graz

20151110 - Filament data for 11 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  207 1212 (N32E54 L=179)  1040    194        2 ( 159/1172- 256/1244) -33.7 E59-E49 N28-N34
      2  275  667 (S01E60 L=173)  2588    415        1 ( 216/ 569- 377/ 734)  25.2 E71-E51 S06-N02
      3  429  459 (S16E55 L=178)  1321    307        2 ( 396/ 375- 456/ 550)  33.7 E63-E48 S21-S10
      4  569  383 (S24E48 L=185)   371     98        1 ( 545/ 356- 601/ 401)  15.9 E51-E44 S25-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