Ticket #64356: iowa_rural_surface.json

File iowa_rural_surface.json, 713 bytes (added by ATL-Flaneur (Andreas Yankopolus), 2 years ago)

PDAL pipeline to reproduce the error.

Line 
1{
2  "pipeline": [
3    "./Iowa_Rural_LiDAR/Iowa Rural LiDAR Point Cloud/*.las",
4    {
5      "type": "filters.range",
6      "limits": "Classification![7:7]"
7    },
8    {
9      "type": "filters.range", 
10      "limits": "Classification![18:18]"
11    },
12    {
13      "type": "filters.range", 
14      "limits": "ReturnNumber[1:1]"
15    },
16    {
17      "type":"filters.reprojection",
18      "out_srs": "EPSG:4326"
19    },
20    {
21      "type": "writers.gdal", 
22      "filename": "iowa_rural_surface.tiff",
23      "gdaldriver": "GTiff", 
24      "dimension": "Z", 
25      "output_type": "idw", 
26      "data_type": "float32", 
27      "bounds": "([-91.25, -91.18], [43.27, 43.32])",
28      "resolution": 9.259259259259259e-05
29    }
30  ]
31}