How can I display a sub-area border in a map?
조회 수: 2 (최근 30일)
이전 댓글 표시
Dear All, I created a Lambert Conic Projected map about Europe. I would like to show the border of some subregion. I tried the following code for show the Mid-Europe:
axesm('lambert','maplatlimit',[ 26.5861 71.8699],'maplonlimit',[-34.748 60.8422]);
pcolorm(lat,lon,z);
demcmap(z);
colorbar;
hold on
axesm('lambert','maplatlimit',[44 55],'maplonlimit',[ 16 30]);
S = shaperead('landareas','UseGeoCoords',true);
geoshow([S.Lat],[S.Lon], 'DisplayType', 'Polygon');
I attached the map. It shows the area of Mid-Europe but with beige facecolor. How can I show only the edge of this area?
댓글 수: 0
답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Map Display에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!