Overview
pdal.dimensions provides access to all valid dimension names recognized by PDAL. This is useful for validating dimension names before using them in pipelines or for discovering what dimensions are available.
Usage
Common dimensions
PDAL supports many standard dimensions for point cloud data:- X, Y, Z - Spatial coordinates
- Intensity - Return intensity value
- ReturnNumber - Pulse return number
- NumberOfReturns - Total returns for the pulse
- Classification - Point classification
- Red, Green, Blue - RGB color values
- GpsTime - GPS timestamp
Implementation
From__init__.py:
Example from tests
test/test_pipeline.py:test_dimensions for the complete test.