2021-10-08 16:55:40 +00:00
|
|
|
package locodedb
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2023-03-07 13:38:26 +00:00
|
|
|
locodecolumn "git.frostfs.info/TrueCloudLab/frostfs-node/pkg/util/locode/column"
|
2021-10-08 16:55:40 +00:00
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestPointFromCoordinates(t *testing.T) {
|
|
|
|
testCases := []struct {
|
|
|
|
latGot, longGot string
|
|
|
|
latWant, longWant float64
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
latGot: "5915N",
|
|
|
|
longGot: "01806E",
|
|
|
|
latWant: 59.25,
|
|
|
|
longWant: 18.10,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
latGot: "1000N",
|
|
|
|
longGot: "02030E",
|
|
|
|
latWant: 10.00,
|
|
|
|
longWant: 20.50,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
latGot: "0145S",
|
|
|
|
longGot: "03512W",
|
|
|
|
latWant: -01.75,
|
|
|
|
longWant: -35.20,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
|
|
|
crd *locodecolumn.Coordinates
|
|
|
|
point *Point
|
|
|
|
err error
|
|
|
|
)
|
|
|
|
|
|
|
|
for _, test := range testCases {
|
|
|
|
crd, err = locodecolumn.CoordinatesFromString(test.latGot + " " + test.longGot)
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
point, err = PointFromCoordinates(crd)
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
require.Equal(t, test.latWant, point.Latitude())
|
|
|
|
require.Equal(t, test.longWant, point.Longitude())
|
|
|
|
}
|
|
|
|
}
|