-
Notifications
You must be signed in to change notification settings - Fork 3
/
wkt-geom.cabal
120 lines (111 loc) · 5.25 KB
/
wkt-geom.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
name: wkt-geom
version: 0.0.12
synopsis: A parser of WKT, WKB and eWKB.
description: Well Known Text (WKT), Well Known Binary (WKB) and the PostgreSQL extension Extended Well Know Binary (eWKB) are vector geometry representations.
.
The text or binary representations are parsed and turned into their GeoJSON representations. The binary representations use vectors throughout
whereas the text representation still uses a list and then is converted to a vector representation.
homepage: https://github.com/zellige/wkt-geom#readme
bug-reports: https://github.com/zellige/wkt-geom/issues
license: Apache-2.0
license-file: LICENSE
author: Andrew Newman, Dominic Endrei
maintainer: andrewfnewman@gmail.com
copyright: 2017-2020 Wkt-Geom Project
category: Data
build-type: Simple
extra-source-files: README.md
, CHANGELOG.md
cabal-version: >=1.10
flag error-check
manual: True
default: False
description: Compile with error-checking
library
hs-source-dirs: src
exposed-modules: Data.Ewkb
, Data.Hex
, Data.Wkb
, Data.Wkt
, Data.Internal.Ewkb.Geometry
, Data.Internal.Wkb.Endian
, Data.Internal.Wkb.Geometry
, Data.Internal.Wkb.GeometryCollection
, Data.Internal.Wkb.Geospatial
, Data.Internal.Wkb.Line
, Data.Internal.Wkb.Point
, Data.Internal.Wkb.Polygon
, Data.Internal.Wkt.Common
, Data.Internal.Wkt.Box
, Data.Internal.Wkt.Line
, Data.Internal.Wkt.Point
, Data.Internal.Wkt.Polygon
, Data.Internal.Wkt.GeometryCollection
build-depends: base < 5 && >= 4.8
, base16-bytestring >= 0.1.1.6
, binary >= 0.8
, bytestring >= 0.10
, containers >= 0.5.10.1
, geojson < 5 && >= 4.0.1
, scientific >= 0.3.6
, trifecta >= 1.7
, utf8-string >= 1
, vector >= 0.10
ghc-options: -Wall
default-language: Haskell2010
test-suite wkt-geom-test
type: exitcode-stdio-1.0
hs-source-dirs: test
other-modules: Data.Internal.Ewkb.GeometrySpec
, Data.Internal.Ewkb.LineSpec
, Data.Internal.Ewkb.PointSpec
, Data.Internal.Wkb.EndianSpec
, Data.Internal.Wkb.GeometryCollectionSpec
, Data.Internal.Wkb.GeometrySpec
, Data.Internal.Wkb.HexParsingSpec
, Data.Internal.Wkb.LineSpec
, Data.Internal.Wkb.PointSpec
, Data.Internal.Wkb.PolygonSpec
, Data.Internal.Wkt.BoxSpec
, Data.Internal.Wkt.GeometryCollectionSpec
, Data.Internal.Wkt.LineSpec
, Data.Internal.Wkt.PointSpec
, Data.Internal.Wkt.PolygonSpec
, Data.SpecHelper
main-is: Spec.hs
build-depends: base < 5 && >= 4.8
, base16-bytestring >= 0.1.1.6
, binary >= 0.8
, ansi-wl-pprint >= 0.6
, bytestring >= 0.10
, containers >= 0.5.10.1
, geojson >= 4.0.1
, hedgehog < 1.1 && >= 1.0
, hspec < 3 && >= 2.7
, hw-hspec-hedgehog < 0.2 && >= 0.1.0.4
, lens < 5 && >= 4.1
, QuickCheck < 2.15 && >= 2.7
, scientific >= 0.3.6
, trifecta >= 1.7
, vector >= 0.10
, wkt-geom
ghc-options: -Wall
default-language: Haskell2010
test-suite wkt-geom-hlint
hs-source-dirs: hlint
main-is: Main.hs
type: exitcode-stdio-1.0
build-depends: base
, hlint
default-language: Haskell2010
ghc-options: -Wall
-threaded
if flag(error-check)
ghc-options: -Werror
source-repository head
type: git
location: https://github.com/zellige/wkt-geom
source-repository this
type: git
location: https://github.com/zellige/wkt-geom.git
tag: 0.0.11