12
GPS Solution On Android --- Ding, Liao

GPS Provider: GPS signal Network Location Provider: Cell ID Wi-Fi

Embed Size (px)

Citation preview

Page 1: GPS Provider:  GPS signal Network Location Provider:  Cell ID  Wi-Fi

GPS Solution On Android

--- Ding, Liao

Page 2: GPS Provider:  GPS signal Network Location Provider:  Cell ID  Wi-Fi

Location Providers for Android

GPS Provider: GPS signal

Network Location Provider: Cell ID Wi-Fi

Page 3: GPS Provider:  GPS signal Network Location Provider:  Cell ID  Wi-Fi

Location Providers for Android

GPS:Advantage: Most accurateDisadvantage: Only available outside More power consuming Not quick as user want

Page 4: GPS Provider:  GPS signal Network Location Provider:  Cell ID  Wi-Fi

Location Providers for Android

Network Provider:Advantage: Works both indoor and outdoor Response faster Less power consumingDisadvantage: Less accurate

Page 5: GPS Provider:  GPS signal Network Location Provider:  Cell ID  Wi-Fi

Pic1.Android devices power consuming

Page 6: GPS Provider:  GPS signal Network Location Provider:  Cell ID  Wi-Fi

Challenges in Determining User Location

Multitude of Location ResourcesGPS, Cell-ID, and Wi-Fi can each provide a clue to users location. Determining which to use and trust is a matter of trade-offs in accuracy, speed, and battery-efficiency.

User Movements Because the user location changes, you must account for

movement by re-estimating user location every so often. Varying Accuracy

Location estimates coming from each location source are not consistent in their accuracy. A location obtained 10 seconds ago from one source might be more accurate than the newest location from another or same source.

Page 7: GPS Provider:  GPS signal Network Location Provider:  Cell ID  Wi-Fi

Flow for Obtain User Location on Android

1. Start application.2. Sometime later, start listening for

updates from desired location providers.

3. Maintain a "current best estimate" of location by filtering out new, but less accurate fixes.

4. Stop listening for location updates.5. Take advantage of the last best

location estimate.

Page 8: GPS Provider:  GPS signal Network Location Provider:  Cell ID  Wi-Fi

Pic2. Flow for Obtain User Location on Android

Page 9: GPS Provider:  GPS signal Network Location Provider:  Cell ID  Wi-Fi

Maintaining A Current Best Estimate

The Typical Flow to Validate the Accurate: Check if the location retrieved is

significantly newer than the previous estimate.

Check if the accuracy claimed by the location is better or worse than the previous estimate.

Check which provider the new location is from and determine if you trust it more.

Page 10: GPS Provider:  GPS signal Network Location Provider:  Cell ID  Wi-Fi

Solution to Save Battery

Reduce the size of the window A smaller window in which you listen for location updates

means less interaction with GPS and network location services

Set the location providers to return updates less frequently

Reducing the rate at which new updates appear during the window can also improve battery efficiency, but at the cost of accuracy

Restrict a set of providers Depending on the environment where application is used

or the desired level of accuracy, might choose to use only the Network Location Provider or only GPS, instead of both. I

Page 11: GPS Provider:  GPS signal Network Location Provider:  Cell ID  Wi-Fi

PS

Accuracy for Location: The documentation

on getAccuracy() says that it returns the accuracy in meters. That this means if you get a return value of 60 you are somewhere in a circle with a 60 meter radius around the supplied position.

Page 12: GPS Provider:  GPS signal Network Location Provider:  Cell ID  Wi-Fi

THANKS !!!