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

How do we get Background Location Permissions in Expo SDK 42+?

I have a React-Native/Expo managed workflow app where I need to track a user's position when the app is running in the background. I have successfully requested and received the user's foreground location, but the next page where the user has their…
MK_Pierce
  • 916
  • 2
  • 10
  • 26
3
votes
2 answers

Japanese Date Picker Calender

Original Question I have read jQuery Datepicker Japanese Calendar, jquery japanese datepicker, https://jqueryui.com/datepicker/#localization and other sources but still cannot get my calender to display the days correctly.
Ross Symonds
  • 690
  • 1
  • 8
  • 29
3
votes
0 answers

Show custom message using WooCommerce geolocation or shipping country

I am currently trying to add on my homepage a custom message based on the location of the visitor. If the visitor have already been to the checkout and choosed shipping Country, then the message will be based on this country. Otherwise we will use…
Schmago
  • 31
  • 2
3
votes
2 answers

Geo-location by Zip/Postal Code

I'm looking for a service to get a latitude/longitude dynamically by zip/postal code. I also need this service to give me an address (city/state/country) by providing an IP Address. I will be using this service on my website and don't want to…
PsychoDUCK
  • 1,103
  • 3
  • 17
  • 35
3
votes
1 answer

Android WebView using GeolocationPermissions

I’ve looked at the various questions regarding this problem on here such as: Using navigator.geolocation.getCurrentPosition in WebView on Android 2.0+ (PhoneGap related) android webview geolocation Android: Using html5 to determine geolocation in…
rajh2504
  • 1,266
  • 2
  • 21
  • 37
3
votes
2 answers

HTML5 Geolocation problems on the IPhone

I am working on geolocation api html5, iphone results are disappointing. Tested on city ​​with tall buildings and watchPosition implementation The main problems are: Minimum accuracyfound: 49 meters Normal accuracy: 75m Returns many repeated…
Jairo
  • 31
  • 3
3
votes
1 answer

rails geokit - get travel/commute time

Is there a way to use geokit in rails to get the estimated travel time between two locations? Right now, I'm simply showing the distance away but I think a better approach would be to show '15 minutes away' -- gives it a more practical approach to…
stewart715
  • 5,557
  • 11
  • 47
  • 80
3
votes
1 answer

Auccuracy of Geolocator

I have a real quick question. As far as I know the Geolocator package uses the Android FusedLocationProviderClient to access the users location. Does this client use all the permitted opportunities to get the location (like gps,wlan,mobile…
Curious99
  • 378
  • 2
  • 12
3
votes
1 answer

How to simulate latitude and longitude values in my browser (for geolocation testing)?

I'm developing a web app where it requires me to simulate the latitude and longitude values in my browser for geolocation testing. Has anybody has experience in testing gelocation based apps? Thanks in advance!
abhiomkar
  • 4,548
  • 7
  • 29
  • 24
3
votes
0 answers

React Native background location (@mauron85/react-native-background-geolocation) - problem installing, how to link modules with Expo managed workflow?

I'm developing a sports app with React Native / Expo which needs to track user background when the app is in the background. This is related to my previous question (React Native expo-location: How to make the background location service update more…
ajupar
  • 91
  • 1
  • 3
3
votes
0 answers

How do I let my server receive background location while not in React Native App?

I have developed an app that allows me to track my users location when using they are in the app, but when I navigate outside of the app, my server loses its ability to track me, and I get disconnected. I have been told to use…
MK_Pierce
  • 916
  • 2
  • 10
  • 26
3
votes
1 answer

get building dimensions from API

Is there any way to get the approximate length and width of a building, given its' address from an API such as google maps or similar? I basically want to use it to find the lat, long coordinates of the approximate boundaries of any building or area…
John
  • 989
  • 1
  • 7
  • 11
3
votes
1 answer

How do I sort points based on a time matrix in R?

I have a time matrix in R which I computed with the help of osrm package. I want to sort the points based on the neighboring points. The sample data: name <- LETTERS[1:10] lat <- c(22.57, 22.69, 22.72, 22.50, 22.66, 22.19, 22.60, 22.27, 22.31,…
Shibaprasadb
  • 1,307
  • 1
  • 7
  • 22
3
votes
2 answers

How to generate a ' Country Name' field based on 'Lat' and 'Long' For an unique_Id Spread across the world, In SNOWFLAKES QUERY?

I have to generate country name based on Table having columns:{"ID","LAT","LONG","DATE"}. This has to be found for all the ID's spread across the world. I want to do it using sql in Snowflakes.If I were to use Python it was easier by using reverse…
Hemzz07
  • 29
  • 2
3
votes
1 answer

Take Longitude/Latitude and get UTC Offset in Perl

I'm trying to localize times that are in UTC when the only thing I know about the destination time is the longitude and latitude. I've come up with something that works, but feels kludgy: # We need to get localized time for display purposes. state…
Timothy R. Butler
  • 1,097
  • 7
  • 20