{-# LANGUAGE DeriveAnyClass #-}
{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE NoImplicitPrelude #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE TemplateHaskell #-}
module Data.Geospatial.Internal.GeoFeature (
GeoFeature(..)
, bbox
, geometry
, properties
, featureId
, reWrapGeometry
) where
import Data.Geospatial.Internal.BasicTypes
import Data.Geospatial.Internal.Geometry
import Data.Geospatial.Internal.Geometry.Aeson
import Control.Applicative ((<$>), (<*>))
import Control.DeepSeq
import Control.Lens (makeLenses)
import Control.Monad (mzero)
import Data.Aeson (FromJSON (..),
ToJSON (..),
Value (..), object,
(.:), (.:?), (.=))
import Data.List ((++))
import Data.Maybe (Maybe)
import Data.Text (Text)
import GHC.Generics (Generic)
import Prelude (Eq (..), Show, ($))
data GeoFeature a = GeoFeature {
GeoFeature a -> Maybe BoundingBoxWithoutCRS
_bbox :: Maybe BoundingBoxWithoutCRS,
GeoFeature a -> GeospatialGeometry
_geometry :: GeospatialGeometry,
GeoFeature a -> a
_properties :: a,
GeoFeature a -> Maybe FeatureID
_featureId :: Maybe FeatureID } deriving (Int -> GeoFeature a -> ShowS
[GeoFeature a] -> ShowS
GeoFeature a -> String
(Int -> GeoFeature a -> ShowS)
-> (GeoFeature a -> String)
-> ([GeoFeature a] -> ShowS)
-> Show (GeoFeature a)
forall a. Show a => Int -> GeoFeature a -> ShowS
forall a. Show a => [GeoFeature a] -> ShowS
forall a. Show a => GeoFeature a -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [GeoFeature a] -> ShowS
$cshowList :: forall a. Show a => [GeoFeature a] -> ShowS
show :: GeoFeature a -> String
$cshow :: forall a. Show a => GeoFeature a -> String
showsPrec :: Int -> GeoFeature a -> ShowS
$cshowsPrec :: forall a. Show a => Int -> GeoFeature a -> ShowS
Show, GeoFeature a -> GeoFeature a -> Bool
(GeoFeature a -> GeoFeature a -> Bool)
-> (GeoFeature a -> GeoFeature a -> Bool) -> Eq (GeoFeature a)
forall a. Eq a => GeoFeature a -> GeoFeature a -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: GeoFeature a -> GeoFeature a -> Bool
$c/= :: forall a. Eq a => GeoFeature a -> GeoFeature a -> Bool
== :: GeoFeature a -> GeoFeature a -> Bool
$c== :: forall a. Eq a => GeoFeature a -> GeoFeature a -> Bool
Eq, (forall x. GeoFeature a -> Rep (GeoFeature a) x)
-> (forall x. Rep (GeoFeature a) x -> GeoFeature a)
-> Generic (GeoFeature a)
forall x. Rep (GeoFeature a) x -> GeoFeature a
forall x. GeoFeature a -> Rep (GeoFeature a) x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
forall a x. Rep (GeoFeature a) x -> GeoFeature a
forall a x. GeoFeature a -> Rep (GeoFeature a) x
$cto :: forall a x. Rep (GeoFeature a) x -> GeoFeature a
$cfrom :: forall a x. GeoFeature a -> Rep (GeoFeature a) x
Generic, GeoFeature a -> ()
(GeoFeature a -> ()) -> NFData (GeoFeature a)
forall a. NFData a => GeoFeature a -> ()
forall a. (a -> ()) -> NFData a
rnf :: GeoFeature a -> ()
$crnf :: forall a. NFData a => GeoFeature a -> ()
NFData)
reWrapGeometry :: GeoFeature a -> GeospatialGeometry -> GeoFeature a
reWrapGeometry :: GeoFeature a -> GeospatialGeometry -> GeoFeature a
reWrapGeometry (GeoFeature Maybe BoundingBoxWithoutCRS
bbox GeospatialGeometry
_ a
props Maybe FeatureID
fId) GeospatialGeometry
geom = Maybe BoundingBoxWithoutCRS
-> GeospatialGeometry -> a -> Maybe FeatureID -> GeoFeature a
forall a.
Maybe BoundingBoxWithoutCRS
-> GeospatialGeometry -> a -> Maybe FeatureID -> GeoFeature a
GeoFeature Maybe BoundingBoxWithoutCRS
bbox GeospatialGeometry
geom a
props Maybe FeatureID
fId
makeLenses ''GeoFeature
instance (FromJSON a) => FromJSON (GeoFeature a) where
parseJSON :: Value -> Parser (GeoFeature a)
parseJSON (Object Object
obj) = do
Text
objType <- Object
obj Object -> Text -> Parser Text
forall a. FromJSON a => Object -> Text -> Parser a
.: (Text
"type" :: Text)
if Text
objType Text -> Text -> Bool
forall a. Eq a => a -> a -> Bool
/= (Text
"Feature" :: Text)
then
Parser (GeoFeature a)
forall (m :: * -> *) a. MonadPlus m => m a
mzero
else
Maybe BoundingBoxWithoutCRS
-> GeospatialGeometry -> a -> Maybe FeatureID -> GeoFeature a
forall a.
Maybe BoundingBoxWithoutCRS
-> GeospatialGeometry -> a -> Maybe FeatureID -> GeoFeature a
GeoFeature
(Maybe BoundingBoxWithoutCRS
-> GeospatialGeometry -> a -> Maybe FeatureID -> GeoFeature a)
-> Parser (Maybe BoundingBoxWithoutCRS)
-> Parser
(GeospatialGeometry -> a -> Maybe FeatureID -> GeoFeature a)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
<$> Object
obj Object -> Text -> Parser (Maybe BoundingBoxWithoutCRS)
forall a. FromJSON a => Object -> Text -> Parser (Maybe a)
.:? (Text
"bbox" :: Text)
Parser (GeospatialGeometry -> a -> Maybe FeatureID -> GeoFeature a)
-> Parser GeospatialGeometry
-> Parser (a -> Maybe FeatureID -> GeoFeature a)
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
<*> Object
obj Object -> Text -> Parser GeospatialGeometry
forall a. FromJSON a => Object -> Text -> Parser a
.: (Text
"geometry" :: Text)
Parser (a -> Maybe FeatureID -> GeoFeature a)
-> Parser a -> Parser (Maybe FeatureID -> GeoFeature a)
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
<*> Object
obj Object -> Text -> Parser a
forall a. FromJSON a => Object -> Text -> Parser a
.: (Text
"properties" :: Text)
Parser (Maybe FeatureID -> GeoFeature a)
-> Parser (Maybe FeatureID) -> Parser (GeoFeature a)
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
<*> Object
obj Object -> Text -> Parser (Maybe FeatureID)
forall a. FromJSON a => Object -> Text -> Parser (Maybe a)
.:? (Text
"id" :: Text)
parseJSON Value
_ = Parser (GeoFeature a)
forall (m :: * -> *) a. MonadPlus m => m a
mzero
instance (ToJSON a) => ToJSON (GeoFeature a) where
toJSON :: GeoFeature a -> Value
toJSON (GeoFeature Maybe BoundingBoxWithoutCRS
bbox' GeospatialGeometry
geom a
props Maybe FeatureID
featureId') = [Pair] -> Value
object ([Pair] -> Value) -> [Pair] -> Value
forall a b. (a -> b) -> a -> b
$ [Pair]
baseAttributes [Pair] -> [Pair] -> [Pair]
forall a. [a] -> [a] -> [a]
++ Text -> Maybe BoundingBoxWithoutCRS -> [Pair]
forall a. ToJSON a => Text -> Maybe a -> [Pair]
optAttributes Text
"bbox" Maybe BoundingBoxWithoutCRS
bbox' [Pair] -> [Pair] -> [Pair]
forall a. [a] -> [a] -> [a]
++ Text -> Maybe FeatureID -> [Pair]
forall a. ToJSON a => Text -> Maybe a -> [Pair]
optAttributes Text
"id" Maybe FeatureID
featureId'
where
baseAttributes :: [Pair]
baseAttributes = [Text
"type" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
.= (Text
"Feature" :: Text), Text
"properties" Text -> a -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
.= a
props, Text
"geometry" Text -> GeospatialGeometry -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
.= GeospatialGeometry
geom]