Plotting a shapefile.

116 次查看(过去 30 天)
I want to plot shapefile. Shapefile is polygon. I used following code.
India=shaperead('india.shp');
longitude=ncread(filename,'lon');
latitude=ncread(filename,'lat');
mymap=pcolor(longitude,latitude,MeanJJASRain');
mymap.EdgeAlpha=0;
hold on
colorbar
caxis('auto');
title('Mean (1901-2018');
cmp=colormap;
cmp=flipud(cmp);
colormap(cmp);
mapshow(India);
hold off
Ignoring the rest, mapshow command plots the shapefile, but the shapefile is soild and filled inside. Because of this the plot from pcolor is hidden. How to make the shapefile transparent and plot only the outline?

采纳的回答

Vimal Rathod
Vimal Rathod 2021-6-23
Hi,
You could try using FaceAlpha property of mapshow to reduce the transparency of the polygons. Have a look at this example snippet.
% you can set the value of FaceAlpha from 0 to 1
% use FaceAlpha zero for total transparency
mapshow(india, 'FaceAlpha', 0)
Refer to the following link for more info on different properties of patches

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Surface and Mesh Plots 的更多信息

产品


版本

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by