いくつかのアドレスをBatchGeoにアップロードし、座標を抽出したい結果のKMLファイルをダウンロードしました。私はここでオンラインでごちゃ混ぜのテキストファイルをきれいにすることができましたが、座標を抽出するためにそれを解析する方法がわかりません。
<?xml version="1.0" ?>
<kml xmlns="http://earth.google.com/kml/2.0">
<Document>
<Placemark>
<name>...</name>
<description>....</description>
<Point>
<coordinates>-3.1034345755337,57.144817425039,0</coordinates>
</Point><address>...</address>
<styleUrl>#0</styleUrl>
</Placemark>
</Document>
</kml>
Python用のkmlライブラリはいくつかあるようですが、ドキュメントの面ではそれほど多くありません(例:pyKML)。チュートリアルを使用して、ここまで到達し、「lxml.etree._ElementTree」オブジェクトを作成しましたが、その属性がわかりません。
from pykml import parser
kml_file = "BatchGeo.kml"
with open(kml_file) as f:
doc = parser.parse(f)
coordinate = doc.Element("coordinates")
print coordinate
これにより、エラーが発生します。
AttributeError: 'lxml.etree._ElementTree' object has no attribute 'Element'
では、座標のリストを取得するにはどうすればよいですか?ありがとう。