使用 Matlab Google-Earth Toolbox 绘制纬度和经度
我正在尝试使用 Google-Earth 工具箱 绘制一些航路点。它的文档非常糟糕,所以我认为这将是一个很好的 Stack Overflow 问题。
我有一个矩阵,wypts
,它有十进制格式的纬度和经度坐标对(如果有人想知道宾夕法尼亚州州立大学机场(SCE)的情况)。
wypts =
40.8489 -77.8492
40.8922 -77.8492
40.9355 -77.8492
40.9788 -77.8492
41.0221 -77.8492
41.0654 -77.8492
41.1087 -77.8492
41.1154 -77.8492
以下代码不起作用,而是在宾夕法尼亚州绘制点,它在南极附近没有绘制任何内容:
output = ge_plot(wypts(:,1),wypts(:,2))
ge_output('wypts.kml',output)
I am trying to plot some waypoints using the Google-Earth toolbox. The documentation for it is pretty poor, so I figured this would be a good Stack Overflow question.
I have a matrix, wypts
that has pairs of latitude and longitude coordinates in decimal format (If anyone is wondering this over the State College Airport (SCE) in Pennsylvania).
wypts =
40.8489 -77.8492
40.8922 -77.8492
40.9355 -77.8492
40.9788 -77.8492
41.0221 -77.8492
41.0654 -77.8492
41.1087 -77.8492
41.1154 -77.8492
The following does not work instead of plotting points in Pennsylvania, it plots nothing in the off the south pole:
output = ge_plot(wypts(:,1),wypts(:,2))
ge_output('wypts.kml',output)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你的纬度和经度混淆了。 ge_plot 的帮助文档说第一个输入应该是经度,第二个输入应该是纬度。试试这个:
You have your latitudes and longitudes mixed up. The help documentation for
ge_plot
says that the first input should be longitude, and the second input should be latitude. Try this: