logo kso logo uni graz

20160907 - Filament data for 13 UTC
Available data for 20160907: »09 UTC   »10 UTC   »11 UTC   »12 UTC   »13 UTC   »14 UTC   »15 UTC   »16 UTC  
Click on image to open sensitive map!
 
  Color  xc   yc  (LatLon LCarr)  Area Length Branches (  x0/y0     x1/y1  )  Tilt Location
      1 1022 1447 (N32W11 L=217)   515    172        1 ( 964/1374-1083/1503)  22.6 W05-W17 N28-N34
      2 1402 1460 (N22W35 L=241)  3029    646        9 (1132/1389-1664/1498) -33.3 W19-W52 N10-N31
      3  935  973 (N06E06 L=200)   741    208        3 ( 842/ 924-1041/1024) -42.0 E10-W00 N01-N11
      4  405  828 (N08E44 L=162)   287     76        0 ( 387/ 791- 433/ 867) -68.2 E44-E42 N05-N10
      5  613  719 (S02E32 L=174)   241     84        0 ( 582/ 682- 661/ 757) -53.1 E32-E29 S04-N00
  
Download Binary data for this image

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