Safe Haskell | None |
---|---|
Language | Haskell2010 |
- data Parameter = Parameter {}
- paramValue :: Lens' Parameter Double
- paramName :: Lens' Parameter String
- data Authority = Authority {}
- authorityName :: Lens' Authority String
- authorityCode :: Lens' Authority String
- data Unit = Unit {}
- unitName :: Lens' Unit String
- unitConversionFactor :: Lens' Unit Double
- unitAuthority :: Lens' Unit (Maybe Authority)
- data Spheroid = Spheroid {}
- spheroidSemiMajor :: Lens' Spheroid Double
- spheroidName :: Lens' Spheroid String
- spheroidInverseFlattening :: Lens' Spheroid Double
- spheroidAuthority :: Lens' Spheroid (Maybe Authority)
- data ToWGS84 = ToWGS84 {}
- towgs84PPM :: Lens' ToWGS84 Double
- towgs84E :: Lens' ToWGS84 (V3 Double)
- towgs84D :: Lens' ToWGS84 (V3 Double)
- data Datum = Datum {}
- datumToWGS84 :: Lens' Datum (Maybe ToWGS84)
- datumSpheroid :: Lens' Datum Spheroid
- datumName :: Lens' Datum String
- datumAuthority :: Lens' Datum (Maybe Authority)
- data PrimeMeridian = PrimeMeridian {}
- primemName :: Lens' PrimeMeridian String
- primemLongitude :: Lens' PrimeMeridian Double
- primemAuthority :: Lens' PrimeMeridian (Maybe Authority)
- data AxisDirection
- data Axis = Axis {}
- axisName :: Lens' Axis String
- axisDirection :: Lens' Axis AxisDirection
- data GeographicCS = GeogCS {}
- geogcsTwinAxes :: Lens' GeographicCS (Maybe (Axis, Axis))
- geogcsPrimeMeridian :: Lens' GeographicCS PrimeMeridian
- geogcsName :: Lens' GeographicCS String
- geogcsDatum :: Lens' GeographicCS Datum
- geogcsAuthority :: Lens' GeographicCS (Maybe Authority)
- geogcsAngularUnit :: Lens' GeographicCS Unit
- data Projection = Proj {}
- projName :: Lens' Projection String
- projAuthority :: Lens' Projection (Maybe Authority)
- data ProjectedCS = ProjCS {}
- projcsTwinAxes :: Lens' ProjectedCS (Maybe (Axis, Axis))
- projcsProjection :: Lens' ProjectedCS Projection
- projcsParameters :: Lens' ProjectedCS [Parameter]
- projcsName :: Lens' ProjectedCS String
- projcsLinearUnit :: Lens' ProjectedCS Unit
- projcsGeographicCS :: Lens' ProjectedCS GeographicCS
- projcsAuthority :: Lens' ProjectedCS (Maybe Authority)
Documentation
data PrimeMeridian Source #
data AxisDirection Source #
data GeographicCS Source #
geogcsTwinAxes :: Lens' GeographicCS (Maybe (Axis, Axis)) Source #
data Projection Source #
data ProjectedCS Source #
projcsTwinAxes :: Lens' ProjectedCS (Maybe (Axis, Axis)) Source #