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
0 answers

Tracking position of a person inside a building

How would one track the position of a person in a building? I have an idea but I am unsure of its validity. Provided wifi nodes are setup in known positions around a building, one could trilaterate the position of the person. Because the distance…
Bruk Habtu
  • 115
  • 2
  • 8
3
votes
0 answers

Expo TaskManager crash when killing app on android?

I am running a background task to track locations with Location.startLocationUpdatesAsync(). Everything works great. However if I kill the app by swiping up on Android, I get a message that says "MyApp keeps stopping". I have isolated the problem to…
Nelson Fleig
  • 111
  • 1
  • 7
3
votes
1 answer

Find Latitude/Longitude Coordinates of Every Pixel in a GeoTiff Image

I currently have a 171 x 171 image from a GeoTiff file (although in other cases, I might have much bigger images). My goal is to take each pixel in the image and convert to latitude/longitude pair. I am already able to convert the corners of the…
Vincent
  • 7,808
  • 13
  • 49
  • 63
3
votes
1 answer

Open Street Map - streets by city

I am working on a system based on data collecting from OSM (Open Street Map). When I fetch (from OSM database) an area that covers MANY cities, then have I got any way to figure out which street (from the vast xml list) belong to which city? Was…
dbq
  • 111
  • 2
  • 11
3
votes
3 answers

Google maps flutter user location

it does not even show the request for permission to access the users location enter image description here i am working on a sort of a delivery application but for good upon request just like uber, the code below is to access the users location upon…
3
votes
1 answer

iPhone - CLLocationManager stops updating while trying to acquire current location

I'm trying to acquire the current location on an iOS device (specifically, my iPhone). I'm using this Apple example. The timeout before I call stopUpdatingLocations is 60 seconds. When I set the desiredAccuracy to be…
DenTheMan
  • 1,277
  • 2
  • 13
  • 21
3
votes
2 answers

is there any way to read "select mock location app" from Android developer settings?

I know the recomended way to know in Android if a location is a fake point is something like this: boolean isMock = false; if (android.os.Build.VERSION.SDK_INT >= 18) { isMock = location.isFromMockProvider(); } else { // Old Android versions…
Goin
  • 3,856
  • 26
  • 44
3
votes
4 answers

Angle between two known android geolocations

I want to find an angle between two known geolocations.Basically what I want is, I want to direct an arrow whose tail point is at my current location and arrow head is pointing towards a fixed geolocation. So I am thinking if somehow, I am able to…
AndoAiron
  • 694
  • 5
  • 19
3
votes
0 answers

Location not updating on server when app enters stationary when app is in background or is closed using mauron85/react-native-background-geolocation

Location updates correctly when app is in foreground or when sent to background while user is moving but if app goes into stationary region while app is closed or is background location stops to update. Even if I travel distance once app goes to…
coffee
  • 498
  • 2
  • 6
  • 17
3
votes
2 answers

locate user javascript return default address

I need to locate my users with high precision using javascript. At the moment I am using this lib https://github.com/onury/geolocator With the folowing options var options = { enableHighAccuracy: true, timeout: 15000, maximumWait: 15000,…
Ajouve
  • 9,735
  • 26
  • 90
  • 137
3
votes
1 answer

How can I use geolocation in my node.js to get user device lat/long

Good day all, pardon my question logic as I am new here. I am building my first fullstack App using React and Node.I am thinking of three approaches but not sure what will work best. APPROACH ONE I want to be able to get user lat/long when they fill…
Medico
  • 45
  • 1
  • 2
  • 11
3
votes
0 answers

Collect facebook geolocated restricted posts via the api

Does anybody know how to collect all geolocation restricted posts for a facebook account trough the facebook graph API? thanks
Jon
  • 766
  • 1
  • 9
  • 27
3
votes
1 answer

Location always returns "Unknown"

I've just tried my first WP7 application on a real device. My problem is that I use geolocation for one of the features, but I always get location unknown. I don't know if there's any way to grant location permissions to my app or if I am missing…
enkara
  • 6,189
  • 6
  • 34
  • 52
3
votes
1 answer

How to get the population of a location query (country or state/province and/or county) using wikipedia API?

I am trying to use the Covid-19 Dataset to build an SIR model. In order to build this model, I require the population of each location (country or province/state and/or county) to calculate the S (susceptible) in SIR. Since this dataset does not…
user10121139
3
votes
5 answers

Flutter geolocator plugin Geolocator().placemarkFromAddress() and Geolocator().placemarkFromCoordinates() do not work

I am trying to search an address and then trying to get position of that location by Geolocator and then trying to set camera position to this position but it does not work. I find out some exceptions for two methods of Geolocator. All others…
Md Mahmudul Islam
  • 2,514
  • 4
  • 18
  • 33
1 2 3
99
100