X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/fdc40d516986f55828579f4a3db31731b8c67728..42775f959b5860d9360e8fe9efa435eff0e61c6c:/lib/AddressDetails.php diff --git a/lib/AddressDetails.php b/lib/AddressDetails.php index 3575d155..a27d3e79 100644 --- a/lib/AddressDetails.php +++ b/lib/AddressDetails.php @@ -9,10 +9,13 @@ require_once(CONST_BasePath.'/lib/ClassTypes.php'); */ class AddressDetails { + private $iPlaceID; private $aAddressLines; public function __construct(&$oDB, $iPlaceID, $sHousenumber, $mLangPref) { + $this->iPlaceID = $iPlaceID; + if (is_array($mLangPref)) { $mLangPref = $oDB->getArraySQL($oDB->getDBQuotedList($mLangPref)); } @@ -58,23 +61,16 @@ class AddressDetails return join(', ', $aParts); } - public function getAddressNames() + public function getAddressNames($sCountry = null) { $aAddress = array(); - $aFallback = array(); foreach ($this->aAddressLines as $aLine) { if (!self::isAddress($aLine)) { continue; } - $bFallback = false; - $aTypeLabel = ClassTypes\getInfo($aLine); - - if ($aTypeLabel === false) { - $aTypeLabel = ClassTypes\getFallbackInfo($aLine); - $bFallback = true; - } + $sTypeLabel = ClassTypes\getLabelTag($aLine); $sName = null; if (isset($aLine['localname']) && $aLine['localname']!=='') { @@ -84,16 +80,11 @@ class AddressDetails } if (isset($sName)) { - $sTypeLabel = strtolower(isset($aTypeLabel['simplelabel']) ? $aTypeLabel['simplelabel'] : $aTypeLabel['label']); - $sTypeLabel = str_replace(' ', '_', $sTypeLabel); + $sTypeLabel = strtolower(str_replace(' ', '_', $sTypeLabel)); if (!isset($aAddress[$sTypeLabel]) - || isset($aFallback[$sTypeLabel]) || $aLine['class'] == 'place' ) { $aAddress[$sTypeLabel] = $sName; - if ($bFallback) { - $aFallback[$sTypeLabel] = $bFallback; - } } } } @@ -101,24 +92,59 @@ class AddressDetails return $aAddress; } + /** + * Annotates the given json with geocodejson address information fields. + * + * @param array $aJson Json hash to add the fields to. + * + * Geocodejson has the following fields: + * street, locality, postcode, city, district, + * county, state, country + * + * Postcode and housenumber are added by type, district is not used. + * All other fields are set according to address rank. + */ public function addGeocodeJsonAddressParts(&$aJson) { - $aFieldMappings = array( - 'house_number' => 'housenumber', - 'road' => 'street', - 'locality' => 'locality', - 'postcode' => 'postcode', - 'city' => 'city', - 'district' => 'district', - 'county' => 'county', - 'state' => 'state', - 'country' => 'country' - ); - - $aAddrNames = $this->getAddressNames(); - foreach ($aFieldMappings as $sFrom => $sTo) { - if (isset($aAddrNames[$sFrom])) { - $aJson[$sTo] = $aAddrNames[$sFrom]; + foreach (array_reverse($this->aAddressLines) as $aLine) { + if (!$aLine['isaddress']) { + continue; + } + + if (!isset($aLine['localname']) || $aLine['localname'] == '') { + continue; + } + + if ($aLine['type'] == 'postcode' || $aLine['type'] == 'postal_code') { + $aJson['postcode'] = $aLine['localname']; + continue; + } + + if ($aLine['type'] == 'house_number') { + $aJson['housenumber'] = $aLine['localname']; + continue; + } + + if ($this->iPlaceID == $aLine['place_id']) { + continue; + } + + $iRank = (int)$aLine['rank_address']; + + if ($iRank > 25 && $iRank < 28) { + $aJson['street'] = $aLine['localname']; + } elseif ($iRank >= 22 && $iRank <= 25) { + $aJson['locality'] = $aLine['localname']; + } elseif ($iRank >= 17 && $iRank <= 21) { + $aJson['district'] = $aLine['localname']; + } elseif ($iRank >= 13 && $iRank <= 16) { + $aJson['city'] = $aLine['localname']; + } elseif ($iRank >= 10 && $iRank <= 12) { + $aJson['county'] = $aLine['localname']; + } elseif ($iRank >= 5 && $iRank <= 9) { + $aJson['state'] = $aLine['localname']; + } elseif ($iRank == 4) { + $aJson['country'] = $aLine['localname']; } } }