Skip to content

Commit

Permalink
Merge pull request #190 from tilezen/iandees-patch-1
Browse files Browse the repository at this point in the history
Add changelog line for tile pruner command
  • Loading branch information
iandees authored Apr 19, 2017
2 parents 7430a81 + 67691da commit a818eba
Show file tree
Hide file tree
Showing 3 changed files with 50 additions and 1 deletion.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
CHANGELOG
=========

v1.7.0
------
* **New features:**
* Add new command that 'gardens' the tiles of interest set to add and remove tiles based on various rules. See [#176](https://github.com/tilezen/tilequeue/pull/176), [#178](https://github.com/tilezen/tilequeue/pull/178), [#179](https://github.com/tilezen/tilequeue/pull/179), [#180](https://github.com/tilezen/tilequeue/pull/180), [#182](https://github.com/tilezen/tilequeue/pull/182), [#183](https://github.com/tilezen/tilequeue/pull/183), [#184](https://github.com/tilezen/tilequeue/pull/184), and [#189](https://github.com/tilezen/tilequeue/pull/189).
* **Enhancements:**
* When enqueueing tiles of interest for seed rendering, enqueue at zoom level 15 instead of 16. See [#181](https://github.com/tilezen/tilequeue/pull/181).
* Add optional support for `statsd` in command.py. See [#185](https://github.com/tilezen/tilequeue/pull/185).

v1.6.0
------
* **New features:**
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.6.0
1.7.0
41 changes: 41 additions & 0 deletions config.yaml.sample
Original file line number Diff line number Diff line change
Expand Up @@ -173,3 +173,44 @@ metatile:
# addition to the metatile. this can be useful when gracefully "cutting over"
# to a metatile-based system from an individual format based one.
store_metatile_and_originals: false

# Configuration for the tiles of interest prune/garden command.
toi-prune:
# Connection and query configuration for a RedShift database containing
# request information for tiles.
redshift:
database-uri: postgresql://user:password@localhost:5439/database
# The number of days of history to query for.
days: 30
# The maximum zoom level to query redshift.
max-zoom: 16
cutoff:
# The minimum number of requests per tile for a tile to be included in
# the tiles of interest
min-requests: 16
# The maximum number of tiles to include from the RedShift-based calculation
max-tiles: 100000
s3:
# Connection information for deleting tiles from S3 when the tile is no longer
# in the tiles of interest.
bucket: mapzen-tiles-dev-us-east
date-prefix: 20170322
path: osm
layer: all
format: zip
always-include:
# Sets of tiles to always include in the tiles of interest.
# For more information about options here, see the code:
# https://github.com/tilezen/tilequeue/blob/1ca908e/tilequeue/command.py#L1046-L1061
world:
bbox: -180.0,-85.06,180.0,85.06
min_zoom: 0
max_zoom: 10
# sf_metro:
# bbox: -122.524338,37.571794,-122.345123,37.821175
# min_zoom: 0
# max_zoom: 15
# tests:
# tiles: 0/0/0,1/1/0
# tests-file:
# file: list-of-tile-coordinates.txt

0 comments on commit a818eba

Please sign in to comment.