XY-Graph Plot Latitude Longitude not working

1 visualización (últimos 30 días)
Michael Koidis
Michael Koidis el 21 de Feb. de 2022
Respondida: Avni Agrawal el 17 de Nov. de 2023
Hi everybody,
im currently trying to collect GPS Points in Simulink and to Plot them with the XY Graph.
The linewidth should be 20. I checked everything. I changed it so XY Plot instead of Map and there is data visible.
(Only some example data. geoplot is working)

Respuestas (1)

Avni Agrawal
Avni Agrawal el 17 de Nov. de 2023
Hi,
I understand that you are trying to plot a xy graph with latitude and longitude.The 'geoplot' function is used to create a 2D line plot of geographic coordinates on a map.
% Define the latitude and longitude coordinates
lat = [35.6895 51.5074]; % latitudes of Tokyo and London
lon = [139.6917 -0.1278]; % longitudes of Tokyo and London
% Create a geographic plot
figure
geoplot(lat, lon, 'r-')
geobasemap('landcover') % set the basemap
% Add a marker at each point
hold on
geoplot(lat, lon, 'ro')
hold off
% Add labels
text(lat(1), lon(1), 'Tokyo', 'HorizontalAlignment', 'right')
text(lat(2), lon(2), 'London', 'HorizontalAlignment', 'right')
% Add title
title('Geographic plot from Tokyo to London')
Please take a look at this documentation for better understanding:
I hope this helps.

Categorías

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

Productos


Versión

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by