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 .= " coalesce(importance,0.75-(rank_search::float/40)) as 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 .= " (case when centroid is null then st_y(st_centroid(geometry)) else st_y(centroid) end) as lat,";
50 $sSQL .= " (case when centroid is null then st_x(st_centroid(geometry)) else st_x(centroid) end) as lon";
51 $sSQL .= " from placex where place_id = ".(int)$this->iPlaceID;
52 $aPlace = $this->oDB->getRow($sSQL);
54 if (!$aPlace['place_id']) return null;
56 if ($this->bAddressDetails)
58 $aAddress = $this->getAddressNames();
59 $aPlace['aAddress'] = $aAddress;
62 $aClassType = getClassTypes();
64 $sClassType = $aPlace['class'].':'.$aPlace['type'].':'.$aPlace['admin_level'];
65 if (isset($aClassType[$sClassType]) && isset($aClassType[$sClassType]['simplelabel']))
67 $sAddressType = $aClassType[$aClassType]['simplelabel'];
71 $sClassType = $aPlace['class'].':'.$aPlace['type'];
72 if (isset($aClassType[$sClassType]) && isset($aClassType[$sClassType]['simplelabel']))
73 $sAddressType = $aClassType[$sClassType]['simplelabel'];
74 else $sAddressType = $aPlace['class'];
77 $aPlace['addresstype'] = $sAddressType;
82 function getAddressDetails($bAll = false)
84 if (!$this->iPlaceID) return null;
86 $sLanguagePrefArraySQL = "ARRAY[".join(',',array_map("getDBQuoted", $this->aLangPrefOrder))."]";
88 $sSQL = "select *,get_name_by_language(name,$sLanguagePrefArraySQL) as localname from get_addressdata(".$this->iPlaceID.")";
89 if (!$bAll) $sSQL .= " WHERE isaddress OR type = 'country_code'";
90 $sSQL .= " order by rank_address desc,isaddress desc";
92 $aAddressLines = $this->oDB->getAll($sSQL);
93 if (PEAR::IsError($aAddressLines))
95 var_dump($aAddressLines);
98 return $aAddressLines;
101 function getAddressNames()
103 $aAddressLines = $this->getAddressDetails(false);;
106 $aFallback = array();
107 $aClassType = getClassTypes();
108 foreach($aAddressLines as $aLine)
112 if (isset($aClassType[$aLine['class'].':'.$aLine['type'].':'.$aLine['admin_level']])) $aTypeLabel = $aClassType[$aLine['class'].':'.$aLine['type'].':'.$aLine['admin_level']];
113 elseif (isset($aClassType[$aLine['class'].':'.$aLine['type']])) $aTypeLabel = $aClassType[$aLine['class'].':'.$aLine['type']];
114 elseif (isset($aClassType['boundary:administrative:'.((int)($aLine['rank_address']/2))]))
116 $aTypeLabel = $aClassType['boundary:administrative:'.((int)($aLine['rank_address']/2))];
121 $aTypeLabel = array('simplelabel'=>'address'.$aLine['rank_address']);
124 if ($aTypeLabel && ((isset($aLine['localname']) && $aLine['localname']) || (isset($aLine['housenumber']) && $aLine['housenumber'])))
126 $sTypeLabel = strtolower(isset($aTypeLabel['simplelabel'])?$aTypeLabel['simplelabel']:$aTypeLabel['label']);
127 $sTypeLabel = str_replace(' ','_',$sTypeLabel);
128 if (!isset($aAddress[$sTypeLabel]) || (isset($aFallback[$sTypeLabel]) && $aFallback[$sTypeLabel]) || $aLine['class'] == 'place')
130 $aAddress[$sTypeLabel] = $aLine['localname']?$aLine['localname']:$aLine['housenumber'];
132 $aFallback[$sTypeLabel] = $bFallback;