]> git.openstreetmap.org Git - nominatim.git/blob - website/reverse.php
74bd700d5107f39a73ecab73ae793d03162e36f5
[nominatim.git] / website / reverse.php
1 <?php
2 @define('CONST_ConnectionBucket_PageType', 'Reverse');
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/PlaceLookup.php');
8 require_once(CONST_BasePath.'/lib/ReverseGeocode.php');
9 require_once(CONST_BasePath.'/lib/output.php');
10 ini_set('memory_limit', '200M');
11
12 $oParams = new Nominatim\ParameterParser();
13
14 $bAsGeoJSON = $oParams->getBool('polygon_geojson');
15 $bAsKML = $oParams->getBool('polygon_kml');
16 $bAsSVG = $oParams->getBool('polygon_svg');
17 $bAsText = $oParams->getBool('polygon_text');
18
19 $iWantedTypes = ($bAsGeoJSON?1:0) + ($bAsKML?1:0) + ($bAsSVG?1:0) + ($bAsText?1:0);
20 if ($iWantedTypes > CONST_PolygonOutput_MaximumTypes) {
21     if (CONST_PolygonOutput_MaximumTypes) {
22         userError("Select only ".CONST_PolygonOutput_MaximumTypes." polgyon output option");
23     } else {
24         userError("Polygon output is disabled");
25     }
26 }
27
28 // Polygon simplification threshold (optional)
29 $fThreshold = $oParams->getFloat('polygon_threshold', 0.0);
30
31 // Format for output
32 $sOutputFormat = $oParams->getSet('format', array('html', 'xml', 'json', 'jsonv2'), 'xml');
33
34 // Preferred language
35 $aLangPrefOrder = $oParams->getPreferredLanguages();
36
37 $oDB =& getDB();
38
39 $hLog = logStart($oDB, 'reverse', $_SERVER['QUERY_STRING'], $aLangPrefOrder);
40
41
42 $oPlaceLookup = new Nominatim\PlaceLookup($oDB);
43 $oPlaceLookup->setLanguagePreference($aLangPrefOrder);
44 $oPlaceLookup->setIncludeAddressDetails($oParams->getBool('addressdetails', true));
45 $oPlaceLookup->setIncludeExtraTags($oParams->getBool('extratags', false));
46 $oPlaceLookup->setIncludeNameDetails($oParams->getBool('namedetails', false));
47
48 $sOsmType = $oParams->getSet('osm_type', array('N', 'W', 'R'));
49 $iOsmId = $oParams->getInt('osm_id', -1);
50 $fLat = $oParams->getFloat('lat');
51 $fLon = $oParams->getFloat('lon');
52 $iZoom = $oParams->getInt('zoom');
53 if ($sOsmType && $iOsmId > 0) {
54     $aPlace = $oPlaceLookup->lookupOSMID($sOsmType, $iOsmId);
55 } elseif ($fLat !== false && $fLon !== false) {
56     $oReverseGeocode = new Nominatim\ReverseGeocode($oDB);
57     $oReverseGeocode->setZoom($iZoom !== false ? $iZoom : 18);
58
59     $oLookup = $oReverseGeocode->lookup($fLat, $fLon);
60     if (CONST_Debug) var_dump($oLookup);
61
62     if ($oLookup) {
63         $aPlaces = $oPlaceLookup->lookup(array($oLookup->iId => $oLookup));
64         if (sizeof($aPlaces)) {
65             $aPlace = reset($aPlaces);
66         }
67     }
68 } elseif ($sOutputFormat != 'html') {
69     userError("Need coordinates or OSM object to lookup.");
70 }
71
72 if (isset($aPlace)) {
73     $oPlaceLookup->setIncludePolygonAsPoints(false);
74     $oPlaceLookup->setIncludePolygonAsText($bAsText);
75     $oPlaceLookup->setIncludePolygonAsGeoJSON($bAsGeoJSON);
76     $oPlaceLookup->setIncludePolygonAsKML($bAsKML);
77     $oPlaceLookup->setIncludePolygonAsSVG($bAsSVG);
78     $oPlaceLookup->setPolygonSimplificationThreshold($fThreshold);
79
80     $fRadius = $fDiameter = getResultDiameter($aPlace);
81     $aOutlineResult = $oPlaceLookup->getOutlines(
82         $aPlace['place_id'],
83         $aPlace['lon'],
84         $aPlace['lat'],
85         $fRadius
86     );
87
88     if ($aOutlineResult) {
89         $aPlace = array_merge($aPlace, $aOutlineResult);
90     }
91 } else {
92     $aPlace = [];
93 }
94
95
96 if (CONST_Debug) {
97     var_dump($aPlace);
98     exit;
99 }
100
101 if ($sOutputFormat == 'html') {
102     $sDataDate = chksql($oDB->getOne("select TO_CHAR(lastimportdate - '2 minutes'::interval,'YYYY/MM/DD HH24:MI')||' GMT' from import_status limit 1"));
103     $sTileURL = CONST_Map_Tile_URL;
104     $sTileAttribution = CONST_Map_Tile_Attribution;
105 }
106 include(CONST_BasePath.'/lib/template/address-'.$sOutputFormat.'.php');