2 @define('CONST_ConnectionBucket_PageType', 'Reverse');
4 require_once(dirname(dirname(__FILE__)).'/settings/settings.php');
5 require_once(CONST_BasePath.'/lib/init-website.php');
6 require_once(CONST_BasePath.'/lib/log.php');
7 require_once(CONST_BasePath.'/lib/PlaceLookup.php');
8 require_once(CONST_BasePath.'/lib/ReverseGeocode.php');
9 require_once(CONST_BasePath.'/lib/output.php');
10 ini_set('memory_limit', '200M');
12 $oParams = new ParameterParser();
14 $bAsGeoJSON = $oParams->getBool('polygon_geojson');
15 $bAsKML = $oParams->getBool('polygon_kml');
16 $bAsSVG = $oParams->getBool('polygon_svg');
17 $bAsText = $oParams->getBool('polygon_text');
18 if ((($bAsGeoJSON?1:0) + ($bAsKML?1:0) + ($bAsSVG?1:0)
19 + ($bAsText?1:0)) > CONST_PolygonOutput_MaximumTypes
21 if (CONST_PolygonOutput_MaximumTypes) {
22 userError("Select only ".CONST_PolygonOutput_MaximumTypes." polgyon output option");
24 userError("Polygon output is disabled");
28 // Polygon simplification threshold (optional)
29 $fThreshold = $oParams->getFloat('polygon_threshold', 0.0);
32 $sOutputFormat = $oParams->getSet('format', array('html', 'xml', 'json', 'jsonv2'), 'xml');
35 $aLangPrefOrder = $oParams->getPreferredLanguages();
39 $hLog = logStart($oDB, 'reverse', $_SERVER['QUERY_STRING'], $aLangPrefOrder);
42 $oPlaceLookup = new PlaceLookup($oDB);
43 $oPlaceLookup->setLanguagePreference($aLangPrefOrder);
44 $oPlaceLookup->setIncludeAddressDetails($oParams->getBool('addressdetails', true));
45 $oPlaceLookup->setIncludeExtraTags($oParams->getBool('extratags', false));
46 $oPlaceLookup->setIncludeNameDetails($oParams->getBool('namedetails', false));
48 $sOsmType = $oParams->getSet('osm_type', array('N', 'W', 'R'));
49 $iOsmId = $oParams->getInt('osm_id', -1);
50 $fLat = $oParams->getFloat('lat');
51 $fLon = $oParams->getFloat('lon');
52 if ($sOsmType && $iOsmId > 0) {
53 $aPlace = $oPlaceLookup->lookupOSMID($sOsmType, $iOsmId);
54 } else if ($fLat !== false && $fLon !== false) {
55 $oReverseGeocode = new ReverseGeocode($oDB);
56 $oReverseGeocode->setZoom($oParams->getInt('zoom', 18));
58 $aLookup = $oReverseGeocode->lookup($fLat, $fLon);
59 if (CONST_Debug) var_dump($aLookup);
61 $aPlace = $oPlaceLookup->lookup((int)$aLookup['place_id'],
62 $aLookup['type'], $aLookup['fraction']);
63 } else if ($sOutputFormat != 'html') {
64 userError("Need coordinates or OSM object to lookup.");
68 $oPlaceLookup->setIncludePolygonAsPoints(false);
69 $oPlaceLookup->setIncludePolygonAsText($bAsText);
70 $oPlaceLookup->setIncludePolygonAsGeoJSON($bAsGeoJSON);
71 $oPlaceLookup->setIncludePolygonAsKML($bAsKML);
72 $oPlaceLookup->setIncludePolygonAsSVG($bAsSVG);
73 $oPlaceLookup->setPolygonSimplificationThreshold($fThreshold);
75 $fRadius = $fDiameter = getResultDiameter($aPlace);
76 $aOutlineResult = $oPlaceLookup->getOutlines($aPlace['place_id'],
77 $aPlace['lon'], $aPlace['lat'],
80 if ($aOutlineResult) {
81 $aPlace = array_merge($aPlace, $aOutlineResult);
91 if ($sOutputFormat=='html') {
92 $sDataDate = chksql($oDB->getOne("select TO_CHAR(lastimportdate - '2 minutes'::interval,'YYYY/MM/DD HH24:MI')||' GMT' from import_status limit 1"));
93 $sTileURL = CONST_Map_Tile_URL;
94 $sTileAttribution = CONST_Map_Tile_Attribution;
96 include(CONST_BasePath.'/lib/template/address-'.$sOutputFormat.'.php');