DAMASK_EICMD/processing/post/vtk_pointCloud.py

46 lines
1.3 KiB
Python
Raw Normal View History

#!/usr/bin/env python3
import os
import sys
2019-12-22 11:37:34 +05:30
from io import StringIO
from optparse import OptionParser
import damask
2014-12-19 00:56:52 +05:30
scriptName = os.path.splitext(os.path.basename(__file__))[0]
scriptID = ' '.join([scriptName,damask.version])
2014-12-19 00:56:52 +05:30
2014-12-19 00:56:52 +05:30
# --------------------------------------------------------------------
# MAIN
# --------------------------------------------------------------------
2019-02-16 22:11:56 +05:30
parser = OptionParser(option_class=damask.extendableOption, usage='%prog options [ASCIItable(s)]', description = """
2015-05-21 05:43:50 +05:30
Produce a VTK point cloud dataset based on coordinates given in an ASCIItable.
2014-12-19 00:56:52 +05:30
""", version = scriptID)
parser.add_option('-p',
'--pos', '--position',
dest = 'pos',
type = 'string', metavar = 'string',
2016-04-23 00:50:36 +05:30
help = 'label of coordinates [%default]')
parser.set_defaults(pos = 'pos',
)
(options, filenames) = parser.parse_args()
if filenames == []: filenames = [None]
for name in filenames:
2020-03-19 13:32:50 +05:30
damask.util.report(scriptName,name)
2020-03-19 13:32:50 +05:30
table = damask.Table.from_ASCII(StringIO(''.join(sys.stdin.read())) if name is None else name)
v = damask.VTK.from_polyData(table.get(options.pos))
2020-03-19 13:32:50 +05:30
if name:
v.write(os.path.splitext(name)[0])
else:
sys.stdout.write(v.__repr__())