We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
quickinfo
Comparing
pdal info --summary autzen.laz | jq .
against
import pdal r = pdal.Reader(filename="autzen.laz") p = r.pipeline() p.quickinfo
The python output is missing metadata, e.g. offsets and scales.
The difference is due to the info kernel here
https://github.com/PDAL/PDAL/blob/master/kernels/InfoKernel.cpp#L182
and calling inspect here
inspect
https://github.com/PDAL/PDAL/blob/master/io/LasReader.cpp#L254
Comparing
against
The python output is missing metadata, e.g. offsets and scales.
The difference is due to the info kernel here
https://github.com/PDAL/PDAL/blob/master/kernels/InfoKernel.cpp#L182
and calling
inspectherehttps://github.com/PDAL/PDAL/blob/master/io/LasReader.cpp#L254