Questions tagged [geolocation]

Geolocation is the identification of the real-world geographic location of an object, such as a cell phone or an Internet-connected computer terminal. Use [w3c-geolocation] for questions about the W3C Geolocation API.

Geolocation is closely related to positioning but can be distinguished from it by a greater emphasis on determining a meaningful location (e.g. a street address) rather than just a set of geographic coordinates. Specifically this involves the use of advanced RF location systems utilising, for example, Time Difference Of Arrival (TDOA) where greater specificity of location is possible. TDOA systems often utilise mapping displays or other graphical information system. This is in contrast to more traditional radio location technologies, for example Direction Finding where a line of bearing to a transmitter is achieved and not the specific location.

In terms of the internet and computer geolocation can be performed by associating a geographic location with the Internet Protocol (IP) address, MAC address, RFID, hardware embedded article/production number, embedded software number (such as UUID, Exif/IPTC/XMP or modern steganography), invoice, Wi-Fi connection location, or device GPS coordinates, or other, perhaps self-disclosed information. Geolocation usually works by automatically looking up an IP address on a WHOIS service and retrieving the registrant's physical address.

IP address geolocation data can include information such as country, region, city, postal/zip code, latitude, longitude and timezone. Deeper data sets can determine other parameters such as domain name, connection speed, ISP, language, proxies, company name, US DMA/MSA, NAICS codes, and home/business.

The word geolocation is also used in other contexts to refer to the process of inferring the location of a tracked animal based, for instance, on the time history of sunlight brightness or the water temperature and depth measured by an instrument attached to the animal. Such instruments are commonly called archival tags or dataloggers.


Useful links


Related tags

12397 questions
3
votes
1 answer

Unsupported feature 'assignment from non-constant source expression'

We are getting the below error when executing a standard script: Error: Unsupported feature 'assignment from non-constant source expression'. Script set geo = (Select st_makepoint(-79.3810586,43.6562331));
3
votes
2 answers

How to get the current Latitude and Longitude values of the emulator device in WP7?

Is there an option to find the location of the Emulator? I just need to plot the location of the device in the map.
Sri
  • 177
  • 1
  • 5
  • 16
3
votes
1 answer

Save coordinates to database and then do a range search

I’m using the TomTom API to find the coordinates of some places and store them into a database. What I’m trying to do now is doing a range research on only those locations. Let’s say I input 10km of range and a place, I’d expect to see the list of…
banjug
  • 45
  • 1
  • 5
3
votes
1 answer

How to upload Polygons from GeoPandas to Snowflake?

I have a geometry column of a geodataframe populated with polygons and I need to upload these to Snowflake. I have been exporting the geometry column of the geodataframe to file and have tried both CSV and GeoJSON formats, but so far I either always…
Keith
  • 1,777
  • 3
  • 15
  • 20
3
votes
0 answers

Stream of Geolocator.getPositionStream is not listen

I'm using geolocator and google_maps_flutter in my app to get user location, passing by getPositionStream. The Map is the first screen of the app, and when I get user location it work fine, and the camera of the map zoom correctly. But the user can…
Velliane
  • 65
  • 7
3
votes
2 answers

Show alert dialog in onProviderDisabled in android LocationListener

I need to Use folowing code inside the method onProviderDisabled. But it doesn't last long. How can I wait until user respond ? AlertDialog.Builder builder = new AlertDialog.Builder(Activity.this); builder.setMessage("Your GPS is disabled!…
Chrishan
  • 4,076
  • 7
  • 48
  • 67
3
votes
1 answer

ACCESS_FINE_LOCATION dialog not showing android 12

I am having some trouble with asking for FINE_LOCATION in my app. I have tried to read a bit about ACCESS_FINE_LOCATION and i know i should ask for it together with ACCESS_COARSE_LOCATION for android 12, but it seems to only show me the "approximate…
Meyben
  • 451
  • 3
  • 15
3
votes
1 answer

Android 12 not showing correct permissions request screen

My app requires precise user location because it requires the user to be at specific locations to perform tasks. I have followed the documentation for the proper way to request both ACCESS_FINE_LOCATION and ACCESS_COARSE_LOCATION together. class…
Moshe Katz
  • 15,992
  • 7
  • 69
  • 116
3
votes
2 answers

GeolocationPositionError is not defined

I'm using GeolocationPositionError which should be built in, but es-lint is telling me it's not defined. Webstorm isn't helping me import it. Where do I import this from, or is there another issue here? The code works: } catch (error) { …
Jonathan Tuzman
  • 11,568
  • 18
  • 69
  • 129
3
votes
2 answers

Flutter geolocator permissions

My code is: class _LoadingScreenState extends State { void getLocation() async { Position position = await Geolocator.getCurrentPosition( desiredAccuracy: LocationAccuracy.low); print(position); } I added to the…
Kosh
  • 960
  • 2
  • 13
  • 28
3
votes
4 answers

How do I calculate distance between GPS co-ordinates on a processor with poor floating point support?

I need to calculate the distance between GPS co-ordinates to calculate distance traveled. I've tried both the Haversine and Vincenty algorithms, which work fine on my desktop PC, but when I port the code to the dsPIC, they return 0 for points that…
Roland Rabien
  • 8,750
  • 7
  • 50
  • 67
3
votes
0 answers

How to set location coordinates of that city when a button with city name is pressed in google places api in nextjs web application?

I'm building a NextJs web app where the user can explore various stores near him. I'm using google places Api to select location from the places dropdown. Based on the location the stores are displayed. Rather typing the location I want a buttons…
vinender singh
  • 339
  • 1
  • 3
  • 8
3
votes
2 answers

Can we launch setting screen any no of time in iPhone to enable the GPS?

I have tried the launch the settings of iPhone in my application using the call CLLocationManager *locationManager = [[CLLocationManager alloc] init]; locationManager.delegate = self; [locationManager startUpdatingLocation]; [locationManager…
user855842
3
votes
2 answers

Preventing data tampering on client/server application

A bit of background info: I am building a geolocation based game for Android The server-side is coded in php Certain in-game actions requires the client application to send the current latitude and longitude to the server Is there any way to…
Ares
  • 1,411
  • 1
  • 19
  • 35
3
votes
0 answers

Metabox Geolocation Extension: How to dynamically update Restriction based on users country selection

Meta Box Extension: Geolocation I need to make the country restriction dynamically updated through user selection of a select dropdown containing the country iso2 values. I've tried to find any documentation that is similar to what I'm aiming for,…