logo kso logo uni graz

20160831 - Filament data for 13 UTC
Available data for 20160831: »04 UTC   »05 UTC   »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 1261 1695 (N41W38 L=337)   296     54        1 (1235/1671-1293/1714) -63.4 W36-W40 N38-N42
      2 1686 1211 (N02W47 L=345)   849    140        2 (1659/1144-1704/1278)  66.8 W43-W49 S02-N05
      3  226 1010 (N20E57 L=241)  2047    427        2 ( 130/ 920- 337/1092) -32.3 E66-E47 N13-N25
      4 1762  855 (S21W45 L=344)   571    101        1 (1735/ 804-1787/ 907)  45.0 W42-W48 S23-S18
      5  160  818 (N09E71 L=227)   785    110        1 ( 141/ 772- 175/ 858)  80.5 E74-E68 N05-N11
      6  378  569 (S08E55 L=243)   448     81        3 ( 360/ 535- 395/ 602)  76.0 E57-E52 S10-S06
      7 1567  561 (S35W27 L=325)   331     30        0 (1544/ 544-1588/ 579)  14.0 W24-W28 S36-S33
  
Download Binary data for this image

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