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.
14 lines
238 B
Go
14 lines
238 B
Go
3 years ago
|
package basic
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func TestSaturn(t *testing.T) {
|
||
|
jde := GetNowJDE() - 6000
|
||
|
for i := 0.00; i < 20; i++ {
|
||
|
fmt.Println(jde+i*365, JDE2Date(jde+i*365), JDE2Date(LastSaturnProgradeToRetrograde(jde+i*365)))
|
||
|
}
|
||
|
}
|