Cannot overlay country/state/district borders from shapefile without blocking data?
1 回表示 (過去 30 日間)
古いコメントを表示
Hi,
I'm trying to overlay district borders of India over a contourfm image. As of now when I bring in the shapefile the ploygons cover the contoured image so I cannot see the rainfall data.
contourfm(lats,lons,TOTrain)
borders = shaperead('Shapefiles/IND_adm2.shp', 'UseGeoCoords', true);
geoshow(borders);
Any help would be appreciated, Ryan
0 件のコメント
採用された回答
Kelly Kearney
2015 年 7 月 29 日
If you just want the outline of the polygons in the shapefile, try:
geoshow(borders, 'facecolor', 'none');
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!