kopia lustrzana https://github.com/magicbug/Cloudlog
Add 4m band support to frequencyToBand function
Extended the frequencyToBand function to recognize frequencies between 70 MHz and 72 MHz as the 4m band.pull/3339/head
rodzic
04ccd0809c
commit
f1dbceafd3
|
|
@ -34,6 +34,9 @@ function frequencyToBand(frequency) {
|
|||
else if(result >= 50000000 && result <= 56000000) {
|
||||
return '6m';
|
||||
}
|
||||
else if(result >= 70000000 && result <= 72000000) {
|
||||
return '4m';
|
||||
}
|
||||
else if(result >= 144000000 && result <= 148000000) {
|
||||
return '2m';
|
||||
}
|
||||
|
|
|
|||
Ładowanie…
Reference in New Issue