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

update initial values for RSRQ and RSRP

parent 99cc9b25
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -2125,8 +2125,8 @@ func (am *AssetMgr) GetPowerValuesForCoordinates(coordinates []Coordinate) ([]Co
	var position Position
	var CoordinatePowerValues []CoordinatePowerValue
	for _, coord := range coordinates {
		maxRsrp := minCell4gRsrp
		maxRsrq := minCell4gRsrq
		maxRsrp := float32(0)
		maxRsrq := float32(0)
		var bestPoa string
		for _, poa := range poaMap {
			_ = json.Unmarshal([]byte(poa.Position), &position)