Class/Object

geotrellis.raster

GridBounds

Related Docs: object GridBounds | package raster

Permalink

case class GridBounds(colMin: Int, rowMin: Int, colMax: Int, rowMax: Int) extends Product with Serializable

Represents grid coordinates of a subsection of a RasterExtent. These coordinates are inclusive.

Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. GridBounds
  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 GridBounds(colMin: Int, rowMin: Int, colMax: Int, rowMax: Int)

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. def -(other: GridBounds): Seq[GridBounds]

    Permalink

    Another name for the 'minus' method.

    Another name for the 'minus' method.

    other

    The other GridBounds

  4. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. val colMax: Int

    Permalink
  8. val colMin: Int

    Permalink
  9. def contains(col: Int, row: Int): Boolean

    Permalink

    Return true if the present GridBounds contains the position pointed to by the given column and row, otherwise false.

    Return true if the present GridBounds contains the position pointed to by the given column and row, otherwise false.

    col

    The column

    row

    The row

  10. def coords: Array[(Int, Int)]

    Permalink

    Return the coordinates covered by the present GridBounds.

  11. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  12. def finalize(): Unit

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

    Permalink
    Definition Classes
    AnyRef → Any
  14. def height: Int

    Permalink
  15. def intersection(other: GridBounds): Option[GridBounds]

    Permalink

    Return the intersection of the present GridBounds and the given GridBounds.

    Return the intersection of the present GridBounds and the given GridBounds.

    other

    The other GridBounds

  16. def intersection(cellGrid: CellGrid): Option[GridBounds]

    Permalink

    Return the intersection of the present GridBounds and the given CellGrid.

    Return the intersection of the present GridBounds and the given CellGrid.

    cellGrid

    The cellGrid to intersect with

  17. def intersects(other: GridBounds): Boolean

    Permalink

    Returns true if the present GridBounds and the given one intersect (including their boundaries), otherwise returns false.

    Returns true if the present GridBounds and the given one intersect (including their boundaries), otherwise returns false.

    other

    The other GridBounds

  18. def isEmpty: Boolean

    Permalink
  19. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  20. def minus(other: GridBounds): Seq[GridBounds]

    Permalink

    Returns the difference of the present GridBounds and the given one.

    Returns the difference of the present GridBounds and the given one. This returns a sequence, because the difference may consist of more than one GridBounds.

    other

    The other GridBounds

  21. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  22. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  23. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  24. val rowMax: Int

    Permalink
  25. val rowMin: Int

    Permalink
  26. def size: Int

    Permalink
  27. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  28. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  31. def width: Int

    Permalink

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped