How to assign corresponding lat , Lon to grid points

2 visualizzazioni (ultimi 30 giorni)
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 ?

Risposta accettata

Matt J
Matt J il 24 Giu 2019
Modificato: Matt J il 24 Giu 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 Commenti
swetha S
swetha S il 24 Giu 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 il 24 Giu 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))

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Geographic Plots in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by