]> git.openstreetmap.org Git - nominatim.git/commitdiff
polygons.php: print total number of broken polygons
authorSarah Hoffmann <lonvia@denofr.de>
Fri, 10 Jun 2016 21:58:50 +0000 (23:58 +0200)
committerSarah Hoffmann <lonvia@denofr.de>
Fri, 10 Jun 2016 22:01:24 +0000 (00:01 +0200)
website/polygons.php

index 3c98bdbca86030651042b83bc34c4eb52dd8dc13..b9ce249d91ab161b6c835f09e3a18ff768ab835f 100755 (executable)
        $sClass = false;
        if (isset($_GET['class'])) $sClass = $_GET['class'];
 
+       $iTotalBroken = (int) $oDB->getOne('select count(*) from import_polygon_error');
+
        $aPolygons = array();
-       while(!sizeof($aPolygons))
+       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';
@@ -84,6 +86,7 @@ table td {
 
 <?php
 
+       echo "<p>Total number of broken polygons: $iTotalBroken</p>";
        echo "<table>";
        echo "<tr>";
 //var_dump($aPolygons[0]);