X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/9d57643812a8ee94022541c1119a69374565a6dd..27834b0a82e79784469406a7f270d6211e38027a:/script/statistics?ds=sidebyside diff --git a/script/statistics b/script/statistics index a703b3a0d..1b47fccae 100755 --- a/script/statistics +++ b/script/statistics @@ -19,6 +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')") puts "
Number of uploaded GPS points | #{tracepoint_count} |
Number of nodes | #{node_count} |
Number of ways | #{way_count} |
Number of relations | #{relation_count} |
Number of ways with tags | #{tagged_way_count} |