Effacer les filtres
Effacer les filtres

Add world map background to contour plot

8 vues (au cours des 30 derniers jours)
AKHILESH KUMAR
AKHILESH KUMAR le 9 Mai 2019
Réponse apportée : KSSV le 10 Mai 2019
I have Relative Humidity data (Excel file attached below) having latitude and longitude.
I want plot similar to--
This plot have other parameter.

Réponses (1)

KSSV
KSSV le 10 Mai 2019
[num,txt,raw] = xlsread('lat lon data.xlsx') ;
lon = num(1,2:end) ;
lat = num(2:end,1) ;
data = num(2:end,2:end) ;
pcolor(lon,lat,data)
shading interp
colorbar
To add a map..yoou need to have that data..

Catégories

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