i am trying to render a map with Mapnik via Python. Therefore I first created a style file (as XML) and my code looks so far:
m = mapnik.Map(400, 400)style = 'osm.xml'mapnik.load_map(m, style)box = mapnik.Box2d(347950, 5207105, 425404, 5316784)m.zoom_to_box(box)mapnik.render_to_file(m...