logo kso logo uni graz

20170617 - Filament data for 13 UTC
Available data for 20170617: »06 UTC   »07 UTC   »08 UTC   »09 UTC   »10 UTC   »11 UTC   »12 UTC   »13 UTC   »14 UTC   »15 UTC   »16 UTC   »17 UTC  
Click on image to open sensitive map!
 
  Color  xc   yc  (LatLon LCarr)  Area Length Branches (  x0/y0     x1/y1  )  Tilt Location
      1 1381 1641 (N46W23 L= 96)   301     96        0 (1344/1618-1418/1659)  14.0 W19-W27 N44-N48
      2  365 1091 (S01E45 L= 27)  1798    254        4 ( 312/ 958- 404/1199) -55.3 E51-E40 S08-N05
      3  703 1037 (S01E20 L= 53)   438     92        1 ( 662/1005- 750/1071) -18.4 E22-E16 S02-N01
      4  279  731 (S25E53 L= 20)  1247    287        4 ( 240/ 641- 330/ 813)  49.8 E58-E47 S31-S18
  
Download Binary data for this image

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