axle.algebra.GeoCoordinates.scala Maven / Gradle / Ivy
The newest version!
package axle.algebra
import spire.algebra.Field
import spire.algebra.Order
import axle.quanta.UnittedQuantity
import axle.quanta.Angle
case class GeoCoordinates[N: Field: Order](latitude: UnittedQuantity[Angle, N], longitude: UnittedQuantity[Angle, N]) {
def φ: UnittedQuantity[Angle, N] = latitude
def λ: UnittedQuantity[Angle, N] = longitude
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy