RF Propagation: Site Viewer
    조회 수: 5 (최근 30일)
  
       이전 댓글 표시
    
When using Site Viewer I get the following error: Range is set to maximum propagation distance, which is Earth's radius, 6371km?
댓글 수: 2
  Jacob Halbrooks
    
 2019년 5월 28일
				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?
답변 (4개)
  Jacob Halbrooks
    
 2019년 5월 29일
        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
  Jacob Halbrooks
    
 2019년 5월 29일
				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
 2024년 10월 9일
				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
 2019년 6월 6일
        댓글 수: 2
  Jacob Halbrooks
    
 2019년 6월 6일
				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
 2019년 6월 18일
        댓글 수: 2
  Jacob Halbrooks
    
 2019년 6월 18일
				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'})
참고 항목
카테고리
				Help Center 및 File Exchange에서 RF Propagation에 대해 자세히 알아보기
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


