15 lines
454 B
Go
15 lines
454 B
Go
|
package model
|
||
|
|
||
|
type Base struct {
|
||
|
Accumulation int `json:"accumulation,omitempty"`
|
||
|
AntennaOffset float64 `json:"antenna_offset,omitempty"`
|
||
|
Coordinates BaseCoordinates `json:"coordinates,omitempty"`
|
||
|
Mode string `json:"mode,omitempty"`
|
||
|
}
|
||
|
|
||
|
type BaseCoordinates struct {
|
||
|
Height float64 `json:"height,omitempty"`
|
||
|
Latitude float64 `json:"latitude,omitempty"`
|
||
|
Longitude float64 `json:"longitude,omitempty"`
|
||
|
}
|