]> git.openstreetmap.org Git - nominatim.git/blob - website/polygons.php
Nominatim::DB support input variables, custom error messages
[nominatim.git] / website / polygons.php
1 <?php
2
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');
7
8 $oParams = new Nominatim\ParameterParser();
9
10 $sOutputFormat = 'html';
11 $iDays = $oParams->getInt('days', false);
12 $bReduced = $oParams->getBool('reduced', false);
13 $sClass = $oParams->getString('class', false);
14
15 $oDB = new Nominatim\DB();
16 $oDB->connect();
17
18 $iTotalBroken = (int) $oDB->getOne('select count(*) from import_polygon_error');
19
20 $aPolygons = array();
21 while ($iTotalBroken && empty($aPolygons)) {
22     $sSQL = 'select osm_type as "type",osm_id as "id",class as "key",type as "value",name->\'name\' as "name",';
23     $sSQL .= 'country_code as "country",errormessage as "error message",updated';
24     $sSQL .= ' from import_polygon_error';
25
26     $aWhere = array();
27     if ($iDays) {
28         $aWhere[] = "updated > 'now'::timestamp - '".$iDays." day'::interval";
29         $iDays++;
30     }
31
32     if ($bReduced) $aWhere[] = "errormessage like 'Area reduced%'";
33     if ($sClass) $sWhere[] = "class = '".pg_escape_string($sClass)."'";
34
35     if (!empty($aWhere)) {
36         $sSQL .= ' where '.join(' and ', $aWhere);
37     }
38
39     $sSQL .= ' order by updated desc limit 1000';
40     $aPolygons = $oDB->getAll($sSQL);
41 }
42
43 if (CONST_Debug) {
44     var_dump($aPolygons);
45     exit;
46 }
47
48 ?>
49 <!DOCTYPE html>
50 <html>
51 <head>
52     <meta charset="utf-8"/>
53     <meta http-equiv="Content-Type" content="text/html;charset=utf-8" >
54     
55     <title>Nominatim Broken Polygon Data</title>
56     
57     <meta name="description" content="List of broken OSM polygon data by date" lang="en-US" />
58
59 </head>
60
61 <body>
62 <style type="text/css">
63 table {
64     border-width: 1px;
65     border-spacing: 0px;
66     border-style: solid;
67     border-color: gray;
68     border-collapse: collapse;
69     background-color: white;
70     margin: 10px;
71 }
72 table th {
73     border-width: 1px;
74     padding: 2px;
75     border-style: inset;
76     border-color: gray;
77     border-left-color: #ddd;
78     border-right-color: #ddd;
79     background-color: #eee;
80     -moz-border-radius: 0px 0px 0px 0px;
81 }
82 table td {
83     border-width: 1px;
84     padding: 2px;
85     border-style: inset;
86     border-color: gray;
87     border-left-color: #ddd;
88     border-right-color: #ddd;
89     background-color: white;
90     -moz-border-radius: 0px 0px 0px 0px;
91 }
92 </style>
93
94 <?php
95
96 echo "<p>Total number of broken polygons: $iTotalBroken</p>";
97 if (!$aPolygons) exit;
98 echo '<table>';
99 echo '<tr>';
100 //var_dump($aPolygons[0]);
101 foreach ($aPolygons[0] as $sCol => $sVal) {
102     echo '<th>'.$sCol.'</th>';
103 }
104 echo '<th>&nbsp;</th>';
105 echo '</tr>';
106 $aSeen = array();
107 foreach ($aPolygons as $aRow) {
108     if (isset($aSeen[$aRow['type'].$aRow['id']])) continue;
109     $aSeen[$aRow['type'].$aRow['id']] = 1;
110     echo '<tr>';
111     foreach ($aRow as $sCol => $sVal) {
112         switch ($sCol) {
113             case 'error message':
114                 if (preg_match('/Self-intersection\\[([0-9.\\-]+) ([0-9.\\-]+)\\]/', $sVal, $aMatch)) {
115                     $aRow['lat'] = $aMatch[2];
116                     $aRow['lon'] = $aMatch[1];
117                     echo '<td><a href="https://www.openstreetmap.org/?lat='.$aMatch[2].'&lon='.$aMatch[1].'&zoom=18&layers=M&'.$sOSMType.'='.$aRow['id'].'">'.($sVal?$sVal:'&nbsp;').'</a></td>';
118                 } else {
119                     echo '<td>'.($sVal?$sVal:'&nbsp;').'</td>';
120                 }
121                 break;
122             case 'id':
123                 echo '<td>'.osmLink($aRow).'</td>';
124                 break;
125             default:
126                 echo '<td>'.($sVal?$sVal:'&nbsp;').'</td>';
127                 break;
128         }
129     }
130     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>';
131     echo '</tr>';
132 }
133 echo '</table>';
134
135 ?>
136 </body>
137 </html>