Reverse geocoding difference in photon and nominatim #779
Unanswered
technofection-rakesh
asked this question in
Q&A
Replies: 1 comment 1 reply
-
I don't see many named roads in the area. Even Donjur is huge https://www.openstreetmap.org/relation/10371827 https://photon.komoot.io/reverse?lon=88.209946&lat=22.599113 https://nominatim.openstreetmap.org/ui/reverse.html?lat=22.599113&lon=88.209946 |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I have just downloaded the latest photon build (0.4.4) and downloaded the country extract of India from graphhopper. Now when I run a reverse geocoding on photon for the following lat, lon, photon is unable to give me any address, whereas the same coordinates gives reverse geocoding response on nominatim..
lat=22.599113&lon=88.209946
on photon the response is
{
"features": [],
"type": "FeatureCollection"
}
where as on nominatim, there response is
[
{
"place_id": 246993858,
"licence": "Data © OpenStreetMap contributors, ODbL 1.0. http://osm.org/copyright",
"osm_type": "way",
"osm_id": 1098257265,
"lat": "22.6000913",
"lon": "88.2078351",
"category": "highway",
"type": "unclassified",
"place_rank": 26,
"importance": 0.10000999999999993,
"addresstype": "road",
"name": "",
"display_name": "Domjur, Howrah District, West Bengal, 711411, India",
"boundingbox": [
"22.6000913",
"22.6011983",
"88.2052884",
"88.2078351"
]
}
]
Why is so?
Beta Was this translation helpful? Give feedback.
All reactions