Authenticated with a secret
{% elif auth_type == AuthenticationType.TEST %}Logged as: {{ auth_info.user.display_name }}
{% elif auth_type == AuthenticationType.GITHUB %}Logged as: {{ auth_info.user.display_name }} Logout
{% endif %}{{ error }}
{% endfor %}{{ warning }}
{% endfor %}You have read-only access: you can see the status and the jobs, but you cannot start, cancel or retry a generation.
{{ '
'.join(status) | safe }}
See the result in the test page.
{% if jobs_status %}
{{ job.command }}
Estimated remaining time: {{ eta }}
{% endif %} {% if job.message %}{{ job.message.strip() | safe | escape }}
{% endif %}
{% if not read_only and job.status == 'started' %}
{% elif not read_only and job.status == 'error' and errors %}
{% endif %} {% if status %}
{% for s in status %}
Zoom level {{ s['zoom'] }}:
{% set comma = false %}
{% if 'generate' in s %}
{% set comma = true %}
{{ s['generate'] }} meta tiles to generate
{% endif %}
{% if 'pending' in s %}
{% if comma %}
,
{% endif %}
{% set 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 | safe | escape }}
{% 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-tiles --layer=LAYER --tile=Z/X/Y: Generate one specific tile of the
LAYER.
generate-tiles --layer=LAYER --tile=Z/X/Y:+N/+N: Generate one specific metatile of the
LAYER.
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).
--tile=Z/X/Y: generate the specified tile (requires --layer).--tile=Z/X/Y:+N/+N: generate the specified metatile (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.--grid=NAME: the grid to use, if not specified, the default grid for the layer in
the config file is used.
generate-controller --generate-legend-imagesGenerate the legend images.
{% endif %}