plotting coordinates on a simple map

4 ビュー (過去 30 日間)
Cristian Martin
Cristian Martin 2022 年 6 月 8 日
コメント済み: Cristian Martin 2022 年 6 月 8 日
Hy,
I use R2015a, and I want to plot lat and lon anywhere on a map, but :
Undefined function or variable 'geoplot'.
Error in Untitled (line 7)
geoplot(lat,lon);
how else can i do in a simple way?
Thanks!

採用された回答

Cris LaPierre
Cris LaPierre 2022 年 6 月 8 日
The geoplot function was introduced in R2018b (see here). You will need to update your version to at least that version to be able to use geoplot.
A separate version was introduced to the Mapping Toolbox in R2022a (see here) If that is what you want to use, you must be on R2022a and have the Mapping Toolbox installed.
  3 件のコメント
Cris LaPierre
Cris LaPierre 2022 年 6 月 8 日
The shape and lmites of the map can be set by you. You could adjust the following code:
lat = 9.0077;
lon = 26.0784;
axesm('MapProjection','miller','MapLatLimit',[-30 30],'MapLonLimit',[-10 45])
geoshow('landareas.shp','FaceColor',[0.5 0.7 0.5])
plotm(lat, lon,'o');
If you want country borders, that may be a bit trickier if you are lmited to R2015a. I suggest looking at this Answer from 2014
Cristian Martin
Cristian Martin 2022 年 6 月 8 日

サインインしてコメントする。

その他の回答 (0 件)

タグ

製品


リリース

R2015a

Community Treasure Hunt

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

Start Hunting!

Translated by