update utils
This commit is contained in:
parent
d53369f529
commit
12b8112e81
6
utils.go
6
utils.go
@ -2,7 +2,6 @@ package main
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"log"
|
"log"
|
||||||
"math"
|
|
||||||
"strconv"
|
"strconv"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -27,8 +26,3 @@ func FreqHztoMhz(freq string) string {
|
|||||||
|
|
||||||
return strconv.FormatFloat(frequency, 'f', 6, 64)
|
return strconv.FormatFloat(frequency, 'f', 6, 64)
|
||||||
}
|
}
|
||||||
|
|
||||||
func roundFloat(val float64, precision uint) float64 {
|
|
||||||
ratio := math.Pow(10, float64(precision))
|
|
||||||
return math.Round(val*ratio) / ratio
|
|
||||||
}
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user