3 require_once(CONST_BasePath.'/lib/init-website.php');
4 require_once(CONST_BasePath.'/lib/log.php');
5 require_once(CONST_BasePath.'/lib/PlaceLookup.php');
6 require_once(CONST_BasePath.'/lib/ReverseGeocode.php');
7 require_once(CONST_BasePath.'/lib/output.php');
8 ini_set('memory_limit', '200M');
10 $oParams = new Nominatim\ParameterParser();
13 $sOutputFormat = $oParams->getSet('format', array('html', 'xml', 'json', 'jsonv2', 'geojson', 'geocodejson'), 'xml');
14 set_exception_handler_by_format($sOutputFormat);
17 $aLangPrefOrder = $oParams->getPreferredLanguages();
21 $hLog = logStart($oDB, 'reverse', $_SERVER['QUERY_STRING'], $aLangPrefOrder);
23 $oPlaceLookup = new Nominatim\PlaceLookup($oDB);
24 $oPlaceLookup->loadParamArray($oParams);
25 $oPlaceLookup->setIncludeAddressDetails($oParams->getBool('addressdetails', true));
27 $sOsmType = $oParams->getSet('osm_type', array('N', 'W', 'R'));
28 $iOsmId = $oParams->getInt('osm_id', -1);
29 $fLat = $oParams->getFloat('lat');
30 $fLon = $oParams->getFloat('lon');
31 $iZoom = $oParams->getInt('zoom', 18);
33 if ($sOsmType && $iOsmId > 0) {
34 $aPlace = $oPlaceLookup->lookupOSMID($sOsmType, $iOsmId);
35 } elseif ($fLat !== false && $fLon !== false) {
36 $oReverseGeocode = new Nominatim\ReverseGeocode($oDB);
37 $oReverseGeocode->setZoom($iZoom);
39 $oLookup = $oReverseGeocode->lookup($fLat, $fLon);
40 if (CONST_Debug) var_dump($oLookup);
43 $aPlaces = $oPlaceLookup->lookup(array($oLookup->iId => $oLookup));
44 if (!empty($aPlaces)) {
45 $aPlace = reset($aPlaces);
48 } elseif ($sOutputFormat != 'html') {
49 userError('Need coordinates or OSM object to lookup.');
53 $aOutlineResult = $oPlaceLookup->getOutlines(
57 Nominatim\ClassTypes\getProperty($aPlace, 'defdiameter', 0.0001),
62 if ($aOutlineResult) {
63 $aPlace = array_merge($aPlace, $aOutlineResult);
69 logEnd($oDB, $hLog, count($aPlace) ? 1 : 0);
76 if ($sOutputFormat == 'html') {
77 $sDataDate = chksql($oDB->getOne("select TO_CHAR(lastimportdate,'YYYY/MM/DD HH24:MI')||' GMT' from import_status limit 1"));
78 $sTileURL = CONST_Map_Tile_URL;
79 $sTileAttribution = CONST_Map_Tile_Attribution;
80 } elseif ($sOutputFormat == 'geocodejson') {
81 $sQuery = $fLat.','.$fLon;
82 if (isset($aPlace['place_id'])) {
83 $fDistance = chksql($oDB->getOne('SELECT ST_Distance(ST_SetSRID(ST_Point('.$fLon.','.$fLat.'),4326), centroid) FROM placex where place_id='.$aPlace['place_id']));
87 $sOutputTemplate = ($sOutputFormat == 'jsonv2') ? 'json' : $sOutputFormat;
88 include(CONST_BasePath.'/lib/template/address-'.$sOutputTemplate.'.php');