2012-05-08 00:39:11 +05:30
|
|
|
#!/usr/bin/env python
|
2014-04-02 00:11:14 +05:30
|
|
|
# -*- coding: UTF-8 no BOM -*-
|
2012-05-08 00:39:11 +05:30
|
|
|
|
2014-08-07 00:36:33 +05:30
|
|
|
import os,sys,string
|
|
|
|
import numpy as np
|
|
|
|
from optparse import OptionParser
|
|
|
|
import damask
|
2012-05-08 00:39:11 +05:30
|
|
|
|
2014-08-07 00:36:33 +05:30
|
|
|
scriptID = string.replace('$Id$','\n','\\n')
|
2014-12-19 00:56:52 +05:30
|
|
|
scriptName = os.path.splitext(scriptID.split()[1])[0]
|
2012-05-08 00:39:11 +05:30
|
|
|
|
|
|
|
# --------------------------------------------------------------------
|
|
|
|
# MAIN
|
|
|
|
# --------------------------------------------------------------------
|
|
|
|
|
2014-08-07 00:36:33 +05:30
|
|
|
parser = OptionParser(option_class=damask.extendableOption, usage='%prog options [file[s]]', description = """
|
2012-05-08 00:39:11 +05:30
|
|
|
Produces a binned grid of two columns from an ASCIItable, i.e. a two-dimensional probability density map.
|
2014-08-07 00:36:33 +05:30
|
|
|
|
|
|
|
""", version = scriptID)
|
|
|
|
|
2014-09-12 19:44:55 +05:30
|
|
|
parser.add_option('-d','--data', dest='data', nargs=2, type='int', metavar='int int',
|
2014-08-07 00:36:33 +05:30
|
|
|
help='columns containing x and y %default')
|
2014-09-21 23:29:06 +05:30
|
|
|
parser.add_option('-w','--weight', dest='weight', metavar='int', type='int',
|
2014-08-07 00:36:33 +05:30
|
|
|
help='column containing weight of (x,y) point [%default]')
|
2014-09-12 19:44:55 +05:30
|
|
|
parser.add_option('-b','--bins', dest='bins', nargs=2, type='int', metavar='int int',
|
2014-08-07 00:36:33 +05:30
|
|
|
help='number of bins in x and y direction %default')
|
2014-09-12 19:44:55 +05:30
|
|
|
parser.add_option('-t','--type', dest='type', nargs=3, metavar='string string string',
|
2014-08-07 00:36:33 +05:30
|
|
|
help='type (linear/log) of x, y, and z axis [linear]')
|
2014-09-12 19:44:55 +05:30
|
|
|
parser.add_option('-x','--xrange', dest='xrange', nargs=2, type='float', metavar='float float',
|
2012-05-08 00:39:11 +05:30
|
|
|
help='value range in x direction [auto]')
|
2014-09-12 19:44:55 +05:30
|
|
|
parser.add_option('-y','--yrange', dest='yrange', nargs=2, type='float', metavar='float float',
|
2012-05-08 00:39:11 +05:30
|
|
|
help='value range in y direction [auto]')
|
2014-09-12 19:44:55 +05:30
|
|
|
parser.add_option('-z','--zrange', dest='zrange', nargs=2, type='float', metavar='float float',
|
2012-05-08 00:39:11 +05:30
|
|
|
help='value range in z direction [auto]')
|
2013-12-10 05:57:22 +05:30
|
|
|
parser.add_option('-i','--invert', dest='invert', action='store_true',
|
2014-08-07 00:36:33 +05:30
|
|
|
help='invert probability density [%default]')
|
2012-05-08 00:39:11 +05:30
|
|
|
|
2014-08-07 00:36:33 +05:30
|
|
|
parser.set_defaults(data = (1,2))
|
2014-07-25 22:08:04 +05:30
|
|
|
parser.set_defaults(weight = None)
|
2014-08-07 00:36:33 +05:30
|
|
|
parser.set_defaults(bins = (10,10))
|
|
|
|
parser.set_defaults(type = ('linear','linear','linear'))
|
|
|
|
parser.set_defaults(xrange = (0.0,0.0))
|
|
|
|
parser.set_defaults(yrange = (0.0,0.0))
|
|
|
|
parser.set_defaults(zrange = (0.0,0.0))
|
2013-12-10 05:57:22 +05:30
|
|
|
parser.set_defaults(invert = False)
|
2012-05-08 00:39:11 +05:30
|
|
|
|
|
|
|
(options,filenames) = parser.parse_args()
|
|
|
|
|
2014-08-07 00:36:33 +05:30
|
|
|
range = np.array([np.array(options.xrange),
|
|
|
|
np.array(options.yrange),
|
|
|
|
np.array(options.zrange)])
|
|
|
|
grid = np.zeros(options.bins,'i')
|
|
|
|
result = np.zeros((options.bins[0]*options.bins[1],3),'f')
|
|
|
|
|
|
|
|
prefix='binned%i-%i_'%(options.data[0],options.data[1])+ \
|
|
|
|
('weighted%i_'%(options.weight) if options.weight != None else '')
|
2012-05-08 00:39:11 +05:30
|
|
|
|
2014-08-07 00:36:33 +05:30
|
|
|
# ------------------------------------------ setup file handles ------------------------------------
|
2012-05-08 00:39:11 +05:30
|
|
|
files = []
|
|
|
|
if filenames == []:
|
2014-08-07 00:36:33 +05:30
|
|
|
files.append({'name':'STDIN', 'input':sys.stdin, 'output':sys.stdout, 'croak':sys.stderr})
|
2012-05-08 00:39:11 +05:30
|
|
|
else:
|
|
|
|
for name in filenames:
|
|
|
|
if os.path.exists(name):
|
2014-08-07 00:36:33 +05:30
|
|
|
files.append({'name':name, 'input':open(name), 'output':open(name+'_tmp','w'), 'croak':sys.stderr})
|
2012-05-08 00:39:11 +05:30
|
|
|
|
2014-08-07 00:36:33 +05:30
|
|
|
# ------------------------------------------ loop over input files ---------------------------------
|
2012-05-08 00:39:11 +05:30
|
|
|
for file in files:
|
2014-05-19 19:13:26 +05:30
|
|
|
if file['name'] != 'STDIN': file['croak'].write('\033[1m'+scriptName+'\033[0m: '+file['name']+'\n')
|
|
|
|
else: file['croak'].write('\033[1m'+scriptName+'\033[0m\n')
|
2012-05-08 00:39:11 +05:30
|
|
|
|
|
|
|
skip = int(file['input'].readline().split()[0])
|
|
|
|
for i in xrange(skip): headers = file['input'].readline().split()
|
2014-08-07 00:36:33 +05:30
|
|
|
data = np.loadtxt(file['input'],usecols=np.array(options.data+((options.weight,) if options.weight != None else ()))-1)
|
2014-08-26 02:43:39 +05:30
|
|
|
file['input'].close() # close input ASCII table
|
2012-05-08 00:39:11 +05:30
|
|
|
|
2014-08-07 00:36:33 +05:30
|
|
|
for i in (0,1): # check data range for x and y
|
2012-05-08 00:39:11 +05:30
|
|
|
if (range[i] == 0.0).all(): range[i] = [data[:,i].min(),data[:,i].max()]
|
2014-08-07 00:36:33 +05:30
|
|
|
if options.type[i].lower() == 'log': # if log scale
|
|
|
|
data[:,i] = np.log(data[:,i]) # change x,y coordinates to log
|
|
|
|
range[i] = np.log(range[i]) # change range to log, too
|
2012-05-08 00:39:11 +05:30
|
|
|
|
|
|
|
delta = range[:,1]-range[:,0]
|
|
|
|
|
|
|
|
for i in xrange(len(data)):
|
|
|
|
x = int(options.bins[0]*(data[i,0]-range[0,0])/delta[0])
|
|
|
|
y = int(options.bins[1]*(data[i,1]-range[1,0])/delta[1])
|
2014-07-25 22:08:04 +05:30
|
|
|
if x >=0 and x < options.bins[0] and y >= 0 and y < options.bins[1]: grid[x,y] += 1 if options.weight == None else data[i,2]
|
2012-05-08 00:39:11 +05:30
|
|
|
|
|
|
|
if (range[2] == 0.0).all(): range[2] = [grid.min(),grid.max()]
|
2014-08-07 00:36:33 +05:30
|
|
|
if (range[2] == 0.0).all(): # no data in grid?
|
2014-05-19 19:13:26 +05:30
|
|
|
file['croak'].write('no data found on grid...\n')
|
2014-08-07 00:36:33 +05:30
|
|
|
range[2,:] = np.array([0.0,1.0]) # making up arbitrary z range
|
2012-05-08 00:39:11 +05:30
|
|
|
if options.type[2].lower() == 'log':
|
2014-08-07 00:36:33 +05:30
|
|
|
grid = np.log(grid)
|
|
|
|
range[2] = np.log(range[2])
|
2014-05-19 19:13:26 +05:30
|
|
|
|
2012-05-08 00:39:11 +05:30
|
|
|
delta[2] = range[2,1]-range[2,0]
|
2014-05-19 19:13:26 +05:30
|
|
|
|
2012-05-08 00:39:11 +05:30
|
|
|
|
|
|
|
i = 0
|
|
|
|
for x in xrange(options.bins[0]):
|
|
|
|
for y in xrange(options.bins[1]):
|
2014-05-19 19:13:26 +05:30
|
|
|
result[i,:] = [range[0,0]+delta[0]/options.bins[0]*(x+0.5),
|
|
|
|
range[1,0]+delta[1]/options.bins[1]*(y+0.5),
|
2012-05-08 00:39:11 +05:30
|
|
|
min(1.0,max(0.0,(grid[x,y]-range[2,0])/delta[2]))]
|
2014-08-07 00:36:33 +05:30
|
|
|
if options.type[0].lower() == 'log': result[i,0] = np.exp(result[i,0])
|
|
|
|
if options.type[1].lower() == 'log': result[i,1] = np.exp(result[i,1])
|
2013-12-10 05:57:22 +05:30
|
|
|
if options.invert: result[i,2] = 1.0-result[i,2]
|
2012-05-08 00:39:11 +05:30
|
|
|
i += 1
|
2014-08-07 00:36:33 +05:30
|
|
|
|
|
|
|
# ------------------------------------------ output result -----------------------------------------
|
2012-05-08 00:39:11 +05:30
|
|
|
file['output'].write('1\thead\n')
|
|
|
|
file['output'].write('bin_%s\tbin_%s\tz\n'%(headers[options.data[0]-1],headers[options.data[1]-1]))
|
2014-08-07 00:36:33 +05:30
|
|
|
np.savetxt(file['output'],result)
|
2014-08-26 02:43:39 +05:30
|
|
|
file['output'].close() # close output ASCII table
|
2014-08-07 00:36:33 +05:30
|
|
|
if file['name'] != 'STDIN':
|
|
|
|
os.rename(file['name']+'_tmp',\
|
|
|
|
os.path.join(os.path.dirname(file['name']),prefix+os.path.basename(file['name'])))
|