Clear Filters
Clear Filters

Cumulative coverage of radar

3 views (last 30 days)
Filip Konecny
Filip Konecny on 10 Jul 2019
Edited: Filip Konecny on 10 Jul 2019
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

Answers (0)

Categories

Find more on Radar and EW Systems 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!