--- location/supported/location.nl.inc	2009-10-01 13:48:36.754437022 +0200
+++ location/supported/location.nl.inc	2008-07-23 20:13:07.000000000 +0200
@@ -50,39 +50,3 @@ function location_map_link_nl_google($lo
     return NULL;
   }
 }
-
-/**
- * Returns a lat/lon pair of the approximate center of the given postal code in the given country
- *
- * @param $location
- *   An associative array $location where
- *     'street'       => the street portion of the location
- *     'supplemental' => additional street portion of the location
- *     'province'     => the province, state, or territory
- *     'country'      => lower-cased two-letter ISO code (REQUIRED)
- *     'postal_code'  => the international postal code for this location (REQUIRED)
- *
- * @return
- *   An associative array where
- *      'lat' => approximate latitude of the center of the postal code's area
- *      'lon' => approximate longitude of the center of the postal code's area
- *
- */
-function location_latlon_rough_nl($location = array()) {
-  if (!isset($location['postal_code'])) {
-    return NULL;
-  }
-
-  // The database only supports the 4pp format of the postcodes.
-  // That means we only need the first 4 digits
-  $postal_code = substr($location['postal_code'], 0, 4);
-
-  $result = db_query("SELECT latitude, longitude FROM {zipcodes} WHERE country = '%s' AND zip = '%s'", $location['country'], $postal_code[0]);
-
-  if ($row = db_fetch_object($result)) {
-    return array('lat' => $row->latitude, 'lon' => $row->longitude);
-  }
-  else {
-    return NULL;
-  }
-}
