UNPKG

3gpp

Version:

npm package for 3gpp specs, focusing on 36 series (LTE) and 38 series (NR)

10 lines (9 loc) 447 B
const table_5_1_1_definition_of_frequency_ranges = class { static title = 'Table 5.1-1: Definition of frequency ranges'; static head = ['Frequency range designation', 'Corresponding frequency range']; static body = [['FR1', 410, 7125], ['FR2', 24250, 52600]]; static lookup = fr => this.body.filter(row => row[0].toLowerCase() === ('FR'+fr).toLowerCase())[0].slice(1); }; module.exports = { table_5_1_1_definition_of_frequency_ranges };