completely rewrite map renderer
This commit is contained in:
parent
3c01b620fa
commit
b76cfa1985
6 changed files with 138 additions and 38 deletions
10
src/c3nav/mapdata/management/commands/rendermap.py
Normal file
10
src/c3nav/mapdata/management/commands/rendermap.py
Normal 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()
|
Loading…
Add table
Add a link
Reference in a new issue