geojson-1.0.0: src/Data/Geospatial/Geometry/GeoPoint.hs
{-# LANGUAGE TemplateHaskell #-}
-------------------------------------------------------------------
-- |
-- Module : Data.Geospatial.Geometry.GeoPoint
-- Copyright : (C) 2014 Dom De Re
-- License : BSD-style (see the file etc/LICENSE.md)
-- Maintainer : Dom De Re
--
-------------------------------------------------------------------
module Data.Geospatial.Geometry.GeoPoint (
-- * Type
GeoPoint(..)
-- * Lenses
, unGeoPoint
) where
import Data.Geospatial.BasicTypes
import Data.Geospatial.Geometry.Aeson
import Control.Lens ( makeLenses )
import Control.Monad ( mzero )
import Data.Aeson ( FromJSON(..), ToJSON(..), Value(..), Object )
newtype GeoPoint = GeoPoint { _unGeoPoint :: GeoPositionWithoutCRS } deriving (Show, Eq)
makeLenses ''GeoPoint
-- instances
instance ToJSON GeoPoint where
-- toJSON :: a -> Value
toJSON = makeGeometryGeoAeson "Point" . _unGeoPoint
instance FromJSON GeoPoint where
-- parseJSON :: Value -> Parser a
parseJSON (Object o) = readGeometryGeoAeson "Point" GeoPoint o
parseJSON _ = mzero