tiledbsoma.Scene.create¶
- classmethod Scene.create(uri: str, *, coordinate_space: Sequence[str] | CoordinateSpace | None = None, platform_config: Dict[str, Mapping[str, Any]] | object | None = None, context: SOMATileDBContext | None = None, tiledb_timestamp: int | datetime | None = None) Self ¶
Creates a new scene at the given URI.
- Parameters:
uri – The location to create this SOMA scene at.
coordinate_space – Optional coordinate space or the axis names for the coordinate space the scene is defined on. If
None
no coordinate space is set. Defaults toNone
.platform_config – Platform-specific options used to create this scene. This may be provided as settings in a dictionary, with options located in the
{'tiledb': {'create': ...}}
key, or as aTileDBCreateOptions
object.context – If provided, the
SOMATileDBContext
to use when creating and opening this scenetiledb_timestamp – If specified, overrides the default timestamp used to open this object. If unset, uses the timestamp provided by the context.
- Returns:
The newly created scene, opened for writing.
Lifecycle
Experimental.