coordinate 0.1.0 → 0.1.1
raw patch · 6 files changed
+21/−6 lines, 6 files
Files
- changelog.md +4/−0
- coordinate.cabal +2/−2
- src/Data/Geodetic/HasDoubles.hs +3/−1
- src/Data/Geodetic/LL.hs +4/−1
- src/Data/Geodetic/LLH.hs +4/−1
- src/Data/Geodetic/XY.hs +4/−1
changelog.md view
@@ -1,3 +1,7 @@+0.1.1++* Explicit export lists.+ 0.1.0 * A rewrite using `ECEF`, `XY, `LLH`, `LL` data types.
coordinate.cabal view
@@ -1,5 +1,5 @@ name: coordinate-version: 0.1.0+version: 0.1.1 license: BSD3 license-file: LICENCE author: Tony Morris <ʇǝu˙sıɹɹoɯʇ@ןןǝʞsɐɥ>@@ -37,7 +37,7 @@ -Wall default-extensions:- NoImplicitPrelude+ NoImplicitPrelude hs-source-dirs: src
src/Data/Geodetic/HasDoubles.hs view
@@ -1,7 +1,9 @@ {-# LANGUAGE NoImplicitPrelude #-} {-# LANGUAGE TemplateHaskell #-} -module Data.Geodetic.HasDoubles where+module Data.Geodetic.HasDoubles(+ HasDoubles(..)+) where import Control.Category(id) import Control.Lens(Traversal')
src/Data/Geodetic/LL.hs view
@@ -5,7 +5,10 @@ {-# LANGUAGE TypeFamilies #-} {-# LANGUAGE FunctionalDependencies #-} -module Data.Geodetic.LL where+module Data.Geodetic.LL(+ LL(..)+, HasLL(..)+) where import Control.Applicative(Applicative((<*>))) import Control.Lens(makeClassy)
src/Data/Geodetic/LLH.hs view
@@ -5,7 +5,10 @@ {-# LANGUAGE TypeFamilies #-} {-# LANGUAGE FunctionalDependencies #-} -module Data.Geodetic.LLH where+module Data.Geodetic.LLH(+ LLH(..)+, HasLLH(..)+) where import Control.Applicative(Applicative((<*>))) import Control.Lens(makeClassy, lens)
src/Data/Geodetic/XY.hs view
@@ -1,7 +1,10 @@ {-# LANGUAGE NoImplicitPrelude #-} {-# LANGUAGE TemplateHaskell #-} -module Data.Geodetic.XY where+module Data.Geodetic.XY(+ XY(..)+, HasXY(..)+) where import Control.Applicative(Applicative((<*>))) import Control.Lens(makeClassy)