29 lines
557 B
Go
29 lines
557 B
Go
package main
|
|
|
|
import (
|
|
"log"
|
|
"strconv"
|
|
)
|
|
|
|
func FreqMhztoHz(freq string) string {
|
|
frequency, err := strconv.ParseFloat(freq, 64)
|
|
if err != nil {
|
|
log.Println("could not convert frequency string to int", err)
|
|
}
|
|
|
|
frequency = frequency / 1000
|
|
|
|
return strconv.FormatFloat(frequency, 'f', 6, 64)
|
|
}
|
|
|
|
func FreqHztoMhz(freq string) string {
|
|
frequency, err := strconv.ParseFloat(freq, 64)
|
|
if err != nil {
|
|
log.Println("could not convert frequency string to int", err)
|
|
}
|
|
|
|
frequency = frequency * 1000
|
|
|
|
return strconv.FormatFloat(frequency, 'f', 6, 64)
|
|
}
|