mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Geo taxonomy: add higher level notion of city
This renames the local name for the location as town and adds the concept of a city as the level 3 admin category. In some regions (e.g. at times in Italy) the local hamlet name is shown as toponymName but the name of the actual city is given as adminName3. With this change "city" will always reflect our best guess: adminName3 if it exists, otherwise the toponymName. Whereas "town" is always the toponymName. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
a0f88e4c9f
commit
bda482a30a
3 changed files with 21 additions and 3 deletions
|
@ -8,6 +8,7 @@ char *taxonomy_category_names[TC_NR_CATEGORIES] = {
|
|||
QT_TRANSLATE_NOOP("getTextFromC", "Country"),
|
||||
QT_TRANSLATE_NOOP("getTextFromC", "State"),
|
||||
QT_TRANSLATE_NOOP("getTextFromC", "County"),
|
||||
QT_TRANSLATE_NOOP("getTextFromC", "Town"),
|
||||
QT_TRANSLATE_NOOP("getTextFromC", "City")
|
||||
};
|
||||
|
||||
|
@ -18,7 +19,8 @@ char *taxonomy_api_names[TC_NR_CATEGORIES] = {
|
|||
"countryName",
|
||||
"adminName1",
|
||||
"adminName2",
|
||||
"toponymName"
|
||||
"toponymName",
|
||||
"adminName3"
|
||||
};
|
||||
|
||||
struct taxonomy *alloc_taxonomy()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue