Package

geotrellis.vector

voronoi

Permalink

package voronoi

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. voronoi
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. case class ConformingDelaunay(verts: Array[Point], constraints: com.vividsolutions.jts.geom.GeometryCollection) extends Product with Serializable

    Permalink

    A class for triangulating a set of points to satisfy the Delaunay property (subject to the given linear constraints).

    A class for triangulating a set of points to satisfy the Delaunay property (subject to the given linear constraints). Each resulting triangle's circumscribing circle will contain no other points of the input set.

  2. case class Delaunay(verts: Array[Point]) extends Product with Serializable

    Permalink

    A class for triangulating a set of points to satisfy the delaunay property.

    A class for triangulating a set of points to satisfy the delaunay property. Each resulting triangle's circumscribing circle will contain no other points of the input set.

  3. trait DelaunayTriangulationArrayMethods extends MethodExtensions[Array[Point]]

    Permalink
  4. trait DelaunayTriangulationMethods extends MethodExtensions[Traversable[Point]]

    Permalink
  5. trait FastVoronoiDiagramArrayMethods extends MethodExtensions[Array[Coordinate]]

    Permalink
  6. trait FastVoronoiDiagramMethods extends MethodExtensions[Traversable[Coordinate]]

    Permalink
  7. trait FastVoronoiDiagramMultiPointMethods extends MethodExtensions[MultiPoint]

    Permalink
  8. trait Implicits extends AnyRef

    Permalink
  9. class Voronoi extends Serializable

    Permalink

    A class to compute the Voronoi diagram of a collection of points.

    A class to compute the Voronoi diagram of a collection of points. The Voronoi diagram partitions the plane into a set of non-overlapping convex polygonal cells in one-to-one correspondence with the input points. The cells are defined as the region in the plane closer to the corresponding point than any other point.

    This class is a simple wrapper around functionality provided by JTS. That package elected to compute the Voronoi cells bounded by an arbitrary bounding triangle. While this bounding triangle is large, it is not infinite nor user-specifiable. If the target point set inhabits a region that is small with respect to the domain of interest, you may have to handle cell boundaries.

  10. class VoronoiDiagram extends Serializable

    Permalink

    A class to compute the Voronoi diagram of a set of points.

    A class to compute the Voronoi diagram of a set of points. See <geotrellis_home>/docs/vector/voronoi.md for more information.

  11. trait VoronoiDiagramArrayMethods extends MethodExtensions[Array[Point]]

    Permalink
  12. trait VoronoiDiagramMethods extends MethodExtensions[Traversable[Point]]

    Permalink

Value Members

  1. object ConformingDelaunay extends Serializable

    Permalink
  2. object Delaunay extends Serializable

    Permalink
  3. object Implicits extends Implicits

    Permalink
  4. object VoronoiDiagram extends Serializable

    Permalink
  5. implicit def linesToCollection(lines: Array[Line]): com.vividsolutions.jts.geom.GeometryCollection

    Permalink
  6. implicit def linesToCollection(lines: Seq[Line]): com.vividsolutions.jts.geom.GeometryCollection

    Permalink
  7. implicit def polygonsToCollection(polygons: Array[Polygon]): com.vividsolutions.jts.geom.GeometryCollection

    Permalink
  8. implicit def polygonsToCollection(polygons: Seq[Polygon]): com.vividsolutions.jts.geom.GeometryCollection

    Permalink

Inherited from AnyRef

Inherited from Any

Ungrouped