An option to use an alternative overpass api server

This commit is contained in:
Ilya Zverev 2018-05-25 13:08:40 +03:00
parent dd0c7f4751
commit c0f5e10317
2 changed files with 9 additions and 1 deletions

View file

@ -1,10 +1,11 @@
# OSM Conflator Change Log
## master branch
## master branch (1.4.0)
* Added a simple kd-tree based geocoder for countries and regions. Controlled by the `regions` parameter in a profile.
* Using the new `nwr` query type of Overpass API.
* Reduced default `max_request_boxes` to four.
* New argument `--alt-overpass` to use Kumi Systems' server (since the main one is blocked in Russia).
## 1.3.3

View file

@ -23,6 +23,7 @@ except ImportError:
TITLE = 'OSM Conflator ' + __version__
OVERPASS_SERVER = 'https://overpass-api.de/api/'
ALT_OVERPASS_SERVER = 'https://overpass.kumi.systems/api/'
OSM_API_SERVER = 'https://api.openstreetmap.org/api/0.6/'
BBOX_PADDING = 0.003 # in degrees, ~330 m default
MAX_DISTANCE = 100 # how far can object be to be considered a match, in meters
@ -1341,6 +1342,8 @@ def run(profile=None):
help='List all duplicate points in the dataset')
parser.add_argument('-r', '--regions',
help='Conflate only points with regions in this comma-separated list')
parser.add_argument('--alt-overpass', action='store_true',
help='Use an alternate Overpass API server')
parser.add_argument('-v', '--verbose', action='store_true',
help='Display debug messages')
parser.add_argument('-q', '--quiet', action='store_true',
@ -1387,6 +1390,10 @@ def run(profile=None):
if options.audit:
audit = json.load(options.audit)
if options.alt_overpass:
global OVERPASS_SERVER
OVERPASS_SERVER = ALT_OVERPASS_SERVER
conflator = OsmConflator(profile, dataset, audit)
conflator.geocoder = geocoder
if options.osm and os.path.exists(options.osm):