Skip to content

Commit

Permalink
Python bindings: fix typos in gdal.Footprint() help message
Browse files Browse the repository at this point in the history
  • Loading branch information
rouault committed Jun 26, 2024
1 parent a659a20 commit 7096d46
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions swig/include/python/gdal_python.i
Original file line number Diff line number Diff line change
Expand Up @@ -4200,15 +4200,15 @@ def Footprint(destNameOrDestDS, srcDS, **kwargs):
1. Special mode to get deserialized GeoJSON (in EPSG:4326 if dstSRS not specified):
>>> deserialized_geojson = gdal.FootPrint(None, src_ds, format="GeoJSON")
>>> deserialized_geojson = gdal.Footprint(None, src_ds, format="GeoJSON")
2. Special mode to get WKT:
>>> wkt = gdal.FootPrint(None, src_ds, format="WKT")
>>> wkt = gdal.Footprint(None, src_ds, format="WKT")
3. Get result in a GeoPackage
>>> gdal.FootPrintf("out.gpkg", src_ds, format="GPKG")
>>> gdal.Footprint("out.gpkg", src_ds, format="GPKG")
"""

Expand Down

0 comments on commit 7096d46

Please sign in to comment.