geodetics: Terrestrial coordinate systems and associated calculations.

[ bsd3, geography, library ] [ Propose Tags ]

Precise geographical coordinates (latitude & longitude), with conversion between different reference frames and projections.

Certain distinguished reference frames and grids are given distinct types so that coordinates expressed within them cannot be confused with from coordinates in other frames.


[Skip to Readme]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

Versions [RSS] 0.0.1, 0.0.2, 0.0.3, 0.0.4, 0.0.5, 0.0.6, 0.1.0, 0.1.2
Dependencies array (>=0.4), base (>=4.6 && <4.7), dimensional (>=0.13 && <0.14) [details]
License BSD-3-Clause
Copyright Paul Johnson 2014.
Author Paul Johnson <paul@cogito.org.uk>
Maintainer Paul Johnson <paul@cogito.org.uk>
Category Geography
Home page https://github.com/PaulJohnson/geodetics
Source repo head: git clone https://github.com/PaulJohnson/geodetics
Uploaded by PaulJohnson at 2014-08-01T16:34:23Z
Distributions LTSHaskell:0.1.2, NixOS:0.1.2, Stackage:0.1.2
Reverse Dependencies 2 direct, 0 indirect [details]
Downloads 5852 total (25 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Successful builds reported [all 1 reports]

Readme for geodetics-0.0.2

[back to package description]

geodetics

Haskell library of data types and calculations for positions on planet Earth

This library provides "geodetic" positions. That is, latitude, longitude and altitude on a specified Terrestrial Reference Frame (TRF). The basic TRF is the WGS84, which is the one used by GPS and Google Earth. Others can be added by describing the underlying ellipsoid and the difference in angle and centre with WGS84, and a position in one TRF can be transformed into another. Given two points in the same TRF you can find the shortest distance between them and the bearing from one to the other.

Once you have a geodetic position defined you can project it onto a flat plane, or Grid. At present Transverse Mercator and Oblique Stereographic grids are provided. More can be added by defining new instances of the Grid typeclass: see "AddingProjections.txt" for detais.

The Paths module defines a path as a parametric function of distance that returns a position and a bearing. Given two paths you can find their intersection using a fast iterative algorithm.

Release Notes

Verison 0.0.2: Tided up cabal file and removed spurious dependency on Parsec.