Documentation Index
Fetch the complete documentation index at: https://mintlify.com/terrafloww/rasteret/llms.txt
Use this file to discover all available pages before exploring further.
Method Signature
Parameters
Area(s) of interest to load. Accepts
(minx, miny, maxx, maxy) bbox tuples, Arrow arrays (e.g. from GeoParquet), Shapely objects, raw WKB bytes, or GeoJSON dicts.Band codes to load (e.g.
["B04", "B03", "B02"]).Maximum concurrent HTTP requests for fetching raster tiles.
Cloud configuration for URL rewriting and authenticated access.
Override the inferred data source identifier.
Pluggable I/O backend for authenticated range reads. See create_backend().
EPSG code to reproject all records to before assembly.
Returns
Single-band queries return
[N, H, W]. Multi-band queries return [N, C, H, W] in requested band order. Data is in native COG dtype (e.g. uint16 for Sentinel-2).Examples
Single Band Load
Multi-Band RGB Stack
With Filters
With CRS Reprojection
Notes
- Data is returned in native COG dtype (typically
uint16for Sentinel-2, Landsat) - All scenes are loaded and stacked along the first dimension
- For single-band queries, shape is
[N, H, W] - For multi-band queries, shape is
[N, C, H, W]where C is the number of bands - Bands are ordered as specified in the
bandsparameter