필터 지우기
필터 지우기

Add circles to coverage map - Antenna toolbox

조회 수: 8 (최근 30일)
Nicolas
Nicolas 2020년 6월 2일
Hello,
I am using the antenna toolbox to produce maps of TV coverage using the Longley-Rice model.
I would like to add circles around the antennas on the maps. These circles would represent the propagation of the signal not using the topography of the terrain.
They are just coded by a center and a radius.
Also, I am not able to save the produced maps (I am forced to do screenshots of the output). Is there a way to export the maps on any layer or an a shapefile instead of displaying it on Siteviewer?
My code is posted below.
Thank you!
data = readtable('data_antenna_PA');
data_receiver=readtable("data_receiver_PA");
max=height(data);
pm = propagationModel('longley-rice');
lat=transpose(data.lat_antenna);
lon=transpose(data.lon_antenna);
haat=transpose(data.haat);
fq=transpose(data.freq*10^6);
power=transpose(data.min_power);
txs = txsite( 'Latitude',lat, ...
'Longitude',lon, ...
'AntennaHeight', haat , ...
'TransmitterFrequency',fq, ...
'TransmitterPower', power );
lat_m=transpose(data_receiver.lat);
lon_m=transpose(data_receiver.lon);
rx = rxsite('Name', "test", ...
'Latitude', lat_m, ...
'Longitude', lon_m, ...
'Antenna', design(dipole,tx.TransmitterFrequency));
coverage(txs, pm,"SignalStrengths",-90:5:-5)
show(rx)

답변 (0개)

카테고리

Help CenterFile Exchange에서 Propagation and Channel Models에 대해 자세히 알아보기

제품


릴리스

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by