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

geotrellis.data.FileExtensionRegexes.scala Maven / Gradle / Ivy

The newest version!
package geotrellis.data

import scala.util.matching.Regex


/**
  * Regular expressions to identify data format file extensions.
  */
object FileExtensionRegexes {
  val ArgPattern  =  new Regex(""".*\.arg$""")
  val GeoTiffPattern =  new Regex(""".*\.tif$""")
  val AsciiPattern  =  new Regex(""".*\.(asc|grd)$""")
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy