Packages

t

geotrellis.store

DiscreteLayerAttributeStore

trait DiscreteLayerAttributeStore extends AttributeStore

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DiscreteLayerAttributeStore
  2. AttributeStore
  3. LayerAttributeStore
  4. Serializable
  5. Serializable
  6. AttributeCaching
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def availableAttributes(id: LayerId): Seq[String]
    Definition Classes
    AttributeStore
  2. abstract def delete(layerId: LayerId, attributeName: String): Unit
    Definition Classes
    AttributeStore
  3. abstract def delete(layerId: LayerId): Unit
    Definition Classes
    AttributeStore
  4. abstract def layerExists(layerId: LayerId): Boolean
    Definition Classes
    AttributeStore
  5. abstract def layerIds: Seq[LayerId]
    Definition Classes
    AttributeStore
  6. abstract def read[T](layerId: LayerId, attributeName: String)(implicit arg0: Decoder[T]): T
    Definition Classes
    AttributeStore
  7. abstract def readAll[T](attributeName: String)(implicit arg0: Decoder[T]): Map[LayerId, T]
    Definition Classes
    AttributeStore
  8. abstract def write[T](layerId: LayerId, attributeName: String, value: T)(implicit arg0: Encoder[T]): Unit
    Definition Classes
    AttributeStore

Concrete Value Members

  1. def availableZoomLevels(layerName: String): Seq[Int]

    Return a sequence of available zoom levels for a named layer.

    Return a sequence of available zoom levels for a named layer.

    This function should be re-implemented by AttributeStore subclasses so that catalogs with large numbers of layers can be queried efficiently.

    Definition Classes
    AttributeStore
  2. def cacheLayerType(layerId: LayerId, layerType: LayerType): LayerType
    Definition Classes
    AttributeCaching
  3. def cacheRead[T](layerId: LayerId, attributeName: String)(implicit arg0: Decoder[T]): T
    Definition Classes
    AttributeCaching
  4. def cacheWrite[T](layerId: LayerId, attributeName: String, value: T)(implicit arg0: Encoder[T]): Unit
    Definition Classes
    AttributeCaching
  5. def clearCache(id: LayerId, attribute: String): Unit
    Definition Classes
    AttributeCaching
  6. def clearCache(id: LayerId): Unit
    Definition Classes
    AttributeCaching
  7. def clearCache(): Unit
    Definition Classes
    AttributeCaching
  8. def copy(from: LayerId, to: LayerId, attributes: Seq[String]): Unit
    Definition Classes
    AttributeStore
  9. def copy(from: LayerId, to: LayerId): Unit
    Definition Classes
    AttributeStore
  10. def isCOGLayer(id: LayerId): Boolean
    Definition Classes
    AttributeStore
  11. def layerType(id: LayerId): LayerType
    Definition Classes
    AttributeStore
  12. def layersWithZoomLevels: Map[String, Seq[Int]]

    Return a map with layer names and the list of available zoom levels for each.

    Return a map with layer names and the list of available zoom levels for each.

    This function should be re-implemented by AttributeStore subclasses so that catalogs with large numbers of layers can be queried efficiently.

    Definition Classes
    AttributeStore
  13. def readCOGLayerAttributes[H, M](id: LayerId)(implicit arg0: Decoder[H], arg1: Decoder[M]): COGLayerAttributes[H, M]
  14. def readHeader[H](id: LayerId)(implicit arg0: Decoder[H]): H
  15. def readKeyIndex[K](id: LayerId)(implicit arg0: ClassTag[K]): KeyIndex[K]
  16. def readKeyIndexes[K](id: LayerId)(implicit arg0: ClassTag[K]): Map[ZoomRange, KeyIndex[K]]
  17. def readLayerAttributes[H, M, K](id: LayerId)(implicit arg0: Decoder[H], arg1: Decoder[M], arg2: ClassTag[K]): LayerAttributes[H, M, K]
  18. def readMetadata[M](id: LayerId)(implicit arg0: Decoder[M]): M
  19. def readSchema(id: LayerId): Schema
  20. def writeCOGLayerAttributes[H, M](id: LayerId, header: H, metadata: M)(implicit arg0: Encoder[H], arg1: Encoder[M]): Unit
  21. def writeLayerAttributes[H, M, K](id: LayerId, header: H, metadata: M, keyIndex: KeyIndex[K], schema: Schema)(implicit arg0: Encoder[H], arg1: Encoder[M], arg2: ClassTag[K]): Unit