Opened 5 years ago

Closed 3 years ago

#602 closed defect (outdated)

pdal filters merge does not work on .las files without projection in pdal 1.8.0

Reported by: jarren Owned by: osgeo4w-dev@…
Priority: major Component: Package
Version: Keywords: pdal
Cc:

Description

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:

pdal pipeline merge_json.json

merge_json.json:

{
"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"
}
]
}

Change History (1)

comment:1 by jef, 3 years ago

Resolution: outdated
Status: newclosed
Note: See TracTickets for help on using tickets.