How to assign corresponding lat , Lon to grid points

1 次查看(过去 30 天)
I have a 3d data , RF(35*33*122) Lon,lat,time.
Now to convert this to corresponding grid points , I used reshape (35*33). Now the data is (1155*122). And removing the NaN columns final array size is (290*122).
122- time steps. 290- grid point.
Now I want to plot this for a particular time step how to assign the 290 grids it's corresponding lat and lon ?

采纳的回答

Matt J
Matt J 2019-6-24
编辑:Matt J 2019-6-24
You should just leave the grid data in its original form, without any of the NaN-removal or reshaping. None of the changes seem helpful or necessary if the goal is plotting. Note that plotting commands generally ignore NaNs.
And if you leave things in their original form, the correspondence between grid point data and their coordinates remains clear.
  2 个评论
swetha S
swetha S 2019-6-24
Actually for further calculation I have to remove NAN. The output data is of 290*290 dimension. ( How every grid point is related to everyother). In order to plot that I must assign corresponding lat,lon to the 290 grid points
Matt J
Matt J 2019-6-24
What I would do is compute
template=RF;
map=~isnan(template);
and now, every time you want to plot, just load the results back into the template, e.g.,
template(map)=computation;
surf(template(:,:,1))

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Geographic Plots 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by