Skip to content

Point Cloud🍋

PointCloud (GeoRefObject) 🍋

Object representing an arbitrary 3D cloud of points defined by its X, Y, Z geometry

Parameters:

Name Type Description Default
name str

object name.

required
xyz ~Data

geometry data, respectively X, Y and Z.

required

element_count(self) 🍋

Return the number of points in the cloud of points. Same as sample_count().

Returns:

Type Description
int

Number of points.

sample_count(self) 🍋

Return the number of points in the cloud of points. Same as element_count().

Returns:

Type Description
int

Number of points.

Back to top