Hi there,
The data is parseable. I created a 2 line file from the points you
supplied and can parse the file but not with any of the options you
have tried. From your command syntax you have a couple of issues.
First the command itself has to be properly structured. Command line
options or flags are prefixed with a dash (-) there are dozens of
options for any given command. One option is the input file (-i)
another is output file (-o) which are almost always required. The
order of the options in this case does not matter but as a personal
standard I like to put the command first followed by the input file
then the output file.
At a minimum you would need txt2las -i 611000_7094000_p01.xyz.zip -o
611000_7094000_p01.xyz.zip.laz notice how the options are separated by
a space(The default is a space you can change this) on each side. To
parse the file you also need the -parse option. Then the command would
look like txt2las -i 611000_7094000_p01.xyz.zip -o
611000_7094000_p01.xyz.zip.laz -parse <parse options>. Here is where
you are running into your second issue. You need to map the 7 fields
in your file to valid options of the parse command.
For example fields 2,3,4 are the x y z coordinate values so txt2las -i
611000_7094000_p01.xyz.zip -o 611000_7094000_p01.xyz.zip.laz -parse
sxyzsss will work fine skipping the other fields with the s. You need
to figure out what the rest of the columns are and use the correct
parse option.
From the help docs the supported entries are:
x - x coordinate as a double
y - y coordinate as a double
z - z coordinate as a double
X - x coordinate as unscaled integer
Y - y coordinate as unscaled integer
Z - z coordinate as unscaled integer
a - scan angle
i - intensity
n - number of returns for given pulse
r - number of this return
c - classification number
C - classification name
u - user data
p - point source ID
e - edge of flight line
d - direction of scan flag
R - red channel of RGB color
G - green channel of RGB color
B - blue channel of RGB color
M - vertex index number
As far as I can tell txt2las -i 611000_7094000_p01.xyz.zip -o
611000_7094000_p01.xyz.zip.laz -parse pxyzsss is as far as I can get.
I don't know how to flag the last 3 columns of your file the Echo,
Date and Hour as I am not familiar with the format.
Good Luck