Nando Lambrusco
Nando Lambrusco

Reputation: 127

Reading NMEA data from iPhone GPS receiver

I am looking for a way to get NMEA data from the builtin gps receiver of a iPhone.

Is there a way to access this data without using CLLocationFramework?

Upvotes: 0

Views: 2592

Answers (2)

bioffe
bioffe

Reputation: 6383

I don't see why you wouldn't be able to forge your own $GPGGA sentence based in information that can be retrieved from CLLocationFramework. Obviously you won't be able to set then number of satellites and HDOPs value will be approximated. If you must have NMEA0183 sentences, you could create them yourself.

Upvotes: 0

rckoenes
rckoenes

Reputation: 69469

NO, apple does not allow you to acces the GPS in an other way then via the CoreLocation Framework.

This also means that device without an GRPS chip can support location (it will use triangulation via WiFi).

Upvotes: 1

Related Questions