I want to create Circles of particular radius for latitude and longitude points plotted on map

1 次查看(过去 30 天)
I am interested to create circle of different radius taking latitude and longitude as center, but I am not getting the circles on map. The code that am using is as given below:
lat = [21.1658, 21.1655, 21.16672, 21.16441, 21.15638, 21.17103, 21.17166, 21.14175, 21.17098, 21.17521,21.16423, 21.17525, 21.16205];
lon = [72.7939, 72.7937, 72.79333, 72.77744, 72.77798, 72.78658, 72.78956, 72.75316, 72.77758 ,72.80426, 72.79398, 72.78943, 72.75631];
plot(lon, lat, '.b', 'MarkerSize', 15);
grid on
plot_google_map('MapScale', 1)
R = 1 ; % radius of circle
C = [21.1658 72.7939]; % center of circle
th = linspace(0,2*pi) ;
x = C(1)+R*cos(th) ;
y = C(2)+R*sin(th) ;
plot(x,y);

回答(1 个)

Manju A B
Manju A B 2019-8-6
Error in circlevirtual (line 5)
plot_google_map('MapScale', 1)

类别

Help CenterFile Exchange 中查找有关 Geographic Plots 的更多信息

产品


版本

R2013a

Community Treasure Hunt

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

Start Hunting!

Translated by