Packages

object DistanceOp

Find two points on two {link Geometry}s which lie within a given distance, or else are the nearest points on the geometries (in which case this also provides the distance between the geometries).

The distance computation also finds a pair of points in the input geometries which have the minimum distance between them. If a point lies in the interior of a line segment, the coordinate computed is a close approximation to the exact point.

Empty geometry collection components are ignored.

The algorithms used are straightforward O(n^2) comparisons. This worst-case performance could be improved on by using Voronoi techniques or spatial indexes.

Version

1.7

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

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  6. def distance(g0: Geometry, g1: Geometry): Double

    Compute the distance between the nearest points of two geometries.

    Compute the distance between the nearest points of two geometries.

    g0

    a { @link Geometry}

    g1

    another { @link Geometry} return the distance between the geometries

  7. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  8. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  9. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  10. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  12. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  13. def isWithinDistance(g0: Geometry, g1: Geometry, distance: Double): Boolean

    Test whether two geometries lie within a given distance of each other.

    Test whether two geometries lie within a given distance of each other.

    g0

    a { @link Geometry}

    g1

    another { @link Geometry}

    distance

    the distance to test return true if g0.distance(g1) <= distance

  14. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. def nearestPoints(g0: Geometry, g1: Geometry): Array[Coordinate]

    Compute the the nearest points of two geometries.

    Compute the the nearest points of two geometries. The points are presented in the same order as the input Geometries.

    g0

    a { @link Geometry}

    g1

    another { @link Geometry} return the nearest points in the geometries

  16. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  17. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  18. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  19. def toString(): String
    Definition Classes
    AnyRef → Any
  20. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  21. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  22. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Deprecated Value Members

  1. def closestPoints(g0: Geometry, g1: Geometry): Array[Coordinate]

    Compute the the closest points of two geometries.

    Compute the the closest points of two geometries. The points are presented in the same order as the input Geometries.

    g0

    a { @link Geometry}

    g1

    another { @link Geometry} return the closest points in the geometries

    Deprecated

    renamed to nearestPoints

Inherited from AnyRef

Inherited from Any

Ungrouped