how do i show txsite on shapefile
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
hello,
i am working on displaying coverage of transmitter on a shapefile. i used this code to read in the shape file
ax= worldmap([-27 -17],[19 30]);
states = shaperead('BOT_outline', 'UseGeoCoords', true);
geoshow(ax, states, 'FaceColor','none')

how do i insert transmitter on the shapefile
for example
names = ["Palapye","Gaborone","francistown"];
lats = [-22.55,-24.6541,-21.1711];
lons = [27.133,25.9087,27.5002];
fq = 24e9;
txs = txsite('Name', names,...
'Antenna',dipole,'Latitude',lats,...
'Longitude',lons, ...
'TransmitterFrequency',fq);
1 Commento
Jacob Halbrooks
il 20 Set 2019
The txsite function is integrated into its own 3-D terrain map called Site Viewer, which you can launch by calling:
>> show(tx)
That map has a picker in the upper-right to let you choose alternative basemaps, including a couple that are atlas-style street maps.
Can you describe why you want the visualization on a different map than Site Viewer?
Also, what type of visualization are you looking for? Do you want to see a point or marker on the map corresponding to the txsite location, or do you want a coverage map, or something else?
Risposte (0)
Vedere anche
Categorie
Scopri di più su RF Propagation in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!