All examples for READTAB
# Reads a table of Comma-Separated Values (CSV) with missing fields
# The missing fields are substituted using the values in preceding lines
# Such tables are generated, for example, by ASCII export from EXCEL
#--------------------------------------------------------
*call readtab table shots
count integer 1
x float 999
y float 999
z float
format csv =same=
file shots.csv # the file contains only (shot,x,y,z) values
# separated by commas
#---------------------------------------------------------