21 lines
389 B
Go
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
|
|
}
|