按照惯例,我并不是说KML文件的结构不同,但是在本<description></description>
节中,我具有带有此类HTML标签的数据:
<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://www.opengis.net/kml/2.2">
<Document>
<Placemark>
<name>New York City</name>
<description><![CDATA[
<table>
<tr><td colspan='2'>Attributes</td></tr>
<tr><td>CITY_ID</td><td>150335</td></tr>
<tr><td>POPULATION</td><td>8244910</td></tr>
<tr><td>AREA</td><td>468.48</td></tr>
</table>]]>
</description>
<Point>
<coordinates>40.712964,-74.003886,0</coordinates>
</Point>
</Placemark>
</Document>
</kml>
我想轻松地将每个地标的所有这些数据导入数据库中具有相应列的表中,该怎么做?
3
有很多方法可以完成此任务。您能告诉我们更多您熟悉的工具吗?您是在寻找面向编程的解决方案(您喜欢哪种语言?)还是基于工具的解决方案(例如ArgGIS,QGIS)?
—
katahdin 2012年