X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/d34bc8cb52749eb039edbe5b86ed47b5c7fa143d..0f91ad89663fbadca007b1c4dce03f9a76ad0e5f:/script/statistics diff --git a/script/statistics b/script/statistics index 47c18312d..a703b3a0d 100755 --- a/script/statistics +++ b/script/statistics @@ -18,16 +18,13 @@ 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 => "current_ways.visible = true AND current_way_tags.k <> 'created_by'", - :joins => "INNER JOIN current_way_tags ON current_way_tags.id = current_ways.id") + 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 users | #{user_count} |
Number of uploaded GPS points | #{tracepoint_count} |
Number of nodes | #{node_count} |
Number of segments | #{segment_count} |
Number of ways | #{way_count} |
Number of ways with tags | #{tagged_way_count} |