--- location/supported/location.us.inc	2006-08-12 09:35:19.000000000 -0400
+++ www/modules/location/supported/location.us.inc	2007-02-07 23:36:39.000000000 -0500
@@ -307,8 +307,8 @@ function location_geocode_us_google($loc
   
   $accuracy_code_match = array();
   preg_match('/Accuracy="([0-9])"/', $http_reply->data, $accuracy_code_match);
-  $accuracy_code = $accuracy_code_match[1];
-  if ($accuracy_code != 8 && $accuracy_code != 7) {
+  $accuracy_code = (int) $accuracy_code_match[1];
+  if ($accuracy_code < 5) {
     return NULL;
   }
   
