|
5#

楼主 |
发表于 2019-4-11 20:43:47
|
只看该作者
这个是绘制中国地图的代码
clc;clear;clf
% shapefile中都包含了国界和省界
fnshp_L='bou2_4L.shp';
infoL = shapeinfo(fnshp_L);
readL=shaperead(fnshp_L);
mapshow(readL);
title('China');
xlabel('longitude');
ylabel('latitude');
hold on;
%axis([28,34,114,121]); |
|