我正在尝试解析我的xml
文件,我觉得它有效,但是当我打印坐标时,我只能在我的控制台上看到它:" []"。
我的代码如下所示:
tree = ET.parse(url)
root = tree.getroot()
namespaces = {'gml': 'http://www.opengis.net/gml#'}
print(root.findall('gml:coordinates', namespaces))
答案 0 :(得分:0)
write
这不是完全相同的代码,但它做了我想要的,所以这是对我的问题的回答。