Safe Haskell | None |
---|---|
Language | Haskell2010 |
An implementation of Thaddeus Vincenty's direct and inverse geodetic algorithms. http://www.ngs.noaa.gov/PUBS_LIB/inverse.pdf
- type Convergence = Double
- convergence :: Convergence
- data VincentyDirectResult = VincentyDirectResult Coordinate Bearing
- class AsVincentyDirectResult p f s where
- direct :: (AsCoordinate (->) (Const Coordinate) c, AsBearing (->) (Const Bearing) b, AsEllipsoid (->) (Const Ellipsoid) e) => e -> Convergence -> c -> b -> Double -> VincentyDirectResult
- directD :: (AsCoordinate (->) (Const Coordinate) c, AsBearing (->) (Const Bearing) b) => c -> b -> Double -> VincentyDirectResult
- direct' :: Optional2 Ellipsoid Convergence (Coordinate -> Bearing -> Double -> VincentyDirectResult) x => x
- inverse :: (AsCoordinate (->) (Const Coordinate) start, AsCoordinate (->) (Const Coordinate) end, AsEllipsoid (->) (Const Ellipsoid) e) => e -> Convergence -> start -> end -> Curve
- inverseD :: (AsCoordinate (->) (Const Coordinate) start, AsCoordinate (->) (Const Coordinate) end) => start -> end -> Curve
- inverse' :: Optional2 Ellipsoid Convergence (Coordinate -> Coordinate -> Curve) x => x
- data P = P {
- origSigma' :: Double
- sigma' :: Double
- prevSigma' :: Double
- vmap2 :: (a -> b) -> (a, a) -> (b, b)
- ps :: Double -> P
- transition :: P -> Double -> P
- sinSigma' :: P -> Double
- cosSigma' :: P -> Double
- sigmaM2' :: Double -> P -> Double
- cosSigmaM2' :: Double -> P -> Double
- cos2SigmaM2' :: Double -> P -> Double
- square :: Num a => a -> a
- doWhile :: (a -> a) -> (a -> Bool) -> a -> a
- whileDo :: (a -> a) -> (a -> Bool) -> a -> a
- data InverseResult
- data Q = Q {}
Documentation
>>>
import Control.Monad(Monad(return))
>>>
import Data.Functor(Functor(fmap))
>>>
import Data.Geo.Geodetic.Bearing(modBearing)
>>>
import Data.Geo.Geodetic.Ellipsoid(ans)
>>>
import Data.Geo.Coordinate((<°>))
type Convergence = Double Source
convergence :: Convergence Source
A typically acceptable convergence value.
data VincentyDirectResult Source
Eq VincentyDirectResult | |
Ord VincentyDirectResult | |
Show VincentyDirectResult | |
((~) (* -> * -> *) p (->), Functor f) => AsCoordinate p f VincentyDirectResult | |
((~) (* -> * -> *) p (->), Functor f) => AsBearing p f VincentyDirectResult | |
AsVincentyDirectResult p f VincentyDirectResult |
class AsVincentyDirectResult p f s where Source
Nothing
AsVincentyDirectResult p f VincentyDirectResult | |
(Profunctor p, Functor f) => AsVincentyDirectResult p f (Coordinate, Bearing) |
:: (AsCoordinate (->) (Const Coordinate) c, AsBearing (->) (Const Bearing) b, AsEllipsoid (->) (Const Ellipsoid) e) | |
=> e | reference ellipsoid |
-> Convergence | convergence point to stop calculating |
-> c | begin coordinate |
-> b | bearing |
-> Double | distance |
-> VincentyDirectResult |
Vincenty direct algorithm.
>>>
fmap (\c' -> direct wgs84 convergence c' (modBearing 165.34) 4235) (27.812 <°> 154.295)
Just (VincentyDirectResult (Coordinate (Latitude (DegreesLatitude 27) (Minutes 46) (Seconds 30.0981)) (Longitude (DegreesLongitude 154) (Minutes 18) (Seconds 21.1466))) (Bearing 165.3451))
>>>
fmap (\c' -> direct wgs84 convergence c' (modBearing 165.34) 4235) ((-66.093) <°> 12.84)
Just (VincentyDirectResult (Coordinate (Latitude (DegreesLatitude (-66)) (Minutes 7) (Seconds 47.0667)) (Longitude (DegreesLongitude 12) (Minutes 51) (Seconds 49.4142))) (Bearing 165.3183))
>>>
fmap (\c' -> direct ans convergence c' (modBearing 165.34) 4235) (27.812 <°> 154.295)
Just (VincentyDirectResult (Coordinate (Latitude (DegreesLatitude 27) (Minutes 46) (Seconds 30.0986)) (Longitude (DegreesLongitude 154) (Minutes 18) (Seconds 21.1464))) (Bearing 165.3451))
>>>
fmap (\c' -> direct ans convergence c' (modBearing 165.34) 4235) ((-66.093) <°> 12.84)
Just (VincentyDirectResult (Coordinate (Latitude (DegreesLatitude (-66)) (Minutes 7) (Seconds 47.0662)) (Longitude (DegreesLongitude 12) (Minutes 51) (Seconds 49.4139))) (Bearing 165.3183))
:: (AsCoordinate (->) (Const Coordinate) c, AsBearing (->) (Const Bearing) b) | |
=> c | begin coordinate |
-> b | bearing |
-> Double | distance |
-> VincentyDirectResult |
Vincenty direct algorithm with a default ellipsoid of WGS84 and standard convergence.
>>>
fmap (\c' -> directD c' (modBearing 165.34) 4235) (27.812 <°> 154.295)
Just (VincentyDirectResult (Coordinate (Latitude (DegreesLatitude 27) (Minutes 46) (Seconds 30.0981)) (Longitude (DegreesLongitude 154) (Minutes 18) (Seconds 21.1466))) (Bearing 165.3451))
>>>
fmap (\c' -> directD c' (modBearing 165.34) 4235) ((-66.093) <°> 12.84)
Just (VincentyDirectResult (Coordinate (Latitude (DegreesLatitude (-66)) (Minutes 7) (Seconds 47.0667)) (Longitude (DegreesLongitude 12) (Minutes 51) (Seconds 49.4142))) (Bearing 165.3183))
direct' :: Optional2 Ellipsoid Convergence (Coordinate -> Bearing -> Double -> VincentyDirectResult) x => x Source
Vincenty direct algorithm with an optionally applied default ellipsoid of WGS84 and standard convergence.
>>>
fmap (\c' -> direct' c' (modBearing 165.34) (4235 :: Double) :: VincentyDirectResult) (27.812 <°> 154.295)
Just (VincentyDirectResult (Coordinate (Latitude (DegreesLatitude 27) (Minutes 46) (Seconds 30.0981)) (Longitude (DegreesLongitude 154) (Minutes 18) (Seconds 21.1466))) (Bearing 165.3451))
>>>
fmap (\c' -> direct' c' (modBearing 165.34) (4235 :: Double) :: VincentyDirectResult) ((-66.093) <°> 12.84)
Just (VincentyDirectResult (Coordinate (Latitude (DegreesLatitude (-66)) (Minutes 7) (Seconds 47.0667)) (Longitude (DegreesLongitude 12) (Minutes 51) (Seconds 49.4142))) (Bearing 165.3183))
:: (AsCoordinate (->) (Const Coordinate) start, AsCoordinate (->) (Const Coordinate) end, AsEllipsoid (->) (Const Ellipsoid) e) | |
=> e | reference ellipsoid |
-> Convergence | convergence point to stop calculating |
-> start | start coordinate |
-> end | end coordinate |
-> Curve |
Vincenty inverse algorithm.
>>>
do fr <- 27.812 <°> 154.295; to <- (-66.093) <°> 12.84; return (inverse wgs84 convergence fr to)
Just (GeodeticCurve 14998576.9860 Azimuth 180.0000 Azimuth 0.0000)
>>>
do fr <- 27.812 <°> 154.295; to <- 87.7769 <°> 19.944; return (inverse wgs84 convergence fr to)
Just (GeodeticCurve 7099204.2589 Azimuth 0.0000 Azimuth 180.0000)
>>>
do fr <- 27.812 <°> 154.295; to <- (-66.093) <°> 12.84; return (inverse ans convergence fr to)
Just (GeodeticCurve 14998630.4056 Azimuth 180.0000 Azimuth 0.0000)
>>>
do fr <- 27.812 <°> 154.295; to <- 87.7769 <°> 19.944; return (inverse ans convergence fr to)
Just (GeodeticCurve 7099229.9126 Azimuth 0.0000 Azimuth 180.0000)
:: (AsCoordinate (->) (Const Coordinate) start, AsCoordinate (->) (Const Coordinate) end) | |
=> start | start coordinate |
-> end | end coordinate |
-> Curve |
Vincenty inverse algorithm with a default ellipsoid of WGS84 and standard convergence.
>>>
do fr <- 27.812 <°> 154.295; to <- (-66.093) <°> 12.84; return (inverseD fr to)
Just (GeodeticCurve 14998576.9860 Azimuth 180.0000 Azimuth 0.0000)
>>>
do fr <- 27.812 <°> 154.295; to <- 87.7769 <°> 19.944; return (inverseD fr to)
Just (GeodeticCurve 7099204.2589 Azimuth 0.0000 Azimuth 180.0000)
inverse' :: Optional2 Ellipsoid Convergence (Coordinate -> Coordinate -> Curve) x => x Source
Vincenty inverse algorithm with an optionally applied default ellipsoid of WGS84 and standard convergence.
>>>
do fr <- 27.812 <°> 154.295; to <- (-66.093) <°> 12.84; return (inverse' fr to :: Curve)
Just (GeodeticCurve 14998576.9860 Azimuth 180.0000 Azimuth 0.0000)
>>>
do fr <- 27.812 <°> 154.295; to <- 87.7769 <°> 19.944; return (inverse' fr to :: Curve)
Just (GeodeticCurve 7099204.2589 Azimuth 0.0000 Azimuth 180.0000)
transition :: P -> Double -> P Source
cosSigmaM2' :: Double -> P -> Double Source
cos2SigmaM2' :: Double -> P -> Double Source