[pdal] (pdal pipeline Error) GDAL failure (6) Cannot find coordinate operations from

Andrew Bell andrew.bell.ia at gmail.com
Tue Apr 27 04:42:38 PDT 2021


On Tue, Apr 27, 2021 at 5:51 AM Peter Lim <peter.lim at gpslands.com> wrote:

> Hi,
>
>
>
> I’m trying to crop a LAS file using filters.crop but I get this error:
>
>
>
> (pdal pipeline Error) GDAL failure (6) Cannot find coordinate operations
> from `EPSG:32648' to
> `ENGCRS["unnamed",EDATUM[""],CS[Cartesian,2],AXIS["(E)",east,ORDER[1],LENGTHUNIT["metre",1,ID["EPSG",9001]]],AXIS["(N)",north,ORDER[2],LENGTHUNIT["metre",1,ID["EPSG",9001]]]]'
>
> PDAL: filters.crop: Unable to reproject bounds.
>

Your data seems to be in a custom engineering CRS. PDAL can't convert your
crop boundary from EPSG:32648 to your custom CRS because no transformation
exists in PROJ, the library used for this purpose. You might ask on the
PROJ list or perhaps someone else on this list will know how to deal
with this.

 I’m using the following pipeline:
>
>
>
> [
>
>     {
>
>         "type":"readers.las",
>
>         "filename":"*.las",
>
>
> "default_srs":"EPSG:32648"
>
>
>     },
>
>     {
>
>         "type": "filters.merge"
>
>     },
>
>     {
>
>         "type":"filters.crop",
>
>         "bounds":"([364035,364085],[142446,142486],[-1000, 1000])",
>
>         "a_srs":"EPSG:32648"
>
>     },
>
>     {
>
>         "type":"writers.las",
>
>         "filename":"output.las",
>
>         "a_srs":"EPSG:32648"
>
>     }
>
> ]
>


-- 
Andrew Bell
andrew.bell.ia at gmail.com
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.osgeo.org/pipermail/pdal/attachments/20210427/ff84101c/attachment-0001.html>


More information about the pdal mailing list