geotrellis.spark.io.s3.S3LayerManager.scala Maven / Gradle / Ivy
package geotrellis.spark.io.s3
import geotrellis.spark._
import geotrellis.spark.io._
import geotrellis.spark.io.AttributeStore.Fields
import geotrellis.spark.io.avro._
import geotrellis.spark.io.index._
import geotrellis.spark.io.json._
import geotrellis.util._
import org.apache.spark.SparkContext
import org.apache.spark.rdd._
import spray.json.JsonFormat
import scala.reflect.ClassTag
class S3LayerManager(attributeStore: S3AttributeStore)(implicit sc: SparkContext)
extends LayerManager[LayerId] {
def delete(id: LayerId): Unit =
S3LayerDeleter(attributeStore).delete(id)
def copy[
K: AvroRecordCodec: Boundable: JsonFormat: ClassTag,
V: AvroRecordCodec: ClassTag,
M: JsonFormat: GetComponent[?, Bounds[K]]
](from: LayerId, to: LayerId): Unit =
S3LayerCopier(attributeStore).copy[K, V, M](from, to)
def move[
K: AvroRecordCodec: Boundable: JsonFormat: ClassTag,
V: AvroRecordCodec: ClassTag,
M: JsonFormat: GetComponent[?, Bounds[K]]
](from: LayerId, to: LayerId): Unit =
S3LayerMover(attributeStore).move[K, V, M](from, to)
def reindex[
K: AvroRecordCodec: Boundable: JsonFormat: ClassTag,
V: AvroRecordCodec: ClassTag,
M: JsonFormat: GetComponent[?, Bounds[K]]
](id: LayerId, keyIndexMethod: KeyIndexMethod[K]): Unit =
S3LayerReindexer(attributeStore).reindex[K, V, M](id, keyIndexMethod)
def reindex[
K: AvroRecordCodec: Boundable: JsonFormat: ClassTag,
V: AvroRecordCodec: ClassTag,
M: JsonFormat: GetComponent[?, Bounds[K]]
](id: LayerId, keyIndex: KeyIndex[K]): Unit =
S3LayerReindexer(attributeStore).reindex[K, V, M](id, keyIndex)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy