geotrellis.feature.op.geometry

FlattenGeometry

case class FlattenGeometry[D](g1: Op[Geometry[D]]) extends Operation[List[Geometry[D]]] with Product with Serializable

Given a Geometry object, inspect the underlying geometry type and recursively flatten it if it is a GeometryCollection

Linear Supertypes
Operation[List[Geometry[D]]], Serializable, Serializable, Product, scala.Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. FlattenGeometry
  2. Operation
  3. Serializable
  4. Serializable
  5. Product
  6. Equals
  7. AnyRef
  8. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new FlattenGeometry(g1: Op[Geometry[D]])

Type Members

  1. type Args = List[Any]

    Definition Classes
    Operation
  2. type Steps = PartialFunction[Any, StepOutput[List[Geometry[D]]]]

    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[List[Geometry[D]]]

    Definition Classes
    FlattenGeometryOperation
  7. def andThen[U](f: (List[Geometry[D]]) ⇒ Op[U]): Operation[U]

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

    Definition Classes
    Any
  9. def clone(): AnyRef

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

    Definition Classes
    Operation
  11. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  12. def filter(f: (List[Geometry[D]]) ⇒ Boolean): Operation[List[Geometry[D]]]

    Definition Classes
    Operation
  13. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  14. def flatMap[U](f: (List[Geometry[D]]) ⇒ 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
  15. def flatten[B](implicit f: (List[Geometry[D]]) ⇒ Op[B]): Operation[B]

    Definition Classes
    Operation
  16. def flattenGeometry(g: com.vividsolutions.jts.geom.Geometry): List[com.vividsolutions.jts.geom.Geometry]

  17. def foreach[U](f: (List[Geometry[D]]) ⇒ 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
  18. val g1: Op[Geometry[D]]

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

    Definition Classes
    AnyRef → Any
  20. def into[U](f: (Operation[List[Geometry[D]]]) ⇒ 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

  21. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  22. def map[U](f: (List[Geometry[D]]) ⇒ 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
  23. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  24. val nextSteps: Steps

    Definition Classes
    FlattenGeometryOperation
  25. final def notify(): Unit

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

    Definition Classes
    AnyRef
  27. def opId: String

    Definition Classes
    Operation
  28. def prettyString: String

    Definition Classes
    Operation
  29. def processNextSteps(args: Args): StepOutput[List[Geometry[D]]]

    Definition Classes
    Operation
  30. def run(): StepOutput[List[Geometry[D]]]

    Execute this operation and return the result.

    Execute this operation and return the result.

    Definition Classes
    Operation
  31. def runAsync(args: Args): StepOutput[List[Geometry[D]]]

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

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  36. def withFilter(f: (List[Geometry[D]]) ⇒ Boolean): Operation[List[Geometry[D]]]

    Definition Classes
    Operation
  37. def withName(n: String): Operation[List[Geometry[D]]]

    Definition Classes
    Operation
  38. def withResult[U](f: (List[Geometry[D]]) ⇒ 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 Operation[List[Geometry[D]]]

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from scala.Equals

Inherited from AnyRef

Inherited from Any

Ungrouped