在simplekml中显示本地图像

时间:2013-03-12 23:04:59

标签: python maps kml google-earth

我正在尝试使用simplekml将一堆带地理标记的照片放入KML文件(实际上是KMZ文件),以便在Google地球中查看。我已经获得了要显示的位置,但是当我尝试将图像放在“描述”中时,所以当我点击图像出现的位置时,它不起作用。只有一张空白图片。我正在尝试使用显示here的addfile()命令来完成它。我的代码如下所示:

import os, simplekml

path = r'C:\Users\as\Desktop\testpics'                     

kml = simplekml.Kml()

for (dirpath, dirnames, filenames) in os.walk(path):
    for filename in filenames:
        fullpath = os.path.join(dirpath, filename)
        try:
            Lat, Long, Alt = GetLatLong(fullpath) #Didn't include this function, but it appears to work
        except:
            Lat, Long, Alt = (None, None, None)
        if Lat: #Only adds to kml if it has Lat value.
            x, y = (FormatLatLong(Lat), FormatLatLong(Long)) #puts into decimal coords
            point = kml.newpoint(name = filename , coords = [(y,x)])
            picpath = kml.addfile(fullpath)
            point.description = '<img src="' + picpath +'" alt="picture" width="400" height="300" align="left" />'



kml.savekmz("kmltest2.kmz", format = False)

正如您所看到的,我几乎已经剪切并粘贴了上面页面上的说明中使用“addfile”的说明。 point.description行似乎是出错的地方。

图片被添加到kmz存档中,但它们没有显示在位置气泡中。我认为这可能是因为我在Windows 7上执行此操作并且斜杠是向后的,但我尝试手动将files \ image.jpg更改为files / image.jpg并且它没有修复它。生成的KMZ doc.kml文件如下所示:

    <kml xmlns="http://www.opengis.net/kml/2.2"xmlns:gx="http://www.google.com/kml/ext/2.2">
    <Document id="feat_1">
    <Placemark id="feat_2">
    <name>DSC00001.JPG</name>
    <description>&lt;img src="files/DSC00001.JPG" alt="picture" width="400" height="300" align="left" /&gt;</description>
    <Point id="geom_0"><coordinates>18.9431816667,9.44355222222,0.0</coordinates>
    </Point></Document></kml>

(除了其中一点之外我已经删除了所有点) 非常感谢, 亚历

1 个答案:

答案 0 :(得分:2)

可能是因为您编写的kml文件中有未封闭的地标标记。因此,在关闭点标记后关闭地标标记。

<kml xmlns="http://www.opengis.net/kml/2.2"xmlns:gx="http://www.google.com/kml/ext/2.2">
    <Document id="feat_1">
    <Placemark id="feat_2">
    <name>DSC00001.JPG</name>
    <description>&lt;img src="files/DSC00001.JPG" alt="picture" width="400" height="300" align="left" /&gt;</description>
    <Point id="geom_0"><coordinates>18.9431816667,9.44355222222,0.0</coordinates>
    </Point></Placemark></Document></kml>

如果放置地方标记标记后的上述代码不起作用,请尝试使用气球样式而不是描述标记尝试使用以下代码

<kml xmlns="http://www.opengis.net/kml/2.2"
     xmlns:gx="http://www.google.com/kml/ext/2.2" 
     xmlns:kml="http://www.opengis.net/kml/2.2" 
     xmlns:atom="http://www.w3.org/2005/Atom"
>
<Document id="feat_1">
<Placemark id="feat_2">
<name>DSC00001.JPG</name>
<Style>
<BalloonStyle>
<text><![CDATA[
 <table width=100% cellpadding=0 cellspacing=0>
  <tr><td><img width=100% src='files/DSC00001.jpg' /></td></tr></table>]]>
</text>
</BalloonStyle>
</Style> 
<Point id="geom_0">
<coordinates>18.9431816667,9.44355222222</coordinates>
</Point>
</Placemark>
</Document>
</kml>