2 require_once(dirname(dirname(__FILE__)).'/settings/settings.php');
3 require_once(CONST_BasePath.'/lib/init-website.php');
4 require_once(CONST_BasePath.'/lib/log.php');
5 require_once(CONST_BasePath.'/lib/output.php');
6 ini_set('memory_limit', '200M');
8 $oParams = new ParameterParser();
10 $sOutputFormat = 'html';
11 $iDays = $oParams->getInt('days', 1);
12 $bReduced = $oParams->getBool('reduced', false);
13 $sClass = $oParams->getString('class', false);
17 $iTotalBroken = (int) chksql($oDB->getOne('select count(*) from import_polygon_error'));
20 while ($iTotalBroken && !sizeof($aPolygons)) {
21 $sSQL = 'select osm_type as "type",osm_id as "id",class as "key",type as "value",name->\'name\' as "name",';
22 $sSQL .= 'country_code as "country",errormessage as "error message",updated';
23 $sSQL .= " from import_polygon_error";
24 $sSQL .= " where updated > 'now'::timestamp - '".$iDays." day'::interval";
27 if ($bReduced) $sSQL .= " and errormessage like 'Area reduced%'";
28 if ($sClass) $sSQL .= " and class = '".pg_escape_string($sClass)."'";
29 $sSQL .= " order by updated desc limit 1000";
30 $aPolygons = chksql($oDB->getAll($sSQL));
41 <meta charset="utf-8"/>
42 <meta http-equiv="Content-Type" content="text/html;charset=utf-8" >
44 <title>Nominatim Broken Polygon Data</title>
46 <meta name="description" content="List of broken OSM polygon data by date" lang="en-US" />
51 <style type="text/css">
57 border-collapse: collapse;
58 background-color: white;
66 border-left-color: #ddd;
67 border-right-color: #ddd;
68 background-color: #eee;
69 -moz-border-radius: 0px 0px 0px 0px;
76 border-left-color: #ddd;
77 border-right-color: #ddd;
78 background-color: white;
79 -moz-border-radius: 0px 0px 0px 0px;
85 echo "<p>Total number of broken polygons: $iTotalBroken</p>";
86 if (!$aPolygons) exit;
89 //var_dump($aPolygons[0]);
90 foreach ($aPolygons[0] as $sCol => $sVal) {
91 echo "<th>".$sCol."</th>";
93 echo "<th> </th>";
94 echo "<th> </th>";
97 foreach ($aPolygons as $aRow) {
98 if (isset($aSeen[$aRow['type'].$aRow['id']])) continue;
99 $aSeen[$aRow['type'].$aRow['id']] = 1;
101 foreach ($aRow as $sCol => $sVal) {
103 case 'error message':
104 if (preg_match('/Self-intersection\\[([0-9.\\-]+) ([0-9.\\-]+)\\]/',$sVal,$aMatch)) {
105 $aRow['lat'] = $aMatch[2];
106 $aRow['lon'] = $aMatch[1];
107 echo "<td><a href=\"http://www.openstreetmap.org/?lat=".$aMatch[2]."&lon=".$aMatch[1]."&zoom=18&layers=M&".$sOSMType."=".$aRow['id']."\">".($sVal?$sVal:' ')."</a></td>";
109 echo "<td>".($sVal?$sVal:' ')."</td>";
113 echo '<td>'.osmLink($aRow).'</td>';
116 echo "<td>".($sVal?$sVal:' ')."</td>";
120 echo "<td><a href=\"http://localhost:8111/import?url=http://www.openstreetmap.org/api/0.6/".$sOSMType.'/'.$aRow['id']."/full\" target=\"josm\">josm</a></td>";
121 if (isset($aRow['lat'])) {
122 echo "<td><a href=\"http://open.mapquestapi.com/dataedit/index_flash.html?lat=".$aRow['lat']."&lon=".$aRow['lon']."&zoom=18\" target=\"potlatch2\">P2</a></td>";
124 echo "<td> </td>";