File tree Expand file tree Collapse file tree
vectortile/src/main/scala/geotrellis/vectortile Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1010- Remove explicit unused Scaffeine dependency from projects [ #3314 ] ( https://github.com/locationtech/geotrellis/pull/3314 )
1111- Remove an excessive close after the abort call in S3RangeReader [ #3324 ] ( https://github.com/locationtech/geotrellis/pull/3324 )
1212- Fix sigmoidal contrast calculation [ #3328 ] ( https://github.com/locationtech/geotrellis/pull/3328 )
13+ - Separated monoidal component of ` vectortile.StrictLayer ` [ #3330 ] ( https://github.com/locationtech/geotrellis/pull/3330 )
1314
1415## [ 3.5.1] - 2020-11-23
1516
Original file line number Diff line number Diff line change @@ -26,6 +26,13 @@ import geotrellis.vector.{
2626}
2727import cats .Monoid
2828
29+ /** Container case class for collections of [[MVTFeature ]]s
30+ *
31+ * This is separated for ease of use when reading geometries from
32+ * places. With the `Monoid` instance for `MVTFeatures`, each geometry
33+ * can be lifted into a seq in the relevant attribute, and then
34+ * the separate `MVTFeatures` case classes can all be combined.
35+ */
2936final case class MVTFeatures (
3037 /** Every Point Feature in this Layer. */
3138 points : Seq [MVTFeature [Point ]],
You can’t perform that action at this time.
0 commit comments