X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/0eee4fecbee6ec650cd325934ff5f23796dc67af..26fb51c86e178a1c5bbe313c4688c623646173f8:/script/statistics diff --git a/script/statistics b/script/statistics index 3f0c433f2..a703b3a0d 100755 --- a/script/statistics +++ b/script/statistics @@ -18,7 +18,6 @@ begin user_count = User.count(:conditions => "active = true") tracepoint_count = Tracepoint.count() node_count = Node.count(:conditions => "visible = true") - segment_count = Segment.count(:conditions => "visible = true") way_count = Way.count(:conditions => "visible = true") tagged_way_count = Way.count(:conditions => "visible = true AND EXISTS (SELECT * FROM current_way_tags WHERE id = current_ways.id AND k <> 'created_by')") @@ -26,7 +25,6 @@ begin puts "Number of users#{user_count}" puts "Number of uploaded GPS points#{tracepoint_count}" puts "Number of nodes#{node_count}" - puts "Number of segments#{segment_count}" puts "Number of ways#{way_count}" puts "Number of ways with tags#{tagged_way_count}" puts ""