<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>multimap.py</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -8,8 +8,8 @@ Code for accessing various geocoding web services with an ultra simple API:
 The geocode functions return (unicode_place_name, (float_lat, float_lon)) if
 the string can be geocoded, and (None, (None, None)) if it cannot.
 
-Currently supported: Google Geocoder, Yahoo! Geocoder, Yahoo! Placemaker and
-GeoNames.
+Currently supported: Google Geocoder, Yahoo! Geocoder, Yahoo! Placemaker,
+GeoNames and Multimap.
 
 Google:
 
@@ -49,3 +49,12 @@ GeoNames:
 (u'New York', (40.714269100000003, -74.005972900000003))
 &gt;&gt;&gt; geocode('oneuth')
 (None, (None, None))
+
+Multimap:
+
+&gt;&gt;&gt; from geocoders.multimap import geocoder
+&gt;&gt;&gt; geocode = geocoder('MULTIMAP-API-KEY')
+&gt;&gt;&gt; geocode('new york')
+('New York, State of New York, United States', ('43.00035', '-75.49990'))
+&gt;&gt;&gt; geocode('oneuth')
+('Omeath, Louth', ('54.08790', '-6.26070'))
\ No newline at end of file</diff>
      <filename>README.txt</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>a89dd25ee7863bd290360bdfe326e5c6ba7a8216</id>
    </parent>
  </parents>
  <author>
    <name>Richard Keen</name>
    <email>richard.keen+github@gmail.com</email>
  </author>
  <url>http://github.com/jacobian/geocoders/commit/cce77aa0f4fb7e6cb88408bc7eee71add884f06e</url>
  <id>cce77aa0f4fb7e6cb88408bc7eee71add884f06e</id>
  <committed-date>2009-05-27T16:03:00-07:00</committed-date>
  <authored-date>2009-05-27T14:10:23-07:00</authored-date>
  <message>Add support for Multimap Open API geocoding service

Signed-off-by: Simon Willison &lt;simon@simonwillison.net&gt;</message>
  <tree>95e2478e6269d5a0c30ddd923913dcdf8c16c3e3</tree>
  <committer>
    <name>Simon Willison</name>
    <email>simon@simonwillison.net</email>
  </committer>
</commit>
