How to assign corresponding lat , Lon to grid points

2 vues (au cours des 30 derniers jours)
swetha S
swetha S le 24 Juin 2019
Commenté : Matt J le 24 Juin 2019
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 ?

Réponse acceptée

Matt J
Matt J le 24 Juin 2019
Modifié(e) : Matt J le 24 Juin 2019
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 commentaires
swetha S
swetha S le 24 Juin 2019
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 le 24 Juin 2019
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))

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Geographic Plots dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by