Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的 matlab 正在生成一个 .kml 文件,它在谷歌地球中打开。有没有办法将其更改为在谷歌地图中打开。
并且还要折扣第一个值,它是未知数 0,0
谢谢。
代码
kmlwrite('routetraveled', B.data(1:elements,4), B.data(1:elements,5)); winopen('routetraveled.kml');
我用它来生成 .kml 并打开它。
我不知道 Google Earth 是否支持它,但许多应用程序允许您在打开程序时指定要加载的文件。而不是winopen,您只需进行命令行调用。像这样的东西:
winopen
!Path/To/Google/Maps --open filename.kml