py3dtiles.tileset package

class py3dtiles.tileset.BoundingVolume[source]

Bases: RootProperty[_BoundingVolumeJsonDictT], Generic[_BoundingVolumeJsonDictT]

Abstract class used as interface for box, region and sphere

abstract add(other: BoundingVolume[Any]) None[source]
abstract classmethod from_dict(bounding_volume_dict: _BoundingVolumeJsonDictT) Self[source]
abstract get_center() ndarray[Any, dtype[float64]][source]
is_box() bool[source]
is_region() bool[source]
is_sphere() bool[source]
abstract sync_with_children(owner: Tile) None[source]
abstract to_dict() _BoundingVolumeJsonDictT[source]
abstract transform(transform: ndarray[Any, dtype[float64]]) None[source]
abstract translate(offset: ndarray[Any, dtype[float64]]) None[source]
class py3dtiles.tileset.BoundingVolumeBox[source]

Bases: BoundingVolume[BoundingVolumeBoxDictType]

A box bounding volume as defined in the 3DTiles specifications i.e. an array of 12 numbers that define an oriented bounding box: - The first three elements define the x, y, and z values for the center of the box. - The next three elements (with indices 3, 4, and 5) define the x axis direction and half-length. - The next three elements (with indices 6, 7, and 8) define the y axis direction and half-length. - The last three elements (indices 9, 10, and 11) define the z axis direction and half-length.

