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

geotrellis.rest.op.string.ParseRasterExtent.scala Maven / Gradle / Ivy

The newest version!
package geotrellis.rest.op.string

import geotrellis._

object ParseRasterExtent {
  def apply(bbox:Op[String], colsOp:Op[String], rowsOp:Op[String]) = {
    (ParseExtent(bbox), ParseInt(colsOp), ParseInt(rowsOp)).map { (e,c,r) =>
      RasterExtent(e,c,r)
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy