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.2.0.tar.gz (25.5 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.2.0-py3-none-any.whl (31.6 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: macrostrat_raster_index-0.2.0.tar.gz
  • Upload date:
  • Size: 25.5 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.2.0.tar.gz
Algorithm Hash digest
SHA256 786207d31c21100980e3c2f6295b29a66d245cdd8189b270e5cbae1119ae3c36
MD5 478f2165ee354f4feae73c27f93a25d1
BLAKE2b-256 b10debd420e22eca6ef5ac6e607dd719e2d5116d5ac25dfb68caea9b65067177

See more details on using hashes here.

File details

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

File metadata

  • Download URL: macrostrat_raster_index-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 31.6 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.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 e213ba1e83c43ac82fbd8e935d03956d25e2d4957125634a8e2a913c8c63e7c9
MD5 64023bab0a80ff0a8f7ae88f32094fbe
BLAKE2b-256 6c3e5d4cc3fdfafcd6d605ac396320386de58fe55a5f45000a93d5d5e65cf980

See more details on using hashes here.

Release history Release notifications | RSS feed

0.3.1

2 files

0.3.0

2 files

This release

0.2.0 This release

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