【发布时间】:2012-06-15 14:08:09
【问题描述】:
我有三组数据:
- 时间
- 经度
- 纬度
我想使用 google earth toolbox for matlab 在 google earth 上绘制这个,我需要的是当我移动时间滑块时,应该在 google earth 上绘制一条线。
我试过了
x = [longitude, latitude];
y = time;
kmlStr = ge_plot(x,y);
但是发生了错误。 另一方面 ge_gplot 对此没有意义。
有没有办法我可以使用谷歌地球工具箱做这个时间序列图?
【问题讨论】:
-
只是我的糟糕假设,但不应该是 ge_plot(longitude,latitude) 吗?
标签: matlab plot google-earth