Is there a way to make the grid of latitude/longitude bolder when I use worldmap('World')
11 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
A LL
am 13 Sep. 2020
Kommentiert: Cris LaPierre
am 22 Mai 2024
Hello, I am very new to this.
I am looking to make the grid of the lat/lon bolder when I use: worldmap('Word').
I plot a colormap over it and I can barely see the grid anymore. Is there a way I can make it bolder?
From this example:
openExample('map/SetUpWorldMapAndDrawCoastlinesExample')
Thank you
0 Kommentare
Akzeptierte Antwort
Cris LaPierre
am 14 Sep. 2020
Bearbeitet: Cris LaPierre
am 14 Sep. 2020
You could try something like this:
% Code example with slight change (w=)
w=worldmap('World');
load coastlines
plotm(coastlat,coastlon)
% Find grid line objects and modify line width
p=findobj(w,'Tag','Parallel');
m=findobj(w,'Tag','Meridian');
p.LineWidth = 5;
m.LineWidth = 5;
Remove the semicolons or use the property inspector to see what other porperties are accessible for modifying.
2 Kommentare
Cris LaPierre
am 22 Mai 2024
Ane even better way is to use gridm
% Code example with slight change (w=)
w=worldmap('World');
load coastlines
plotm(coastlat,coastlon)
% Modify grid line width
gridm('GLineWidth',5);
Weitere Antworten (0)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!