﻿# german
# street type prefix and suffix
# these are identified in location names and used for token expansion to include location type variants
# this gives us the maximum chance of matching a location name to the various ways to express it in text
# e.g. 'london st' -> 'london street', 'london st'

# see also http://wiki.openstreetmap.org/wiki/Name_finder:Abbreviations

# TITLE = title word of placename (e.g. 'the')
# TYPE = type of place (e.g. 'road')
# +<phrase> = prefix
# <phrase>+ = suffix
# +<phrase>+ = can be both prefix and suffix
# *<phrase> = dont use this token for a match but do include it in token expansion
#   e.g. primary, *school --> matches only primary BUT will expand a match to <name> primary, <name> school
#        this allows avoidance of overmatching to general names like school (which can be primary, secondary etc.)

# note: save this as UTF-8 not a default latin encoded text file
# note: types are processed in reverse phrase gram order (so large phrases are matched first)
# note: first type match is used and variants expanded (other types ignored if they could also match)

# add to stoplist location words that on thier own cannot be a specific location
# e.g. 'north' cannot be used for 'north london'

#
# titles
#

# north east
TITLE, +nordost+, +no+, +nordöstlich von, +nordoestlich von
# north west
TITLE, +nordwest+, +nw+, +nordwestlich von
# south east
TITLE, +südost+, +suedost+, +so+, +südöstlich von
# south west
TITLE, +südwest+, +suedwest+, +sw+, +südwestlich von
# north
TITLE, +nord+, +norden+, +n+, +nördlich von
# south
TITLE, +süd+, +süden+, +sued+, +sueden+, +s+, +südlich von
# east
TITLE, +ost+, +osten+, +o+, +östlich von
# west
TITLE, +west+, +westen+, +w+, +westlich von
# greater
TITLE, +groß+, +gross+, +gr+
# larger
TITLE, +größer+, +groesser+, +gr+
# lesser
TITLE, +weniger+
# smaller
TITLE, +kleiner+, +kl+
# upper
TITLE, +ober+, +obere+, +oberer+
# lower
TITLE, +unter+, +untere+

#
# types
#

TYPE, +allee+
TYPE, strasse+, straße+, str+
TYPE, gasse+, feldweg+
TYPE, platz+, *pl+
TYPE, ort+, stelle+, *platz+, *pl+
TYPE, hof+, *platz+, spielfeld+, *pl+
TYPE, prachtstraße+, prachtstrasse+
TYPE, ausfallstraße+, ausfallstrasse+, *allee+
TYPE, autobahn+
TYPE, terasse+
TYPE, sackgasse+
TYPE, park+
TYPE, promenade+
TYPE, weg+
TYPE, garten+, gaerten+, gärten+
TYPE, hain+, gehoelz+, gehölz+
TYPE, rasen+, wiese+, *garten+
TYPE, stallungen+, stall+, staelle+, ställe+
TYPE, aufstieg+, anstieg+, steigung+, erhoehung+, erhöhung+
TYPE, gruen+, grün+, gras+, wiese+, grasplatz+, rasen+, gruenflaeche+, grünfläche+, anger+
TYPE, hoehen+, höhen+, gipfel+
TYPE, huegel+, hügel+, anhoehe+, anhöhe+, erhoehung+, erhöhung+
TYPE, wald+, holz+
TYPE, weg+
TYPE, tal+, niederung+, senkung+
TYPE, bruecke+, brücke+, br+
TYPE, ueberfuehrung+, überführung+
TYPE, spur+, pfad+, wanderweg+, loipe+, faehrte+, fährte+

