Nominatim/website/reverse.php

93 lines
2.9 KiB
PHP
Raw Normal View History

2010-11-01 18:46:28 +03:00
<?php
2016-09-04 04:19:48 +03:00
@define('CONST_ConnectionBucket_PageType', 'Reverse');
require_once(dirname(dirname(__FILE__)).'/settings/settings.php');
require_once(CONST_BasePath.'/lib/init-website.php');
require_once(CONST_BasePath.'/lib/log.php');
require_once(CONST_BasePath.'/lib/PlaceLookup.php');
require_once(CONST_BasePath.'/lib/ReverseGeocode.php');
require_once(CONST_BasePath.'/lib/output.php');
ini_set('memory_limit', '200M');
$oParams = new Nominatim\ParameterParser();
2016-09-04 04:19:48 +03:00
// Format for output
$sOutputFormat = $oParams->getSet('format', array('html', 'xml', 'json', 'jsonv2', 'geojson', 'geocodejson'), 'xml');
2016-09-04 04:19:48 +03:00
// Preferred language
$aLangPrefOrder = $oParams->getPreferredLanguages();
$oDB =& getDB();
$hLog = logStart($oDB, 'reverse', $_SERVER['QUERY_STRING'], $aLangPrefOrder);
$oPlaceLookup = new Nominatim\PlaceLookup($oDB);
$oPlaceLookup->loadParamArray($oParams);
if ($sOutputFormat == 'geocodejson') {
$oPlaceLookup->setIncludeAddressDetails(true);
$oPlaceLookup->setAddressAdminLevels(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);
if (CONST_Debug) var_dump($oLookup);
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);
}
}
} elseif ($sOutputFormat != 'html') {
userError('Need coordinates or OSM object to lookup.');
2016-09-04 04:19:48 +03:00
}
if (isset($aPlace)) {
2016-09-04 04:19:48 +03:00
$fRadius = $fDiameter = getResultDiameter($aPlace);
$aOutlineResult = $oPlaceLookup->getOutlines(
$aPlace['place_id'],
$aPlace['lon'],
$aPlace['lat'],
2018-07-06 23:06:05 +03:00
$fRadius,
$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
}
if (CONST_Debug) {
2016-09-04 04:19:48 +03:00
var_dump($aPlace);
exit;
}
if ($sOutputFormat == 'html') {
2018-05-22 13:22:15 +03:00
$sDataDate = chksql($oDB->getOne("select TO_CHAR(lastimportdate,'YYYY/MM/DD HH24:MI')||' GMT' from import_status limit 1"));
2016-09-04 04:19:48 +03:00
$sTileURL = CONST_Map_Tile_URL;
$sTileAttribution = CONST_Map_Tile_Attribution;
} elseif ($sOutputFormat == 'geocodejson') {
$sQuery = $fLat.','.$fLon;
if (isset($aPlace['place_id'])) {
$fDistance = chksql($oDB->getOne('SELECT ST_Distance(ST_SetSRID(ST_Point('.$fLon.','.$fLat.'),4326), centroid) FROM placex where place_id='.$aPlace['place_id']));
}
2016-09-04 04:19:48 +03:00
}
2018-05-22 13:22:15 +03:00
$sOutputTemplate = ($sOutputFormat == 'jsonv2') ? 'json' : $sOutputFormat;
2018-05-22 13:22:15 +03:00
include(CONST_BasePath.'/lib/template/address-'.$sOutputTemplate.'.php');