Commit bbe02748 authored by M. Rehan Abbasi's avatar M. Rehan Abbasi
Browse files

add JSON equivalents for power values structs in asset manager

parent efd725e0
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -151,15 +151,15 @@ type AssetMgr struct {
}

type CoordinatePowerValue struct {
	Latitude  float32
	Longitude float32
	Rsrq      float32
	Rsrp      float32
	Latitude  float32 `json:"latitude"`
	Longitude float32 `json:"longitude"`
	Rsrq      float32 `json:"rsrq"`
	Rsrp      float32 `json:"rsrp"`
}

type Coordinate struct {
	Latitude  float32
	Longitude float32
	Latitude  float32 `json:"latitude"`
	Longitude float32 `json:"longitude"`
}

type Position struct {