<div dir="ltr"><blockquote type="cite"><div><div dir="ltr">Hi Guys,<div><br></div><div>I wasn't sure if this was a bug or me just using the where parameter in Filters.Crop incorrectly so I thought this might be the best place to post my problem.</div><div><br></div><div>I am using PDAL version 2.1.0 taken from Conda</div><div><br></div><div>I'm trying to use Filters.Crop to crop an extruded polygon in 3D space, I thought I could use the polygon parameter to define a 2D polygon in XY space and use the where parameter to ignore points that are outside my defined Z values. </div><div><br></div><div>My problem is that I get this error message: PDAL: filters.crop: Unexpected argument 'where'.</div><div><br></div><div>I am using a pipeline which I'll paste below, any thoughts on what is going wrong? </div><div><br></div><div>Kind Regards,</div><div>Rob</div><div><br></div><div>{<br>  "pipeline": [<br>    {<br>      "filename": "C:/Users/robert.plant/Documents/Testing/Scan5.csv",<br>      "header": "X,Y,Z",<br>      "type": "readers.text"<br>    },<br>    {<br>      "polygon": "POLYGON((-19.7748222351074 15.8164501190186,48.7325973510742 15.8164501190186,48.7325973510742 54.9158058166504,-19.7748222351074 54.9158058166504,-19.7748222351074 15.8164501190186))",<br>      "outside": false,<br>      "type": "filters.crop",<br> "where": "(Z > -33 || Z < -60)"  <br>    },<br>    {<br>      "type": "writers.las",<br>      "filename": "C:\\Users\\robert.plant\\Documents\\Testing\\CroppedScan5.las",<br>      "compression": "none"<br>    }<br>  ]<br>}</div></div></div></blockquote></div>