predictor/internal/pkg/ds/predictor.go
2025-06-23 04:19:26 +03:00

21 lines
389 B
Go

package ds
import "time"
type PredictionParameters struct {
LaunchLatitude float64
LaunchLongitude float64
LaunchDatetime time.Time
LaunchAltitude float64
// Add other parameters as needed
}
type PredicitonResult struct {
Latitude float64
Longitude float64
Altitude float64
Timestamp time.Time
WindU float64
WindV float64
// Add other result fields as needed
}