Package

geotrellis

engine

Permalink

package engine

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. engine
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. implicit class DataSourceSeqWrapper[T] extends AnyRef

    Permalink
  2. class DoubleConstantLayer extends UntiledRasterLayer

    Permalink
  3. class IntConstantLayer extends UntiledRasterLayer

    Permalink
  4. implicit class OpMap2[A, B] extends AnyRef

    Permalink

    Syntax for converting tuples of operations into objects that you can call map and flatMap on.

    Syntax for converting tuples of operations into objects that you can call map and flatMap on. this is similiar to a for comprehension, but the operations will be executed in parallel.

  5. implicit class OpMap3[A, B, C] extends AnyRef

    Permalink
  6. implicit class OpMap4[A, B, C, D] extends AnyRef

    Permalink
  7. implicit class OpMapArray[A] extends AnyRef

    Permalink
  8. implicit class OpMapSeq[A] extends AnyRef

    Permalink

    Syntax for converting an iterable collection to have methods to work with the results of those operations executed in parallel

  9. implicit class OpSeqToCollect[T] extends AnyRef

    Permalink
  10. sealed trait OperationResult[+T] extends AnyRef

    Permalink

    OperationResult contains an operation's results.

    OperationResult contains an operation's results.

    This could include the resulting value the operation produced, an error that prevented the operation from completing, and the history of the operation.

  11. sealed trait StepOutput[+T] extends AnyRef

    Permalink

    When run, Operations will return a StepOutput.

    When run, Operations will return a StepOutput. This will either indicate a complete result (Result), an error (StepError), or indicate that it needs other work performed asynchronously before it can continue.

  12. case class AndThen[+T](op: Operation[T]) extends StepOutput[T] with Product with Serializable

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  13. class ArgFileRasterLayer extends UntiledRasterLayer

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  14. class ArgUrlRasterLayer extends UntiledRasterLayer

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  15. type Args = List[Any]

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  16. class AsciiRasterLayer extends UntiledRasterLayer

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  17. trait Cache[T] extends Serializable

    Permalink

    Trait for a T-keyed, any valued cache.

    Trait for a T-keyed, any valued cache.

    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  18. class CacheTileLoader extends TileLoader

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  19. case class Catalog(name: String, stores: Map[String, DataStore], json: String, source: String) extends Product with Serializable

    Permalink

    Represents a named collection of data stores.

    Represents a named collection of data stores. We expect each JSON file to correspond to one catalog.

    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  20. case class Complete[T](value: T, history: History) extends OperationResult[T] with InternalOperationResult[T] with Product with Serializable

    Permalink

    OperationResult for a successful operation.

    OperationResult for a successful operation.

    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  21. case class CompositeOperation[+T, U](gOp: Op[U], f: (U) ⇒ Op[T]) extends Operation[T] with Product with Serializable

    Permalink

    Given an operation and a function that takes the result of that operation and returns a new operation, return an operation of the return type of the function.

    Given an operation and a function that takes the result of that operation and returns a new operation, return an operation of the return type of the function.

    If the initial operation is g, you can think of this operation as f(g(x))

    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  22. type DI = DummyImplicit

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  23. trait DataSource[T, +V] extends OpSource[V]

    Permalink

    DataSource[T, V]esents a data source that may be distributed across machines (logical data source) or loaded in memory on a specific machine.

    DataSource[T, V]esents a data source that may be distributed across machines (logical data source) or loaded in memory on a specific machine.

    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  24. case class DataStore(name: String, path: String, hasCacheAll: Boolean) extends Product with Serializable

    Permalink

    Represents a location where data can be loaded from (e.g.

    Represents a location where data can be loaded from (e.g. the filesystem, postgis, a web service, etc).

    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  25. class DiskTileLoader extends TileLoader

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  26. class Engine extends Serializable

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  27. case class Error(message: String, history: History) extends OperationResult[Nothing] with InternalOperationResult[Nothing] with Product with Serializable

    Permalink

    OperationResult for a failed operation.

    OperationResult for a failed operation.

    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  28. case class FailOp[T](msg: String) extends Operation[T] with Product with Serializable

    Permalink

    Operation that simply fails with the given message

    Operation that simply fails with the given message

    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  29. case class FailureHistory(msg: String, trace: String) extends HistoryResult with Product with Serializable

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  30. case class GeoTrellisConfig(catalogPath: Option[String]) extends Product with Serializable

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  31. class HashCache[T] extends Cache[T]

    Permalink

    Simple HashMap backed cache keyed by String and can hold any type.

    Simple HashMap backed cache keyed by String and can hold any type.

    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  32. case class History(id: String, steps: List[StepHistory], result: Option[HistoryResult], startTime: Long, endTime: Long, system: String = "unknown") extends Product with Serializable

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  33. sealed trait HistoryResult extends AnyRef

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  34. case class LayerId(store: Option[String], name: String) extends Product with Serializable

    Permalink

    A LayerId describes a layer in the catalog.

    A LayerId describes a layer in the catalog. The data store is optional, but if there are more than one layer with the same name in different datastores, tyring to load that layer without specifying a datastore will error.

    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  35. class LayerLoader extends AnyRef

    Permalink

    LayerLoader will be passed into Operation[T]'s that mix in the LayerOp trait right before 'run' is called on the operation step and cleared afterwards.

    LayerLoader will be passed into Operation[T]'s that mix in the LayerOp trait right before 'run' is called on the operation step and cleared afterwards.

    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  36. case class LayerResult[+T](loadFunc: (LayerLoader) ⇒ T) extends StepOutput[T] with Product with Serializable

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  37. case class Literal[+A](value: A) extends Op[A] with Product with Serializable

    Permalink

    Return the literal value specified.

    Return the literal value specified.

    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  38. type Op[+A] = Operation[A]

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  39. class Op0[T] extends Operation[T]

    Permalink

    Below are the Op0 - Op6 abstract classes.

    Below are the Op0 - Op6 abstract classes.

    These are useful for easily defining operations which just want to evaluate their child operations and then run a single function afterwards.

    For example:

    case class Add2(x: Op[Int], y: Op[Int]) extends Op2(x, y)(_ + _)

    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  40. class Op1[A, T] extends Operation[T]

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  41. class Op2[A, B, T] extends Operation[T]

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  42. class Op3[A, B, C, T] extends Operation[T]

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  43. class Op4[A, B, C, D, T] extends Operation[T]

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  44. abstract class Op5[A, B, C, D, E, T] extends Operation[T]

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  45. abstract class Op6[A, B, C, D, E, F, T] extends Operation[T]

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  46. trait OpSource[+V] extends AnyRef

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  47. abstract class Operation[+T] extends Product with Serializable

    Permalink

    Base Operation for all GeoTrellis functionality.

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

    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  48. abstract class OperationWrapper[+T] extends Operation[T]

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  49. case class RasterDefinition(layerId: LayerId, rasterExtent: RasterExtent, tileLayout: TileLayout, cellType: CellType, catalogued: Boolean = true) extends Product with Serializable

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  50. abstract class RasterLayer extends AnyRef

    Permalink

    Represents a Raster Layer that can give detailed information about the Raster it represents, cache the raster, and get the raster cropped to an extent or at a different resolution.

    Represents a Raster Layer that can give detailed information about the Raster it represents, cache the raster, and get the raster cropped to an extent or at a different resolution.

    This represents a layer in a bound Context, not an abstract representation of the Raster. In other words, if you are holding one of these objects, then the code that uses it should only execute on the machine that the RasterLayer is from. If you pass around RasterLayers, you will be passing around the cache as well, which is not ideal.

    To implement a new RasterLayer, inherit from this class, implement the cache(c: Cache) method for caching the raster layer, and implement the getRaster() (for getting a Raster with it's native RasterExtent) and getRaster(rasterExtent: RasterExtent) (for getting a Raster at a different extent\resolution). Optionally you can override getRaster(extent: Extent), which by default just creates a RasterExtent with that extent snapped to the raster's native resolution.

    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  51. trait RasterLayerBuilder extends AnyRef

    Permalink

    Defines a RasterLayerBuilder that can be used to add raster layer types to GeoTrellis.

    Defines a RasterLayerBuilder that can be used to add raster layer types to GeoTrellis. Also provides some baseline helper functions for getting Information out of the metadata json files.

    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  52. case class RasterLayerInfo(id: LayerId, cellType: CellType, rasterExtent: RasterExtent, epsg: Int, xskew: Double, yskew: Double, tileLayout: TileLayout, shouldCache: Boolean = false) extends Product with Serializable

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  53. abstract class RasterLayerType extends AnyRef

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  54. class RasterSource extends DataSource[Tile, Tile]

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  55. trait RasterSourceMethods extends AnyRef

    Permalink

    This trait can be extended to add methods to RasterSource, such as local operations.

    This trait can be extended to add methods to RasterSource, such as local operations. To do so, extent RasterSourceMethods, then define an implicit class in the package object that wraps RasterSource, that extends your Methods trait. See geotrellis.engine.op.local.LocalRasterSourceMethods

    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  56. trait RasterSourceSeqMethods extends AnyRef

    Permalink

    This trait can be extended to add methods to Traversable[RasterSource], such as local operations.

    This trait can be extended to add methods to Traversable[RasterSource], such as local operations. To do so, extent RasterSourceSeqMethods, then define an implicit class in the package object that wraps Travesable[RasterSourceSeq], that extends your Methods trait. See LocalSeqRasterSourceMethods and geotrellis.raster.op.local.LocalRasterSourceSeqMethodExtensions

    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  57. case class RemoteOperation[+T](op: Op[T], cluster: Option[ActorRef]) extends OperationWrapper[T] with Product with Serializable

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  58. case class Result[+T](value: T) extends StepOutput[T] with Product with Serializable

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  59. case class SeqSource[T](elements: Op[Seq[Op[T]]]) extends DataSource[T, Seq[T]] with Product with Serializable

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  60. case class SeqTileNeighbors(seq: Seq[Option[Op[Tile]]]) extends TileNeighbors with Product with Serializable

    Permalink

    Tile Neighbors that are represented by a sequence of neighboring tiles, in the order (n, ne, e, se, s, sw, w, nw)

    Tile Neighbors that are represented by a sequence of neighboring tiles, in the order (n, ne, e, se, s, sw, w, nw)

    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  61. case class StepError(msg: String, trace: String) extends StepOutput[Nothing] with Product with Serializable

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  62. case class StepHistory(opHistories: List[History]) extends Product with Serializable

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  63. case class StepRequiresAsync[+T](args: Args, cb: (Args) ⇒ StepOutput[T]) extends StepOutput[T] with Product with Serializable

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

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

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  65. case class SuccessHistory(value: String) extends HistoryResult with Product with Serializable

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  66. abstract class TileLoader extends Serializable

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  67. trait TileNeighbors extends AnyRef

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  68. class TileSetRasterLayer extends RasterLayer

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  69. abstract class UntiledRasterLayer extends RasterLayer

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  70. class ValueSource[+T] extends OpSource[T]

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

Value Members

  1. package actors

    Permalink
  2. implicit lazy val engine: Engine

    Permalink
  3. package io

    Permalink
  4. package json

    Permalink
  5. package logic

    Permalink
  6. package op

    Permalink
  7. package render

    Permalink
  8. package stats

    Permalink

Deprecated Value Members

  1. object ArgFile extends RasterLayerType with Product with Serializable

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  2. object ArgFileRasterLayerBuilder extends RasterLayerBuilder

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  3. object ArgUrlRasterLayerBuilder extends RasterLayerBuilder

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  4. object AsciiFile extends RasterLayerType with Product with Serializable

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  5. object AsciiRasterLayerBuilder extends RasterLayerBuilder

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  6. object Catalog extends Serializable

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  7. object ConstantRaster extends RasterLayerType with Product with Serializable

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  8. object ConstantRasterLayerBuilder extends RasterLayerBuilder

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  9. object DataSource

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  10. object Engine extends Serializable

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  11. object GeoTrellis

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  12. object GeoTrellisConfig extends Serializable

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  13. object History extends Serializable

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  14. object LayerId extends Serializable

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  15. object Op

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  16. object Operation extends Serializable

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  17. object RasterDefinition extends Serializable

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  18. object RasterLayer

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  19. object RasterLayerInfo extends Serializable

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  20. object RasterLayerType

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  21. object RasterSource

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  22. object StepError extends Serializable

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  23. object TileNeighbors

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  24. object TileSetRasterLayer

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  25. object TileSetRasterLayerBuilder extends RasterLayerBuilder

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  26. object Tiled extends RasterLayerType with Product with Serializable

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  27. object TreeChars

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  28. object ValueSource

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  29. implicit def dataSourceSeqToSeqSource[T](iterable: Iterable[OpSource[T]]): SeqSource[T]

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

Inherited from AnyRef

Inherited from Any

Ungrouped