2012-11-30 00:44:59 +04:00
|
|
|
<?php
|
|
|
|
|
2020-12-15 12:09:55 +03:00
|
|
|
require_once(CONST_LibDir.'/init-website.php');
|
|
|
|
require_once(CONST_LibDir.'/log.php');
|
|
|
|
require_once(CONST_LibDir.'/output.php');
|
2016-09-14 04:16:46 +03:00
|
|
|
ini_set('memory_limit', '200M');
|
2012-11-30 00:44:59 +04:00
|
|
|
|
2020-04-10 04:21:52 +03:00
|
|
|
$oParams = new Nominatim\ParameterParser();
|
2020-10-27 13:05:03 +03:00
|
|
|
$sOutputFormat = $oParams->getSet('format', array('json'), 'json');
|
2020-04-10 04:21:52 +03:00
|
|
|
set_exception_handler_by_format($sOutputFormat);
|
2012-11-30 00:44:59 +04:00
|
|
|
|
2020-12-15 17:36:13 +03:00
|
|
|
$oDB = new Nominatim\DB(CONST_Database_DSN);
|
2019-02-24 18:14:36 +03:00
|
|
|
$oDB->connect();
|
2016-09-14 04:16:46 +03:00
|
|
|
|
2017-10-26 22:21:21 +03:00
|
|
|
$sSQL = 'select placex.place_id, country_code,';
|
2016-10-14 01:01:16 +03:00
|
|
|
$sSQL .= " name->'name' as name, i.* from placex, import_polygon_delete i";
|
2017-10-26 22:21:21 +03:00
|
|
|
$sSQL .= ' where placex.osm_id = i.osm_id and placex.osm_type = i.osm_type';
|
|
|
|
$sSQL .= ' and placex.class = i.class and placex.type = i.type';
|
2019-03-10 17:42:58 +03:00
|
|
|
$aPolygons = $oDB->getAll($sSQL, null, 'Could not get list of deleted OSM elements.');
|
2016-09-14 04:16:46 +03:00
|
|
|
|
2016-10-10 23:12:42 +03:00
|
|
|
if (CONST_Debug) {
|
2016-09-14 04:16:46 +03:00
|
|
|
var_dump($aPolygons);
|
|
|
|
exit;
|
|
|
|
}
|
2016-06-12 15:34:57 +03:00
|
|
|
|
2020-04-10 04:21:52 +03:00
|
|
|
if ($sOutputFormat == 'json') {
|
2020-10-27 13:05:03 +03:00
|
|
|
javascript_renderData($aPolygons);
|
2016-09-14 04:16:46 +03:00
|
|
|
}
|