gpt4 book ai didi

python - KML 到 Python 中的字符串?

转载 作者:太空宇宙 更新时间:2023-11-03 19:26:50 24 4
gpt4 key购买 nike

我想下载一个 KML 文件并在 Python 中将其特定元素打印为字符串。

谁能给我一个如何做到这一点的例子吗?

谢谢。

最佳答案

下载和解析我将留给另一个答案。以下是我检索 KML 文件中每个地标的描述和坐标的方法。

namespace = {'ns' : 'http://www.opengis.net/kml/2.2'}
placemarks = doc.xpath('//ns:Placemark', namespaces=namespace)

for placemark in placemarks :
for description in placemark.xpath('.//ns:description', namespaces=namespace):
descriptionText = description.text.strip()

for coords in placemark.xpath('.//ns:coordinates', namespaces=namespace):
coordinates = coords.text.strip()

# Here you have the description and coordinates

描述和坐标的 for 循环也许可以重写,但我还没有找到确切的方法。

关于python - KML 到 Python 中的字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7821977/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com