source: src/django_gheat/gheat/management/commands/gen_tiles.py@ 9038

Last change on this file since 9038 was 9038, checked in by dennisw, 14 years ago

gen_tiles.py - notes aangepast
Een beschrijving voor het gebruik van django_gheat staat op de wiki

File size: 2.7 KB
Line 
1###############################################################################
2#Management command to generate tiles using gheat.
3#
4#Must be given a bounding box by using options -s and -e (start and end)
5#
6#Example usage:
7#>>> python manage.py gen_tiles -s 60,6 -e 66,8 -c firetrans -b serve_tile
8#
9#Note: This command will NOT create tiles if they are empty. In order to do so, change
10#the gheat generate_tile view so that it creates empty tiles for each request given
11#x and y and zoom. This way you wan't have "holes" in the tile overlay if using
12#the static tiles instead of the usual django url/view.
13#
14#Author: Dennis Wagenaar
15#
16#Original Author: Anders Eriksen
17#https://github.com/robertrv/django-gheat/issues/1
18#
19###############################################################################
20
21from django.core.management.base import BaseCommand
22from optparse import OptionParser, make_option
23from django.core.urlresolvers import reverse
24from django.test.client import Client
25import math
26
27class LatLonToTile:
28
29 def deg2num(self, lat_deg, lon_deg, zoom):
30 lat_rad = math.radians(lat_deg)
31 n = 2.0 ** zoom
32 xtile = int((lon_deg + 180.0) / 360.0 * n)
33 ytile = int((1.0 - math.log(math.tan(lat_rad) + (1 / math.cos(lat_rad))) / math.pi) / 2.0 * n)
34 return(xtile, ytile)
35
36
37class Command(BaseCommand):
38
39 option_list = BaseCommand.option_list + (
40 make_option("-b", "--tileview", dest="viewname", default="serve_tile"),
41 make_option("-s", "--start", dest="start", default="52.132708,4.437389"),
42 make_option("-e", "--end", dest="end", default="52.178837,4.551029"),
43 make_option("-c", "--colorscheme", dest="color", default="classic"),
44 )
45
46 def handle(self, *args, **options):
47
48 start = options['start'].split(',')
49 end = options['end'].split(',')
50 viewname = options['viewname']
51 colorscheme = str(options['color'])
52
53 d2n = LatLonToTile()
54
55 #initialize browser client
56 c = Client()
57
58 for tz in range(1, 17):
59 #calculate start tiles
60 mxmin, mymax = d2n.deg2num(float(start[0]), float(start[1]), tz)
61
62 #calculate end tiles
63 mxmax, mymin = d2n.deg2num(float(end[0]), float(end[1]), tz)
64
65 #loop through each tile and generate a request to the serve_tile view using Client
66 for ty in range(mymin, mymax+1):
67 for tx in range(mxmin, mxmax+1):
68
69 tileurl = reverse(viewname, kwargs={'color_scheme': colorscheme, 'zoom':tz, 'x':tx, 'y':ty})
70
71 generate_response = c.get(tileurl)
72
73 #lousy error handling. Should check why status 200 not returned... I.e. wrong colorscheme
74 if generate_response.status_code == 200:
75 print "Generated tile " + tileurl
76 else:
77 print "Failed generating tile " + tileurl
78
Note: See TracBrowser for help on using the repository browser.