From: Tom Hughes Date: Sun, 7 Oct 2007 14:16:14 +0000 (+0000) Subject: Use a consistent name for the variable holding the relation count. X-Git-Tag: live~8089 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/e8dbe46f7e9dea85beaec945bac85ed17a7f4f25 Use a consistent name for the variable holding the relation count. --- diff --git a/script/statistics b/script/statistics index 1b47fccae..0d300f706 100755 --- a/script/statistics +++ b/script/statistics @@ -19,16 +19,16 @@ 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 "" puts "" puts "" puts "" puts "" - puts "" puts "" + puts "" puts "
Number of users#{user_count}
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}
Number of relations#{relation_count}
" puts "

Top 50 users for uploads of GPS data

"