Nominatim/website/deletable.php

29 lines
881 B
PHP
Raw Normal View History

2012-11-30 00:44:59 +04:00
<?php
require_once(CONST_LibDir.'/init-website.php');
require_once(CONST_LibDir.'/log.php');
require_once(CONST_LibDir.'/output.php');
ini_set('memory_limit', '200M');
2012-11-30 00:44:59 +04:00
$oParams = new Nominatim\ParameterParser();
2020-10-27 13:05:03 +03:00
$sOutputFormat = $oParams->getSet('format', array('json'), 'json');
set_exception_handler_by_format($sOutputFormat);
2012-11-30 00:44:59 +04:00
$oDB = new Nominatim\DB(CONST_Database_DSN);
$oDB->connect();
$sSQL = 'select placex.place_id, country_code,';
$sSQL .= " name->'name' as name, i.* from placex, import_polygon_delete i";
$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';
$aPolygons = $oDB->getAll($sSQL, null, 'Could not get list of deleted OSM elements.');
2016-10-10 23:12:42 +03:00
if (CONST_Debug) {
var_dump($aPolygons);
exit;
}
if ($sOutputFormat == 'json') {
2020-10-27 13:05:03 +03:00
javascript_renderData($aPolygons);
}