logo kso logo uni graz

20170423 - Filament data for 06 UTC
Available data for 20170423: »06 UTC   »09 UTC   »10 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  740 1764 (N32E44 L= 40)  2839    388       10 ( 615/1729- 891/1797)  19.3 E53-E32 N26-N36
      2  801 1418 (N12E24 L= 61)   227     96        0 ( 751/1401- 853/1443)  51.3 E26-E21 N09-N14
      3  263 1290 (S08E59 L= 25)  1035    230        4 ( 224/1240- 299/1342) -29.1 E64-E54 S10-S04
      4  929 1286 (N07E12 L= 72)   190     60        2 ( 903/1264- 952/1314)  76.0 E13-E10 N05-N09
  
Download Binary data for this image

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