- In the layer, the
legend_mime,legend_extensionandlegendsbecomes deprecated, they are replaced bylegend.mime_type,legend.extensionandlegend.items.
- Change the validator and parser => duplicate key generate an error: on/off are no more considered as boolean.
- The argument --layer is no more used when we use the parameter --tiles, we get the information from the tiles file.
- Be able to mutualise the service.
- Add Azure blob storage
- Remove Apache and MapCache
- Remove the
log_formatin thegenerationconfiguration, nor we use the logging configuration from thedevelopment.inifile.
- Change the config validator who is a little bit more strict.
- Add optional
metadatasection to the config file. See the scaffolds for example.
- Correct some error with slash.
- Better error handling.
- Be able to have one error file per layer.
- Correct some error with slash.
- Add
pre_hash_post_processandpost_process. - Add copy command.
-
Support of deferent geoms per layers, requires configuration changes, old version:
connection: user=www-data password=www-data dbname=<db> host=localhost sql: <column> AS geom FROM <table>
to new version:
connection: user=www-data password=www-data dbname=<db> host=localhost geoms: - sql: <column> AS geom FROM <table>
More information in the Configure geom/sql chapter.
-
Update from
optparsetoargparse, and some argument refactoring, use--helpto see the new version. -
Add support of Blackbery DB (
bsddb). -
The tile
serveris completely rewrite, now it support all cache,RESTandKVPinterface,GetFeatureInforequest, and it can be used as a pyramid view or as aWSGIserver. More information in the istribute the tiles chapter. -
Add three strategy to bypass the proxy/cache: Use the headers
Cache-Control: no-cache, no-store,Pragma: no-cache(default). Use localhost in the URL and the headerHost: <host_name>(recommended). Add aSALTrandom argument (if the above don't work). More information in the Proxy/cache issue chapter. -
Improve the dimensions usage by adding it ti the WMS requests, And add a
--dimensionsargument ofgenerate-tilesto change the dimensions values. -
Extract
generate_costandgenerate_amazonfromgenerate_controler. -
Now we can creates legends, see the Legends chapter.
-
Now the tiles generation display generation statistics at the ends.
-
The EC2 configuration is moved in a separate structure, see README for more information.
- Now the apache configuration can be generated with
.build/venv/bin/generate-controller --generate-apache-config, it supportfilesystemcacheandMapCache. - Windows fixes.
- Use console rewrite (r) to log generated tiles coordinates.
- Now if no layers is specified in
generation:default_layerswe generate all layers by default. - Now bbox to be floats.
- New
--get-bboxoption to get the bbox of a tile. - Add coveralls support (https://coveralls.io/r/camptocamp/tilecloud-chain).
- Add an config option
generation:error_fileand a command option--tilesto store and regenerate errored tiles.
- SQS config change:
layers:
layer_name:
sqs:
# The region where the SQS queue is
region: eu-west-1
# The SQS queue name, it should already exists
queue: the_name- Add debug option (
--debug), please use it to report issue. - Now the
sqlrequest can return a set of geometries in a column names geom but the syntax change a little bit =><column> AS geom FROM <table>