在 OpenStreetMap 中获取城市的地理坐标
我是 OpenStreetMap Api 的新手,很抱歉我的基本问题: 如何使用 OpenStreetMap API 获取给定城市名称的地理坐标? 与此相关的是,我如何检索这个城市的街道坐标?
谢谢 !
I am new to the OpenStreetMap Api, so sorry for my basic questions:
How can I get the geographic coordinates of a city given its name, using the OpenStreetMap API ?
And linked to this, how can I retrieve coordinates of streets in this city ?
Thanks !
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用主 api 无法做到这一点,您也不应该尝试这样做,因为主 api 主要供编辑者使用。
您需要的是地理编码器 Nominatim。 想使用如下查询:
您可以在 wiki 上找到详细信息,但基本上您 将返回一个 XML 文档,列出可能的匹配项及其位置。
There's no way to do that using the main api, nor should you be trying to as the main api is intended primarily for editors.
What you want is the geocoder, Nominatim. You can find details of that on the wiki but basically you want to use a query like this:
Which will return an XML document listing possible matches and their locations.
如果您使用Python,则可以使用
geocoder
模块来检索坐标:If you are using Python, you can use the
geocoder
module to retrieve the coordinates: