odc.geo.geobox.GeoBox.to_crs

GeoBox.to_crs(crs, *, resolution='auto', tight=False, round_resolution=None)[source]

Compute GeoBox covering the same region in a different projection.

Parameters:
  • crs (Union[str, int, CRS, CRS, Dict[str, Any]]) – Desired CRS of the output

  • resolution (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 same
      between 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, suppling tight=True produces unaligned geobox on the output.

Return type:

GeoBox

Returns:

Similar resolution, axis aligned geobox that fully encloses this one but in a different projection.