Skip to main content

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:4326 footprint, zoom range, dtype/nbands/nodata, and the full reader metadata as info. queries.selection() is the one query behind every lookup — asset selection ordered by layer priority then resolution — composed by RasterIndex into assets_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) and footprint_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, not polygon, 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

macrostrat_raster_index-0.3.0.tar.gz (30.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

macrostrat_raster_index-0.3.0-py3-none-any.whl (37.7 kB view details)

Uploaded Python 3

File details

Details for the file macrostrat_raster_index-0.3.0.tar.gz.

File metadata

  • Download URL: macrostrat_raster_index-0.3.0.tar.gz
  • Upload date:
  • Size: 30.8 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

Hashes for macrostrat_raster_index-0.3.0.tar.gz
Algorithm Hash digest
SHA256 0920677f219f58023c31698b67f8c0b4a7d94625c654b25a4f672e2028ae887f
MD5 ecda7ddf905d135b941ba17ad8c0d16c
BLAKE2b-256 b66969ef0fc0f67dd9203d3adf8ba794db60b440961b75b283734d57a5d4dc99

See more details on using hashes here.

File details

Details for the file macrostrat_raster_index-0.3.0-py3-none-any.whl.

File metadata

  • Download URL: macrostrat_raster_index-0.3.0-py3-none-any.whl
  • Upload date:
  • Size: 37.7 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

Hashes for macrostrat_raster_index-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 c86177bb96c3e7809e1ac226a2b723510f8e0b61e9dbc8c44cdf82aeeb4483b9
MD5 97b9233a6af27af9273a663916f55d50
BLAKE2b-256 9e6931056e8d3a4f43528d16841dd151ce9300f24df835c2c031a9382ea49130

See more details on using hashes here.

Release history Release notifications | RSS feed

0.3.1

2 files

This release

0.3.0 This release

2 files

0.2.0

2 files

0.1.1

2 files

0.1.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page