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

looking for Iphone tutorial app to search for venues around my location

I am fairly new to objective-c and Iphone developing. I was wondering, if anyone can direct me to a good tutorial on how to make a simple app that would search for a venue like Burger King and display the venues close to my location. This will be a…
Jiraheta
  • 471
  • 7
  • 17
3
votes
1 answer

Calculate the location(lat,lon) X minutes away is between two points using the Google maps API?

I have a situation where I would like to estimate where a bus should be between two given points - the origin and the final destination. The only data I have available is the time that this bus is due at each stop between the origin and the…
3
votes
1 answer

MKLocalSearch only yields US results, how to expand search?

I am using MKLocalSearch to allow users to search for their city. However, when I try the code I only receive results in the US. Also I receive a lot of results that include stores etc. I added the filters in func completerDidUpdateResults(_…
ahmed
  • 341
  • 2
  • 9
3
votes
4 answers

Get latitude / longitude / Reverse Geocoding without displaying maps

Using a website, I am trying to capture user's latitude / longitude point and based on that grab his current address. I am able to do this using Google Maps API: geolocation and Reverse GeoCoding. But, my requirement is to get this information…
johnk1
  • 247
  • 8
  • 19
3
votes
0 answers

Reading Geolocation from Quicktime Movies with Java (Xuggler)?

I need to retrieve geolocation data from QuickTime MOVs recorded on the iPhone/iPad, from a Java application. I am currently investigating the Xuggler media framework; I was hoping I could use Xuggler's IMetaData interface to read out the UserData…
Alterscape
  • 1,526
  • 1
  • 17
  • 34
3
votes
1 answer

Capacitor iOS Geolocation watchPostion kCLErrorDomain error 1 while permission granted

I am using an older version of the capacitor geolocation, v1.3.1, and recently switched to the watchPosition implementation but occasionally that created a situation where the position is null or undefined even when the device is showing the…
BillPull
  • 6,853
  • 15
  • 60
  • 99
3
votes
2 answers

Google turn by turn API (iPhone)

I can't find API from Google which provides turn by turn based directions. Just wanted to make sure if this type is even public? If not, what are my alternatives on iOS? Thanks!
0xSina
  • 20,973
  • 34
  • 136
  • 253
3
votes
3 answers

How to: plot a given latitude and longitude into still image map using four (4) coordinates of the image?

I have created this post -> plot a real world lat lon into different angle still image map from that, I can successfully mark the given lat&lon given the two (2) coordinates (upper left, lower right) but due to incorrect angle of the still image map…
eros
  • 4,946
  • 18
  • 53
  • 78
3
votes
1 answer

Capacitor Geolocation.getCurrentPosition is very slow in IOS. Is there any other solution available?

I am using capacitor geolocation plugin to find current location coordinates(latitude and longitude). const coordinates = await Geolocation.getCurrentPosition({enableHighAccuracy:true}); const center = {lat: coordinates.coords.latitude, lng:…
3
votes
6 answers

Find long/lat's within 20 miles of user's long/lat

I'm working on an application where a user can search for items near his location. When a user registers for my service, their long/lat coordinates are taken (this is actually grabbed from a zip/postcode and then gets looked up via Google for the…
dotty
  • 40,405
  • 66
  • 150
  • 195
3
votes
1 answer

Sencha Touch refresh list after data in store has been changed

i want to do the following: I have a store which gets JSON data from the server. The JSON looks like this: {"id":"1","name":"Name1","address":"exampleaddress1","lat":"48.366268","lng":"10.892320","distance":"0"},{...}] My model and…
SimonK
  • 113
  • 1
  • 1
  • 6
3
votes
1 answer

A question about distance calculations in Spatial4J

I'm quite confused about distance calculations. I'm using this website as a reference: https://www.omnicalculator.com/other/latitude-longitude-distance Then I got an implementation of a distance calculation (haversine) from…
StFS
  • 1,639
  • 2
  • 15
  • 31
3
votes
7 answers

Blocking access for a given geographic location

What is the most reliable way to prevent users from a geographic location to access a web available application? I understand that IPs are related to geo positioning and I also understand that the most naive way is to get the HTTP request header IP…
kolrie
  • 12,562
  • 14
  • 64
  • 98
3
votes
5 answers

Extract max distance for IDs that visited multiple (lat,lon)

I have a table with this format : User lat lon u1 x1 y1 u1 x2 y2 u1 x3 y3 u2 x4 y4 u2 x5 y5 u2 x6 y6 u3 x7 y7 u3 x8 y8 What I'd like to do is have a table where for each user I have the distance between the farthest 2…
mlx
  • 504
  • 1
  • 4
  • 15
3
votes
2 answers

Determine if a given lat/long is within the borders of the USA

How can I determine if a given lat/long is within the borders of the USA? I'd like for backend code to behave in one way if within the US and another outside of the USA. Due to requirements of the application, IP Geolocation is not an option…
slipheed
  • 7,170
  • 3
  • 27
  • 38