#!/usr/bin/perl -w
-# Where is the ftp stats database?
+# Where is the osm stats database?
$statsdb = 'osmstats';
# How many tiles are a metatile? These get merged / counted as one tile.
%stylemap = ( 'tiles' => 1,
'osmde' => 2,
'lowzoom' => 3,
- 'osmhd' => 4
+ 'osmhd' => 4,
+ 'osmdehd' => 5
);
-%mapmap = ( 'osm' => 1,
- 'osmde' => 2,
- 'osmhd' => 4
+%mapmap = ( 'osm' => 1,
+ 'osmde' => 2,
+ 'osmhd' => 4,
+ 'osmdehd' => 5
);
# -----------------------------------------------------------------------------
# Map for map-ID in DB to tile subdir.
%tiledirmap = ( 1 => 'osm',
2 => 'osmde',
- 4 => 'osmhd'
+ 4 => 'osmhd',
+ 5 => 'osmdehd'
);
# What is the maximum rendertime to consider a tile useless?
$maxuselesstime = 0.5;