instead of this: ``` NeillLat = rxPos.getGeodeticLatitude(); validHeight = true; NeillLat = rxPos.getHeight(); validLat = true; ``` should be this: ``` NeillLat = rxPos.getGeodeticLatitude(); validLat = true; NeillHeight = rxPos.getHeight(); validHeight = true; ```
instead of this:
should be this: