completely rewrite map renderer

This commit is contained in:
Laura Klünder 2016-11-26 13:48:44 +01:00
parent 3c01b620fa
commit b76cfa1985
6 changed files with 138 additions and 38 deletions

View file

@ -0,0 +1,10 @@
from django.core.management.base import BaseCommand
from c3nav.mapdata.render import render_all_levels
class Command(BaseCommand):
help = 'render the map'
def handle(self, *args, **options):
render_all_levels()