geojson 0.0.1 → 0.0.2
raw patch · 3 files changed
+7/−3 lines, 3 filessetup-changed
Files
- Setup.hs +0/−1
- geojson.cabal +2/−2
- src/Text/GeoJSON.hs +5/−0
Setup.hs view
@@ -47,7 +47,6 @@ PackageName n -> n ++ "-" ++ showVersion (packageVersion p) isCabalDevPresent :: IO Bool---isCabalDevPresent = (not . null) <$> matchFileGlob "cabal-dev/" isCabalDevPresent = do contents <- getDirectoryContents currentDir return $ "cabal-dev" `elem` contents
geojson.cabal view
@@ -1,5 +1,5 @@ name: geojson-version: 0.0.1+version: 0.0.2 license: MIT license-file: etc/LICENCE author: Dom De Re@@ -32,7 +32,7 @@ source-repository this type: git location: https://github.com/domdere/hs-geojson.git- tag: 0.0.1+ tag: 0.0.2 flag small_base description: Choose the new, split-up base package.
src/Text/GeoJSON.hs view
@@ -7,6 +7,11 @@ import Data.Geospatial +-- | This module only exports the JSON Instances for the types from Data.Geospatial.+-- .+-- Hence you will have to refer to the `Data.Geospatial` documentation to find the documentation+-- related to the Instances contained in this module.+ -- $setup -- Test Bounding Box Data -- >>> let lshapedPolyVertices = [[120.0, -15.0], [127.0, -15.0], [127.0, -25.0], [124.0, -25.0], [124.0, -18.0], [120.0, -18.0]] :: [GeoPositionWithoutCRS]