Overlay polygon on geographic axes

27 visualizaciones (últimos 30 días)
Caroline Nowlan
Caroline Nowlan el 29 de Oct. de 2019
Comentada: Mike D. el 29 de Abr. de 2024
I would like to overlay a patch (filled polygon) on a geographic axis created using geoaxes. Is there any way to do this in R2019b? I have only found functions for plotting lines and symbols (geoplot, geoscatter).
This would be similar to patchm in the mapping toolbox.

Respuesta aceptada

Subhadeep Koley
Subhadeep Koley el 1 de Nov. de 2019
You can use the patch() function to achieve the same. Use the code below.
% Plot your Geo data here
latSeattle = 47.62;
lonSeattle = -122.33;
latAnchorage = 61.20;
lonAnchorage = -149.9;
gx = geoaxes;
geoplot(gx,latSeattle,lonSeattle);
geobasemap(gx,'landcover');
% Plot your Patch data here
ax2 = axes;
x = [0.25 0.6 0.6 0.25]; % Modify x coordinates of the polygon
y = [0.25 0.25 0.4 0.4]; % Modify y coordinates of the polygon
patch(ax2, x, y,'red','FaceAlpha',.4); % Modify patch color and transparency
axis([0 1 0 1]);
% Set ax2 visibility to 'off'
ax2.Visible = 'off';
ax2.XTick = [];
ax2.YTick = [];
geoPatch.png
  2 comentarios
Caroline Nowlan
Caroline Nowlan el 1 de Nov. de 2019
Works perfectly. Thanks!
Evan Bates
Evan Bates el 6 de En. de 2021
Does not work with appdesigner.

Iniciar sesión para comentar.

Más respuestas (1)

Mike D.
Mike D. el 21 de Feb. de 2020
What if you had (lat,lon) coordinates of the polygon you wanted to overlay? It looks like your x and y coordinates might be normalized coordinates?
  4 comentarios
Brad Onstott
Brad Onstott el 11 de Feb. de 2023
Mike D: Good call! MATLAB 2022b does allow for an overlay consisting of user-defined Lat/Long coordinates.
Mike D.
Mike D. el 29 de Abr. de 2024
Brad, are you saying the patch command now allows color filled polygons on geoaxes, or maybe after creating a polyshape with geopolyshape?

Iniciar sesión para comentar.

Categorías

Más información sobre Geographic Plots en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by