Add world map background to contour plot
조회 수: 2 (최근 30일)
이전 댓글 표시
I have Relative Humidity data (Excel file attached below) having latitude and longitude.
I want plot similar to--
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/218749/image.png)
This plot have other parameter.
댓글 수: 0
답변 (1개)
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..
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Orange에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!