-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
GPKG: use much faster creation of RTree with a in-memory RTree building
``` $ time ogr2ogr tmp.gpkg nz-building-outlines.gpkg real 0m16,433s user 0m18,093s sys 0m2,135s ``` vs without optimization. With sqlite 3.43.2, with disabling of RTree forced reinsertion from SQLite master sqlite/sqlite@7de8ae2). Otherwise it is 38 seconds ``` $ time OGR_GPKG_MAX_RAM_USAGE_RTREE=0 ogr2ogr tmp.gpkg nz-building-outlines.gpkg real 0m28,000s user 0m40,287s sys 0m5,244s ```
- Loading branch information
Showing
11 changed files
with
1,409 additions
and
200 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.