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 to None.

  • 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 a TileDBCreateOptions object.

  • context – If provided, the SOMATileDBContext to use when creating and opening this scene

  • tiledb_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.