You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
astro/basic/star_test.go

17 lines
258 B
Go

package basic
import (
"fmt"
"testing"
)
func Test_Isxz(t *testing.T) {
now := GetNowJDE()
for i := 0.00; i <= 360.00; i+=0.5 {
for j := -90.00; j <= 90.00; j+=0.5 {
fmt.Println(i, j)
fmt.Println(WhichCst(float64(i), float64(j), now))
}
}
}