X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/c68a8c9f2d4898bbc0fa5a13200b888093c0e808..0daf2d5cbf2e7ec558b5bc4dfe511e0f8f2d76b2:/website/reverse.php diff --git a/website/reverse.php b/website/reverse.php old mode 100755 new mode 100644 index 3f062f46..7b9ef3b3 --- a/website/reverse.php +++ b/website/reverse.php @@ -1,55 +1,92 @@ getSet('format', array('html', 'xml', 'json', 'jsonv2', 'geojson', 'geocodejson'), 'xml'); +set_exception_handler_by_format($sOutputFormat); - // Show address breakdown - $bShowAddressDetails = true; - if (isset($_GET['addressdetails'])) $bShowAddressDetails = (bool)$_GET['addressdetails']; +// Preferred language +$aLangPrefOrder = $oParams->getPreferredLanguages(); - // Preferred language - $aLangPrefOrder = getPreferredLanguages(); +$oDB = new Nominatim\DB(); +$oDB->connect(); - $hLog = logStart($oDB, 'reverse', $_SERVER['QUERY_STRING'], $aLangPrefOrder); +$hLog = logStart($oDB, 'reverse', $_SERVER['QUERY_STRING'], $aLangPrefOrder); - if (isset($_GET['osm_type']) && isset($_GET['osm_id']) && (int)$_GET['osm_id'] && ($_GET['osm_type'] == 'N' || $_GET['osm_type'] == 'W' || $_GET['osm_type'] == 'R')) - { - $oPlaceLookup = new PlaceLookup($oDB); - $oPlaceLookup->setLanguagePreference($aLangPrefOrder); - $oPlaceLookup->setIncludeAddressDetails($bShowAddressDetails); - $oPlaceLookup->setOSMID($_GET['osm_type'], $_GET['osm_id']); +$oPlaceLookup = new Nominatim\PlaceLookup($oDB); +$oPlaceLookup->loadParamArray($oParams); +$oPlaceLookup->setIncludeAddressDetails($oParams->getBool('addressdetails', true)); - $aPlace = $oPlaceLookup->lookup(); +$sOsmType = $oParams->getSet('osm_type', array('N', 'W', 'R')); +$iOsmId = $oParams->getInt('osm_id', -1); +$fLat = $oParams->getFloat('lat'); +$fLon = $oParams->getFloat('lon'); +$iZoom = $oParams->getInt('zoom', 18); - //if (!$iPlaceID) $sError = 'OSM ID Not Found'; - } - else - { - $oReverseGeocode = new ReverseGeocode($oDB); - $oReverseGeocode->setLanguagePreference($aLangPrefOrder); - $oReverseGeocode->setIncludeAddressDetails($bShowAddressDetails); +if ($sOsmType && $iOsmId > 0) { + $aPlace = $oPlaceLookup->lookupOSMID($sOsmType, $iOsmId); +} elseif ($fLat !== false && $fLon !== false) { + $oReverseGeocode = new Nominatim\ReverseGeocode($oDB); + $oReverseGeocode->setZoom($iZoom); - $oReverseGeocode->setLatLon($_GET['lat'], $_GET['lon']); - $oReverseGeocode->setZoom(@$_GET['zoom']); + $oLookup = $oReverseGeocode->lookup($fLat, $fLon); + if (CONST_Debug) var_dump($oLookup); - $aPlace = $oReverseGeocode->lookup(); - } + if ($oLookup) { + $aPlaces = $oPlaceLookup->lookup(array($oLookup->iId => $oLookup)); + if (!empty($aPlaces)) { + $aPlace = reset($aPlaces); + } + } +} elseif ($sOutputFormat != 'html') { + userError('Need coordinates or OSM object to lookup.'); +} - logEnd($oDB, $hLog, sizeof($aPlace)?1:0); +if (isset($aPlace)) { + $aOutlineResult = $oPlaceLookup->getOutlines( + $aPlace['place_id'], + $aPlace['lon'], + $aPlace['lat'], + Nominatim\ClassTypes\getProperty($aPlace, 'defdiameter', 0.0001), + $fLat, + $fLon + ); - if (CONST_Debug) exit; + if ($aOutlineResult) { + $aPlace = array_merge($aPlace, $aOutlineResult); + } +} else { + $aPlace = array(); +} - include(CONST_BasePath.'/lib/template/address-'.$sOutputFormat.'.php'); +logEnd($oDB, $hLog, count($aPlace) ? 1 : 0); + +if (CONST_Debug) { + var_dump($aPlace); + exit; +} + +if ($sOutputFormat == 'html') { + $sDataDate = $oDB->getOne("select TO_CHAR(lastimportdate,'YYYY/MM/DD HH24:MI')||' GMT' from import_status limit 1"); + $sTileURL = CONST_Map_Tile_URL; + $sTileAttribution = CONST_Map_Tile_Attribution; +} elseif ($sOutputFormat == 'geocodejson') { + $sQuery = $fLat.','.$fLon; + if (isset($aPlace['place_id'])) { + $fDistance = $oDB->getOne( + 'SELECT ST_Distance(ST_SetSRID(ST_Point(:lon,:lat),4326), centroid) FROM placex where place_id = :placeid', + array(':lon' => $fLon, ':lat' => $fLat, ':placeid' => $aPlace['place_id']) + ); + } +} + +$sOutputTemplate = ($sOutputFormat == 'jsonv2') ? 'json' : $sOutputFormat; +include(CONST_BasePath.'/lib/template/address-'.$sOutputTemplate.'.php');