ZIP Code Geocoding
Ralph Nusser, Sogetes Computer-Services
http://www.sogetes.com
Find longitude and latitude for a given international zip code
Description:
/*
Syntax:
wv_ZIP_Geocode ( ZIP ; CountryCode)
CountryCode according ISO 636 look up here:
http://www.pruefziffernberechnung.de/Begleitdokumente/ISO-Codes.shtml
Author:
Ralph Nusser, July 27th, 2006
Example Input:
"http://ws.geonames.org/postalCodeSearch?postalcode=22767&country=DE&maxRows=50"
Example Output:
<?xml version="1.0" encoding="UTF-8" ?>
- <geonames>
<totalResultsCount>4</totalResultsCount>
- <code>
<postalcode>22767</postalcode>
<name>Hamburg</name>
<countryCode>DE</countryCode>
<lat>53.550925</lat>
<lng>9.9425</lng>
</code>
- <code>
<postalcode>22767</postalcode>
<name>Hamburg Ottensen</name>
<countryCode>DE</countryCode>
<lat>53.555</lat>
<lng>9.91806</lng>
</code>
- <code>
<postalcode>22767</postalcode>
<name>Hamburg Sankt Pauli</name>
<countryCode>DE</countryCode>
<lat>53.5511</lat>
<lng>9.97</lng>
</code>
- <code>
<postalcode>22767</postalcode>
<name>Hamburg Altona-Altstadt</name>
<countryCode>DE</countryCode>
<lat>53.5503</lat>
<lng>9.93528</lng>
</code>
</geonames>
*/
"http://ws.geonames.org/postalCodeSearch?postalcode=" &
ZIP & "&country=" & CountryCode & "&maxRows=50"
Note: these examples are not guaranteed or supported
by BrianDunning.com. Please contact the individual developer with any questions
or problems.
This
is my Web Viewer Example and I want to edit it
digg this page | del.icio.us this page
Newest Web Viewer Examples:
Web Viewer Example Authors:
Link to all of your own Web Viewer Examples on this site with the following URL:
http://www.briandunning.com/filemaker-web-viewer/results.php?author=Your
Name Here