Packages

sealed trait PolygonalSummaryResult[+A] extends AnyRef

A Result ADT returned by PolygonalSummary operations

There are two result types, NoIntersection and Summary. This ADT will always return Summary if the Raster and Polygon intersect. Otherwise, NoIntersection will be returned.

Provides helpers to convert to Option and Either if you don't need to match on result type.

Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. PolygonalSummaryResult
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def toEither: Either[NoIntersection.type, A]
  2. abstract def toOption: Option[A]