-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Removed dependence on
dimensional
library.
Also various clean-ups and updates to remove warnings.
- Loading branch information
1 parent
c79a477
commit 0278cd3
Showing
12 changed files
with
329 additions
and
346 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
dist/ | ||
dist-newstyle/ | ||
.stack-work/ | ||
stack.yaml.lock |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
cabal-version: 3.0 | ||
name: geodetics | ||
version: 0.1.2 | ||
cabal-version: >= 1.10 | ||
version: 1.0.0 | ||
build-type: Simple | ||
author: Paul Johnson <[email protected]> | ||
data-files: | ||
|
@@ -9,20 +9,20 @@ data-files: | |
README.md, | ||
changelog.md, | ||
ToDo.txt | ||
license: BSD3 | ||
copyright: Paul Johnson 2018. | ||
license: BSD-3-Clause | ||
copyright: Paul Johnson 2018,2024 | ||
synopsis: Terrestrial coordinate systems and geodetic calculations. | ||
description: 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. | ||
license-file: LICENSE | ||
maintainer: Paul Johnson <[email protected]> | ||
homepage: https://github.com/PaulJohnson/geodetics | ||
category: Geography | ||
tested-with: GHC==8.6.3 | ||
tested-with: GHC==9.10.1 | ||
|
||
source-repository head | ||
type: git | ||
|
@@ -31,10 +31,9 @@ source-repository head | |
library | ||
hs-source-dirs: src | ||
build-depends: | ||
base >= 4.6 && < 5, | ||
dimensional >= 1.3, | ||
array >= 0.4, | ||
semigroups >= 0.9 | ||
base >= 4.17 && < 5, | ||
array, | ||
Stream | ||
ghc-options: -Wall | ||
exposed-modules: | ||
Geodetics.Altitude, | ||
|
@@ -55,12 +54,11 @@ test-suite GeodeticTest | |
build-depends: geodetics, | ||
base >= 4.6 && < 5, | ||
HUnit >= 1.2, | ||
dimensional >= 1.3, | ||
QuickCheck >= 2.4, | ||
test-framework >= 0.4.1, | ||
test-framework-quickcheck2, | ||
test-framework-hunit, | ||
array >= 0.4, | ||
array, | ||
checkers | ||
hs-source-dirs: | ||
test | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.