Hi, I am wondering how to put 2D bar graph on a map. For example, I have some bar graphs of monthly temperature for several different weather station. And I want to put these graphs on a map corresponding to the location of each weather station. Is there anyway to do that with matlab?

댓글 수: 3

Brian McNoldy
Brian McNoldy 2017년 2월 24일
I see this question is only about 2 weeks old, but I am looking for a way to do exactly this and have not had any luck yet. Have you figured it out yet?
Hello,
One approach is with bar3:
Creating random map and bars (ideally you have your own map):
map=randi(1000,10,10)+100;
Bars=round(rand(10,10)-.425);
h = bar3(Bars);
for i = 1:numel(h)
index = logical(kron(Bars(:,i) == 0,ones(6,1)));
BarsData = get(h(i),'zData');
BarsData(index,:) = NaN;
set(h(i),'zData',BarsData);
end
hold on
imagesc(map)
colormap(summer)
Which produces,
is this what you both are looking for?
O.Hubert
O.Hubert 2024년 6월 13일
You can check my submission to FileExchange that does just that, although it was primarily aimed at categorical variables.

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

답변 (0개)

카테고리

도움말 센터File Exchange에서 Weather and Atmospheric Science에 대해 자세히 알아보기

태그

질문:

2017년 2월 7일

댓글:

2024년 6월 13일

Community Treasure Hunt

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

Start Hunting!

Translated by