packages feed

Geodetic 0.3 → 0.4

raw patch · 1 files changed

+3/−6 lines, 1 filesdep ~basePVP ok

version bump matches the API change (PVP)

Dependency ranges changed: base

API changes (from Hackage documentation)

- Data.Geo.Accessor.Azi: azi :: (Azi a) => a -> Azimuth
+ Data.Geo.Accessor.Azi: azi :: Azi a => a -> Azimuth
- Data.Geo.Accessor.Coordinate: coordinate :: (Coordinate a) => a -> Coord
+ Data.Geo.Accessor.Coordinate: coordinate :: Coordinate a => a -> Coord
- Data.Geo.Accessor.Curve: curve :: (Curve a) => a -> GeodeticCurve
+ Data.Geo.Accessor.Curve: curve :: Curve a => a -> GeodeticCurve
- Data.Geo.Accessor.Ele: ele :: (Ele a) => a -> Elevation
+ Data.Geo.Accessor.Ele: ele :: Ele a => a -> Elevation
- Data.Geo.Accessor.EllipsoidalDistance: ellipsoidalDistance :: (EllipsoidalDistance a) => a -> Double
+ Data.Geo.Accessor.EllipsoidalDistance: ellipsoidalDistance :: EllipsoidalDistance a => a -> Double
- Data.Geo.Accessor.Lat: lat :: (Lat a) => a -> Latitude
+ Data.Geo.Accessor.Lat: lat :: Lat a => a -> Latitude
- Data.Geo.Accessor.Lon: lon :: (Lon a) => a -> Longitude
+ Data.Geo.Accessor.Lon: lon :: Lon a => a -> Longitude
- Data.Geo.Accessor.ReverseAzi: reverseAzi :: (ReverseAzi a) => a -> Azimuth
+ Data.Geo.Accessor.ReverseAzi: reverseAzi :: ReverseAzi a => a -> Azimuth
- Data.Geo.Accessor.Value: value :: (Value a b) => a -> b
+ Data.Geo.Accessor.Value: value :: Value a b => a -> b
- Data.Geo.DMS: fromDMS :: (DMSable a) => DMS -> a
+ Data.Geo.DMS: fromDMS :: DMSable a => DMS -> a
- Data.Geo.DMS: showDMS :: (DMSable a) => a -> String
+ Data.Geo.DMS: showDMS :: DMSable a => a -> String
- Data.Geo.DMS: showNegPos :: (DMSable a) => a -> String
+ Data.Geo.DMS: showNegPos :: DMSable a => a -> String
- Data.Geo.DMS: toDMS :: (DMSable a) => a -> DMS
+ Data.Geo.DMS: toDMS :: DMSable a => a -> DMS
- Data.Geo.Radians: fromRadians :: (Radians a) => Double -> a
+ Data.Geo.Radians: fromRadians :: Radians a => Double -> a
- Data.Geo.Radians: toRadians :: (Radians a) => a -> Double
+ Data.Geo.Radians: toRadians :: Radians a => a -> Double
- Data.Geo.Vincenty: direct :: (VincentyDirect a) => a -> Coord -> Bearing -> Double -> (Coord, Bearing)
+ Data.Geo.Vincenty: direct :: VincentyDirect a => a -> Coord -> Bearing -> Double -> (Coord, Bearing)
- Data.Geo.Vincenty: inverse :: (VincentyInverse a) => a -> Coord -> Coord -> GeodeticCurve
+ Data.Geo.Vincenty: inverse :: VincentyInverse a => a -> Coord -> Coord -> GeodeticCurve

Files

Geodetic.cabal view
@@ -1,9 +1,9 @@ Name:                Geodetic-Version:             0.3+Version:             0.4 License:             BSD3 License-File:        LICENSE Synopsis:            Geodetic calculations-Description:         Geodetic calculations including Vincenty and Great Circle+Description:         Geodetic calculations including Vincenty and Great Circle using a Latitude and Longitude pair Homepage:            http://code.google.com/p/geodetic/ Category:            Utils Author:              Tony Morris@@ -16,10 +16,7 @@   Description:     Choose the new, split-up base package.  Library-  if flag(small_base)-    Build-Depends: base < 4 && >= 3-  else-    Build-Depends: base < 3+  Build-Depends:     base < 5 && >= 3    GHC-Options:    -Wall   Exposed-Modules: Data.Geo