├── .github └── workflows │ ├── go.yml │ └── scorecard.yml ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── SECURITY.md ├── ellipsoid ├── ellipsoid.go └── ellipsoid_test.go ├── extra ├── ellipsoid_geodcompare.sh ├── ellipsoid_perlcompare.go └── ellipsoid_perlcompare.pl ├── go.mod └── hello_world.go /.github/workflows/go.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanSchroeder/Golang-Ellipsoid/HEAD/.github/workflows/go.yml -------------------------------------------------------------------------------- /.github/workflows/scorecard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanSchroeder/Golang-Ellipsoid/HEAD/.github/workflows/scorecard.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.8 2 | *~ 3 | *.exe 4 | *.swp 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanSchroeder/Golang-Ellipsoid/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanSchroeder/Golang-Ellipsoid/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanSchroeder/Golang-Ellipsoid/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanSchroeder/Golang-Ellipsoid/HEAD/SECURITY.md -------------------------------------------------------------------------------- /ellipsoid/ellipsoid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanSchroeder/Golang-Ellipsoid/HEAD/ellipsoid/ellipsoid.go -------------------------------------------------------------------------------- /ellipsoid/ellipsoid_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanSchroeder/Golang-Ellipsoid/HEAD/ellipsoid/ellipsoid_test.go -------------------------------------------------------------------------------- /extra/ellipsoid_geodcompare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanSchroeder/Golang-Ellipsoid/HEAD/extra/ellipsoid_geodcompare.sh -------------------------------------------------------------------------------- /extra/ellipsoid_perlcompare.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanSchroeder/Golang-Ellipsoid/HEAD/extra/ellipsoid_perlcompare.go -------------------------------------------------------------------------------- /extra/ellipsoid_perlcompare.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanSchroeder/Golang-Ellipsoid/HEAD/extra/ellipsoid_perlcompare.pl -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/StefanSchroeder/Golang-Ellipsoid 2 | 3 | go 1.14 4 | -------------------------------------------------------------------------------- /hello_world.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanSchroeder/Golang-Ellipsoid/HEAD/hello_world.go --------------------------------------------------------------------------------