wradlib.georef.projection.project_bounds#
- wradlib.georef.projection.project_bounds(bounds, crs)[source]#
Get geographic bounds in projected coordinate system
- Parameters:
bounds (
tupleoffloat) – (lon_min, lon_max, lat_min, lat_max) geographic boundscrs – Coordinate Reference System (CRS) to be used for projection. Must be provided and can be one of:
A
pyproj.crs.CoordinateSysteminstanceA
cartopy.crs.CRSinstanceA
osgeo.osr.SpatialReferenceinstanceA type accepted by
pyproj.crs.CRS.from_user_input(e.g., EPSG code, PROJ string, dictionary, WKT, or any object with a to_wkt() method)
- Returns:
bounds (
tuopleoffloat) – (xmin, xmax, ymin, ymax) projected bounds