2012-03-04 13:54:07 +04:00
|
|
|
<?php
|
|
|
|
|
2016-09-14 04:16:46 +03:00
|
|
|
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/output.php');
|
|
|
|
ini_set('memory_limit', '200M');
|
2016-06-12 00:07:06 +03:00
|
|
|
|
2016-09-16 03:27:36 +03:00
|
|
|
$oParams = new Nominatim\ParameterParser();
|
2016-07-31 22:04:33 +03:00
|
|
|
|
2016-09-14 04:16:46 +03:00
|
|
|
$sOutputFormat = 'html';
|
2017-12-17 19:29:08 +03:00
|
|
|
$iDays = $oParams->getInt('days', false);
|
2016-09-14 04:16:46 +03:00
|
|
|
$bReduced = $oParams->getBool('reduced', false);
|
|
|
|
$sClass = $oParams->getString('class', false);
|
2012-03-04 13:54:07 +04:00
|
|
|
|
2016-09-14 04:16:46 +03:00
|
|
|
$oDB =& getDB();
|
2016-06-11 00:58:50 +03:00
|
|
|
|
2016-09-14 04:16:46 +03:00
|
|
|
$iTotalBroken = (int) chksql($oDB->getOne('select count(*) from import_polygon_error'));
|
2016-06-12 00:07:06 +03:00
|
|
|
|
2016-09-14 04:16:46 +03:00
|
|
|
$aPolygons = array();
|
|
|
|
while ($iTotalBroken && !sizeof($aPolygons)) {
|
|
|
|
$sSQL = 'select osm_type as "type",osm_id as "id",class as "key",type as "value",name->\'name\' as "name",';
|
|
|
|
$sSQL .= 'country_code as "country",errormessage as "error message",updated';
|
2017-10-26 22:21:21 +03:00
|
|
|
$sSQL .= ' from import_polygon_error';
|
2016-09-14 04:16:46 +03:00
|
|
|
|
2017-12-17 19:29:08 +03:00
|
|
|
$aWhere = array();
|
|
|
|
if ($iDays) {
|
|
|
|
$aWhere[] = "updated > 'now'::timestamp - '".$iDays." day'::interval";
|
|
|
|
$iDays++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($bReduced) $aWhere[] = "errormessage like 'Area reduced%'";
|
|
|
|
if ($sClass) $sWhere[] = "class = '".pg_escape_string($sClass)."'";
|
|
|
|
|
|
|
|
if (sizeof($aWhere)) {
|
|
|
|
$sSQL .= ' where '.join(' and ', $aWhere);
|
|
|
|
}
|
|
|
|
|
2017-10-26 22:21:21 +03:00
|
|
|
$sSQL .= ' order by updated desc limit 1000';
|
2016-09-14 04:16:46 +03:00
|
|
|
$aPolygons = chksql($oDB->getAll($sSQL));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (CONST_Debug) {
|
|
|
|
var_dump($aPolygons);
|
|
|
|
exit;
|
|
|
|
}
|
2016-06-12 15:34:57 +03:00
|
|
|
|
2012-03-04 13:54:07 +04:00
|
|
|
?>
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2016-09-04 04:19:48 +03:00
|
|
|
<meta charset="utf-8"/>
|
|
|
|
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" >
|
|
|
|
|
|
|
|
<title>Nominatim Broken Polygon Data</title>
|
|
|
|
|
|
|
|
<meta name="description" content="List of broken OSM polygon data by date" lang="en-US" />
|
2012-03-04 13:54:07 +04:00
|
|
|
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<style type="text/css">
|
|
|
|
table {
|
2016-09-04 04:19:48 +03:00
|
|
|
border-width: 1px;
|
|
|
|
border-spacing: 0px;
|
|
|
|
border-style: solid;
|
|
|
|
border-color: gray;
|
|
|
|
border-collapse: collapse;
|
|
|
|
background-color: white;
|
|
|
|
margin: 10px;
|
2012-03-04 13:54:07 +04:00
|
|
|
}
|
|
|
|
table th {
|
2016-09-04 04:19:48 +03:00
|
|
|
border-width: 1px;
|
|
|
|
padding: 2px;
|
|
|
|
border-style: inset;
|
|
|
|
border-color: gray;
|
|
|
|
border-left-color: #ddd;
|
|
|
|
border-right-color: #ddd;
|
|
|
|
background-color: #eee;
|
|
|
|
-moz-border-radius: 0px 0px 0px 0px;
|
2012-03-04 13:54:07 +04:00
|
|
|
}
|
|
|
|
table td {
|
2016-09-04 04:19:48 +03:00
|
|
|
border-width: 1px;
|
|
|
|
padding: 2px;
|
|
|
|
border-style: inset;
|
|
|
|
border-color: gray;
|
|
|
|
border-left-color: #ddd;
|
|
|
|
border-right-color: #ddd;
|
|
|
|
background-color: white;
|
|
|
|
-moz-border-radius: 0px 0px 0px 0px;
|
2012-03-04 13:54:07 +04:00
|
|
|
}
|
|
|
|
</style>
|
|
|
|
|
|
|
|
<?php
|
|
|
|
|
2016-09-14 04:16:46 +03:00
|
|
|
echo "<p>Total number of broken polygons: $iTotalBroken</p>";
|
|
|
|
if (!$aPolygons) exit;
|
2017-10-26 22:21:21 +03:00
|
|
|
echo '<table>';
|
|
|
|
echo '<tr>';
|
2012-03-04 13:54:07 +04:00
|
|
|
//var_dump($aPolygons[0]);
|
2016-09-14 04:16:46 +03:00
|
|
|
foreach ($aPolygons[0] as $sCol => $sVal) {
|
2017-10-26 22:21:21 +03:00
|
|
|
echo '<th>'.$sCol.'</th>';
|
2016-09-14 04:16:46 +03:00
|
|
|
}
|
2017-10-26 22:21:21 +03:00
|
|
|
echo '<th> </th>';
|
|
|
|
echo '</tr>';
|
2016-09-14 04:16:46 +03:00
|
|
|
$aSeen = array();
|
|
|
|
foreach ($aPolygons as $aRow) {
|
|
|
|
if (isset($aSeen[$aRow['type'].$aRow['id']])) continue;
|
|
|
|
$aSeen[$aRow['type'].$aRow['id']] = 1;
|
2017-10-26 22:21:21 +03:00
|
|
|
echo '<tr>';
|
2016-09-14 04:16:46 +03:00
|
|
|
foreach ($aRow as $sCol => $sVal) {
|
|
|
|
switch ($sCol) {
|
2016-09-04 04:19:48 +03:00
|
|
|
case 'error message':
|
2016-09-11 06:22:51 +03:00
|
|
|
if (preg_match('/Self-intersection\\[([0-9.\\-]+) ([0-9.\\-]+)\\]/', $sVal, $aMatch)) {
|
2016-09-04 04:19:48 +03:00
|
|
|
$aRow['lat'] = $aMatch[2];
|
|
|
|
$aRow['lon'] = $aMatch[1];
|
2018-01-06 00:38:51 +03:00
|
|
|
echo '<td><a href="https://www.openstreetmap.org/?lat='.$aMatch[2].'&lon='.$aMatch[1].'&zoom=18&layers=M&'.$sOSMType.'='.$aRow['id'].'">'.($sVal?$sVal:' ').'</a></td>';
|
2016-09-08 04:16:22 +03:00
|
|
|
} else {
|
2017-10-26 22:21:21 +03:00
|
|
|
echo '<td>'.($sVal?$sVal:' ').'</td>';
|
2016-09-04 04:19:48 +03:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'id':
|
|
|
|
echo '<td>'.osmLink($aRow).'</td>';
|
|
|
|
break;
|
|
|
|
default:
|
2017-10-26 22:21:21 +03:00
|
|
|
echo '<td>'.($sVal?$sVal:' ').'</td>';
|
2016-09-04 04:19:48 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2018-01-06 00:38:51 +03:00
|
|
|
echo '<td><a href="http://localhost:8111/import?url=https://www.openstreetmap.org/api/0.6/'.$sOSMType.'/'.$aRow['id'].'/full" target="josm">josm</a></td>';
|
2017-10-26 22:21:21 +03:00
|
|
|
echo '</tr>';
|
2016-09-14 04:16:46 +03:00
|
|
|
}
|
2017-10-26 22:21:21 +03:00
|
|
|
echo '</table>';
|
2016-09-14 04:16:46 +03:00
|
|
|
|
2012-03-04 13:54:07 +04:00
|
|
|
?>
|
|
|
|
</body>
|
|
|
|
</html>
|