diff --git a/CHANGELOG.md b/CHANGELOG.md index 94fac991b..b55758563 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +# 2.41.2 + +* Add --accumulate-attribute to tippecanoe-overzoom +* Go back to ordering features within each multiplier cluster spatially, not in the order specified for tile feature order + # 2.41.1 * Make --preserve-input-order, --order-by, --order-descending-by, --order-smallest-first, and --order-largest-first cooperate with --retain-points-multiplier. The clusters will be ordered by their lead feature in the specified sequence. The other features in each cluster will continue to be physically near the lead feature, but ordered as specified within the cluster. diff --git a/README.md b/README.md index a7472d665..0bb803b6e 100644 --- a/README.md +++ b/README.md @@ -997,3 +997,4 @@ reads tile `inz/inx/iny` of `in.mvt.gz` and produces tile `outz/outx/outy` of `o * `-j` *filter*: Filter features using the same expression syntax as in tippecanoe. * `-m`: If a tile was created with the `--retain-points-multiplier` option, thin the tile back down to its normal feature count during overzooming. The first feature from each cluster will be retained, unless `-j` is used to specify a filter, in which case the first matching filter from each cluster will be retained instead. * `--preserve-input-order`: Restore a set of filtered features to its original input order + * `--accumulate-attribute`: Behaves as in `tippecanoe` to sum attributes from the features of a multiplier cluster that are not included in the final output. The attributes from features that are filtered away with `-j` are *not* accumulated onto the output feature. diff --git a/man/tippecanoe.1 b/man/tippecanoe.1 index d280cd94e..8c0eae550 100644 --- a/man/tippecanoe.1 +++ b/man/tippecanoe.1 @@ -1268,4 +1268,6 @@ reads tile \fB\fCinz/inx/iny\fR of \fB\fCin.mvt.gz\fR and produces tile \fB\fCou \fB\fC\-m\fR: If a tile was created with the \fB\fC\-\-retain\-points\-multiplier\fR option, thin the tile back down to its normal feature count during overzooming. The first feature from each cluster will be retained, unless \fB\fC\-j\fR is used to specify a filter, in which case the first matching filter from each cluster will be retained instead. .IP \(bu 2 \fB\fC\-\-preserve\-input\-order\fR: Restore a set of filtered features to its original input order +.IP \(bu 2 +\fB\fC\-\-accumulate\-attribute\fR: Behaves as in \fB\fCtippecanoe\fR to sum attributes from the features of a multiplier cluster that are not included in the final output. The attributes from features that are filtered away with \fB\fC\-j\fR are \fInot\fP accumulated onto the output feature. .RE diff --git a/version.hpp b/version.hpp index 3a5f6c548..34c492860 100644 --- a/version.hpp +++ b/version.hpp @@ -1,6 +1,6 @@ #ifndef VERSION_HPP #define VERSION_HPP -#define VERSION "v2.41.1" +#define VERSION "v2.41.2" #endif