I am using Mini forge and have PDAL installed in my computer. I cannot get the PDAL to output the output.las file . If I create an empty las file for the output , nothing happens and if I don't create it in the directory there is an error.
this is my line in the mini forge command prompt: pdal pipeline autzen.laz shape-clip.json.
The input laz file is fine , I have viewed it using cloud compare. Here is the code for the shape-clip: [
{
"type":"readers.las",
"filename":"C:\\Users\\502011\\OneDrive - Amey plc\\Documents\\Programming\\Python\\Point Cloud Processig Project\\PDAL tutorials\\Point_cloud_Data.las"
},
{
"type":"filters.overlay",
"dimension":"Classification",
"datasource":"attributes.vrt",
"layer":"OGRGeoJSON",
"column":"CLS"
},
{
"type":"filters.range",
"limits":"Classification[5:5]"
},
{
"type":"writers.las",
"filename":"C:\\Users\\502011\\OneDrive - Amey plc\\Documents\\Programming\\Python\\Point Cloud Processig Project\\PDAL tutorials\\output.las"
}
bearing in mind I added the type recently before I had this:
[ input.laz
{----}, {======}, etc
, output.las
]
i've also tried to no avail:
[ input.las
{----}, {======}, etc
, output.las
]
whats the issue here ?
I was expecting the input las to be transformed and clipped with a section of its point cloud saved to the output.las file.