|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
Announcements
Chapters
Services
Feature Zones
|
IntroductionGeoNames is a geographical database available under a Creative Commons attribution license. This data is accessible free of charge through a number (30+) of Web services. The Web services include direct and reverse geocoding, finding places through postal codes, finding places next to a given place, weather observations for a given location, and finding Wikipedia articles about neighbouring places, etc. BackgroundI have recently been working with the GeoNames services, both from JavaScript and from .NET. Among other things, we have been working with postal code auto-completion on the Web using JavaScript, and server-side postal code validation using .NET. All these cool GeoNames services could definitely be used in many different contexts and applications. I have some ideas myself of UI controls and widgets that I would like to develop using GeoNames as data provider. Therefore, I developed this WCF client for accessing the GeoNames services from .NET in a uniform, easy object-oriented manner. Using the CodeThese are just a few C# examples of using the client. All the services are available through a single class, the using ( GeoNamesClient client = new GeoNamesClient ( ) )
{
...
}
Once the double north = 44.1, south = -9.9, east = -22.4, west = 55.2;
var cities = client.GetCities ( north, south, east, west );
foreach ( GeoCity city in cities )
{
// GeoCity has many more properties to choose from...
Console.WriteLine ( "City, Name={0}, Population={1}", city.Name, city.Population );
}
The next example shows how to find weather observation for a given location: double latitude = 42, longitude = -2;
var response = client.FindNearbyWeather ( latitude, longitude );
GeoWeatherObservation weather = response.WeatherObservation;
// GeoWeatherObservation has many more properties to choose from...
Console.WriteLine ( "Current temperature is {0} degrees
(delivered from the {1} weather station)",
weather.Temperature, weather.StationName );
The client also provides overloaded methods for specifying culture, service verbosity, and controlling the max number of records to return for each service. The example shows how to search any geographical toponym that matches " GeoToponymSearchCriteria criteria = new GeoToponymSearchCriteria ( );
criteria.Query = "london";
criteria.Culture = "es";
criteria.MaxRows = 10;
var response = client.SearchToponyms ( criteria );
foreach ( GeoToponym toponym in response )
{
// GeoToponym has many more properties to choose from...
Console.WriteLine ( "Found toponym match, name:{0}", toponym.Name );
}
Updated: Added support for geocoding addresses. This new example shows geocoding an address to determine it's spatial coordinate, and then pass coordinate to string address = "1600 Amphitheatre Parkway Mountain View, CA 94043";
double latitude, longitude;
if ( client.TryGeocode ( address, out latitude, out longitude ) )
{
var response = client.FindNearbyPostalCodes ( latitude, longitude, 10 );
foreach ( GeoPostalCode code in response )
{
...
}
}
else
Console.WriteLine ( "-- Geocoding failed --" );
ConclusionIf you need to access GeoNames services from your .NET application, you might want to look into my client. It supports all the available services, through a nice, object-oriented API. History
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||