From 7096d468d8172c6669164c6038097981a9bd9194 Mon Sep 17 00:00:00 2001 From: Even Rouault Date: Thu, 27 Jun 2024 00:23:16 +0200 Subject: [PATCH] Python bindings: fix typos in gdal.Footprint() help message --- swig/include/python/gdal_python.i | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/swig/include/python/gdal_python.i b/swig/include/python/gdal_python.i index 6321e9cdc50f..017499fd9917 100644 --- a/swig/include/python/gdal_python.i +++ b/swig/include/python/gdal_python.i @@ -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") """