Class/Object

geotrellis.store

GeoTrellisPath

Related Docs: object GeoTrellisPath | package store

Permalink

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. "/tmp/catalog?layer=name&zoom=5"

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

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

  6. ,
  7. "s3://bucket/catalog?layer=name&zoom=10"

Note

The order of the query parameters does not matter.

Linear Supertypes
Product, Equals, SourcePath, SourceName, Serializable, Serializable, AnyRef, Any
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])

    Permalink

    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

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

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

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. val bandCount: Option[Int]

    Permalink
  6. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  8. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  10. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  11. def layerId: LayerId

    Permalink
  12. val layerName: String

    Permalink
  13. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  14. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  15. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  16. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  17. def toString(): String

    Permalink
    Definition Classes
    SourcePath → AnyRef → Any
  18. def toURI: URI

    Permalink
    Definition Classes
    SourcePath
  19. val value: String

    Permalink

    Path to the layer.

    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.
    Definition Classes
    GeoTrellisPath → SourcePath
  20. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  23. val zoomLevel: Int

    Permalink

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