Effacer les filtres
Effacer les filtres

Cumulative coverage of radar

3 vues (au cours des 30 derniers jours)
Filip Konecny
Filip Konecny le 10 Juil 2019
Modifié(e) : Filip Konecny le 10 Juil 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

Réponses (0)

Catégories

En savoir plus sur Radar and EW Systems dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by