[osgeo4w-dev] [osgeo4w] #602: pdal filters merge does not work on .las files without projection in pdal 1.8.0
OSGeo4W
trac_osgeo4w at osgeo.org
Wed Jun 5 04:35:27 PDT 2019
#602: pdal filters merge does not work on .las files without projection in pdal
1.8.0
-------------------+---------------------------
Reporter: jarren | Owner: osgeo4w-dev@…
Type: defect | Status: new
Priority: major | Component: Package
Version: | Keywords: pdal
-------------------+---------------------------
I have a number of point clouds in las format that I want to merge in one
laz file. To do this I use a pdal pipeline with the filters.merge option.
However on a pc with pdal 1.7.2 this works fine but on a pc with pdal
1.8.0 it does not.
The point clouds have no CRS attached, I think this is the issue because
when I create a new point cloud that does have a CRS filters.merge does
work.
pdal command:
{{{
#!div style="font-size: 100%"
{{{#!python
pdal pipeline merge_json.json
}}}
}}}
merge_json.json:
{{{
#!div style="font-size: 100%"
{{{#!python
{
"pipeline" : [
"item1.las", "item2.las",
{
"type":"filters.merge"
},
{
"type":"filters.crop",
"bounds":"([xmin, xmax], [ymin, ymax])"
},
{
"type":"writers.las",
"type":"compression.laszip",
"type":"filenae.file.laz"
}
]
}
}}}
}}}
--
Ticket URL: <https://trac.osgeo.org/osgeo4w/ticket/602>
OSGeo4W <http://trac.osgeo.org/osgeo4w>
OSGeo4W is the Windows installer and package environment for the OSGeo stack.
More information about the osgeo4w-dev
mailing list