How do we access the raw GPS coordinates from the iphone in our app
You can't get the raw values.
CoreLocation builds a mix of signals, and does not provide raw data.
See authorised answer here (and follow the advice to also tag your post to Maps and Locations tag)
https://developer.apple.com/forums/thread/19121
If we cannot get access to the raw gps coordinates how do we increase our gps accuracy?
To get best accuracy, set to kCLLocationAccuracyBest.
It is also advised to set activity to .fitness:
https://stackoverflow.com/questions/55551981/how-the-get-a-higher-gps-accuracy-in-ios-12
locationManager.desiredAccuracy = kCLLocationAccuracyBest
locationManager.activityType = .fitness
Topic:
App & System Services
SubTopic:
Core OS
Tags: