The geonames tag has no wiki summary.
3
votes
1answer
734 views
Importing data from geonames.org database into MySQL DB
Does anyone how to import a geonames.org data into my database? The one i'm trying to import is http://download.geonames.org/export/dump/DO.zip, and my DB its a MySQL db.
3
votes
2answers
279 views
Assessing OpenStreetMap for international routing
I have been using a commercial solution for route distances and travel times for North America and Western/Mid Europe. I am considering expanding the project to cover other countries - and perhaps the ...
2
votes
2answers
493 views
Is there an API convert long/lat to city,country rather than Google API
Is there an API convert long/lat to city,country rather than Google API?
I found that geonames does not give the city.
Thanks,
Ling
1
vote
1answer
212 views
What geographical database does Facebook use?
I'm working on an auto-complete input field somewhat similar to the one on Facebook where you start typing a city and suggestions appear.
I have been testing Geonames but it's not as precise as ...
1
vote
1answer
345 views
How to use .NET Regex.Match to Validate Postal/Zip Code Regular Expressions in Geonames Country Info Database
Greetings,
I'm using a local copy of the Geonames database, including the country-info data. My custom .NET application needs to validate the Postal/Zip codes that users input. The validation needs ...
1
vote
0answers
112 views
where did Google, SimpleGeo and such got their data about places and contexts?
I wonder where did they got those data and then build web services/api on top to serve the other 3rd party apps and services. for example - given a user's lat and long data, they can return the ...
1
vote
5answers
296 views
Slow performance on LINQ query against SQL server
I want to find geographic names that starts with characters entered in a search box. Some geographic names have alternative names in other languages. These alternative names are stored in a separate ...
1
vote
2answers
263 views
deserialize json string for multiple results
I am using Json.Net however when I go to deserialize the following json I get that Json cannot deserialize to type List.
Json:
{"postalCodes":[{"adminName2":"New ...
1
vote
1answer
737 views
call remote web service in asp.net
I am trying to call the geonames web services and return my result in json format. I found some tutorials on the net that use httpwebrequest however in msdn it says that this is obsolete. When my code ...
1
vote
2answers
315 views
Get state/province from geonames data?
I downloaded these databases for US and CA from GeoNames. The date looks like this:
5881639 100 Mile House 100 Mile House 51.64982 -121.28594 P PPL CA 02 0 917 ...
1
vote
3answers
245 views
OutofBoundsException running geonames on Android
I have a simple problem that I can't seem to figure out. I am trying to execute a geoname WebService.search method and keep getting a "java.lang.StringIndexoutOfBoundsException" error. I ran the ...
1
vote
1answer
241 views
Location Search API for iPhone App
I currently have an application that includes a screen where a user can search for a location or place (like Manhattan, Statue of Liberty, Paris, or Golden Gate Bridge) and they get a list of results ...
1
vote
1answer
270 views
NSXMLParser and Geonames
I'm trying to parse a call from Geonames with NSXMLParser in the iPhone SDK. I've used this before but for some reason I'm getting an empty dictionary back even though I get results back in a web ...
1
vote
1answer
673 views
get state and county a city belongs to with geonames database?
i have downloaded whole database from geonames.org and imported all countries into mysql.
i wonder how i can get the continent, country, state, county when i got a city's id?
cause i want to make a ...
0
votes
0answers
5 views
What is the best method to make location disambiguation for geonames data?
What is the best method to do location disambiguation for geonames data?
There are some scoring algorithm for geonames search, but they do not open source it and I'm not sure they are very ...
0
votes
1answer
38 views
Use GeoNames Java API to retrieve coordinates given Wikipedia article title
Say I have the title of a Wikipedia article, e.g. Philadelphia, and I want the coordinates of that place. I don't want to get this from Wikipedia because it looks like I'd have to retrieve the whole ...
0
votes
3answers
78 views
How to get the nearby cities of a city(geonameid) in python?
Given a radius of 100 KM from the base city(geonameid) i need to find the nearby cities.
My script is in python. Is there any API to find it out ?
Thanks
0
votes
1answer
59 views
How do I use geonames data to determine latitude and longitude of a zip code?
I was referred to GeoNames in order to store their locations in my local database. After looking at their data, and data formats, I am not sure how to figure out a latitude/longitude being provided ...
0
votes
0answers
112 views
jquery autocomplete cities with geonames - avoid duplicates in autocomplete suggestion
I'm using the jqueryUI autocomplete functionality (http://jqueryui.com/demos/autocomplete/#remote-jsonp) to search surrounding shops of cities in germany and austria. my code is the following:
...
0
votes
1answer
200 views
Autocomplete and Geonames: is it possible to retrieve city, state and country in separate input fields?
I am currently using a single INPUT field to trigger jQuery UI Autocomplete, which pulls data from Geonames.
$( "#city_state_country" ).autocomplete({
source: function( request, response ) {
...
0
votes
1answer
113 views
How to query the geoname database?
I am trying to use the database on geonames.org, i inserted all the database files into an sql database.
Now i have a couple of database tables, one with country names, one the provinces/states, and ...
0
votes
1answer
231 views
Geonames database: getting a full hierarchy (country -> admin1 -> admin2 -> city) with one only mysql query
i'm trying to use geonames database (downloaded and loaded on a local mysql) to get all associated informations from a location (lowest level is cityname) using Java and JDBC drivers.
I have a big ...
0
votes
0answers
54 views
geonames - searchjson internals
I have been experimenting with the geonames.org searchJson web service in order to retrieve a list of cities based on a user's input (e.g. the user types al and i receive a list of us ...
0
votes
1answer
39 views
Querying geonames for rows 1000-1200
I have been querying Geonames for parks per state. Mostly there are under 1000 parks per state, but I just queried Conneticut, and there are just under 1200 parks there.
I already got the 1-1000 ...
0
votes
2answers
182 views
Jquery error function to return exception message
I have an auto-complete input where visitors enter a location and it provides suggestions while you type. I'm using the Geonames web server for this.
I'm trying to return an exception message if an ...
0
votes
1answer
132 views
FIPS to ISO 3166 codes for regions
do you know any source where I could find a table that contains both FIPS and ISO 3166 codes for regions?
Thanks a lot!
0
votes
1answer
103 views
geonames exception
I am using Geonames web service for registration on my website. If an error occurs I want to send myself an email with the error. Geonames returns exceptions ...
0
votes
1answer
317 views
Geonames get latitude and longtitude
I have been coding around with Google Geocoding until I found out that the Geocoding API may only be used in conjunction with a Google map. That is unconvinient because I don't need to display a map. ...
0
votes
2answers
155 views
print custom List in JavaScript
I have a custom list earthquakes which contains a list of earthquakes. How do I parse this in JavaScript in order to add it to innerHtml and display on the screen. The problem is that I cannot get ...
0
votes
1answer
497 views
JSON Jquery Array type
I have a basic question on JSON Jquery, and it seams I am sort of stuck some at a point of extracting array objects. My Code below is in javascript, and I just wanted some clarifications as what I ...
0
votes
2answers
424 views
Geodjango with Geonames
I would like to implement a location based search, based on the geonames zip code dump. For that, I want to use geodjango, but I have no idea how to implement the geonames data for lookup. I don't ...
0
votes
2answers
3k views
JQuery Map and JSON - Getting Sub Array Elements
I'm using JQuery to get city data from geonames. My problem is when I want to extract the value for sub-array items when using the JQuery map function.
In this example, if I want to get the ...
0
votes
1answer
94 views
Are the formatted addresses of a Google location unique?
I want our users of a web site to be able to
either search and pick an address or mark a location on a map
decide how accurate this address/location is
I am in the process of implementing the ...
0
votes
4answers
862 views
get place name by providing lat and long
In my application i want to get the weather report I'm using http://www.google.com/ig/api?weather="" for that by providing a city. But for me only lat and longitude is available
How can I get the ...