Nominatim/lib-php/website/reverse.php

88 lines
2.6 KiB
PHP
Raw Normal View History

2010-11-01 18:46:28 +03:00
<?php
2016-09-04 04:19:48 +03:00
require_once(CONST_LibDir.'/init-website.php');
require_once(CONST_LibDir.'/log.php');
require_once(CONST_LibDir.'/PlaceLookup.php');
require_once(CONST_LibDir.'/ReverseGeocode.php');
require_once(CONST_LibDir.'/output.php');
2016-09-04 04:19:48 +03:00
ini_set('memory_limit', '200M');
$oParams = new Nominatim\ParameterParser();
2016-09-04 04:19:48 +03:00
// Format for output
2020-10-27 13:05:03 +03:00
$sOutputFormat = $oParams->getSet('format', array('xml', 'json', 'jsonv2', 'geojson', 'geocodejson'), 'xml');
set_exception_handler_by_format($sOutputFormat);
2016-09-04 04:19:48 +03:00
// Preferred language
$aLangPrefOrder = $oParams->getPreferredLanguages();
$oDB = new Nominatim\DB(CONST_Database_DSN);
$oDB->connect();
2016-09-04 04:19:48 +03:00
$hLog = logStart($oDB, 'reverse', $_SERVER['QUERY_STRING'], $aLangPrefOrder);
$oPlaceLookup = new Nominatim\PlaceLookup($oDB);
$oPlaceLookup->loadParamArray($oParams);
$oPlaceLookup->setIncludeAddressDetails($oParams->getBool('addressdetails', true));
2016-09-04 04:19:48 +03:00
$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 ($sOsmType && $iOsmId > 0) {
2016-09-04 04:19:48 +03:00
$aPlace = $oPlaceLookup->lookupOSMID($sOsmType, $iOsmId);
} elseif ($fLat !== false && $fLon !== false) {
$oReverseGeocode = new Nominatim\ReverseGeocode($oDB);
$oReverseGeocode->setZoom($iZoom);
2016-09-04 04:19:48 +03:00
$oLookup = $oReverseGeocode->lookup($fLat, $fLon);
2016-09-04 04:19:48 +03:00
if ($oLookup) {
$aPlaces = $oPlaceLookup->lookup(array($oLookup->iId => $oLookup));
2018-05-22 13:22:15 +03:00
if (!empty($aPlaces)) {
$aPlace = reset($aPlaces);
}
}
2020-10-27 13:05:03 +03:00
} else {
userError('Need coordinates or OSM object to lookup.');
2016-09-04 04:19:48 +03:00
}
if (isset($aPlace)) {
$aOutlineResult = $oPlaceLookup->getOutlines(
$aPlace['place_id'],
$aPlace['lon'],
$aPlace['lat'],
Nominatim\ClassTypes\getDefRadius($aPlace),
2018-07-06 23:06:05 +03:00
$fLat,
$fLon
);
2016-09-04 04:19:48 +03:00
if ($aOutlineResult) {
2016-09-04 04:19:48 +03:00
$aPlace = array_merge($aPlace, $aOutlineResult);
}
} else {
2018-05-22 13:22:15 +03:00
$aPlace = array();
2016-09-04 04:19:48 +03:00
}
logEnd($oDB, $hLog, count($aPlace) ? 1 : 0);
2016-09-04 04:19:48 +03:00
if (CONST_Debug) {
2016-09-04 04:19:48 +03:00
var_dump($aPlace);
exit;
}
2020-10-27 13:05:03 +03:00
if ($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'])
);
}
2016-09-04 04:19:48 +03:00
}
2018-05-22 13:22:15 +03:00
$sOutputTemplate = ($sOutputFormat == 'jsonv2') ? 'json' : $sOutputFormat;
include(CONST_LibDir.'/template/address-'.$sOutputTemplate.'.php');