XY-Graph Plot Latitude Longitude not working
1 view (last 30 days)
Show older comments
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)


0 Comments
Answers (1)
Avni Agrawal
on 17 Nov 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.
0 Comments
See Also
Categories
Find more on Geographic Plots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!