Cumulative coverage of radar

2 次查看(过去 30 天)
Filip Konecny
Filip Konecny 2019-7-10
Hello,
I have the following problem. I am supposed to make a "picture" with cumulative coverage of radars.
Each radar is defined by Latitude, Longitude and by the range of the radar. The coverage of each radar is a circle. The output should be circles where the color inside the circles is based on how many circles overlap. For example if there is only one circle ( coverage) the color inside the circle is blue, two circles- the color is a bit darker blue- for example. Is there a built in matlab function for something similar?
My script is as follows ( part of it):
[latlim,longlim] = limitm(Z,R);%limits of the map
%% surveillance coverage
ax=axesm('MapProjection','mercator','MapLatLimit',latlim,'MapLonLimit',longlim,'Grid','on','Frame','on',...
'MeridianLabel','on','ParallelLabel','on','LabelFormat','compass','MLineLocation',1,'PLineLocation',1);
load('Hranice');%load State_borders
geoshow(State_borders, 'FaceColor', [1 1 1])
hold on
for i=1:delka_M
dosah=nm2km(M(i,4));
rad = nm2deg(M(i,4));
[lat_surmap,lon_surmap] = scircle1(M(i,1),M(i,2),rad);
h1=plotm(lat_surmap,lon_surmap,'LineStyle','-','Color','b','DisplayName','SSR Surveillance Coverage');
h2=plotm(M(i,1),M(i,2),'Marker','+','MarkerSize',5.75);
end
Thank you very much

回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Environment and Clutter 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by