2024-07-30 14:28:39 +02:00
|
|
|
package model
|
|
|
|
|
|
|
|
type Base struct {
|
2024-09-18 15:20:41 +02:00
|
|
|
Accumulation int `json:"accumulation"`
|
|
|
|
AntennaOffset float64 `json:"antenna_offset"`
|
|
|
|
Coordinates BaseCoordinates `json:"coordinates"`
|
|
|
|
Mode string `json:"mode"`
|
2024-07-30 14:28:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
type BaseCoordinates struct {
|
2024-09-18 15:20:41 +02:00
|
|
|
Height float64 `json:"height"`
|
|
|
|
Latitude float64 `json:"latitude"`
|
|
|
|
Longitude float64 `json:"longitude"`
|
2024-07-30 14:28:39 +02:00
|
|
|
}
|