diff --git a/server/mapsme-process.py b/server/mapsme-process.py index 324555a..602fd5c 100755 --- a/server/mapsme-process.py +++ b/server/mapsme-process.py @@ -10,7 +10,7 @@ database = peewee.SqliteDatabase(os.path.join(path, 'mapsme-changes.db')) STATE_FILENAME = os.path.join(path, 'mapsme-state.txt') REPLICATION_BASE_URL = 'http://planet.openstreetmap.org/replication/changesets' API_ENDPOINT = 'https://api.openstreetmap.org/api/0.6' -MAIN_TAGS = ('amenity', 'shop', 'tourism', 'historic', 'craft', 'office', 'emergency', 'barrier', 'highway', 'leisure', 'entrance', 'building') +MAIN_TAGS = ('amenity', 'shop', 'tourism', 'historic', 'craft', 'office', 'emergency', 'barrier', 'highway', 'leisure', 'waterway', 'entrance', 'building') INTERESTING_TAGS = list(MAIN_TAGS) + ['name'] class Change(peewee.Model):