1TILESTACHE-COMPOSE(1) General Commands Manual TILESTACHE-COMPOSE(1)
2
3
4
6 tilestache-compose - set a map coverage area
7
9 tilestache-compose [options] file...
10
12 This manual page documents briefly the tilestache-compose command.
13
14 There are three ways to set a map coverage area.
15
16 1) Center, zoom, and dimensions: create a map of the specified size,
17 centered on a given geographical point at a given zoom level:
18
19 tilestache-compose.py -c config.json -l layer-name -d 800 800 -n
20 37.8 -122.3 -z 11 out.jpg
21
22 2) Extent and dimensions: create a map of the specified size that ade‐
23 quately covers the given geographical extent:
24
25 tilestache-compose.py -c config.json -l layer-name -d 800 800 -e
26 36.9 -123.5 38.9 -121.2 out.png
27
28 3) Extent and zoom: create a map at the given zoom level that covers
29 the precise geographical extent, at whatever pixel size is necessary:
30
31 tilestache-compose.py -c config.json -l layer-name -e 36.9 -123.5
32 38.9 -121.2 -z 9 out.jpg
33
35 -c, --config file
36 Path to configuration file.
37
38 -l, --layer layer
39 Layer name from configuration.
40
41 -n, --center lat lon
42 Geographic center of map.
43
44 -e, --extent lat lon lat lon
45 Geographic extent of map.
46
47 -z, --zoom level
48 Zoom level.
49
50 -d, --dimensions width height
51 Pixel width, height of output image.
52
53 -v, --verbose
54 Make a bunch of noise.
55
56 -i, --include-paths paths
57 Add the following colon-separated list of paths to Python's
58 include path (aka sys.path)
59
60 -x, --ignore-cached
61 Re-render every tile, whether it is in the cache already or not.
62
63 -h, --help
64 Show summary of options.
65
67 TileStache was written by Michal Migurski <mike@stamen.com>.
68
69
70
71 Nov 10, 2010 TILESTACHE-COMPOSE(1)