Skip to content

Commit 37e82d5

Browse files
committed
add scaladoc, update changelog
Signed-off-by: James Santucci <[email protected]>
1 parent 8c24117 commit 37e82d5

2 files changed

Lines changed: 8 additions & 0 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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

vectortile/src/main/scala/geotrellis/vectortile/MVTFeatures.scala

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,13 @@ import geotrellis.vector.{
2626
}
2727
import 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+
*/
2936
final case class MVTFeatures(
3037
/** Every Point Feature in this Layer. */
3138
points: Seq[MVTFeature[Point]],

0 commit comments

Comments
 (0)