docker run -v /c/Users/Howard/PDAL:/data -t pdal/pdal \
    pdal translate \
    /data/exercises/analysis/ground/CSite1_orig-utm.laz \
    /data/exercises/translation/csite-dd.laz \
    reprojection \
    --filters.reprojection.out_srs="EPSG:4326" \
    --writers.las.scale_x=0.0000001 \
    --writers.las.scale_y=0.0000001 \
    --writers.las.offset_x="auto" \
    --writers.las.offset_y="auto"
