X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/36388cafe9709bff3153096690c3f88175084ee0..1a64c3bfcd6f46506b7101d9943dbc297be25f10:/docs/customize/Import-Styles.md?ds=sidebyside diff --git a/docs/customize/Import-Styles.md b/docs/customize/Import-Styles.md index e96f96e0..003e56e3 100644 --- a/docs/customize/Import-Styles.md +++ b/docs/customize/Import-Styles.md @@ -191,7 +191,7 @@ They take _key match lists_ for main and extra names respectively. Address tags will be used to build up the address of an object. `set_address_tags()` takes a table with arbitrary fields pointing to -_key match lists_. To fields have a special meaning: +_key match lists_. Two fields have a special meaning: * __main__: defines the tags that make a full address object out of the OSM object. This @@ -218,7 +218,7 @@ are accepted, all other values are discarded. main = {'addr:housenumber'}, extra = {'addr:*'}, postcode = {'postal_code', 'postcode', 'addr:postcode'}, - country = {'country-code', 'ISO3166-1'} + country = {'country_code', 'ISO3166-1'} } ``` @@ -227,7 +227,7 @@ are accepted, all other values are discarded. object will fall back to be entered as a `place=house` in the database unless there is another interested main tag to be found. - Tags with keys `country-code` and `ISO3166-1` are saved with their + Tags with keys `country_code` and `ISO3166-1` are saved with their value under `country` in the address tag list. The same thing happens to postcodes, they will always be saved under the key `postcode` thus normalizing the multitude of keys that are used in the OSM database. @@ -280,7 +280,7 @@ kinds of geometries can be used: * __relation_as_multipolygon__ creates a (Multi)Polygon from the ways in the relation. If the ways do not form a valid area, then the object is silently discarded. -* __relation_as_multiline__ creates a (Mutli)LineString from the ways in +* __relation_as_multiline__ creates a (Multi)LineString from the ways in the relations. Ways are combined as much as possible without any regards to their order in the relation.