From: Tom Hughes Date: Wed, 25 Sep 2013 07:33:17 +0000 (+0100) Subject: Increase estimate of total tile bandwidth X-Git-Url: https://git.openstreetmap.org/dns.git/commitdiff_plain/1179761c68f6d0bb69ba54231935691d8908fe30?hp=2aa7289339d387f9a7158c41c1418dd95747467b Increase estimate of total tile bandwidth --- diff --git a/bin/sumlogs b/bin/sumlogs index 7a06287..400a363 100755 --- a/bin/sumlogs +++ b/bin/sumlogs @@ -52,7 +52,7 @@ my %country_bandwidth; while (my($country,$bytes) = each %country_bytes) { - $country_bandwidth{$country} = $bytes * 250 * 1024 * 1024 / $total_bytes; + $country_bandwidth{$country} = $bytes * 300 * 1024 * 1024 / $total_bytes; } print Dump(\%country_bandwidth);