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

scalaz.geo.Latitude.scala Maven / Gradle / Ivy

The newest version!
package scalaz
package geo

sealed trait Latitude {
  val value: Double

  import Geo.coord
  
  def |:|(lon: Longitude) = coord(this, lon)
}

trait Latitudes {
  def latitude(d: Double) = new Latitude {
    val value = (d + 90) % 180 - 90
  }
}

object Latitude {
  import Scalaz._

  implicit def LatitudeShow: Show[Latitude] = shows(_.value.shows + "°")

  implicit def LatitudeEqual: Equal[Latitude] = equalBy(_.value)

  implicit def LatitudeOrder: Order[Latitude] = orderBy(_.value)
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy