pdal translate, pdal pipeline, pdal info)Try some of the following
To parse that mess you can use jq in bash (on linux or mac). If you want to find the bounds for instance.
I think in Powershell that would be
pdal info --summary bird.laz | ConvertFrom-Json | Select-Object -ExpandProperty summary | Select-Object -ExpandProperty boundsReproject something …
pdal translate your.laz your_26911.laz filters.reprojection --filters.reprojection.out_srs="EPSG:26911"Translate an entire directory of laz files in parallel using the amazing and nearly infallible GNU Parallel (Linux and Mac only, also possible using Windows Subsystem for Linux (WSL)),
ls your_lidar_directory | parallel 'pdal translate your_lidar_directory/{} your_output_directory/{.}_26911.laz filters.reprojection --filters.reprojection.out_srs="EPSG:26911"'I am not going to discuss pipelines at the moment. We will use them shortly in python-pdal though. Its worth noting that using the pdal pipeline utility is often desirable for simplicity (or to us GNU Parallel with it).