How can I create a contourf with costline?

조회 수: 1 (최근 30일)
Szabó-Takács Beáta
Szabó-Takács Beáta 2016년 6월 23일
답변: Szabó-Takács Beáta 2016년 6월 23일
Dear All, I have a 2D matrix about precipitation values in Europe. I would like to create a contourf from this matrix with costline. I tried to the followings:
h = worldmap('Europe');
geoshow('landareas.shp', 'FaceColor', [1 1 1])
hold on
axesm('eqdconic','maplatlimit',[26.5861 71.8699],'maplonlimit',[-34.748 60.8422]);
>> contourf(lon,lat,IU2);
But unfortunately it does not work. Can someone suggest me a solution for creating contourf with costline? I would appreciate if someone helped me.

채택된 답변

Szabó-Takács Beáta
Szabó-Takács Beáta 2016년 6월 23일
Meantime I found a solution.
worldmap('Europe');
load coast;
plotm(lat, long, 'k');
clear lat long;
lat=load(lat.mat)
lon=load(lon.mat)
contourfm(lat,lon,IU2);

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Contour Plots에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by