gpt4 book ai didi

python - 在 simplekml 中显示本地镜像

转载 作者:行者123 更新时间:2023-11-28 17:47:56 28 4
gpt4 key购买 nike

我正在尝试使用 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>

(除了其中一个点,我已经删除了所有点)多谢,亚历克斯

最佳答案

可能是因为您编写的 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>

关于python - 在 simplekml 中显示本地镜像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15373973/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com