Fixed #24114 -- Improved error message in GEOSGeometry constructor

This commit is contained in:
Claude Paroz 2015-01-10 18:51:09 +01:00
parent 07988744b3
commit b86107ced1
1 changed files with 3 additions and 1 deletions

View File

@ -71,8 +71,10 @@ class GEOSGeometry(GEOSBase, ListMixin):
elif hex_regex.match(geo_input): elif hex_regex.match(geo_input):
# Handling HEXEWKB input. # Handling HEXEWKB input.
g = wkb_r().read(force_bytes(geo_input)) g = wkb_r().read(force_bytes(geo_input))
elif gdal.HAS_GDAL and json_regex.match(geo_input): elif json_regex.match(geo_input):
# Handling GeoJSON input. # Handling GeoJSON input.
if not gdal.HAS_GDAL:
raise ValueError('Initializing geometry from JSON input requires GDAL.')
g = wkb_r().read(gdal.OGRGeometry(geo_input).wkb) g = wkb_r().read(gdal.OGRGeometry(geo_input).wkb)
else: else:
raise ValueError('String or unicode input unrecognized as WKT EWKT, and HEXEWKB.') raise ValueError('String or unicode input unrecognized as WKT EWKT, and HEXEWKB.')