我想下载一个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/