<div dir="ltr"><div>I am wondering if PCL filters in PDAL can be used on alternate dimensions? In my case, Height (above ground) as calculated with the height filter is the dimension in question.<br><br></div>This is my passthrough JSON:<br><div><div><div><div><br>```<br>{<br>    "pipeline":<br>    {<br>        "name": "PassThroughExample",<br>        "filters":<br>        [<br>            {<br>                "name": "PassThrough",<br>                "setFilterFieldName": "Height",<br>                "setFilterLimits":<br>                {<br>                    "min": 0.5,<br>                    "max": 5<br>                }<br>            }<br>        ]<br>    }<br>}<br>```<br><br></div><div>And I am running in docker. Here's my crude and confused BASH wrapper script to which I pass all files matching a find:<br><br>```<br></div><div>#!/bin/bash<br></div><div>pathname="${1%/*}"<br>name=`basename $1 .bpf`<br><br>docker run -v $pathname:/data pdal/master pdal pcl -i //data/"$name".bpf -p //data/5.0.filter.json -o //data/"$name"_5.0.bpf;<br>```<br></div><div>This will work of course if my setFilterFieldName is Z, but not Height (no matter the capitalization.<br><br></div><div>Thanks in advance,<br></div><div>Best,<br></div><div>Steve<br></div></div></div></div></div>