qlever 0.5.23__py3-none-any.whl → 0.5.24__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of qlever might be problematic. Click here for more details.
- qlever/Qleverfiles/Qleverfile.ohm-planet +1 -1
- qlever/commands/benchmark_queries.py +1022 -0
- qlever/commands/cache_stats.py +2 -0
- qlever/commands/index.py +3 -0
- qlever/commands/query.py +1 -0
- qlever/commands/settings.py +7 -0
- qlever/commands/ui.py +11 -7
- qlever/commands/update_wikidata.py +551 -0
- qlever/qlever_main.py +1 -2
- qlever/qleverfile.py +14 -0
- qlever/util.py +1 -1
- {qlever-0.5.23.dist-info → qlever-0.5.24.dist-info}/METADATA +4 -2
- {qlever-0.5.23.dist-info → qlever-0.5.24.dist-info}/RECORD +17 -16
- {qlever-0.5.23.dist-info → qlever-0.5.24.dist-info}/WHEEL +1 -1
- qlever/commands/example_queries.py +0 -605
- {qlever-0.5.23.dist-info → qlever-0.5.24.dist-info}/entry_points.txt +0 -0
- {qlever-0.5.23.dist-info → qlever-0.5.24.dist-info}/licenses/LICENSE +0 -0
- {qlever-0.5.23.dist-info → qlever-0.5.24.dist-info}/top_level.txt +0 -0
|
@@ -11,7 +11,7 @@ NAME = ohm-planet
|
|
|
11
11
|
GET_DATA_URL = https://planet.openhistoricalmap.org/planet
|
|
12
12
|
CHECK_BINARIES = osm2rdf -h > /dev/null || (echo "osm2rdf not found, make sure that it's installed and in your PATH" && exit 1)
|
|
13
13
|
GET_DATA_CMD_1 = unbuffer wget -O ${NAME}.pbf $$(curl -s ${GET_DATA_URL}/state.txt) 2>&1 | tee ${NAME}.download-log.txt
|
|
14
|
-
GET_DATA_CMD_2 = osm2rdf ${NAME}.pbf -o ${NAME}.ttl --source-dataset OHM --output-compression gz --store-locations=disk-dense --cache . --num-threads 12
|
|
14
|
+
GET_DATA_CMD_2 = osm2rdf ${NAME}.pbf -o ${NAME}.ttl --source-dataset OHM --output-compression gz --store-locations=disk-dense --cache . --num-threads 12 2>&1 | tee ${NAME}.osm2rdf-log.txt
|
|
15
15
|
GET_DATA_CMD = ${CHECK_BINARIES} && ${GET_DATA_CMD_1} && echo && ${GET_DATA_CMD_2}
|
|
16
16
|
VERSION = $$(date -r ${NAME}.pbf +%d.%m.%Y || echo "NO_DATE")
|
|
17
17
|
DESCRIPTION = OHM Planet, data from ${GET_DATA_URL} version ${VERSION} (with GeoSPARQL predicates ogc:sfContains and ogc:sfIntersects)
|