从 csv 或 xml 中获取多个地址的地理编码

发布于 2024-09-24 19:29:05 字数 75 浏览 2 评论 0原文

有人知道如何解析具有多个地址的 csv 或 xml 文档,以获得它们的纬度和经度吗? 我正在谈论 300 多个地址.. 预先非常感谢:)

anybody know how can i parse a csv or xml document with multiple addresses, to get their latitude and longitude?
im talkin'about 300+ addresses..
thanks a lot in advance :)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

吻安 2024-10-01 19:29:05

我建议使用大型地图 API 之一

来自解析文档的代码。

伪代码:

foreach(node in xmlfile)
{
    //send the parsed address, city, state and postal code to the mapping api.  Use returned data to set Lat/Long
}

I'd recommend using one of the big mapping apis

from your code that is parsing the documents.

pseudo code:

foreach(node in xmlfile)
{
    //send the parsed address, city, state and postal code to the mapping api.  Use returned data to set Lat/Long
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文