Packages

case class GeoTrellisPath(value: String, layerName: String, zoomLevel: Int, bandCount: Option[Int]) extends SourcePath with Product with Serializable

Represents a path that points to a GeoTrellis layer saved in a catalog.

value

Path to the layer. This can be either an Avro or COG layer. The given path needs to be in a URI format that include the following query parameters:

  • layer: The name of the layer.
  • zoom: The zoom level to be read.
  • band_count: The number of bands of each Tile in the layer. Optional. If a scheme is not provided, file is assumed. Both relative and absolute file paths are supported. In addition, this path can be prefixed with, gt+ to signify that the target path is to be read in only by GeotrellisRasterSource.
Examples:
  1. "s3://bucket/catalog?layer=name&zoom=10"

  2. ,
  3. "hdfs://data-folder/catalog?layer=name&zoom=12&band_count=5"

  4. ,
  5. "gt+file:///tmp/catalog?layer=name&zoom=5"

  6. ,
  7. "/tmp/catalog?layer=name&zoom=5"

Note

The order of the query parameters does not matter.

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. GeoTrellisPath
  2. Product
  3. Equals
  4. SourcePath
  5. SourceName
  6. Serializable
  7. Serializable
  8. AnyRef
  9. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new GeoTrellisPath(value: String, layerName: String, zoomLevel: Int, bandCount: Option[Int])

    value

    Path to the layer. This can be either an Avro or COG layer. The given path needs to be in a URI format that include the following query parameters:

    • layer: The name of the layer.
    • zoom: The zoom level to be read.
    • band_count: The number of bands of each Tile in the layer. Optional. If a scheme is not provided, file is assumed. Both relative and absolute file paths are supported. In addition, this path can be prefixed with, gt+ to signify that the target path is to be read in only by GeotrellisRasterSource.

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. val bandCount: Option[Int]
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  7. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  8. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  10. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  11. def layerId: LayerId
  12. val layerName: String
  13. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  15. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  16. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  17. def toString(): String
    Definition Classes
    SourcePath → AnyRef → Any
  18. def toURI: URI
    Definition Classes
    SourcePath
  19. val value: String

    The given path to the data.

    The given path to the data. This can be formatted in a number of different ways depending on which RasterSource is to be used. For more information on the different ways of formatting this string, see the docs on the DataPath for that given soure.

    Definition Classes
    GeoTrellisPathSourcePath
  20. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  21. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  22. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  23. val zoomLevel: Int

Inherited from Product

Inherited from Equals

Inherited from SourcePath

Inherited from SourceName

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped