@sonm10 provided great example files. Here is something I've written out:
Let's use this system as an example:
Code:
https://www.radioreference.com/apps/db/?sid=10126
LCN 1 : LSN 1 : 451.275
LCN 1 : LSN 2 : 451.275
LCN 2 : LSN 3 : 452.075
LCN 2 : LSN 4 : 452.075
LCN 3 : LSN 5 : 451.200
LCN 3 : LSN 6 : 451.200
Because Cap+ systems do not have a Network ID, you have to:
- make up a fictitous Network ID like 99999
- or use the ?sid=##### (if it's in the RRDB) as the system ID
In the above example, it is in the RRDB and the ?sid= 10126 . So we will use 10126
# DSDPlus.networks
# protocol, networkID, "network name"[, TIIIareaLength]
# example 1: site in RRDB ; ?sid=10126 ; network name is "First Energy - Sammis Plant"
Cap+, 10126, "First Energy - Sammis Plant"
# example 2: site not in RRDB ; using fictitious network ID of 99999 ; network name is "Red Devil Communications"
Cap+, 99999, "Red Devil Communications"
# DSDPlus.sites
# protocol, networkID, siteNumber, "site name"
# example 1: system in RRDB ; ?side=10126 ; site number 1 ; name of site = "Hilltop"
Cap+, 10126, 1, "Hilltop"
# example 2: system not in RRDB, using fictious Network ID of 99999 ; site number 2 ; name of site = "Lost Souls"
Cap+, 99999, 2, "Lost Souls"
# DSDPlus.frequencies
# protocol, networkID, siteNumber, OTAchannelNumber, TXfrequency, RXfrequency, sortOrder
NOTE: I find the sort order irrelevant. I leave them all 0s, but you can specify a sort order
NOTE: You only need the TXfrequency, not the RXfrequency
NOTE: You can get away with only adding lines for the ODD LSNs (OTAchanneNumber)
# example 1: system in RRDB ; ?sid=10126 ; don't care about sort order ; listing all LSNs ; site 1
Cap+, 10126, 1, 1, 451.275, 456.275, 0
Cap+, 10126, 1, 2, 451.275, 456.275, 0
Cap+, 10126, 1, 3, 452.075, 457.075, 0
Cap+, 10126, 1, 4, 452.075, 452.075, 0
Cap+, 10126, 1, 5, 451.200, 456.200, 0
Cap+, 10126, 1, 6, 451.200, 456.200, 0
# example 2: system is in RRDB ; ?sid=10126 ; only need odd LSNs (OTAchannelNumber) ; feel like changing sort order; site 1
Cap+, 10126, 1, 1, 451.275, 456.275, 1
Cap+, 10126, 1, 3, 452.075, 457.075, 2
Cap+, 10126, 1, 5, 451.200, 456.200, 3
# example 3: system is in RRDB ; ?sid=10126 ; only need odd LSNs ; want different sort order ; no RXfrequency ; site 1
Cap+, 10126, 1, 1, 451.275, 0, 2
Cap+, 10126, 1, 3, 452.075, 0, 1
Cap+, 10126, 1, 5, 451.200, 0, 3
# example 4: fictitious Network ID of 99999 ; only need odd LSNs ; want different sort order ; no RXfrequency ; site 2
Cap+, 99999, 2, 1, 154.800, 0, 11
Cap+, 99999, 2, 3, 155.220, 0, 12
Cap+, 99999, 2, 5, 162.550, 0, 20
As you can see -- all sorts of options.