从纬度和经度点创建位置网格

时间:2019-02-22 16:10:07

标签: matlab grid mapping coordinates latitude-longitude

我有两个数据集:一组纬度和一组经度。这两个数据的大小均为336x264。

我想使用MATLAB将这些数据转换为位置点的网格。

因此基本上是这样的: latlongrid

对此:

positiongrid

如果有一种标准化的解决方法,我不想在这里重新发明轮子,所以我想我应该看看社区是否有任何用于这种任务的现有资源!

谢谢你,最好的, 泰勒

1 个答案:

答案 0 :(得分:0)

如果您有映射工具箱,则可以使用projfwd函数:

% First, create the projection struct
mstr = defaultm('mercator'); %Or whatever projection you want to use

% Then, project your points
[x,y] = projfwd(mstr,lat,lon);