logo kso logo uni graz

20160729 - Filament data for 08 UTC
Available data for 20160729: »06 UTC   »07 UTC   »08 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 1124 1421 (N29W11 L= 28)  3968    883       12 ( 806/1363-1553/1467) -46.4 E11-W41 N22-N34
      2 1714  613 (S30W48 L= 65)   655    133        0 (1670/ 596-1762/ 627) -18.4 W43-W52 S31-S28
      3  572  509 (S24E37 L=340)   389     85        0 ( 554/ 472- 595/ 543)  45.0 E39-E34 S26-S21
      4 1336  282 (S52W19 L= 36)   635    178        1 (1278/ 256-1395/ 311) -29.7 W12-W26 S55-S47
  
Download Binary data for this image

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