There are other GPS modules on the market which can give information like "the device is within 10 meters of the given coordinates". Is there a way to either get this information from the nRF9160 or calculate it from the information it provides?
There are other GPS modules on the market which can give information like "the device is within 10 meters of the given coordinates". Is there a way to either get this information from the nRF9160 or calculate it from the information it provides?
Apparently the information I was looking for is already in the PVT notification. It's the accuracy field and the comment in nrf_socket.h is:
float accuracy; /**< Accuracy (2D 1-sigma) in meters. */
So that field will give the accuracy to within one standard deviation.