logo kso logo uni graz

20161211 - Filament data for 10 UTC
Available data for 20161211: »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 1037 1820 (N54W16 L= 51)   341     84        0 (1007/1794-1070/1843)  26.6 W12-W20 N51-N55
      2  812 1295 (N18E10 L= 25)   389    150        1 ( 742/1278- 894/1314) -11.3 E14-E04 N16-N19
      3  293 1001 (N07E49 L=345)   296     75        0 ( 277/ 965- 308/1046)  59.0 E50-E47 N04-N09
      4 1620  798 (S21W37 L= 71)   256     66        0 (1584/ 784-1651/ 810)  -9.5 W33-W39 S21-S19
      5  991  527 (S30E09 L= 26)   214     89        0 ( 949/ 501-1036/ 557) -45.0 E11-E06 S32-S27
  
Download Binary data for this image

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