Hello,
I am getting both village and town in reverse geocoding (https://nominatim.openstreetmap.org/reverse?lat=50.422525&lon=14.902470&format=json&zoom=18)
Response:
{
"place_id": 116316271,
"licence": "Data © OpenStreetMap contributors, ODbL 1.0. http://osm.org/copyright",
"osm_type": "node",
"osm_id": 1354895986,
"lat": "50.4220055",
"lon": "14.9023359",
"class": "place",
"type": "house",
"place_rank": 30,
"importance": 0.000009999999999954,
"addresstype": "place",
"name": "",
"display_name": "898, Bezručova, Mladá Boleslav II, Mladá Boleslav, Podlázky, Mladá Boleslav, okres Mladá Boleslav, Střední Čechy, 293 01, Česko",
"address": {
"house_number": "898",
"road": "Bezručova",
"suburb": "Mladá Boleslav II",
"village": "Podlázky",
"town": "Mladá Boleslav",
"municipality": "okres Mladá Boleslav",
"ISO3166-2-lvl7": "CZ-207",
"state": "Střední Čechy",
"postcode": "293 01",
"country": "Česko",
"country_code": "cz"
},
"boundingbox": [
"50.4219555",
"50.4220555",
"14.9022859",
"14.9023859"
]
}
Shouldn’t there be only one of them?
Is there a mistake in the Nominatim data?
This is the first time I am seeing both town and village in the same response.
I am new to the whole Nominatim project, so I apologize if this is normal behaviour.
Thank you