tiledbsoma.PointCloudDataFrame¶
- class tiledbsoma.PointCloudDataFrame(handle: PointCloudDataFrameWrapper, **kwargs: Any)¶
A specialized SOMA DataFrame for storing collections of points in multi-dimensional space.
The
PointCloudDataFrame
class is designed to efficiently store and query point data, where each point is represented by coordinates in one or more spatial dimensions (e.g., x, y, z) and may have additional columns for associated attributes.Lifecycle
Experimental.
- __init__(handle: PointCloudDataFrameWrapper, **kwargs: Any)¶
Internal-only common initializer steps.
This function is internal; users should open TileDB SOMA objects using the
create()
andopen()
factory class methods.
Methods
__init__
(handle, **kwargs)Internal-only common initializer steps.
exists
(uri[, context, tiledb_timestamp])Finds whether an object of this type exists at the given URI.
create
(uri, *, schema[, coordinate_space, ...])Creates a new
PointCloudDataFrame
at the given URI.open
(uri[, mode, tiledb_timestamp, context, ...])Opens this specific type of SOMA object.
reopen
(mode[, tiledb_timestamp])Return a new copy of the SOMAObject with the given mode at the current Unix timestamp.
close
()Release any resources held while the object is open.
Raises an error if the object is not open for writing.
keys
()Returns the names of the columns when read back as a spatial dataframe.
read
([coords, column_names, batch_size, ...])Reads a user-defined slice of data into Arrow tables.
write
(values, *[, platform_config])Writes the data from an Arrow table to the persistent object.
Returns metadata about the array that is not encompassed within the Arrow Schema, in the form of a PlatformConfig (deprecated).
Retrieves the non-empty domain for each dimension, namely the smallest and largest indices in each dimension for which the array/dataframe has data occupied.
read_spatial_region
([region, column_names, ...])Reads data intersecting a user-defined region of space into a
SpatialRead
with data in Arrow tables.Attributes
Accessor for the object's storage URI.
True if the object has been closed.
A value storing implementation-specific configuration information.
The metadata of this SOMA object.
The mode this object was opened in, either
r
orw
.A string describing the SOMA type of this object.
The time that this object was opened in UTC.
The time this object was opened, as millis since the Unix epoch.
The names of the axes of the coordinate space the data is defined on.
Coordinate space for this point cloud dataframe.
Returns the number of rows in the dataframe.
Returns a tuple of minimum and maximum values, inclusive, storable on each index column of the dataframe.
Returns index (dimension) column names.
Returns data schema, in the form of an Arrow Schema.