我有三组数据:
- 时间
- 经度
- 纬度
我想使用 google earth toolbox for matlab 在 google earth 上绘制这个,我需要的是当我移动时间滑块时,应该在 google earth 上绘制一条线。
我试过这个
x = [longitude, latitude];
y = time;
kmlStr = ge_plot(x,y);
但是发生了错误。另一方面 ge_gplot 对此没有意义。
有没有办法我可以使用谷歌地球工具箱做这个时间序列图?