org.geoscript.geometry

Geometry

object Geometry extends AnyRef

The Geometry object contains several methods for dealing with Geometry objects, including translating from JTS Geometries to GeoScript Geometries.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Hide All
  2. Show all
  1. Geometry
  2. AnyRef
  3. Any
Visibility
  1. Public
  2. All

Value Members

  1. def != (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  2. def != (arg0: Any): Boolean

    Attributes
    final
    Definition Classes
    Any
  3. def ## (): Int

    Attributes
    final
    Definition Classes
    AnyRef → Any
  4. def == (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  5. def == (arg0: Any): Boolean

    Attributes
    final
    Definition Classes
    Any
  6. def apply (geom: Geometry, proj: Projection): Geometry

    Create a GeoScript Geometry equivalent to a given JTS Geometry and annotated with a Projection.

    Create a GeoScript Geometry equivalent to a given JTS Geometry and annotated with a Projection. The coordinates of the original Geometry are assumed to be in the provided projection.

  7. implicit def apply (geom: Geometry): Geometry

    Create a GeoScript Geometry equivalent to a given JTS Geometry.

    Create a GeoScript Geometry equivalent to a given JTS Geometry.

    Attributes
    implicit
  8. def asInstanceOf [T0] : T0

    Attributes
    final
    Definition Classes
    Any
  9. def clone (): AnyRef

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  10. def eq (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  11. def equals (arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  12. def finalize (): Unit

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  13. def getClass (): java.lang.Class[_]

    Attributes
    final
    Definition Classes
    AnyRef → Any
  14. def hashCode (): Int

    Definition Classes
    AnyRef → Any
  15. def isInstanceOf [T0] : Boolean

    Attributes
    final
    Definition Classes
    Any
  16. def jtsClass (geomClass: Class[_ <: org.geoscript.geometry.Geometry]): Class[_ <: com.vividsolutions.jts.geom.Geometry]

    Find the class binding that should be used in the underlying GeoTools methods when dealing with a particular GeoScript geometry class.

    Find the class binding that should be used in the underlying GeoTools methods when dealing with a particular GeoScript geometry class. Note that if you just want to unwrap a Geometry instance, you can simple use geom.underlying.

  17. def ne (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  18. def notify (): Unit

    Attributes
    final
    Definition Classes
    AnyRef
  19. def notifyAll (): Unit

    Attributes
    final
    Definition Classes
    AnyRef
  20. def synchronized [T0] (arg0: ⇒ T0): T0

    Attributes
    final
    Definition Classes
    AnyRef
  21. def toString (): String

    Definition Classes
    AnyRef → Any
  22. val typeMapping : List[(java.lang.Class[_ >: org.geoscript.geometry.GeometryCollection with org.geoscript.geometry.MultiLineString with org.geoscript.geometry.MultiPolygon with org.geoscript.geometry.MultiPoint with org.geoscript.geometry.LineString with org.geoscript.geometry.Polygon with org.geoscript.geometry.Point <: org.geoscript.geometry.Geometry], java.lang.Class[_ >: com.vividsolutions.jts.geom.MultiLineString with com.vividsolutions.jts.geom.MultiPolygon with com.vividsolutions.jts.geom.MultiPoint with com.vividsolutions.jts.geom.LineString with com.vividsolutions.jts.geom.Polygon with com.vividsolutions.jts.geom.Point <: com.vividsolutions.jts.geom.Geometry])]

  23. implicit def unwrap (geom: Geometry): Geometry

    Attributes
    implicit
  24. def wait (): Unit

    Attributes
    final
    Definition Classes
    AnyRef
    Annotations
    @throws()
  25. def wait (arg0: Long, arg1: Int): Unit

    Attributes
    final
    Definition Classes
    AnyRef
    Annotations
    @throws()
  26. def wait (arg0: Long): Unit

    Attributes
    final
    Definition Classes
    AnyRef
    Annotations
    @throws()
  27. def wrapperClass (geomClass: Class[_ <: com.vividsolutions.jts.geom.Geometry]): Class[_ <: org.geoscript.geometry.Geometry]

    Find the class binding that should be used in GeoScript wrapper objects for the given Geometry.

    Find the class binding that should be used in GeoScript wrapper objects for the given Geometry. Note that if you just want to wrap an existing JTS Geometry instance, you can simply use Geometry.apply().

Inherited from AnyRef

Inherited from Any