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