0

My matlab is generating a .kml file and it opens in google earth. Is there a way to change it to open in google maps instead.

And also to discount the first values which is an unknown number of 0,0

Thanks.

code

kmlwrite('routetraveled', B.data(1:elements,4), B.data(1:elements,5));
winopen('routetraveled.kml');

I use this to generate the .kml and open it.

4

1 に答える 1

0

Google Earth でサポートされているかどうかはわかりませんが、多くのアプリでは、プログラムを開いたときに読み込むファイルを指定できます。の代わりにwinopen、コマンド ライン呼び出しを行うだけです。このようなもの:

!Path/To/Google/Maps --open filename.kml
于 2013-02-26T13:55:38.913 に答える