Hi,
i need to know how i can plot this map ?

8 Comments

Please attach the data you are working with.
Hi
i need to just draw it irrespect to the sites of stations..
you can put any site just for example
thanks
As you are working with R2018a, your only option is geobubble.
However, you can't change the markers, thus you are stuck with bubbles.
Hi again
no problem with bubbles.
i need the map to not to be in grey color
i need it to e white
The water bodies will be colored gray/grey, you can not change that.
%% Example
tsunamis = readtable('tsunamis.xlsx');
geobubble(tsunamis.Latitude,tsunamis.Longitude,tsunamis.MaxHeight)
i mean the background to be white not grey
Yes, that's what I am saying.
The countries will be shown as white, but the oceans, seas and any water bodies will be gray in color. You can not change that.
thanks a lot

Sign in to comment.

 Accepted Answer

Cris LaPierre
Cris LaPierre on 27 Oct 2023
Edited: Cris LaPierre on 27 Oct 2023
load coastlines.mat
axesm('mercator','MapLatLimit',[5 35],'MapLonLimit',[60 100],'grid','on',...
'MLineLocation',10,'PLineLocation',5,'MeridianLabel','on','ParallelLabel','on',...
'LabelFormat','none','MLabelParallel',0)
plotm(coastlat,coastlon)
plotm(17.842,73.089,'r*')
plotm(9.177,77.852,'b*')
xlabel('LONGITUDE(Deg. East)')
ylabel('LATITUDE (Deg. North)')

6 Comments

where are the lat and long scales ?
Cris LaPierre
Cris LaPierre on 27 Oct 2023
Edited: Cris LaPierre on 27 Oct 2023
Updated.
You can control the appearance of the map via axesm-based map properties. Enter these as Name-Value pairs as input arguments to axesm.
thanks for response
but is it possible to improve theshape and the appearance of the map.
(adjust the location of scales to be outside the frame)
There are probably better ways to do this, but here's what worked for me
load coastlines.mat
ax = axesm('mercator','MapLatLimit',[5 35],'MapLonLimit',[60 100],'grid','on',...
'MLineLocation',10,'PLineLocation',5,'MeridianLabel','on','ParallelLabel','on',...
'LabelFormat','none','MLabelParallel',0,'Frame','on');
plotm(coastlat,coastlon)
plotm(17.842,73.089,'r*')
plotm(9.177,77.852,'b*')
% hide lines
box off
color = get(gcf,'Color');
set(ax,'XColor',color,'YColor',color)
% add labels
xlabel(ax,'LONGITUDE(Deg. East)','Color','k')
ylabel(ax,'LATITUDE (Deg. North)','Color','k')
ax.YLabel.Position(1) = ax.YLabel.Position(1) - 0.05;
Just a note, axesm and plotm requires Mapping Toolbox.
Thanks, it is much better.

Sign in to comment.

More Answers (0)

Tags

Community Treasure Hunt

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

Start Hunting!