geotrellis

Operation

abstract class Operation[+T] extends Product with Serializable

Base Operation for all GeoTrellis functionality. All other operations must extend this trait.

Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Known Subclasses
Accumulation, Apply, AsArray, AsArrayDouble, AsList, AsPolygonSet, Aspect, AutomaticRescale, Buffer, BufferWithParameters, BuildColorBreaks, Collect, CollectMap, CompositeOperation, Concat, Contains, ConvertType, ConvexHull, Convolve, Conway, CostDistance, CountPoints, Covers, Crop, CsvIntMap, DirectHillshade, Disjoint, Downsample, Equals, Erase, FailOp, FeatureCollectionToGeoJson, Fill, FlattenGeometry, FlowDirection, Fmap, FocalOp, FocalOp1, FocalOp2, FocalOp3, FocalOp4, FocalOperation, FocalOperation0, FocalOperation1, FocalOperation2, FocalOperation3, FocalOperation4, ForEach1, ForEach2, ForEach3, ForEachCellByFeature, GetArea, GetCentroid, GetColorBreaks, GetColorsFromPalette, GetDistance, GetEnvelope, GetStandardDeviation, GetStatistics, GetSymDifference, IDWInterpolate, If, IndirectHillshade, Intersect, Intersects, KernelDensity, Literal, LoadFile, LoadFileWithRasterExtent, LoadGeoJson, LoadGeoJsonFeature, LoadRaster, LoadRasterDefinition, LoadRasterExtent, LoadRasterExtentFromFile, LoadRasterLayer, LoadRasterLayerFromPath, LoadRasterLayerFromUrl, LoadRasterLayerInfo, LoadRasterLayerInfoFromPath, LoadRasterUrl, LoadTile, LoadWkt, MapOp0, MapOp1, MapOp2, Max, Mean, Median, Min, Mode, Op0, Op1, Op2, Op3, Op4, Op5, Op6, OperationWrapper, Overlaps, ParseColor, ParseDouble, ParseExtent, ParseInt, PrecomputedRescale, Pure, RasterMoransI, Rasterize, RasterizeWithValue, RegionGroup, RemoteOperation, RenderGeoTiff, RenderPng, RenderPngRgba, Rescale, Resize, ResizeGrid, ScalarMoransI, Simplify, Slope, Split, SplitOnComma, StandardDeviation, Sum, ToGeoJson, ToVector, Union, VerticalFlip, WithResult, WritePng, WritePngRgba, ZonalHistogram, ZonalPercentage
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Operation
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Operation()

Type Members

  1. type Args = List[Any]

  2. type Steps = PartialFunction[Any, StepOutput[T]]

Abstract Value Members

  1. abstract def _run(): StepOutput[T]

    Attributes
    protected[geotrellis]
  2. abstract def canEqual(that: Any): Boolean

    Definition Classes
    Equals
  3. abstract val nextSteps: PartialFunction[Any, StepOutput[T]]

  4. abstract def productArity: Int

    Definition Classes
    Product
  5. abstract def productElement(n: Int): Any

    Definition Classes
    Product

Concrete 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 andThen[U](f: (T) ⇒ Op[U]): Operation[U]

  7. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  8. def clone(): AnyRef

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

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

    Definition Classes
    AnyRef
  11. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  12. def filter(f: (T) ⇒ Boolean): Operation[T]

  13. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  14. def flatMap[U](f: (T) ⇒ Operation[U]): Operation[U]

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

  15. def flatten[B](implicit f: (T) ⇒ Op[B]): Operation[B]

  16. def foreach[U](f: (T) ⇒ U): Unit

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

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

    Definition Classes
    AnyRef → Any
  18. def hashCode(): Int

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

    See also

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

  20. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  21. def map[U](f: (T) ⇒ U): Operation[U]

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

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

    Definition Classes
    AnyRef
  23. final def notify(): Unit

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

    Definition Classes
    AnyRef
  25. def opId: String

  26. def prettyString: String

  27. def processNextSteps(args: Args): StepOutput[T]

  28. def productIterator: Iterator[Any]

    Definition Classes
    Product
  29. def productPrefix: String

    Definition Classes
    Product
  30. def run(): StepOutput[T]

    Execute this operation and return the result.

  31. def runAsync(args: Args): StepOutput[T]

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

    Definition Classes
    AnyRef
  33. def toString(): String

    Definition Classes
    AnyRef → Any
  34. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  37. def withFilter(f: (T) ⇒ Boolean): Operation[T]

  38. def withName(n: String): Operation[T]

  39. def withResult[U](f: (T) ⇒ 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.

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped