У меня есть 4 файла формы. Я знаю, как их читать, используя этот код:
% first shape file is for whole country
Country = 'country.shp'
S_country = shaperead (country);
M_country = mapshow (S_country); % >>>> I want to be in a white with black border <<<< can you please tell me how to?
% Second shape file for a sea in the north
north_sea = 'caspian sea.shp'
S_north_sea = shaperead (north_sea);
M_north_sea = mapshow (S_north_sea ); % I want to be in blue with no border
% Third shape file for a gulf in the south
Sout_gulf = 'persiangulf.shp'
S_Sout_gulf = shaperead (Sout_gulf);
M_Sout_gulf = mapshow (S_Sout_gulf); % I want to be in blue with no border
% Fourth Shape file for a sea in the south
south_sea = 'oman sea.shp'
S_south_sea = shaperead (south_sea);
M_south_sea = mapshow (S_south_sea); % I want to be in blue with no border
Но я не знаю, как их всех собрать в одну цифру, чтобы иметь красивую фигуру страны с морем на севере и юге с цвета, которые я упомянул в комментариях к коду. Я прилагаю все 4 файла формы здесь, на моем диске Google . Спасибо.
Обновление
Благодаря вашему руководству в комментарии ниже, я использовал это: Но, тем не менее, я не могу иметь все цифры в одном
country = 'country.shp'
S_country = shaperead (country);
north_sea = 'caspian sea.shp'
S_north_sea = shaperead (north_sea);
figure
mapshow (S_country);
hold on
mapshow (S_north_sea );