geotrellis

Extent

case class Extent (xmin: Double, ymin: Double, xmax: Double, ymax: Double) extends Product with Serializable

An Extent represents a rectangular region of geographic space (with a particular projection). It is expressed in map coordinates. It is not concerned with details of e.g. cell sizes (for that, see GeoAttrs).

Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Hide All
  2. Show all
  1. Extent
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Extent (xmin: Double, ymin: Double, xmax: Double, ymax: Double)

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 asInstanceOf [T0] : T0

    Attributes
    final
    Definition Classes
    Any
  7. def canEqual (arg0: Any): Boolean

    Definition Classes
    Extent → Equals
  8. def clone (): AnyRef

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  9. def combine (other: Extent): Extent

    Return a the smallest extent that contains this extent and the provided extent.

    Return a the smallest extent that contains this extent and the provided extent. This is provides a union of the two extents.

  10. def compare (other: Extent): Int

    Orders two extents by their (geographically) lower-left corner.

    Orders two extents by their (geographically) lower-left corner. The extent that is further south (or west in the case of a tie) comes first.

    If the lower-left corners are the same, the upper-right corners are compared. This is mostly to assure that 0 is only returned when the extents are equal.

    Return type signals:

    -1 this extent comes first 0 the extents have the same lower-left corner 1 the other extent comes first

  11. def containsPoint (x: Double, y: Double): Boolean

    Determine whether the given point lies within the extent.

    Determine whether the given point lies within the extent. The boundary is excluded, so that Extent(a, b, c, d) does not contain (a, b).

  12. def eq (arg0: AnyRef): Boolean

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

    Definition Classes
    Extent → Equals → AnyRef → Any
  14. def finalize (): Unit

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

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

    Definition Classes
    Extent → AnyRef → Any
  17. val height : Double

  18. def isInstanceOf [T0] : Boolean

    Attributes
    final
    Definition Classes
    Any
  19. def ne (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  20. def northEast : (Double, Double)

    Return NE corner (xmax, ymax) as tuple.

  21. def notify (): Unit

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

    Attributes
    final
    Definition Classes
    AnyRef
  23. def productArity : Int

    Definition Classes
    Extent → Product
  24. def productElement (arg0: Int): Any

    Definition Classes
    Extent → Product
  25. def productIterator : Iterator[Any]

    Definition Classes
    Product
  26. def productPrefix : String

    Definition Classes
    Extent → Product
  27. def southWest : (Double, Double)

    Return SW corner (xmin, ymin) as tuple.

  28. def synchronized [T0] (arg0: ⇒ T0): T0

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

    Definition Classes
    Extent → AnyRef → Any
  30. def wait (): Unit

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

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

    Attributes
    final
    Definition Classes
    AnyRef
    Annotations
    @throws()
  33. val width : Double

  34. val xmax : Double

  35. val xmin : Double

  36. val ymax : Double

  37. val ymin : Double

Deprecated Value Members

  1. def productElements : Iterator[Any]

    Definition Classes
    Product
    Annotations
    @deprecated
    Deprecated

    use productIterator instead

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any