@springfield/ham-radio-utils 4.1.1 → 4.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -4,11 +4,18 @@ interface LicenseClass {
|
|
|
4
4
|
name: string;
|
|
5
5
|
}
|
|
6
6
|
export declare class BandPlan {
|
|
7
|
-
private bands;
|
|
8
|
-
private licenseClasses;
|
|
7
|
+
private readonly bands;
|
|
8
|
+
private readonly licenseClasses;
|
|
9
|
+
private readonly frsLicenseClassId;
|
|
9
10
|
constructor();
|
|
10
11
|
/**
|
|
11
|
-
* Finds the spectrum band that contains the given frequency
|
|
12
|
+
* Finds the spectrum band that contains the given frequency.
|
|
13
|
+
*
|
|
14
|
+
* Channelized allocations (FRS, GMRS, weather) interleave in the same
|
|
15
|
+
* MHz range. An exact channel match is preferred over a surrounding
|
|
16
|
+
* band envelope so FRS interstitial frequencies are not treated as GMRS
|
|
17
|
+
* repeater inputs.
|
|
18
|
+
*
|
|
12
19
|
* @param frequency The frequency in Hz to find the band for
|
|
13
20
|
* @returns The spectrum band containing the frequency, or undefined if no band contains it
|
|
14
21
|
*/
|
|
@@ -23,7 +30,9 @@ export declare class BandPlan {
|
|
|
23
30
|
* Returns whether the given license class may transmit on the frequency.
|
|
24
31
|
*
|
|
25
32
|
* Looks up the band that contains the frequency and checks that band's
|
|
26
|
-
* privileges list.
|
|
33
|
+
* privileges list. FRS is a license-free service, so any band that
|
|
34
|
+
* includes the FRS privilege is allowed for every operator. Frequencies
|
|
35
|
+
* outside every known band return false.
|
|
27
36
|
*
|
|
28
37
|
* @param frequencyHz - Frequency in Hz
|
|
29
38
|
* @param licenseClassId - Springfield license-class ID
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"band-plan.d.ts","sourceRoot":"","sources":["../../src/utils/band-plan.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,4BAA4B,CAAC;AAI/D,UAAU,YAAY;IACpB,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;CACd;AAED,qBAAa,QAAQ;IACnB,OAAO,CAAC,KAAK,CAAiB;
|
|
1
|
+
{"version":3,"file":"band-plan.d.ts","sourceRoot":"","sources":["../../src/utils/band-plan.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,4BAA4B,CAAC;AAI/D,UAAU,YAAY;IACpB,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;CACd;AAED,qBAAa,QAAQ;IACnB,OAAO,CAAC,QAAQ,CAAC,KAAK,CAAiB;IACvC,OAAO,CAAC,QAAQ,CAAC,cAAc,CAA4B;IAC3D,OAAO,CAAC,QAAQ,CAAC,iBAAiB,CAAqB;IAEvD,cAIC;IAED;;;;;;;;;;OAUG;IACH,mBAAmB,CAAC,SAAS,EAAE,MAAM,GAAG,YAAY,GAAG,SAAS,CAS/D;IAED;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,EAAE,MAAM,GAAG,YAAY,GAAG,SAAS,CAEtD;IAED;;;;;;;;;;;OAWG;IACH,YAAY,CAAC,WAAW,EAAE,MAAM,EAAE,cAAc,EAAE,MAAM,GAAG,OAAO,CAcjE;CACF"}
|
package/dist/utils/band-plan.js
CHANGED
|
@@ -3,17 +3,30 @@ import licenseClassesData from '../db/license-classes.json' with { type: 'json'
|
|
|
3
3
|
export class BandPlan {
|
|
4
4
|
bands;
|
|
5
5
|
licenseClasses;
|
|
6
|
+
frsLicenseClassId;
|
|
6
7
|
constructor() {
|
|
7
8
|
this.bands = bandsData;
|
|
8
9
|
this.licenseClasses = new Map(licenseClassesData.map((licenseClass) => [licenseClass.id, licenseClass]));
|
|
10
|
+
this.frsLicenseClassId = [...this.licenseClasses.values()].find((licenseClass) => licenseClass.name === 'FRS')?.id;
|
|
9
11
|
}
|
|
10
12
|
/**
|
|
11
|
-
* Finds the spectrum band that contains the given frequency
|
|
13
|
+
* Finds the spectrum band that contains the given frequency.
|
|
14
|
+
*
|
|
15
|
+
* Channelized allocations (FRS, GMRS, weather) interleave in the same
|
|
16
|
+
* MHz range. An exact channel match is preferred over a surrounding
|
|
17
|
+
* band envelope so FRS interstitial frequencies are not treated as GMRS
|
|
18
|
+
* repeater inputs.
|
|
19
|
+
*
|
|
12
20
|
* @param frequency The frequency in Hz to find the band for
|
|
13
21
|
* @returns The spectrum band containing the frequency, or undefined if no band contains it
|
|
14
22
|
*/
|
|
15
23
|
findBandByFrequency(frequency) {
|
|
16
|
-
|
|
24
|
+
const frequencyHz = Math.round(frequency);
|
|
25
|
+
const channelMatch = this.bands.find((band) => band.channels?.some((channel) => channel.frequency === frequencyHz));
|
|
26
|
+
if (channelMatch) {
|
|
27
|
+
return channelMatch;
|
|
28
|
+
}
|
|
29
|
+
return this.bands.find((band) => frequencyHz >= band.lowerFrequency && frequencyHz <= band.upperFrequency);
|
|
17
30
|
}
|
|
18
31
|
/**
|
|
19
32
|
* Finds a license class by its ID
|
|
@@ -27,7 +40,9 @@ export class BandPlan {
|
|
|
27
40
|
* Returns whether the given license class may transmit on the frequency.
|
|
28
41
|
*
|
|
29
42
|
* Looks up the band that contains the frequency and checks that band's
|
|
30
|
-
* privileges list.
|
|
43
|
+
* privileges list. FRS is a license-free service, so any band that
|
|
44
|
+
* includes the FRS privilege is allowed for every operator. Frequencies
|
|
45
|
+
* outside every known band return false.
|
|
31
46
|
*
|
|
32
47
|
* @param frequencyHz - Frequency in Hz
|
|
33
48
|
* @param licenseClassId - Springfield license-class ID
|
|
@@ -38,7 +53,11 @@ export class BandPlan {
|
|
|
38
53
|
if (!band) {
|
|
39
54
|
return false;
|
|
40
55
|
}
|
|
41
|
-
|
|
56
|
+
const privileges = band.privileges;
|
|
57
|
+
if (this.frsLicenseClassId && privileges.includes(this.frsLicenseClassId)) {
|
|
58
|
+
return true;
|
|
59
|
+
}
|
|
60
|
+
return privileges.includes(licenseClassId);
|
|
42
61
|
}
|
|
43
62
|
}
|
|
44
63
|
//# sourceMappingURL=band-plan.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"band-plan.js","sourceRoot":"","sources":["../../src/utils/band-plan.ts"],"names":[],"mappings":"AACA,OAAO,SAAS,MAAM,kBAAkB,CAAC,OAAO,IAAI,EAAE,MAAM,EAAE,CAAC;AAC/D,OAAO,kBAAkB,MAAM,4BAA4B,CAAC,OAAO,IAAI,EAAE,MAAM,EAAE,CAAC;AAOlF,MAAM,OAAO,QAAQ;
|
|
1
|
+
{"version":3,"file":"band-plan.js","sourceRoot":"","sources":["../../src/utils/band-plan.ts"],"names":[],"mappings":"AACA,OAAO,SAAS,MAAM,kBAAkB,CAAC,OAAO,IAAI,EAAE,MAAM,EAAE,CAAC;AAC/D,OAAO,kBAAkB,MAAM,4BAA4B,CAAC,OAAO,IAAI,EAAE,MAAM,EAAE,CAAC;AAOlF,MAAM,OAAO,QAAQ;IACF,KAAK,CAAiB;IACtB,cAAc,CAA4B;IAC1C,iBAAiB,CAAqB;IAEvD;QACE,IAAI,CAAC,KAAK,GAAG,SAA2B,CAAC;QACzC,IAAI,CAAC,cAAc,GAAG,IAAI,GAAG,CAAE,kBAAqC,CAAC,GAAG,CAAC,CAAC,YAAY,EAAE,EAAE,CAAC,CAAC,YAAY,CAAC,EAAE,EAAE,YAAY,CAAC,CAAC,CAAC,CAAC;QAC7H,IAAI,CAAC,iBAAiB,GAAG,CAAC,GAAG,IAAI,CAAC,cAAc,CAAC,MAAM,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,YAAY,EAAE,EAAE,CAAC,YAAY,CAAC,IAAI,KAAK,KAAK,CAAC,EAAE,EAAE,CAAC;IACrH,CAAC;IAED;;;;;;;;;;OAUG;IACH,mBAAmB,CAAC,SAAiB;QACnC,MAAM,WAAW,GAAG,IAAI,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC;QAC1C,MAAM,YAAY,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,CAAC,QAAQ,EAAE,IAAI,CAAC,CAAC,OAAO,EAAE,EAAE,CAAC,OAAO,CAAC,SAAS,KAAK,WAAW,CAAC,CAAC,CAAC;QAEpH,IAAI,YAAY,EAAE,CAAC;YACjB,OAAO,YAAY,CAAC;QACtB,CAAC;QAED,OAAO,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,WAAW,IAAI,IAAI,CAAC,cAAc,IAAI,WAAW,IAAI,IAAI,CAAC,cAAc,CAAC,CAAC;IAC7G,CAAC;IAED;;;;OAIG;IACH,iBAAiB,CAAC,EAAU;QAC1B,OAAO,IAAI,CAAC,cAAc,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC;IACrC,CAAC;IAED;;;;;;;;;;;OAWG;IACH,YAAY,CAAC,WAAmB,EAAE,cAAsB;QACtD,MAAM,IAAI,GAAG,IAAI,CAAC,mBAAmB,CAAC,WAAW,CAAC,CAAC;QAEnD,IAAI,CAAC,IAAI,EAAE,CAAC;YACV,OAAO,KAAK,CAAC;QACf,CAAC;QAED,MAAM,UAAU,GAAG,IAAI,CAAC,UAAsB,CAAC;QAE/C,IAAI,IAAI,CAAC,iBAAiB,IAAI,UAAU,CAAC,QAAQ,CAAC,IAAI,CAAC,iBAAiB,CAAC,EAAE,CAAC;YAC1E,OAAO,IAAI,CAAC;QACd,CAAC;QAED,OAAO,UAAU,CAAC,QAAQ,CAAC,cAAc,CAAC,CAAC;IAC7C,CAAC;CACF","sourcesContent":["import type { SpectrumBand } from '@springfield/ham-radio-api';\nimport bandsData from '../db/bands.json' with { type: 'json' };\nimport licenseClassesData from '../db/license-classes.json' with { type: 'json' };\n\ninterface LicenseClass {\n id: string;\n name: string;\n}\n\nexport class BandPlan {\n private readonly bands: SpectrumBand[];\n private readonly licenseClasses: Map<string, LicenseClass>;\n private readonly frsLicenseClassId: string | undefined;\n\n constructor() {\n this.bands = bandsData as SpectrumBand[];\n this.licenseClasses = new Map((licenseClassesData as LicenseClass[]).map((licenseClass) => [licenseClass.id, licenseClass]));\n this.frsLicenseClassId = [...this.licenseClasses.values()].find((licenseClass) => licenseClass.name === 'FRS')?.id;\n }\n\n /**\n * Finds the spectrum band that contains the given frequency.\n *\n * Channelized allocations (FRS, GMRS, weather) interleave in the same\n * MHz range. An exact channel match is preferred over a surrounding\n * band envelope so FRS interstitial frequencies are not treated as GMRS\n * repeater inputs.\n *\n * @param frequency The frequency in Hz to find the band for\n * @returns The spectrum band containing the frequency, or undefined if no band contains it\n */\n findBandByFrequency(frequency: number): SpectrumBand | undefined {\n const frequencyHz = Math.round(frequency);\n const channelMatch = this.bands.find((band) => band.channels?.some((channel) => channel.frequency === frequencyHz));\n\n if (channelMatch) {\n return channelMatch;\n }\n\n return this.bands.find((band) => frequencyHz >= band.lowerFrequency && frequencyHz <= band.upperFrequency);\n }\n\n /**\n * Finds a license class by its ID\n * @param id The ID of the license class to find\n * @returns The license class with the given ID, or undefined if not found\n */\n findPrivilegeById(id: string): LicenseClass | undefined {\n return this.licenseClasses.get(id);\n }\n\n /**\n * Returns whether the given license class may transmit on the frequency.\n *\n * Looks up the band that contains the frequency and checks that band's\n * privileges list. FRS is a license-free service, so any band that\n * includes the FRS privilege is allowed for every operator. Frequencies\n * outside every known band return false.\n *\n * @param frequencyHz - Frequency in Hz\n * @param licenseClassId - Springfield license-class ID\n * @returns true when the class has privilege on that frequency\n */\n hasPrivilege(frequencyHz: number, licenseClassId: string): boolean {\n const band = this.findBandByFrequency(frequencyHz);\n\n if (!band) {\n return false;\n }\n\n const privileges = band.privileges as string[];\n\n if (this.frsLicenseClassId && privileges.includes(this.frsLicenseClassId)) {\n return true;\n }\n\n return privileges.includes(licenseClassId);\n }\n}\n"]}
|
package/package.json
CHANGED
package/src/utils/band-plan.ts
CHANGED
|
@@ -8,21 +8,36 @@ interface LicenseClass {
|
|
|
8
8
|
}
|
|
9
9
|
|
|
10
10
|
export class BandPlan {
|
|
11
|
-
private bands: SpectrumBand[];
|
|
12
|
-
private licenseClasses: Map<string, LicenseClass>;
|
|
11
|
+
private readonly bands: SpectrumBand[];
|
|
12
|
+
private readonly licenseClasses: Map<string, LicenseClass>;
|
|
13
|
+
private readonly frsLicenseClassId: string | undefined;
|
|
13
14
|
|
|
14
15
|
constructor() {
|
|
15
16
|
this.bands = bandsData as SpectrumBand[];
|
|
16
17
|
this.licenseClasses = new Map((licenseClassesData as LicenseClass[]).map((licenseClass) => [licenseClass.id, licenseClass]));
|
|
18
|
+
this.frsLicenseClassId = [...this.licenseClasses.values()].find((licenseClass) => licenseClass.name === 'FRS')?.id;
|
|
17
19
|
}
|
|
18
20
|
|
|
19
21
|
/**
|
|
20
|
-
* Finds the spectrum band that contains the given frequency
|
|
22
|
+
* Finds the spectrum band that contains the given frequency.
|
|
23
|
+
*
|
|
24
|
+
* Channelized allocations (FRS, GMRS, weather) interleave in the same
|
|
25
|
+
* MHz range. An exact channel match is preferred over a surrounding
|
|
26
|
+
* band envelope so FRS interstitial frequencies are not treated as GMRS
|
|
27
|
+
* repeater inputs.
|
|
28
|
+
*
|
|
21
29
|
* @param frequency The frequency in Hz to find the band for
|
|
22
30
|
* @returns The spectrum band containing the frequency, or undefined if no band contains it
|
|
23
31
|
*/
|
|
24
32
|
findBandByFrequency(frequency: number): SpectrumBand | undefined {
|
|
25
|
-
|
|
33
|
+
const frequencyHz = Math.round(frequency);
|
|
34
|
+
const channelMatch = this.bands.find((band) => band.channels?.some((channel) => channel.frequency === frequencyHz));
|
|
35
|
+
|
|
36
|
+
if (channelMatch) {
|
|
37
|
+
return channelMatch;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
return this.bands.find((band) => frequencyHz >= band.lowerFrequency && frequencyHz <= band.upperFrequency);
|
|
26
41
|
}
|
|
27
42
|
|
|
28
43
|
/**
|
|
@@ -38,7 +53,9 @@ export class BandPlan {
|
|
|
38
53
|
* Returns whether the given license class may transmit on the frequency.
|
|
39
54
|
*
|
|
40
55
|
* Looks up the band that contains the frequency and checks that band's
|
|
41
|
-
* privileges list.
|
|
56
|
+
* privileges list. FRS is a license-free service, so any band that
|
|
57
|
+
* includes the FRS privilege is allowed for every operator. Frequencies
|
|
58
|
+
* outside every known band return false.
|
|
42
59
|
*
|
|
43
60
|
* @param frequencyHz - Frequency in Hz
|
|
44
61
|
* @param licenseClassId - Springfield license-class ID
|
|
@@ -51,6 +68,12 @@ export class BandPlan {
|
|
|
51
68
|
return false;
|
|
52
69
|
}
|
|
53
70
|
|
|
54
|
-
|
|
71
|
+
const privileges = band.privileges as string[];
|
|
72
|
+
|
|
73
|
+
if (this.frsLicenseClassId && privileges.includes(this.frsLicenseClassId)) {
|
|
74
|
+
return true;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
return privileges.includes(licenseClassId);
|
|
55
78
|
}
|
|
56
79
|
}
|