X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/cfbdd3f7e1c688e2c875ded9fd847fcc1c3a4caf..4f24b6de175ca0944efa0ea4438a8ccf326d8aa7:/script/statistics diff --git a/script/statistics b/script/statistics index a703b3a0d..e76028114 100755 --- a/script/statistics +++ b/script/statistics @@ -19,14 +19,14 @@ begin tracepoint_count = Tracepoint.count() node_count = Node.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')") + relation_count = Relation.count(:conditions => "visible = true") 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 ways with tags | #{tagged_way_count} |
Number of relations | #{relation_count} |