mapnik/utils/performance/howfast.py

50 lines
1.2 KiB
Python
Raw Normal View History

#!/usr/bin/env python
import sys
import mapnik2 as mapnik
#import mapnik
from timeit import Timer, time
if not len(sys.argv) >= 3:
sys.exit('usage: howfast.py <stylesheet> <iterations> [minx,miny,maxx,maxy]')
m = mapnik.Map(256,256)
mapnik.load_map(m,sys.argv[1])
m.zoom_all()
TOTAL_TIME = 0
BBOX = None
def test():
global TOTAL_TIME
start = time.time()
im = mapnik.Image(m.width,m.height)
mapnik.render(m,im)
TOTAL_TIME += (time.time() - start)
def f_(set):
min_ = str(min(set))[:6]
avg = str(sum(set)/len(set))[:6]
print 'min: %s | avg: %s | total: %s' % (min_,avg,str(TOTAL_TIME)[:6])
if __name__=='__main__':
# if passed, set up bbox
if len(sys.argv) == 4:
bbox = sys.argv[3]
if ',' in bbox:
parts = bbox.split(',')
else:
parts = bbox.split(' ')
env = mapnik.Box2d(*map(float,parts))
m.zoom_to_box(env)
# load once - making sure mmap'd shapefiles are loaded
test_ = "test()"
eval(test_)
TOTAL_TIME = 0
# now actually run the test
t = Timer(test_, "from __main__ import test")
iterations = int(sys.argv[2])
f_(t.repeat(iterations,1))