필터 지우기
필터 지우기

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