All Downloads are FREE. Search and download functionalities are using the official Maven repository.

geotrellis.spark.etl.s3.S3Output.scala Maven / Gradle / Ivy

Go to download

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