在 OpenStreetMap 中获取城市的地理坐标

发布于 2024-11-28 23:55:37 字数 116 浏览 0 评论 0原文

我是 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

暗喜 2024-12-05 23:55:37

使用主 api 无法做到这一点,您也不应该尝试这样做,因为主 api 主要供编辑者使用。

您需要的是地理编码器 Nominatim。 想使用如下查询:

http://nominatim.openstreetmap.org/search?q=paris&format=xml

您可以在 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:

http://nominatim.openstreetmap.org/search?q=paris&format=xml

Which will return an XML document listing possible matches and their locations.

忆悲凉 2024-12-05 23:55:37

如果您使用Python,则可以使用geocoder模块来检索坐标:

>>> import geocoder
>>> g = geocoder.osm('Belo Horizonte, MG, Brazil')
>>> print('Lat: {}\nLong: {}'.format(g.osm['y'], g.osm['x']))
Lat: -19.9227318
Long: -43.9450948

If you are using Python, you can use the geocoder module to retrieve the coordinates:

>>> import geocoder
>>> g = geocoder.osm('Belo Horizonte, MG, Brazil')
>>> print('Lat: {}\nLong: {}'.format(g.osm['y'], g.osm['x']))
Lat: -19.9227318
Long: -43.9450948
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文