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 merging.
Returns
Band arrays in native COG dtype (e.g.
uint16 for Sentinel-2). CRS is encoded via CF conventions with a spatial_ref coordinate containing WKT2, PROJJSON, and GeoTransform. Multi-CRS queries are auto-reprojected to the most common CRS.Examples
Basic Load
With Cloud Cover Filter
With Date Range
Multiple Geometries
With CRS Reprojection
Using with rioxarray
Dataset Structure
The returned xarray Dataset includes:-
Coordinates:
x: Easting/longitude coordinatesy: Northing/latitude coordinatestime: Acquisition timestampsspatial_ref: CRS metadata (WKT2, PROJJSON, GeoTransform)
- Data Variables: One per requested band, named by band code
- Attributes: CF-compliant metadata
Notes
- Data is in native COG dtype (typically
uint16for Sentinel-2, Landsat) - Multi-CRS collections are automatically reprojected to the most common CRS
- Use
target_crsto force a specific output projection - Compatible with rioxarray for geospatial operations