Note that, by default, a box bounding volume doesn’t need to be aligned with the coordinate axis. Still in general, computing the box bounding volume of two box bounding volumes won’t necessarily yield a box that is aligned with the coordinate axis (although this computation might require some fitting algorithm e.g. the principal component analysis method. Yet in sake of simplification (and numerical efficiency), when asked to “add” (i.e. to find the enclosing box of) two (or more) box bounding volumes this class resolves to compute the “canonical” fitting/enclosing box i.e. a box that is parallel to the coordinate axis.

add(other: BoundingVolume[Any]) None[source]

Compute the ‘canonical’ bounding volume fitting this bounding volume together with the added bounding volume. Again (refer above to the class definition) the computed fitting bounding volume is generically not the smallest one (due to its alignment with the coordinate axis). :param other: another box bounding volume to be added with this one

classmethod from_dict(bounding_volume_box_dict: BoundingVolumeBoxDictType) Self[source]
static get_box_array_from_mins_maxs(mins_maxs: ndarray[Any, dtype[float64]]) ndarray[Any, dtype[float64]][source]
Parameters:

mins_maxs – the list [x_min, y_min, z_min, x_max, y_max, z_max] that is the boundaries of the box along each coordinate axis

Returns:

the smallest box (as an array, as opposed to a BoundingVolumeBox instance) that encloses the given list of (3D) points and that is parallel to the coordinate axis.

static get_box_array_from_point(points: list[ndarray[Any, dtype[float64]]]) ndarray[Any, dtype[float64]][source]
Parameters:

points – a list of 3D points

Returns:

the smallest box (as an array, as opposed to a BoundingVolumeBox instance) that encloses the given list of (3D) points and that is parallel to the coordinate axis.

get_canonical_as_array() ndarray[Any, dtype[float64]][source]
Returns:

the smallest enclosing box (as an array) that is parallel to the coordinate axis

get_center() ndarray[Any, dtype[float64]][source]
get_corners() list[ndarray[Any, dtype[float64]]][source]
Returns:

the corners (3D points) of the box as a list

is_box() bool[source]
static is_valid(box: ndarray[Any, dtype[float64]]) tuple[bool, str][source]
set_from_list(box_list: _SupportsArray[dtype[Any]] | _NestedSequence[_SupportsArray[dtype[Any]]] | bool | int | float | complex | str | bytes | _NestedSequence[bool | int | float | complex | str | bytes]) None[source]
set_from_mins_maxs(mins_maxs: ndarray[Any, dtype[float64]]) None[source]
Parameters:

mins_maxs – the array [x_min, y_min, z_min, x_max, y_max, z_max] that is the boundaries of the box along each coordinate axis

set_from_points(points: list[ndarray[Any, dtype[float64]]]) None[source]
sync_with_children(owner: Tile) None[source]
to_dict() BoundingVolumeBoxDictType[source]
transform(transform: ndarray[Any, dtype[float64]]) None[source]

Apply the provided transformation matrix (4x4) to the box :param transform: transformation matrix (4x4) to be applied

translate(offset: ndarray[Any, dtype[float64]]) None[source]

Translate the box center with the given offset “vector” :param offset: the 3D vector by which the box should be translated

class py3dtiles.tileset.RootProperty[source]

Bases: ABC, Generic[_JsonDictT]

One the 3DTiles notions defined as an abstract data model through a schema of the 3DTiles specifications (either core of extensions).

add_root_properties_to_dict(dict_data: _JsonDictT) _JsonDictT[source]
abstract classmethod from_dict(data_dict: _JsonDictT) Self[source]
set_properties_from_dict(dict_data: _JsonDictT) None[source]
abstract to_dict() _JsonDictT[source]
class py3dtiles.tileset.Tile(geometric_error: float = 500, bounding_volume: BoundingVolume[Any] | None = None, transform: ndarray[Any, dtype[float64]] = array([[1., 0., 0., 0.], [0., 1., 0., 0.], [0., 0., 1., 0.], [0., 0., 0., 1.]]), refine_mode: Literal['ADD', 'REPLACE'] = 'ADD', content_uri: Path | None = None)[source]

Bases: RootProperty[TileDictType]

add_child(tile: Tile) None[source]
delete_on_disk(root_uri: Path, delete_sub_tileset: bool = False) None[source]

Deletes all files linked to the tile and its children. The uri of the folder where tileset is, should be defined.

Parameters:
  • root_uri – The folder where tileset is

  • delete_sub_tileset – If True, all tilesets present as tile content will be removed as well as their content.

If False, the linked tilesets in tiles won’t be removed.

classmethod from_dict(tile_dict: TileDictType) Tile[source]
get_all_children() list[Tile][source]
Returns:

the recursive (across the children tree) list of the children tiles

get_or_fetch_content(root_uri: Path | None) TileContent | TileSet[source]

If a tile_content content has been set, returns this content. If the tile content is None and a tile_content uri has been set, the tile will load the file and return its content.

Parameters:

root_uri – the base uri which tile.content_uri is relative to. Usually the directory containing the tileset containing this tile.

get_refine_mode() Literal['ADD', 'REPLACE'][source]
has_content() bool[source]

Returns if there is a tile content (loaded or not).

has_content_loaded() bool[source]

Returns if there is a tile content loaded in this tile.

set_refine_mode(mode: Literal['ADD', 'REPLACE']) None[source]
sync_bounding_volume_with_children() None[source]
to_dict() TileDictType[source]
write_content(root_uri: Path | None) None[source]

Write (or overwrite) the tile content to the directory specified as parameter and withing the relative filename designated by the tile’s content uri.

Parameters:

root_uri – the base uri of this tile, usually the folder where the tileset is

class py3dtiles.tileset.TileSet(geometric_error: float = 500, root_uri: Path | None = None)[source]

Bases: RootProperty[TilesetDictType]

delete_on_disk(tileset_path: Path, delete_sub_tileset: bool = False) None[source]

Deletes all files linked to the tileset. The uri of the tileset should be defined.

Parameters:
  • tileset_path – The path of the tileset

  • delete_sub_tileset – If True, all tilesets present as tile content will be removed as well as their content.

If False, the linked tilesets in tiles won’t be removed.

classmethod from_dict(tileset_dict: TilesetDictType) Self[source]
static from_file(tileset_path: Path) TileSet[source]
get_all_tile_contents() Generator[TileContent | TileSet, None, None][source]
to_dict() TilesetDictType[source]

Convert to json string possibly mentioning used schemas

to_json() str[source]
write_as_json(tileset_path: Path) None[source]

Write the tileset as a JSON file. :param tileset_path: the path where the tileset will be written

write_to_directory(tileset_path: Path, overwrite: bool = False) None[source]

Write (or overwrite), to the directory whose name is provided, the TileSet that is: - the tileset as a json file and - all the tiles content of the Tiles used by the Tileset. :param tileset_path: the target directory name :param overwrite: delete the tileset (and the content) if already exists

py3dtiles.tileset.number_of_points_in_tileset(tileset_path: Path) int[source]

Subpackages

Submodules