geo3d.pdal.readers¶
Attributes¶
Functions¶
Module Contents¶
- geo3d.pdal.readers.READER_TYPES¶
- geo3d.pdal.readers.las(filename: str, count: int, override_srs: str, nosrs: bool) Dict[str, Any]¶
Create readers.las’s dictionary.
- Parameters:
filename (str) – The path of the file to be read.
count (int) – The maximum number of points to read.
override_srs (str) – Spatial reference to apply to the data.
nosrs (bool) – Don’t read the SRS VLRs.
- geo3d.pdal.readers.ept(filename: str, resolution: float | None = None, bounds: str | None = None, token: str | None = None) Dict[str, Any]¶
Create readers.ept’s dictionary.
- Parameters:
filename (str) – The path to the EPT resource (.json format).
resolution (Optional[float]) – A point resolution used to select lower-resolution level of the hierarchy. Defaults to None, reading all points.
bounds (Optional[str]) – A 2D or 3D bounds to select from the ept dataset. Defaults to None.
token (Optional[str]) – A token to use to access the EPT file. Default to None.
- Returns:
The reader dictionary.
- Return type:
Dict[str, Any]