feat: downloader
This commit is contained in:
parent
b9c1a98895
commit
42e7924be9
37 changed files with 2422 additions and 94 deletions
|
|
@ -1,7 +1,21 @@
|
|||
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
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue