Skip to content

Commit

Permalink
Disable index creation in geopackage format
Browse files Browse the repository at this point in the history
  • Loading branch information
kshitijrajsharma committed Jan 13, 2024
1 parent 5500da1 commit 177f174
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/validation/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,7 @@ def __init__(self, suffix, driver_name, layer_creation_options, format_option):
"shp": ExportTypeInfo(
"shp", "ESRI Shapefile", ["ENCODING=UTF-8,2GB_LIMIT=No,RESIZE=Yes"], "GDAL"
),
"gpkg": ExportTypeInfo("gpkg", "GPKG", [], "GDAL"),
"gpkg": ExportTypeInfo("gpkg", "GPKG", ["SPATIAL_INDEX=No"], "GDAL"),
"sqlite": ExportTypeInfo("sqlite", "SQLite", [], "GDAL"),
"fgb": ExportTypeInfo("fgb", "FlatGeobuf", ["VERIFY_BUFFERS=NO"], "GDAL"),
"mvt": ExportTypeInfo("mvt", "MVT", [], "GDAL"),
Expand Down

0 comments on commit 177f174

Please sign in to comment.