Add world map background to contour plot

4 vues (au cours des 30 derniers jours)
AKHILESH KUMAR
AKHILESH KUMAR le 10 Mai 2019
Modifié(e) : KSSV le 10 Mai 2019
i have .shp file for India. How to plot lat lon data on it, so that it remain in bacground.

Réponses (1)

KSSV
KSSV le 10 Mai 2019
Modifié(e) : KSSV le 10 Mai 2019
S = shaperead(filename) ;
Now you have your lat, lon coordinates in S..extract them and plot. Mostly the following shall work .
S = shaperead(filename) ;
lon = [S(:).X]';
lat = [S(:).Y]';
plot(lon,lat)
NOTE: You have asked more or less the same question here: https://in.mathworks.com/matlabcentral/answers/461212-add-world-map-background-to-contour-plot?s_tid=prof_contriblnk. You should comment/ accept your question there and ask for another question. It is not fair to leave the answer without giving any credits.

Catégories

En savoir plus sur Orange 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