Logged as: ${request.identity.name} Logout
%endif${'
'.join(status)|n}
See the result in the test page.
%if jobs_status:
${job.command}
${job.message.strip() | n,h}
%endif
%if job.status == 'started':
%elif job.status == 'error' and errors:
%endif %if status:
%for s in status:
Zoom level ${s['zoom']}:
<% comma = False %>
%if 'generate' in s:
<% comma = True %>
${s['generate']} meta tiles to generate
%endif
%if 'pending' in s:
%if comma:
,
%endif
<% comma = True %>
${s['pending']} meta tiles being generated
%endif
%if 'error' in s:
%if comma:
,
%endif
${s['error']} meta tiles in error
%endif
%endfor
${e | n,h}
%endfor
%endif
generate-tiles: Generate all the layers.
generate-tiles --layer=LAYER: Generate the LAYER map.
generate-tiles --layer=LAYER --zoom=2-5: Generate the LAYER map for the zoom
levels 2 to 5.
generate-tiles --layer=LAYER --bbox MINX MINY MAXX MAXY: Generate the
LAYER map for the specified bounding box.
generate-controller --generate-legend-images: Generate the legend images.
generate-tiles --layer=LAYER --get-hash=15/0/0: Get the hash for the LAYER.
generate-tiles --layer=LAYER --get-bbox=0/0/0: Get the bbox of the tile.
generate-tilesGenerate the tiles.
Arguments:
--layer=NAME: the layer name to generate, it not specified all the layers are generated.
--get-hash=Z/X/Y: get the hash configuration for the layer (requires
--layer).
--get-bbox=Z/X/Y[:-N/+N]: get the bbox of a tile, use the specified tile
Z/X/Y, or Z/X/Y:+N/+N for metatiles (requires --layer).
--dimensions DIMENSION=VALUE [DIMENSION=VALUE ...]: overwrite the dimensions values
specified in the config file.
--zoom=ZOOM restrict to specified zoom level, or a zooms range (2-5), or a zooms list
(2,4,5).
--bbox MINX MINY MAXX MAXY: restrict to specified bounding box.--near X Y: This option is a good replacement of --bbox, to used with
--time or --test and --zoom, implies --no-geom. It
automatically measure a bbox around the X Y position that corresponds to the metatiles.
--test N: test with generating N tiles.generate-controller --generate-legend-imagesGenerate the legend images.
%endif