geotrellis.feature.op.geometry

Buffer

case class Buffer[A](g: Op[Geometry[A]], distance: Op[Double], detail: Op[Int], endCapStyle: EndCapStyle) extends Op3[Geometry[A], Double, Int, Geometry[A] with Product] with Product with Serializable

Computes a buffer area around this geometry.

g

Geometry to buffer

distance

Distance to buffer

detail

Number of line segments used to approximate a quarter circle (default 8)

endCapStyle

Specify flat, round, or square geometry at the end of lines

See also

"JTS documentation"

Linear Supertypes
Op3[Geometry[A], Double, Int, Geometry[A] with Product], Operation[Geometry[A] with Product], Serializable, Serializable, Product, scala.Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Buffer
  2. Op3
  3. Operation
  4. Serializable
  5. Serializable
  6. Product
  7. Equals
  8. AnyRef
  9. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Buffer(g: Op[Geometry[A]], distance: Op[Double], detail: Op[Int], endCapStyle: EndCapStyle)

    g

    Geometry to buffer

    distance

    Distance to buffer

    detail

    Number of line segments used to approximate a quarter circle (default 8)

    endCapStyle

    Specify flat, round, or square geometry at the end of lines

Type Members

  1. type Args = List[Any]

    Definition Classes
    Operation
  2. type Steps = PartialFunction[Any, StepOutput[Geometry[A] with Product]]

    Definition Classes
    Operation

Value Members

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

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

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

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

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

    Definition Classes
    Any
  6. def _run(): StepOutput[Geometry[A] with Product]

    Definition Classes
    Op3Operation
  7. def andThen[U](f: (Geometry[A] with Product) ⇒ Op[U]): Operation[U]

    Definition Classes
    Operation
  8. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  9. def canEqual(other: Any): Boolean

    Definition Classes
    Op3 → Equals
  10. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  11. val debug: Boolean

    Definition Classes
    Operation
  12. val detail: Op[Int]

    Number of line segments used to approximate a quarter circle (default 8)

  13. val distance: Op[Double]

    Distance to buffer

  14. val endCapStyle: EndCapStyle

    Specify flat, round, or square geometry at the end of lines

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

    Definition Classes
    AnyRef
  16. def filter(f: (Geometry[A] with Product) ⇒ Boolean): Operation[Geometry[A] with Product]

    Definition Classes
    Operation
  17. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  18. def flatMap[U](f: (Geometry[A] with Product) ⇒ Operation[U]): Operation[U]

    Create a new operation with a function that takes the result of this operation and returns a new operation.

    Create a new operation with a function that takes the result of this operation and returns a new operation.

    Definition Classes
    Operation
  19. def flatten[B](implicit f: (Geometry[A] with Product) ⇒ Op[B]): Operation[B]

    Definition Classes
    Operation
  20. def foreach[U](f: (Geometry[A] with Product) ⇒ U): Unit

    Create an operation that applies the function f to the result of this operation, but returns nothing.

    Create an operation that applies the function f to the result of this operation, but returns nothing.

    Definition Classes
    Operation
  21. val g: Op[Geometry[A]]

    Geometry to buffer

  22. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  23. def into[U](f: (Operation[Geometry[A] with Product]) ⇒ U): U

    Call the given function with this operation as its argument.

    Call the given function with this operation as its argument.

    This is primarily useful for code readability.

    Definition Classes
    Operation
    See also

    http://debasishg.blogspot.com/2009/09/thrush-combinator-in-scala.html

  24. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  25. def map[U](f: (Geometry[A] with Product) ⇒ U): Operation[U]

    Create a new operation that returns the result of the provided function that takes this operation's result as its argument.

    Create a new operation that returns the result of the provided function that takes this operation's result as its argument.

    Definition Classes
    Operation
  26. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  27. val nextSteps: Steps

    Definition Classes
    Op3Operation
  28. final def notify(): Unit

    Definition Classes
    AnyRef
  29. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  30. def opId: String

    Definition Classes
    Operation
  31. def prettyString: String

    Definition Classes
    Operation
  32. def processNextSteps(args: Args): StepOutput[Geometry[A] with Product]

    Definition Classes
    Operation
  33. def productArity: Int

    Definition Classes
    Op3 → Product
  34. def productElement(n: Int): Any

    Definition Classes
    Op3 → Product
  35. def run(): StepOutput[Geometry[A] with Product]

    Execute this operation and return the result.

    Execute this operation and return the result.

    Definition Classes
    Operation
  36. def runAsync(args: Args): StepOutput[Geometry[A] with Product]

    Definition Classes
    Operation
  37. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  38. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  41. def withFilter(f: (Geometry[A] with Product) ⇒ Boolean): Operation[Geometry[A] with Product]

    Definition Classes
    Operation
  42. def withName(n: String): Operation[Geometry[A] with Product]

    Definition Classes
    Operation
  43. def withResult[U](f: (Geometry[A] with Product) ⇒ Operation[U]): Operation[U]

    Create a new operation with a function that takes the result of this operation and returns a new operation.

    Create a new operation with a function that takes the result of this operation and returns a new operation.

    Same as flatMap.

    Definition Classes
    Operation

Inherited from Op3[Geometry[A], Double, Int, Geometry[A] with Product]

Inherited from Operation[Geometry[A] with Product]

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from scala.Equals

Inherited from AnyRef

Inherited from Any

Ungrouped