macrostrat.raster_index
An index of cloud-optimized rasters (COGs), grouped into named layers that a tile server can serve as single mosaics.
Nothing here stores pixels. A row in raster_layers.raster is a reference to a
COG in object storage plus the metadata needed to decide whether reading it is
worthwhile for a given tile: its footprint, its native zoom range, and its data
type. The schema name is raster_layers rather than raster/rasters to stay
clear of PostGIS Raster's vocabulary.
Serving these layers is macrostrat.raster_layers.
Usage
from macrostrat.raster_index import RasterIndex, LayerDefinition
index = RasterIndex("postgresql://localhost:5432/macrostrat")
index.create_schema() # or apply `schema_files()` through your own system
index.register_layer(
LayerDefinition(slug="emit-minerals", name="EMIT mineral maps", maxzoom=14)
)
index.add_raster(
"https://storage.example.org/rasters/nevada.tif", layer="emit-minerals"
)
index.assets_for_tile(x=180, y=411, z=10, layers=["emit-minerals"])
Schema
schema_files() returns the SQL defining the schema, in application order, so a
host application can fold it into its own schema management rather than calling
create_schema(). It is tables and indexes only — the selection logic is
query text in queries.py, not stored functions, so it ships and versions with
the code that calls it rather than being a second artifact to keep in step:
raster_layers.layer— a named mosaic, and the defaults its rasters inherit (zoom range, rescale range, colormap).raster_layers.raster— one COG:href, EPSG:4326footprint, zoom range,dtype/nbands/nodata, and the full reader metadata asinfo.queries.selection()is the one query behind every lookup — asset selection ordered by layer priority then resolution — composed byRasterIndexintoassets_for_tile/assets_for_bbox,should_generate_tile(whether any asset actually resolves at this zoom, for cache warmers and render short-circuits),layer_bounds,footprints(GeoJSON) andfootprint_tile(MVT).
CLI
raster-index reads RASTER_INDEX_DATABASE (or DATABASE_URL):
raster-index define-layer emit-minerals --name "EMIT mineral maps"
raster-index scan https://storage.example.org/remote-sensing-data/emit-mineral-maps/ \
--layer emit-minerals
raster-index set-colormap emit-minerals --from https://storage.example.org/.../nevada.tif
raster-index assets 10 180 411 --layer emit-minerals
The connection is a parameter of the app itself: --database, or those
environment variables. A host application that already knows its own connection
(Macrostrat mounts these as macrostrat raster) calls
set_default_connection(url_or_callable) once, and its users never pass
--database — though it still works, and still wins. Scanning object stores
needs the s3 extra (boto3), whichever URL form you use — an https:// bucket
URL is rewritten into an endpoint/bucket/prefix and listed through the same
S3 API, rather than being a second code path.
Known limitations
- Footprints are bounding boxes, so rasters crossing the antimeridian are
indexed incorrectly. The column is typed
geometry, notpolygon, so a mask-derived footprint can replace them without a migration. - WebMercatorQuad only. Alternate tile grids (and non-Earth bodies, as in mars-tiler) would need a per-grid bounds table.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file macrostrat_raster_index-0.3.1.tar.gz.
File metadata
- Download URL: macrostrat_raster_index-0.3.1.tar.gz
- Upload date:
- Size: 31.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
570a6e75cdb37963accbbc0aaaf2d36b66d0fbf52b382573844325bfa4da1720
|
|
| MD5 |
3817b02b9fd3969e75a28e5c207e7b35
|
|
| BLAKE2b-256 |
6618e58e18254995b4d5c0f1b8060c99a7408198a7e5606133d2fbcceb1d905e
|
File details
Details for the file macrostrat_raster_index-0.3.1-py3-none-any.whl.
File metadata
- Download URL: macrostrat_raster_index-0.3.1-py3-none-any.whl
- Upload date:
- Size: 38.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
00a29f5ec7c72616030b65316036e528ffd2f4ccc6dec9f08625c72c7de0877e
|
|
| MD5 |
fba79af8fd912a05e6182a5ea5926a23
|
|
| BLAKE2b-256 |
3e33edab60dd1db6463092d98cf16d63a8a7af239d05754cfc527ebc65ef32bb
|