From 9981d74ee195eae87b4ffe7bd84231166f5740b1 Mon Sep 17 00:00:00 2001 From: Sarah Hoffmann Date: Mon, 23 Oct 2017 22:33:14 +0200 Subject: [PATCH] add loadParamArray function to PlaceLookup and use for reverse --- lib/PlaceLookup.php | 30 ++++++++++++++++++++++++++++++ website/reverse.php | 34 ++++------------------------------ 2 files changed, 34 insertions(+), 30 deletions(-) diff --git a/lib/PlaceLookup.php b/lib/PlaceLookup.php index f7617d82..c6a799e5 100644 --- a/lib/PlaceLookup.php +++ b/lib/PlaceLookup.php @@ -32,6 +32,36 @@ class PlaceLookup $this->oDB =& $oDB; } + public function loadParamArray($oParams) + { + $aLangs = $oParams->getPreferredLanguages(); + $this->aLangPrefOrderSql = + 'ARRAY['.join(',', array_map('getDBQuoted', $aLangs)).']'; + + $this->bExtraTags = $oParams->getBool('extratags', false); + $this->bNameDetails = $oParams->getBool('namedetails', false); + + $this->bIncludePolygonAsText = $oParams->getBool('polygon_text'); + $this->bIncludePolygonAsGeoJSON = $oParams->getBool('polygon_geojson'); + $this->bIncludePolygonAsKML = $oParams->getBool('polygon_kml'); + $this->bIncludePolygonAsSVG = $oParams->getBool('polygon_svg'); + $this->fPolygonSimplificationThreshold + = $oParams->getFloat('polygon_threshold', 0.0); + + $iWantedTypes = + ($this->bIncludePolygonAsText ? 1 : 0) + + ($this->bIncludePolygonAsGeoJSON ? 1 : 0) + + ($this->bIncludePolygonAsKML ? 1 : 0) + + ($this->bIncludePolygonAsSVG ? 1 : 0); + if ($iWantedTypes > CONST_PolygonOutput_MaximumTypes) { + if (CONST_PolygonOutput_MaximumTypes) { + userError("Select only ".CONST_PolygonOutput_MaximumTypes." polgyon output option"); + } else { + userError("Polygon output is disabled"); + } + } + } + public function setAnchorSql($sPoint) { $this->sAnchorSql = $sPoint; diff --git a/website/reverse.php b/website/reverse.php index 74bd700d..269229d3 100755 --- a/website/reverse.php +++ b/website/reverse.php @@ -11,23 +11,6 @@ ini_set('memory_limit', '200M'); $oParams = new Nominatim\ParameterParser(); -$bAsGeoJSON = $oParams->getBool('polygon_geojson'); -$bAsKML = $oParams->getBool('polygon_kml'); -$bAsSVG = $oParams->getBool('polygon_svg'); -$bAsText = $oParams->getBool('polygon_text'); - -$iWantedTypes = ($bAsGeoJSON?1:0) + ($bAsKML?1:0) + ($bAsSVG?1:0) + ($bAsText?1:0); -if ($iWantedTypes > CONST_PolygonOutput_MaximumTypes) { - if (CONST_PolygonOutput_MaximumTypes) { - userError("Select only ".CONST_PolygonOutput_MaximumTypes." polgyon output option"); - } else { - userError("Polygon output is disabled"); - } -} - -// Polygon simplification threshold (optional) -$fThreshold = $oParams->getFloat('polygon_threshold', 0.0); - // Format for output $sOutputFormat = $oParams->getSet('format', array('html', 'xml', 'json', 'jsonv2'), 'xml'); @@ -38,23 +21,21 @@ $oDB =& getDB(); $hLog = logStart($oDB, 'reverse', $_SERVER['QUERY_STRING'], $aLangPrefOrder); - $oPlaceLookup = new Nominatim\PlaceLookup($oDB); -$oPlaceLookup->setLanguagePreference($aLangPrefOrder); +$oPlaceLookup->loadParamArray($oParams); $oPlaceLookup->setIncludeAddressDetails($oParams->getBool('addressdetails', true)); -$oPlaceLookup->setIncludeExtraTags($oParams->getBool('extratags', false)); -$oPlaceLookup->setIncludeNameDetails($oParams->getBool('namedetails', false)); $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'); +$iZoom = $oParams->getInt('zoom', 18); + if ($sOsmType && $iOsmId > 0) { $aPlace = $oPlaceLookup->lookupOSMID($sOsmType, $iOsmId); } elseif ($fLat !== false && $fLon !== false) { $oReverseGeocode = new Nominatim\ReverseGeocode($oDB); - $oReverseGeocode->setZoom($iZoom !== false ? $iZoom : 18); + $oReverseGeocode->setZoom($iZoom); $oLookup = $oReverseGeocode->lookup($fLat, $fLon); if (CONST_Debug) var_dump($oLookup); @@ -70,13 +51,6 @@ if ($sOsmType && $iOsmId > 0) { } if (isset($aPlace)) { - $oPlaceLookup->setIncludePolygonAsPoints(false); - $oPlaceLookup->setIncludePolygonAsText($bAsText); - $oPlaceLookup->setIncludePolygonAsGeoJSON($bAsGeoJSON); - $oPlaceLookup->setIncludePolygonAsKML($bAsKML); - $oPlaceLookup->setIncludePolygonAsSVG($bAsSVG); - $oPlaceLookup->setPolygonSimplificationThreshold($fThreshold); - $fRadius = $fDiameter = getResultDiameter($aPlace); $aOutlineResult = $oPlaceLookup->getOutlines( $aPlace['place_id'], -- 2.45.1