X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/3bf13d9c43dfe2996ddfe0bd15916623e63be1a1..e5ff2959bc756a97d10b130d1ad6d0376eb57d83:/script/statistics?ds=inline diff --git a/script/statistics b/script/statistics index 1b47fccae..e76028114 100755 --- a/script/statistics +++ b/script/statistics @@ -19,8 +19,7 @@ begin tracepoint_count = Tracepoint.count() node_count = Node.count(:conditions => "visible = true") way_count = Way.count(:conditions => "visible = true") - rel_count = Relation.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')") + relation_count = Relation.count(:conditions => "visible = true") puts "
Number of users | #{user_count} |
Number of nodes | #{node_count} |
Number of ways | #{way_count} |
Number of relations | #{relation_count} |
Number of ways with tags | #{tagged_way_count} |