"""
Reads points from a .xyz or .csv file
Consider XYZIRGB format following FME documentation(*). We do the
following hypothesis and enhancements:
- A header line defining columns in CSV style may be present, but will be ignored (please open an issue if you have a use case where the header is important)
- The separator separating the columns is automagically guessed by the
reader. This is generally fail safe. It will not harm to use commonly
accepted separators like space, tab, colon, semi-colon.
- The order of columns is fixed. The reader does the following assumptions:
- 3 columns mean XYZ
- 4 columns mean XYZI
- 6 columns mean XYZRGB
- 7 columns mean XYZIRGB
- 8 columns mean XYZIRGB followed by classification data. Classification data must be integers only.
- all columns after the 8th column will be ignored.
NOTE: we assume RGBÂ are 8 bits components.
(*) See: https://docs.safe.com/fme/html/FME_Desktop_Documentation/FME_ReadersWriters/pointcloudxyz/pointcloudxyz.htm
"""
import csv
import math
from collections.abc import Iterator
from io import TextIOBase
from pathlib import Path
from typing import Any, Optional
import numpy as np
import numpy.typing as npt
from pyproj import Transformer
from py3dtiles.typing import (
ExtraFieldsDescription,
MetadataReaderType,
OffsetScaleType,
PortionItemType,
)
[docs]
def get_csv_infos(f: TextIOBase) -> tuple[bool, int, str]:
file_sample = f.read(2048) # For performance reasons we just snif the first part
dialect = csv.Sniffer().sniff(file_sample)
has_header = csv.Sniffer().has_header(file_sample)
f.seek(0)
# skip eventual header
if has_header:
f.readline()
feature_nb = len(f.readline().split(dialect.delimiter))
f.seek(0)
return has_header, feature_nb, dialect.delimiter
[docs]
def get_colors(
points: npt.NDArray[np.float32],
feature_nb: int,
color_scale: Optional[float],
with_rgb: bool,
) -> Optional[npt.NDArray[np.uint8]]:
if with_rgb and feature_nb < 6:
return np.zeros((len(points), 3), dtype=np.uint8)
elif with_rgb:
start = 4 if feature_nb >= 7 else 3
colors = points[:, start : start + 3]
if color_scale is not None:
colors = np.clip(colors * color_scale, 0, 255)
return colors.astype(np.uint8)
else:
return None
[docs]
def run(
filename: Path,
offset_scale: OffsetScaleType,
portion: PortionItemType,
transformer: Optional[Transformer],
color_scale: Optional[float],
with_rgb: bool,
extra_fields: list[ExtraFieldsDescription],
) -> Iterator[
tuple[
npt.NDArray[np.float32],
Optional[npt.NDArray[np.uint8]],
dict[str, npt.NDArray[Any]],
],
]:
with open(filename) as f:
has_header, feature_nb, delimiter = get_csv_infos(f)
if has_header:
f.readline() # skip first line in case there is a header we promised to ignore
point_count = portion[1] - portion[0]
step = min(point_count, max((point_count) // 10, 100000))
f.seek(portion[2])
for _ in range(0, point_count, step):
points = np.zeros((step, feature_nb), dtype=np.float32)
for j in range(step):
line = f.readline()
if not line:
points = np.resize(points, (j, feature_nb))
break
points[j] = [float(s) for s in line.split(delimiter)[:feature_nb]]
x, y, z = (points[:, c] for c in [0, 1, 2])
if transformer:
x, y, z = transformer.transform(x, y, z)
x = (x + offset_scale[0][0]) * offset_scale[1][0]
y = (y + offset_scale[0][1]) * offset_scale[1][1]
z = (z + offset_scale[0][2]) * offset_scale[1][2]
coords = np.vstack((x, y, z)).transpose()
if offset_scale[2] is not None:
# Apply transformation matrix (because the tile's transform will contain
# the inverse of this matrix)
coords = np.dot(coords, offset_scale[2])
coords = np.ascontiguousarray(coords.astype(np.float32))
# Read colors: 3 last columns when excluding classification data
colors = get_colors(points, feature_nb, color_scale, with_rgb)
extra_fields_data = {}
for field in extra_fields:
if field.name == "intensity":
data = points[:, 3]
elif field.name == "classification":
data = points[:, 7]
else:
data = np.zeros(len(points), dtype=field.dtype)
extra_fields_data[field.name] = np.array(data, dtype=np.uint8)
yield coords, colors, extra_fields_data