Index: includes/geo.wkb.inc =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/geo/includes/geo.wkb.inc,v retrieving revision 1.11 diff -r1.11 geo.wkb.inc 54c54,60 < $data = array_merge($data, unpack('dx/dy', $tmp)); --- > > // Fetch the point and ensure there are no locale-specific commas. > $point = unpack('dx/dy', $tmp); > $point['x'] = str_replace(',', '.', $point['x']); > $point['y'] = str_replace(',', '.', $point['y']); > > $data = array_merge($data, $point, $tmp);