Tagged Questions
5
votes
3answers
5k views
Google Geolocation API library
Is there a library out there that will get you your approximate location using the google service (https://www.google.com/loc/json)?
Google Gears has support for it as described here ...
3
votes
4answers
89 views
What's the best way to lookup the US county a US city resides in?
I'm looking for the best/easiest way to programmatically grab the name of the US county a given US city resides in. It doesn't seem there's a straightforward API available for such a (seemingly ...
3
votes
3answers
645 views
Given the lat/long coordinates, how can we find out the city/country?
For example if we have these set of coordinates
"latitude": 48.858844300000001,
"longitude": 2.2943506,
How can we find out the city/country?
3
votes
5answers
528 views
Find County name for a Lat/Long
I'm trying to find a webservice that will allow me to get a County name (not Country) for a specific Lat/Long. I would be performing the lookup within a server application (likely a Java ...
3
votes
4answers
2k views
Maximum length of a decimal latitude/longitude Degree?
What is the maximum length (in kilometers or miles - but please specify) that one degree of latitude and longitude can have in the Earth surface?
I'm not sure if I'm being clear enough, let me ...
2
votes
1answer
57 views
GeoIP Routing with Windows Azure
I'm working on a somewhat large project that will eventually be loaded on Azure. The idea is we will have multiple compute nodes all over the world as our customer base is potentially that large. ...
1
vote
1answer
87 views
HTML5; finding what is near me with geolocation
Disclaimer: I am slow learner; I have a list of 300 businesses with address and grid coordinates. I know how to request a users location with HTML5 Geolocation. How do I use that information to ...
1
vote
0answers
108 views
Geo-fencing…is location within fence?
I'm writing a server side java application that takes location updates from an android device. The device is traveling along a route and I want to be able to determine if it had arrived at its ...
1
vote
1answer
68 views
What measurement unit is used to determine GPS accuracy with the HTML5 geo API?
I use HTML5's geolocation API and the position object has a "accuracy" property which is a number that may vary depending on the accuracy of the positioning.
So far so good. But the value is an ...
1
vote
1answer
65 views
Geo-Coding to Region and Provider
I'm working on a product which heavily relies on Geo-Data to map locations of 'places' matching a certain criteria.
Right now when a user add's a 'place' to our inventory, using google's geo-data ...
1
vote
1answer
451 views
Implementing Geofence - C#
I need to implement Geofence in C#. Geofence area can be round, rectangle, polygon etc. Does anyone have Geofence implementation in C#?
I found Geo Fencing - point inside/outside polygon. But, it ...
1
vote
2answers
608 views
Querying within longitude and latitude in MySQL
Before asking for specific code examples, I just wanted to ask whether it is possible to make a query something like this pseudo code:
select items from table where lat/lon = -within x miles of a ...
1
vote
2answers
208 views
Determine the country iso code from GEO Coordinates
I have a mysql table with cities and for each city I have the geo coordinates. I want to build a query what should determinate the nearst city by given random coordinates of any position. Can anyone ...
0
votes
0answers
16 views
“Places” to “Point” (Latitude, Longtitude) database
Does anyone know where I can find a database(.csv,etc.) for offline use, that has perhaps all known "Places"(Businesses ,residential,road,etc..) to Point(Latitude, Longitude)?
Thanks.
0
votes
0answers
15 views
What is the best online solution to store and querying of geospatial data? [closed]
I need online service where I can put places or events and querying them by date periods, tags and do it with bounding box search.
0
votes
0answers
18 views
Is there a way to calculate distance in city blocks?
I would like to calculate out the number of city blocks between two points for a location based app (Matchbook).
I'm looking for something that is more precise than 20 blocks for a east u.s city, ...
0
votes
1answer
98 views
ElasticSearch returns items that are too far away when using a geo_distance filter
When I am searching my ElasticSearch documents using a nested filter -> and -> geo_distance I retrieve documents which are too far away (and I don't want returned.) You can see the query and a screen ...
0
votes
1answer
88 views
Why doesn't my ElasticSearch query fetch a document locating inside a geo bounding box?
Here is a sweet link to the query, the results, the mapping, and one of many documents:
https://gist.github.com/1352021
I should also note that I tried geo_distance as well, which failed to return ...
0
votes
0answers
57 views
How do I find all coordinates inside a city?
I have a question here specific to FourSquare but this question is a bit broader in that I am interested in knowing the semantics of lat/lon pairs. I am not very familiar with geocoding but from this ...
0
votes
0answers
88 views
GeoDjango - Good Gis Shape Fie for US regions - states, cities, zip codes, towns
Just wondering which shp file is best for searching places within a certain data(city name, zip code, etc). I have House model that has the address and PointField x and y.
Planning on using ...
0
votes
1answer
64 views
GeoLocation Information
How does GeoLocation service providers works?
we are working with a company that provides us a binary file monthly and we can query the file by ip address and it returns the Location of it (Country, ...
0
votes
1answer
111 views
Resolve city code from user input
There are a lot of geocode services out there (like http://geo-autocomplete.googlecode.com/svn/trunk/demo/ui.demo.html for example) where user can write a location (or part of it) and it will be ...
0
votes
2answers
520 views
Mobile Web: Request user's location when GPS is turned off
I'm building a mobile web app that incorporates GeoLocation. On the Android browser (OS 2.0+) if the user has GPS turned off, a request from my web app to get their location does NOT show up. If ...
0
votes
2answers
517 views
Querying for things near a geolocation?
I have a query that attempts to find things within a certain geolocation, but the results that it brings back are a little bit...very strange :)
I had previously posted this thread and the community ...
0
votes
1answer
2k views
Reverse Geocoding in Android App
I am trying to Reverse GeoCode current Lat/Long data to just Admin Area and Sub Admin Area using the Geocoder class.
I am using the NETWORK_PROVIDER as the Location provider. Here is the code that I ...