Packages

case class BoundingBox(ll: Point, ur: Point) extends Product with Serializable

A bounding box is a lat-lon rectangle defined by a "lower left" and an "upper right" point.

We do make the assumption that the lower left corner's latitude and longitude are less than or equal to the upper right corner's.

NB: Lat-lon rectangles which cross the {+|-}180 longitude line cannot be represented.

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

Instance Constructors

  1. new BoundingBox(ll: Point, ur: Point)

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. lazy val centerPoint: Point
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native() @IntrinsicCandidate()
  7. def contains(otherGeom: Geometry): Boolean

    This bounding box contains geom iff no points of goem lie in the exterior of this bounding box, and at least one point of the interior of goem lies in the interior of this bounding box.

  8. def covers(pt: Point): Boolean

    This bounding box covers pt iff pt does not line in the exterior of this bounding box.

  9. def covers(bbox: BoundingBox): Boolean

    This bounding box covers bbox iff no points of bbox lie in the exterior of this bounding box.

  10. lazy val envelope: Envelope
  11. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  12. lazy val geom: Geometry
  13. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  14. def getExpandedBoundingBox(that: BoundingBox): BoundingBox
  15. def intersects(bbox: BoundingBox): Boolean
  16. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  17. lazy val latitudeSize: Double
  18. val ll: Point
  19. lazy val longitudeSize: Double
  20. lazy val lr: Point
  21. lazy val maxLat: Double
  22. lazy val maxLon: Double
  23. lazy val midLat: Double
  24. lazy val midLon: Double
  25. lazy val minLat: Double
  26. lazy val minLon: Double
  27. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  28. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  29. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  30. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  31. lazy val ul: Point
  32. val ur: Point
  33. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  34. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  35. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] ) @Deprecated
    Deprecated

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped