logo kso logo uni graz

20160908 - Filament data for 14 UTC
Available data for 20160908: »07 UTC   »08 UTC   »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 1481 1544 (N24W45 L=237)  4654    912        6 (1176/1465-1762/1585) -49.1 W23-W66 N11-N34
      2 1702 1318 (N06W52 L=244)   339     54        0 (1675/1293-1728/1347) -63.4 W50-W53 N03-N07
      3 1178 1057 (N05W09 L=201)  1001    246        1 (1067/1016-1313/1105) -31.6 W04-W17 N01-N10
      4  791  840 (N02E18 L=174)   502    227        0 ( 753/ 760- 864/ 955) -85.6 E18-E15 S04-N09
      5  602  847 (N06E29 L=163)   312     82        0 ( 582/ 800- 620/ 888) -90.0 E30-E27 N03-N08
  
Download Binary data for this image

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