geoutils.PointCloud.from_array# classmethod PointCloud.from_array(data, crs, data_column=None, use_z=False)[source]# Create point cloud from a 3 x N or N x 3 array of X coordinates, Y coordinates and Z values. Parameters: data (ndarray[tuple[Any, ...], dtype[Union[floating[Any], integer[Any]]]]) – Point cloud coordinates and data values as 3 x N or N x 3 array. crs (CRS) – Coordinate reference system of point cloud. data_column (str | None) – Data column of point cloud. Return type: PointCloud :return Point cloud.