Questions tagged [gps]

Abbreviation for Global Positioning System; a navigational system using satellite signals to fix the location of a radio receiver on or above the earth's surface. Also "GPS" refers to the radio receiver used to receive GPS signals.

Global Positioning System (GPS) is a space-based global navigation satellite system (GNSS) that provides reliable location and time information in all weather and at all times and anywhere on or near the Earth when and where there is an unobstructed line of sight to four or more GPS satellites.

It is freely accessible to anybody with a GPS receiver. Apple, Google, and other mobile providers have developed frameworks to deal with the location services calculated from GPS, WiFi or Cell Tower.

More information can be found at:

10257 questions
34
votes
2 answers

Android GPS location accuracy issue

I am working on gps tracking apps in android. Here is my code architecture: BackgroundSyncService : A service class that is used for getting location update. Here GoogleApiClient is initialized and implements others Location related…
Md. Sajedul Karim
  • 6,749
  • 3
  • 61
  • 87
34
votes
2 answers

Getting GPS coordinates on Windows phone 7

How can I get the current GPS coordinates on Windows Phone 7?
user380719
  • 9,663
  • 15
  • 54
  • 89
33
votes
5 answers

How to get coordinates of an address in android

How do i get gps co-ordinates of the location/address entered by user in android ?
Rahul Baradia
  • 11,802
  • 17
  • 73
  • 121
33
votes
2 answers

How does GPS in a mobile phone work exactly?

I assume it doesn't connect to anything (other than the satelite I guess), is this right? Or it does and has some kind of charge?
juan
  • 80,295
  • 52
  • 162
  • 195
33
votes
7 answers

Android Location Manager, Get GPS location ,if no GPS then get to Network Provider location

I am using this given below code to get locations: public Location getLocation() { try { mLocationManager = (LocationManager) context.getSystemService(LOCATION_SERVICE); // getting GPS status boolean…
TechFanatic
  • 1,218
  • 4
  • 13
  • 31
33
votes
8 answers

Converting Longitude & Latitude to X Y on a map with Calibration points

If i have a jpeg map with size sizeX, sizeY and some calibration points on the map (X, Y, Lon, Lat) What would be the algorithm for calculating the corresponding XY point in the map with a given Longitude / Latitude pair?
Jorge
  • 2,156
  • 2
  • 22
  • 29
32
votes
2 answers

objective-c MKMapView center on user location

I'm trying to zoom into the user location as the center reference for the screen. I have this code: MainViewController.h #import #import "FlipsideViewController.h" #import #import…
sadmicrowave
  • 39,964
  • 34
  • 108
  • 180
32
votes
1 answer

Real time GPS Tracker on JUST HTML / JS and Google Maps to be run on a handphone? Is it possible?

I have read up on GPS Real time tracking and found out several things about it, mostly requiring PHP, zope and a database to store the incoming data. Some other methods uses ajax with relations to PHP. As regards to my question, is it possible to…
cheesebunz
  • 570
  • 3
  • 12
  • 23
32
votes
1 answer

System.Data.Spatial DbGeography.Distance units?

When measuring the distance between two locations using the DbGeography.Distance(otherLocation) what is the unit of the distance? Even the msdn information and the intellisense fails to specify the unit of the distance. Anyone knows? [edit] I'm…
Roger Johansson
  • 22,764
  • 18
  • 97
  • 193
31
votes
4 answers

Determining the speed of a vehicle using GPS in android

I would like to know how to get the speed of a vehicle using your phone while seated in the vehicle using gps. I have read that the accelerometer is not very accurate. Another thing is; will GPS be accessible while seated in a vehicle. Won't it have…
John Kulova
  • 477
  • 1
  • 10
  • 20
30
votes
7 answers

DGPS corrections on Android

I am developing a project that is intended to use the GPS capabilities of an Android phone and a nearby station to compute positioning to a much more precise degree (cm), using RTK DGPS technology. So far, I haven't been able to see anyone saying…
ravemir
  • 1,153
  • 2
  • 13
  • 29
30
votes
3 answers

GPS: How NTP time injection works

I've recently known about a gps.conf file in the /system/etc/ directory. Seems that tweaking NTP_SERVER values to NTP servers nearer to the usual location improves TTFF. Reading the source code in the LocationProvider class, seems that at boot, time…
Mister Smith
  • 27,417
  • 21
  • 110
  • 193
30
votes
3 answers

react-native check and prompt user to enable Network/GPS

I am looking around on how to check if network or GPS are enabled on a device when my application starts. And if they are disabled prompt the user to enable it. Is this posible in React-native?, and is there any class or tool that could help with…
Kanekotic
  • 2,824
  • 3
  • 21
  • 35
30
votes
13 answers

Google's Geocoder returns wrong country, ignoring the region hint

I'm using Google's Geocoder to find lat lng coordinates for a given address. var geocoder = new google.maps.Geocoder(); geocoder.geocode( { 'address': address, 'region': 'uk' }, function(results, status) { …
6bytes
  • 5,858
  • 9
  • 37
  • 42
30
votes
4 answers

Fused Location Provider unexpected behavior

this is how I register my app to receive location updates: mLocationRequest = LocationRequest.create(); mLocationRequest.setInterval(Consts.ONE_MINUTE *…