
geotrellis.spark.etl.s3.S3Output.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of geotrellis-spark-etl_2.11 Show documentation
Show all versions of geotrellis-spark-etl_2.11 Show documentation
GeoTrellis is an open source geographic data processing engine for high performance applications.
The newest version!
package geotrellis.spark.etl.s3
import geotrellis.spark.etl.OutputPlugin
import geotrellis.spark.io.s3.S3AttributeStore
trait S3Output[K, V, M] extends OutputPlugin[K, V, M] {
val name = "s3"
val requiredKeys = Array("bucket", "key")
def attributes(props: Map[String, String]) = S3AttributeStore(props("bucket"), props("key"))
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy