Module pygw.index

This module contains classes that are used in creating spatial and spatial/temporal indices.

It contains the following import shortcuts:

from pygw.index import IndexBuilder
from pygw.index import Index
from pygw.index import SpatialIndexBuilder
from pygw.index import SpatialTemporalIndexBuilder
Source code
#
# Copyright (c) 2013-2022 Contributors to the Eclipse Foundation

#
# See the NOTICE file distributed with this work for additional information regarding copyright
# ownership. All rights reserved. This program and the accompanying materials are made available
# under the terms of the Apache License, Version 2.0 which accompanies this distribution and is
# available at http://www.apache.org/licenses/LICENSE-2.0.txt
# ===============================================================================================
"""
This module contains classes that are used in creating spatial and spatial/temporal indices.

It contains the following import shortcuts:
```python
from pygw.index import IndexBuilder
from pygw.index import Index
from pygw.index import SpatialIndexBuilder
from pygw.index import SpatialTemporalIndexBuilder
```
"""

from .index_builder import IndexBuilder
from .index import Index
from .spatial_index_builder import SpatialIndexBuilder
from .spatial_temporal_index_builder import SpatialTemporalIndexBuilder

Sub-modules

pygw.index.index
pygw.index.index_builder
pygw.index.spatial_index_builder
pygw.index.spatial_temporal_index_builder