Projecting imagesc function onto a map plot

Hello. I'm working with plotting over a map projection with the built in mapping tools. Using contourm, I'm able to plot my geolocated data on a contour map (contourm(lat,lon,Z)). However, it takes a looonnnnnggg time to run. A function like imagesc would probably be faster.
What would be the best way to use imagesc with geolocated lat/long points?
Really, all I need is something that takes in coordinates X and Y and puts a color based on Z at that point.
ax = usamap(latlim,longlim);
states = shaperead('usastatehi','UseGeoCoords', true, 'BoundingBox', [longlim', latlim']);
geoshow(ax, states, 'FaceColor', [1 1 1])
contourm(lat,long,DBZ(:,:,1),10,'Fill', 'on') %want imagesc here

1 件のコメント

Kyle Chudler
Kyle Chudler 2014 年 5 月 30 日
I found the function pcolor. However, it turns out much coarser than contourm...and too washed out with interpolated shading....

サインインしてコメントする。

回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeGeology についてさらに検索

質問済み:

2014 年 5 月 30 日

コメント済み:

2014 年 5 月 30 日

Community Treasure Hunt

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

Start Hunting!

Translated by