]> git.openstreetmap.org Git - nominatim.git/blob - website/details.php
2427c9ddf811c1f45777daa9cf7ff664dbfb0336
[nominatim.git] / website / details.php
1 <?php
2 @define('CONST_ConnectionBucket_PageType', 'Details');
3
4 require_once(dirname(dirname(__FILE__)).'/settings/settings.php');
5 require_once(CONST_BasePath.'/lib/init-website.php');
6 require_once(CONST_BasePath.'/lib/log.php');
7 require_once(CONST_BasePath.'/lib/output.php');
8 ini_set('memory_limit', '200M');
9
10 $oParams = new Nominatim\ParameterParser();
11
12 $sOutputFormat = $oParams->getSet('format', array('html', 'json'), 'html');
13
14 $aLangPrefOrder = $oParams->getPreferredLanguages();
15 $sLanguagePrefArraySQL = 'ARRAY['.join(',', array_map('getDBQuoted', $aLangPrefOrder)).']';
16
17 $sPlaceId = $oParams->getString('place_id');
18 $sOsmType = $oParams->getSet('osmtype', array('N', 'W', 'R'));
19 $iOsmId = $oParams->getInt('osmid', -1);
20 $sClass = $oParams->getString('class');
21
22 $bIncludeKeywords = $oParams->getBool('keywords', false);
23 $bIncludeAddressDetails = $oParams->getBool('addressdetails', $sOutputFormat == 'html');
24 $bIncludeLinkedPlaces = $oParams->getBool('linkedplaces', true);
25 $bIncludeHierarchy = $oParams->getBool('hierarchy', $sOutputFormat == 'html');
26 $bGroupHierarchy = $oParams->getBool('group_hierarchy', false);
27 $bIncludePolygonAsGeoJSON = $oParams->getBool('polygon_geojson', $sOutputFormat == 'html');
28
29 $oDB =& getDB();
30
31 if ($sOsmType && $iOsmId > 0) {
32     $sSQL = sprintf(
33         "SELECT place_id FROM placex WHERE osm_type='%s' AND osm_id=%d",
34         $sOsmType,
35         $iOsmId
36     );
37     // osm_type and osm_id are not unique enough
38     if ($sClass) {
39         $sSQL .= " AND class='".$sClass."'";
40     }
41     $sSQL .= ' ORDER BY class ASC';
42     $sPlaceId = chksql($oDB->getOne($sSQL));
43
44     // Be nice about our error messages for broken geometry
45
46     if (!$sPlaceId) {
47         $sSQL = 'SELECT ';
48         $sSQL .= '    osm_type, ';
49         $sSQL .= '    osm_id, ';
50         $sSQL .= '    errormessage, ';
51         $sSQL .= '    class, ';
52         $sSQL .= '    type, ';
53         $sSQL .= "    get_name_by_language(name,$sLanguagePrefArraySQL) AS localname,";
54         $sSQL .= '    ST_AsText(prevgeometry) AS prevgeom, ';
55         $sSQL .= '    ST_AsText(newgeometry) AS newgeom';
56         $sSQL .= ' FROM import_polygon_error ';
57         $sSQL .= " WHERE osm_type = '".$sOsmType."'";
58         $sSQL .= '  AND osm_id = '.$iOsmId;
59         $sSQL .= ' ORDER BY updated DESC';
60         $sSQL .= ' LIMIT 1';
61         $aPointDetails = chksql($oDB->getRow($sSQL));
62         if (!PEAR::isError($aPointDetails) && $aPointDetails) {
63             if (preg_match('/\[(-?\d+\.\d+) (-?\d+\.\d+)\]/', $aPointDetails['errormessage'], $aMatches)) {
64                 $aPointDetails['error_x'] = $aMatches[1];
65                 $aPointDetails['error_y'] = $aMatches[2];
66             } else {
67                 $aPointDetails['error_x'] = 0;
68                 $aPointDetails['error_y'] = 0;
69             }
70             include(CONST_BasePath.'/lib/template/details-error-'.$sOutputFormat.'.php');
71             exit;
72         }
73     }
74 }
75
76
77 if (!$sPlaceId) userError('Please select a place id');
78
79 $iPlaceID = (int)$sPlaceId;
80
81 if (CONST_Use_US_Tiger_Data) {
82     $iParentPlaceID = chksql($oDB->getOne('SELECT parent_place_id FROM location_property_tiger WHERE place_id = '.$iPlaceID));
83     if ($iParentPlaceID) $iPlaceID = $iParentPlaceID;
84 }
85
86 // interpolated house numbers
87 $iParentPlaceID = chksql($oDB->getOne('SELECT parent_place_id FROM location_property_osmline WHERE place_id = '.$iPlaceID));
88 if ($iParentPlaceID) $iPlaceID = $iParentPlaceID;
89
90 // artificial postcodes
91 $iParentPlaceID = chksql($oDB->getOne('SELECT parent_place_id FROM location_postcode WHERE place_id = '.$iPlaceID));
92 if ($iParentPlaceID) $iPlaceID = $iParentPlaceID;
93
94 if (CONST_Use_Aux_Location_data) {
95     $iParentPlaceID = chksql($oDB->getOne('SELECT parent_place_id FROM location_property_aux WHERE place_id = '.$iPlaceID));
96     if ($iParentPlaceID) $iPlaceID = $iParentPlaceID;
97 }
98
99 $hLog = logStart($oDB, 'details', $_SERVER['QUERY_STRING'], $aLangPrefOrder);
100
101 // Get the details for this point
102 $sSQL = 'SELECT place_id, osm_type, osm_id, class, type, name, admin_level,';
103 $sSQL .= '    housenumber, postcode, country_code,';
104 $sSQL .= '    importance, wikipedia,';
105 $sSQL .= '    ROUND(EXTRACT(epoch FROM indexed_date)) AS indexed_epoch,';
106 $sSQL .= '    parent_place_id, ';
107 $sSQL .= '    rank_address, ';
108 $sSQL .= '    rank_search, ';
109 $sSQL .= '    get_searchrank_label(rank_search) AS rank_search_label,'; // only used in HTML output
110 $sSQL .= "    get_name_by_language(name,$sLanguagePrefArraySQL) AS localname, ";
111 $sSQL .= "    ST_GeometryType(geometry) in ('ST_Polygon','ST_MultiPolygon') AS isarea, ";
112 $sSQL .= '    ST_y(centroid) AS lat, ';
113 $sSQL .= '    ST_x(centroid) AS lon, ';
114 $sSQL .= '    CASE ';
115 $sSQL .= '       WHEN importance = 0 OR importance IS NULL ';
116 $sSQL .= '       THEN 0.75-(rank_search::float/40) ';
117 $sSQL .= '       ELSE importance ';
118 $sSQL .= '       END as calculated_importance, ';
119 if ($bIncludePolygonAsGeoJSON) {
120     $sSQL .= '    ST_AsGeoJSON(CASE ';
121     $sSQL .= '                WHEN ST_NPoints(geometry) > 5000 ';
122     $sSQL .= '                THEN ST_SimplifyPreserveTopology(geometry, 0.0001) ';
123     $sSQL .= '                ELSE geometry ';
124     $sSQL .= '                END) as asgeojson';
125 } else {
126     $sSQL .= '    ST_AsGeoJSON(centroid) as asgeojson';
127 }
128 $sSQL .= ' FROM placex ';
129 $sSQL .= " WHERE place_id = $iPlaceID";
130
131 $aPointDetails = chksql($oDB->getRow($sSQL), 'Could not get details of place object.');
132
133 if (!$aPointDetails) {
134     userError('Unknown place id.');
135 }
136
137 $aPointDetails['localname'] = $aPointDetails['localname']?$aPointDetails['localname']:$aPointDetails['housenumber'];
138 $aPointDetails['icon'] = Nominatim\ClassTypes\getProperty($aPointDetails, 'icon', false);
139
140 // Get all alternative names (languages, etc)
141 $sSQL = 'SELECT (each(name)).key,(each(name)).value FROM placex ';
142 $sSQL .= "WHERE place_id = $iPlaceID ORDER BY (each(name)).key";
143 $aPointDetails['aNames'] = $oDB->getAssoc($sSQL);
144 if (PEAR::isError($aPointDetails['aNames'])) { // possible timeout
145     $aPointDetails['aNames'] = array();
146 }
147
148 // Address tags
149 $sSQL = 'SELECT (each(address)).key as key,(each(address)).value FROM placex ';
150 $sSQL .= "WHERE place_id = $iPlaceID ORDER BY key";
151 $aPointDetails['aAddressTags'] = $oDB->getAssoc($sSQL);
152 if (PEAR::isError($aPointDetails['aAddressTags'])) { // possible timeout
153     $aPointDetails['aAddressTags'] = array();
154 }
155
156 // Extra tags
157 $sSQL = 'SELECT (each(extratags)).key,(each(extratags)).value FROM placex ';
158 $sSQL .= "WHERE place_id = $iPlaceID ORDER BY (each(extratags)).key";
159 $aPointDetails['aExtraTags'] = $oDB->getAssoc($sSQL);
160 if (PEAR::isError($aPointDetails['aExtraTags'])) { // possible timeout
161     $aPointDetails['aExtraTags'] = array();
162 }
163
164 // Address
165 $aAddressLines = false;
166 if ($bIncludeAddressDetails) {
167     $aAddressLines = getAddressDetails(
168         $oDB,
169         $sLanguagePrefArraySQL,
170         $iPlaceID,
171         $aPointDetails['country_code'],
172         -1,
173         true
174     );
175 }
176
177 // Linked places
178 $aLinkedLines = false;
179 if ($bIncludeLinkedPlaces) {
180     $sSQL = 'SELECT placex.place_id, osm_type, osm_id, class, type, housenumber,';
181     $sSQL .= ' admin_level, rank_address, ';
182     $sSQL .= " ST_GeometryType(geometry) in ('ST_Polygon','ST_MultiPolygon') AS isarea,";
183     $sSQL .= " ST_DistanceSpheroid(geometry, placegeometry, 'SPHEROID[\"WGS 84\",6378137,298.257223563, AUTHORITY[\"EPSG\",\"7030\"]]') AS distance, ";
184     $sSQL .= " get_name_by_language(name,$sLanguagePrefArraySQL) AS localname, ";
185     $sSQL .= ' length(name::text) AS namelength ';
186     $sSQL .= ' FROM ';
187     $sSQL .= '    placex, ';
188     $sSQL .= '    ( ';
189     $sSQL .= '      SELECT centroid AS placegeometry ';
190     $sSQL .= '      FROM placex ';
191     $sSQL .= "      WHERE place_id = $iPlaceID ";
192     $sSQL .= '    ) AS x';
193     $sSQL .= " WHERE linked_place_id = $iPlaceID";
194     $sSQL .= ' ORDER BY ';
195     $sSQL .= '   rank_address ASC, ';
196     $sSQL .= '   rank_search ASC, ';
197     $sSQL .= "   get_name_by_language(name, $sLanguagePrefArraySQL), ";
198     $sSQL .= '   housenumber';
199     $aLinkedLines = $oDB->getAll($sSQL);
200     if (PEAR::isError($aLinkedLines)) { // possible timeout
201         $aLinkedLines = array();
202     }
203 }
204
205 // All places this is an imediate parent of
206 $aHierarchyLines = false;
207 if ($bIncludeHierarchy) {
208     $sSQL = 'SELECT obj.place_id, osm_type, osm_id, class, type, housenumber,';
209     $sSQL .= " admin_level, rank_address, ST_GeometryType(geometry) in ('ST_Polygon','ST_MultiPolygon') AS isarea,";
210     $sSQL .= " ST_DistanceSpheroid(geometry, placegeometry, 'SPHEROID[\"WGS 84\",6378137,298.257223563, AUTHORITY[\"EPSG\",\"7030\"]]') AS distance, ";
211     $sSQL .= " get_name_by_language(name,$sLanguagePrefArraySQL) AS localname, ";
212     $sSQL .= ' length(name::text) AS namelength ';
213     $sSQL .= ' FROM ';
214     $sSQL .= '    ( ';
215     $sSQL .= '      SELECT placex.place_id, osm_type, osm_id, class, type, housenumber, admin_level, rank_address, rank_search, geometry, name ';
216     $sSQL .= '      FROM placex ';
217     $sSQL .= "      WHERE parent_place_id = $iPlaceID ";
218     $sSQL .= '      ORDER BY ';
219     $sSQL .= '         rank_address ASC, ';
220     $sSQL .= '         rank_search ASC ';
221     $sSQL .= '      LIMIT 500 ';
222     $sSQL .= '    ) AS obj,';
223     $sSQL .= '    ( ';
224     $sSQL .= '      SELECT centroid AS placegeometry ';
225     $sSQL .= '      FROM placex ';
226     $sSQL .= "      WHERE place_id = $iPlaceID ";
227     $sSQL .= '    ) AS x';
228     $sSQL .= ' ORDER BY ';
229     $sSQL .= '    rank_address ASC, ';
230     $sSQL .= '    rank_search ASC, ';
231     $sSQL .= '    localname, ';
232     $sSQL .= '    housenumber';
233     $aHierarchyLines = $oDB->getAll($sSQL);
234     if (PEAR::isError($aHierarchyLines)) { // possible timeout
235         $aHierarchyLines = array();
236     }
237 }
238
239 $aPlaceSearchNameKeywords = false;
240 $aPlaceSearchAddressKeywords = false;
241 if ($bIncludeKeywords) {
242     $sSQL = "SELECT * FROM search_name WHERE place_id = $iPlaceID";
243     $aPlaceSearchName = $oDB->getRow($sSQL); // can be null
244     if (!$aPlaceSearchName || PEAR::isError($aPlaceSearchName)) { // possible timeout
245         $aPlaceSearchName = array();
246     }
247
248     if (!empty($aPlaceSearchName)) {
249         $sSQL = 'SELECT * FROM word WHERE word_id in ('.substr($aPlaceSearchName['name_vector'], 1, -1).')';
250         $aPlaceSearchNameKeywords = $oDB->getAll($sSQL);
251         if (PEAR::isError($aPlaceSearchNameKeywords)) { // possible timeout
252             $aPlaceSearchNameKeywords = array();
253         }
254
255         $sSQL = 'SELECT * FROM word WHERE word_id in ('.substr($aPlaceSearchName['nameaddress_vector'], 1, -1).')';
256         $aPlaceSearchAddressKeywords = $oDB->getAll($sSQL);
257         if (PEAR::isError($aPlaceSearchAddressKeywords)) { // possible timeout
258             $aPlaceSearchAddressKeywords = array();
259         }
260     }
261 }
262
263 logEnd($oDB, $hLog, 1);
264
265 if ($sOutputFormat=='html') {
266     $sSQL = "SELECT TO_CHAR(lastimportdate,'YYYY/MM/DD HH24:MI')||' GMT' FROM import_status LIMIT 1";
267     $sDataDate = chksql($oDB->getOne($sSQL));
268     $sTileURL = CONST_Map_Tile_URL;
269     $sTileAttribution = CONST_Map_Tile_Attribution;
270 }
271
272 include(CONST_BasePath.'/lib/template/details-'.$sOutputFormat.'.php');