Modeling Repeaters in North Florida

With the recent success of modeling all coordinated repeaters in the state, we’ve found some issues with the existing data. Issues including, coordinates being way off, powers wrong, ERP wrong and so forht. Then a major problem in northern Florida was discovered, models were ignoring the digital elevation model (DEM) when coverage was being plotted.

FASMA uses an implementation of Longely-Rice or the Irregular Terrain Model which takes into account the elevations of terrain and loss due to signals scattering and absorbed by terrain. Essentially when this data is missing it’s assumed as sea-level and the model generated is very smooth, and concentric about the transmitter. Such a model is quite far off from reality, and can over or under state the coverage (understanding is possible as we assume the antenna height above ground is now at sea level, not the actual height).

The DEM data used was provided by the Shuttle Radar Topography Mission (SRTM) which mapped the surface of the earth at resolutions not available before. The earth was scanned and elevation was averaged over 1 and 3 arc-seconds (30m and 90m). FASMA uses the 90m data as there is little gained, other than a much longer processing time, using the 30m average for non-microwave work. The USGS has several different versions of this data released, but by the most common is 2.1, which has the ability to be directly downloaded from a web-server at the USGS.

This brings us to the issue with north Florida. An example for this is the below repeater model:

NF4CQ Lake City with bad DEM data

The solid color area here indicates the model has no variation in elevation for most of it. This appears to be a rhombus shaped void centered just south of Lake City and obscuring most of North Florida. The underlying SRTM data was checked and found to possess the same void.

This discovery prompted much research into the SRTM data, and the 30m data was found to have the same issue. In the image below it can be seen of a massive gap across north Florida. Further research found this to be a product of “voids” or gaps in the SRTM radar. Typically this effects areas of deep canyons and high variation where the radar cannot see due to the angle of the shuttle to the surface of the earth. These areas of uncertainty are removed and set to negative elevation.

Black is Sea-Level, note the gap from Ocala to the State Line

USGS has newer versions of data available, known as Version 3 and includes what’s know as void fill, however it is not available for direct download. An account is required and one must point-and-click through the USGS map server interface for it. This precludes downloading automatically, as the number of 3 x 3 tiles required for US coverage is impractical to download by hand. The download is also in a different format than the HGT SRTM standard, and would need to be converted. As luck would have it, there is a web download of the SRTMv3 data as the HGT files, but it requires a user/password once registered with USGS. Using this password and some shell scripting, the entire world was able to be downloaded as SRTMv3 HGT zip files. All 14280 of them.

As the FASMA modeling program is based on SPLAT!, a conversion is required to SDF from HGT of the data. The SDF files are much larger with the entire wold of SDF files taking ~77 GiBytes of space. SPLAT! does support bzip2 compressed SDF, and a multi-threaded version of bzip2, pbzip2 was uses to compress the files in short order on a 24 core server. This compressed down to a more reasonable 10 GB.

After remodeling a number of repeaters in North Florida, it was found some tiles of DEM data looked to be corrupted, with some areas below sea-level and others with “noise” data in them. Comparisons were made with the source SRTM files and found to be perfect. Data looked good and gdal_translate was used to make PNG’s of the terrain, confirming the SRTMv3 was not the source of the issue.

 

After much trial and error to locate the bug, it was discovered uncompressed SDF files worked fine. Further when compressed again with bzip2, the resulting sdf.bz2 file rendered as expected. This was quickly confirmed as the library in SPLAT! not being able to decompress files compressed with pbzip2 perfectly. A script was made to unbzip and then bzip2 all sdf files in place. The results below show it was a simple fix. The ultimate issue will be submitted as a bug report.

The Lake City 444.9000 NF4CQ revised plots using the SRTMv3 models are below. Note due to the void “fill” it’s not a perfect and we have some discrepancies in the elevation corrections and the valid SRTM data. This is not perfect but it’s much better than assuming sea-level, especially for elevations in North Florida where 30-40m ASL is normal.

References:

 

http://srtm.fasma.org/ – FASMA has made it’s collection of SRTMv3 HGT and SDF data for the wold available for direct download.

https://e4ftl01.cr.usgs.gov/MEASURES/SRTMGL3S.003/2000.02.11/ – USGS SRTMv3 source, password required.

Leave a Comment