-
Notifications
You must be signed in to change notification settings - Fork 61
Description
what I did ... I already started the whole process again, but no success, no difference in the query results
./build.sh build
docker run \
-e OVERPASS_MODE=clone \
-e OVERPASS_CLONE_SOURCE=https://dev.overpass-api.de/api_drolbr/ \
-e OVERPASS_DIFF_URL=https://planet.openstreetmap.org/replication/minute/ \
-v /data/overpass/db/:/db \
--name overpass-api-server wiktorn/overpass-api:0.7.62.10
clone process went well w/o any error, all db files had been copied
seen log message -> "Overpass container initialization complete. Exiting."
docker start overpass-api-server
$ curl "https://localhost/api/interpreter?data=%5Bout%3Ajson%5D%3Bway%2830918551%29%3Bout%20geom%3B"
{
"version": 0.6,
"generator": "Overpass API 0.7.62.10 2d4cfc48",
"osm3s": {
"timestamp_osm_base": "2026-02-05T07:37:16Z",
"copyright": "The data included in this document is from www.openstreetmap.org. The data is made available under ODbL."
},
"elements": [
{
"type": "way",
"id": 30918551,
"bounds": {
"minlat": 100.0000000,
"minlon": 200.0000000,
"maxlat": 100.0000000,
"maxlon": 200.0000000
},
"nodes": [
343690983,
343690984,
343690981,
343690982,
343690983
],
"geometry": [
],
"tags": {
"addr:city": "Dallas",
"addr:housenumber": "1401",
"addr:postcode": "75202",
"addr:state": "TX",
"addr:street": "Elm Street",
"building": "apartments",
"building:levels": "49",
"name": "The National Residences"
}
}
]
}
Also the minute level update works fine.
All "ways" queries (and possibly everything else) provides the same invalid output.
Note: This query works perfectly fine on another local instance created from a US planet file with also using 0.7.62.10.
Any help would be greatly appreciated.
Thanks Karsten