logo kso logo uni graz

20170913 - Filament data for 09 UTC
Available data for 20170913: »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  221 1211 (N36E55 L=296)  1178    199        4 ( 189/1142- 249/1286) -66.0 E58-E51 N31-N40
      2  430 1032 (N21E37 L=314)   604    186        1 ( 400/ 938- 466/1126)  55.0 E41-E33 N15-N25
      3 1839  956 (S20W53 L= 44)   721    267        0 (1769/ 926-1902/ 983)  -7.6 W45-W60 S22-S18
      4  372  874 (N13E45 L=306)   393     65        1 ( 344/ 849- 401/ 897) -36.9 E47-E43 N10-N14
  
Download Binary data for this image

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