Refs #32230 -- Fixed DataSource example in GeoDjango tutorial.
DataSource.ds_input doesn't support pathlib.Path().
Regression in 26554cf5d1
.
This commit is contained in:
parent
33403bf80f
commit
e46ca51c24
|
@ -331,7 +331,7 @@ Now, open the world borders shapefile using GeoDjango's
|
||||||
:class:`~django.contrib.gis.gdal.DataSource` interface::
|
:class:`~django.contrib.gis.gdal.DataSource` interface::
|
||||||
|
|
||||||
>>> from django.contrib.gis.gdal import DataSource
|
>>> from django.contrib.gis.gdal import DataSource
|
||||||
>>> ds = DataSource(world_shp)
|
>>> ds = DataSource(str(world_shp))
|
||||||
>>> print(ds)
|
>>> print(ds)
|
||||||
/ ... /geodjango/world/data/TM_WORLD_BORDERS-0.3.shp (ESRI Shapefile)
|
/ ... /geodjango/world/data/TM_WORLD_BORDERS-0.3.shp (ESRI Shapefile)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue