Add world map background to contour plot

6 ビュー (過去 30 日間)
AKHILESH KUMAR
AKHILESH KUMAR 2019 年 5 月 9 日
回答済み: KSSV 2019 年 5 月 10 日
I have Relative Humidity data (Excel file attached below) having latitude and longitude.
I want plot similar to--
This plot have other parameter.

回答 (1 件)

KSSV
KSSV 2019 年 5 月 10 日
[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..

カテゴリ

Help Center および File ExchangeOrange についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by