Heat (or color coded Map) in Matlab
3 次查看(过去 30 天)
显示 更早的评论
Hello,
I am creating a heatmap in Matlab. For each Sewershed, there is a median income. It is in the shapefile. When I produce the Sewershape in Matlab, I get this...
The command bar reads:
17×1 struct array with fields:
Geometry
BoundingBox
X
Y
Pervious
Impervious
Sewershed
Population
Housing
Acres
Squarefeet
GallonsH2O
SymbolID
Median
This is my code:
S = shaperead('Sewershed.shp')
mapshow(S)
for i=1:17
meanValue = mean(S(i).BoundingBox);
text(meanValue(1),meanValue(2),num2str(S(i).Sewershed))
end
So, I need the median income for each sewershed to have a color scale, where the largest income is darker red and the smaller incomes become lighter... (red or any color... but darker for higher income and lighter for lower income).
Please, let me know if you can help.
Thanks
C
0 个评论
采纳的回答
Kelly Kearney
2020-6-24
In my opinion, the easiest way to do this is to alter the colors of the patches after plotting with mapshow/geoshow. An example:
S = shaperead('usastatelo');
h = mapshow(S);
set(h.Children, {'CData'}, {S.PopDens2000}'); % Add single cdata value to each based on property
set(h.Children, 'facecolor', 'flat'); % And link to the colormap
set(gca, 'clim', [5 500]);
An alternative would be to take a look at the makesymbolspec function, and the 'SymbolSpec' option for mapshow. But I find that option horribly unintuitive, inflexible, and a little buggy.
3 个评论
Kelly Kearney
2020-6-24
The 'clim' bit was just an example... that line sets the color limits of the figure (the example data I showed had a few high outliers, so I wanted to narrow the color range from the defailt). You can stick with the defaults, or choose limits that are appropriate to your data.
If you want to change the colormap and add a colorbar, simply add
colormap(summer);
colorbar;
更多回答(1 个)
KSSV
2020-6-23
Arrange all your mean values in an array.
M = mean(S(:).BoundingBox) ; % get all means in an array
rgb = vals2colormap(M,'jet') ; % get the respective colorcode for M
figure
hold on
for i = 1:17
patch(S(i).X,S(i).Y,rgb(i,:)) ;
end
colorbar
Download the function vals2colormap from the link: https://github.com/vistalab/vistateach/blob/master/cogneuro/tutorial1_timeseries/vals2colormap.m
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Colormaps 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!