func ExamplePolyBefore948() { // Example 10.b, p. 80. ΔT := deltat.PolyBefore948(333.1) UT := sexa.NewTime(false, 6, 0, 0).Sec() TD := UT + ΔT fmt.Printf("%+.0f seconds\n", ΔT) fmt.Printf("333 February 6 at %m TD", sexa.NewFmtTime(TD)) // Output: // +6146 seconds // 333 February 6 at 7ʰ42ᵐ TD }
func ExamplePolyBefore948() { // Example 10.b, p. 80. ΔT := deltat.PolyBefore948(333.1) UT := unit.TimeFromHour(6) TD := UT + ΔT fmt.Printf("%+.0f seconds\n", ΔT) fmt.Printf("333 February 6 at %m TD", sexa.FmtTime(TD)) // Output: // +6146 seconds // 333 February 6 at 7ʰ42ᵐ TD }