How can I plot a map of T2 of WRF output?

조회 수: 13 (최근 30일)
Abdus Samie
Abdus Samie 2019년 5월 26일
댓글: Abdus Samie 2019년 6월 2일
I am new to Matlab. I want to creat a map of temperature (T2) produced y WRF model having dimensions x=48, y=66 and Times=12. I applied following command but showed error.
filename=('D:\Tces_ctl.nc');
temp=ncread(filename,'T2');
longitude=ncread(filename,'XLONG');
latitude=ncread(filename,'XLAT');
mymap=pcolor(longitude,latitude,temp);
Error using pcolor (line 61) Matrix dimensions must agree. Anyone could please me guide about it or share me email so that I could send that file via email.

채택된 답변

KSSV
KSSV 2019년 5월 26일
mymap=pcolor(longitude,latitude,temp');
You transpose the matrix and plot.
  댓글 수: 7
KSSV
KSSV 2019년 5월 31일
filename=('D:Tces_ctl.nc');
longitude=ncread(filename,'XLONG');
latitude=ncread(filename,'XLAT');
temp=ncread(filename,'T2');
for i = 1:size(temp,3)
mymap=pcolor(longitude,latitude,temp(:,:,i));
shading interp
end
Abdus Samie
Abdus Samie 2019년 6월 2일
Thank you so much. It works now.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Map Display에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by