Channel ID Calculators for Type II Trunking Radio Systems
These programs takes as input a decimal number representing the channel ID displayed on a trunking receiver.
The output is the base channel of that ID and a list of its various operation modes. It also
does a simple check to see if the channel is a valid Indianapolis MECA channel ID. The program
is usable with most Type II Trunking Radio Systems.
For those without Boolean calculators, you can determine a valid base channel like such:
If the result is an Integer (e.g. 34.00, not 34.12) then you are on a channel operating in mode 0
baseChannelNumber / 16
Complex/Accurate Manual Calculation
For Type-II Trunked SMR systems you can use the following Boolean equations to calculate channel information
% is the modulus operator, modulus is a Boolean math operator (Like +, -, /, *) which returns the current
'mode' of a multiplexed binary system. It is simply a special form of whole integer division; hence the %
sign which looks like a funky / sign. In simple math 5 / 2 = 2.5 where 5 % 2 = 1 (4 / 2 remainder 1)