RF Propagation: Site Viewer
6 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
When using Site Viewer I get the following error: Range is set to maximum propagation distance, which is Earth's radius, 6371km?
2 comentarios
Jacob Halbrooks
el 28 de Mayo de 2019
This is a limit in the tool. Can you describe what you you are doing to encounter this limit? For example, are you modelling a transmitter that you expect to have a coverage area greater than the limit?
Respuestas (4)
Jacob Halbrooks
el 29 de Mayo de 2019
I can run the code you provided but do not encounter an error. The coverage map that results depends on whether the MATLAB release supports terrain. Before terrain support (R2017b and R2018a), the coverage map is large and idealized, reflecting only free-space path loss and the antenna pattern:
However, with terrain I see a more realistic looking coverage map, since the Longley-Rice model is used which includes loss due to terrain blockage and diffraction. For example, here is the coverage map running from R2019a:
Note that here the range of the coverage map is 30 km by default, which results in the smooth edge on the right-hand side. You can specify the "MaxRange" parameter to control the coverage map area. For example:
>> coverage(tx,'MaxRange',100000)
3 comentarios
Jacob Halbrooks
el 29 de Mayo de 2019
I recommend you upgrade to R2019a for terrain features with RF Propagation. In addition to default access to terrain data (Internet required) which I used to generate the coverage map above, you can also import DTED terrain using the new addCustomTerrain function. A couple of other new features you may be interested in are the ability to visualize the 3D radiation pattern on the map (see here) and ability to have multiple Site Viewer windows with programmatic control (see here).
wireless
el 9 de Oct. de 2024
Hi Jacob,
using the site viewer, you can right-click and "Show Location". This will drop a pin with the location in latitude and longitude.
Is it possible to access this data to pass in to another function directly?
Xolani Maxama
el 6 de Jun. de 2019
2 comentarios
Jacob Halbrooks
el 6 de Jun. de 2019
Do you have the 'e017_s29_30arc_v0.dt0' file that was specified? Note that "dteds" returns names assuming that they correspond to a regular set of DTED files that you must acquire separately. The files are not included in MATLAB.
A good source of DTED files is the USGS through EarthExplorer. You can select a location in the map, click "Data Sets", then expand "Digital Elevation" and "SRTM" to find data sets that are available in DTED format.
Xolani Maxama
el 18 de Jun. de 2019
2 comentarios
Jacob Halbrooks
el 18 de Jun. de 2019
You can pass multiple DTED files into a single call to addCustomTerrain by specifying them as a string array or as a cell array of char vectors. In your case, this should work:
addCustomTerrain('mydteds',{'s29_e017_1arc_v3.dt2','s29_e018_1arc_v3.dt2','s30_e017_1arc_v3.dt2','s30_e018_1arc_v3.dt2'})
Ver también
Categorías
Más información sobre RF Propagation en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!