logo kso logo uni graz

20170219 - Filament data for 11 UTC
Available data for 20170219: »06 UTC   »07 UTC   »08 UTC   »09 UTC   »10 UTC   »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  410 1575 (N16E55 L=138)   387     74        2 ( 393/1551- 439/1599) -11.3 E56-E51 N14-N17
      2 1610 1451 (N32W30 L=223)   381     50        1 (1588/1429-1634/1475) -33.7 W28-W32 N30-N34
      3 1586 1303 (N22W29 L=222)   406     53        1 (1568/1268-1601/1345)  90.0 W28-W30 N19-N24
      4  395 1078 (S14E41 L=151)   355     72        1 ( 377/1039- 416/1117)  90.0 E42-E39 S16-S12
      5  317  975 (S22E46 L=146)   265     74        1 ( 286/ 959- 345/ 989)   0.0 E48-E43 S22-S20
  
Download Binary data for this image

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