8 protected $aLangPrefOrder = array();
10 protected $bAddressDetails = false;
12 function PlaceLookup(&$oDB)
17 function setLanguagePreference($aLangPrefOrder)
19 $this->aLangPrefOrder = $aLangPrefOrder;
22 function setIncludeAddressDetails($bAddressDetails = true)
24 $this->bAddressDetails = $bAddressDetails;
27 function setPlaceID($iPlaceID)
29 $this->iPlaceID = $iPlaceID;
32 function setOSMID($sType, $iID)
34 $sSQL = "select place_id from placex where osm_type = '".pg_escape_string($sType)."' and osm_id = ".(int)$iID." order by type = 'postcode' asc";
35 $this->iPlaceID = $this->oDB->getOne($sSQL);
40 if (!$this->iPlaceID) return null;
42 $sLanguagePrefArraySQL = "ARRAY[".join(',',array_map("getDBQuoted", $this->aLangPrefOrder))."]";
44 $sSQL = "select placex.place_id, partition, osm_type, osm_id, class, type, admin_level, housenumber, street, isin, postcode, country_code, extratags, parent_place_id, linked_place_id, rank_address, rank_search";
45 $sSQL .= " importance, indexed_status, indexed_date, wikipedia, calculated_country_code, ";
46 $sSQL .= " get_address_by_language(place_id, $sLanguagePrefArraySQL) as langaddress,";
47 $sSQL .= " get_name_by_language(name, $sLanguagePrefArraySQL) as placename,";
48 $sSQL .= " get_name_by_language(name, ARRAY['ref']) as ref,";
49 $sSQL .= " st_y(centroid) as lat, st_x(centroid) as lon";
50 $sSQL .= " from placex where place_id = ".(int)$this->iPlaceID;
51 $aPlace = $this->oDB->getRow($sSQL);
53 if (!$aPlace['place_id']) return null;
55 if ($this->bAddressDetails)
57 $aAddress = $this->getAddressNames();
58 $aPlace['aAddress'] = $aAddress;
61 $aClassType = getClassTypes();
63 $sClassType = $aPlace['class'].':'.$aPlace['type'].':'.$aPlace['admin_level'];
64 if (isset($aClassType[$sClassType]) && isset($aClassType[$sClassType]['simplelabel']))
66 $sAddressType = $aClassType[$aClassType]['simplelabel'];
70 $sClassType = $aPlace['class'].':'.$aPlace['type'];
71 if (isset($aClassType[$sClassType]) && isset($aClassType[$sClassType]['simplelabel']))
72 $sAddressType = $aClassType[$sClassType]['simplelabel'];
73 else $sAddressType = $aPlace['class'];
76 $aPlace['addresstype'] = $sAddressType;
81 function getAddressDetails($bAll = false)
83 if (!$this->iPlaceID) return null;
85 $sLanguagePrefArraySQL = "ARRAY[".join(',',array_map("getDBQuoted", $this->aLangPrefOrder))."]";
87 $sSQL = "select *,get_name_by_language(name,$sLanguagePrefArraySQL) as localname from get_addressdata(".$this->iPlaceID.")";
88 if (!$bAll) $sSQL .= " WHERE isaddress OR type = 'country_code'";
89 $sSQL .= " order by rank_address desc,isaddress desc";
91 $aAddressLines = $this->oDB->getAll($sSQL);
92 if (PEAR::IsError($aAddressLines))
94 var_dump($aAddressLines);
97 return $aAddressLines;
100 function getAddressNames()
102 $aAddressLines = $this->getAddressDetails(false);;
105 $aFallback = array();
106 $aClassType = getClassTypes();
107 foreach($aAddressLines as $aLine)
111 if (isset($aClassType[$aLine['class'].':'.$aLine['type'].':'.$aLine['admin_level']])) $aTypeLabel = $aClassType[$aLine['class'].':'.$aLine['type'].':'.$aLine['admin_level']];
112 elseif (isset($aClassType[$aLine['class'].':'.$aLine['type']])) $aTypeLabel = $aClassType[$aLine['class'].':'.$aLine['type']];
113 elseif (isset($aClassType['boundary:administrative:'.((int)($aLine['rank_address']/2))]))
115 $aTypeLabel = $aClassType['boundary:administrative:'.((int)($aLine['rank_address']/2))];
120 $aTypeLabel = array('simplelabel'=>'address'.$aLine['rank_address']);
123 if ($aTypeLabel && ((isset($aLine['localname']) && $aLine['localname']) || (isset($aLine['housenumber']) && $aLine['housenumber'])))
125 $sTypeLabel = strtolower(isset($aTypeLabel['simplelabel'])?$aTypeLabel['simplelabel']:$aTypeLabel['label']);
126 $sTypeLabel = str_replace(' ','_',$sTypeLabel);
127 if (!isset($aAddress[$sTypeLabel]) || (isset($aFallback[$sTypeLabel]) && $aFallback[$sTypeLabel]))
129 $aAddress[$sTypeLabel] = $aLine['localname']?$aLine['localname']:$aLine['housenumber'];
131 $aFallback[$sTypeLabel] = $bFallback;