odc.geo.overlap.compute_output_geobox
- odc.geo.overlap.compute_output_geobox(gbox, crs, *, resolution='auto', tight=False)[source]
Compute output
GeoBox
.Find best fitting, axis aligned GeoBox in a different coordinate reference given source
GeoBox
on input.- Parameters
gbox (
GeoBox
) – Source geobox.crs (
Union
[str
,CRS
,CRS
,Dict
[str
,Any
]]) – Desired CRS of the outputresolution (
Literal
[‘auto’, ‘fit’, ‘same’]) –“same” use exactly the same resolution as src
”fit” use center pixel to determine scale change between the two
- ”auto” is to use the same resolution on the output if CRS units are the samebetween the source and destination and otherwise use “fit”
tight (
bool
) – By default output pixel grid is adjusted to align pixel edges to X/Y axis, supplingtight=True
produces unaligned geobox on the output.
- Return type
- Returns
Similar resolution, axis aligned geobox that fully encloses source one but in a different projection.