Safe Haskell | None |
---|---|
Language | Haskell2010 |
The geometric types and values exposed by naqsha.
- data Geo = Geo !Latitude !Longitude
- northPole :: Geo
- southPole :: Geo
- data Latitude
- lat :: Angle -> Latitude
- north :: Angle -> Latitude
- south :: Angle -> Latitude
- equator :: Latitude
- tropicOfCancer :: Latitude
- tropicOfCapricon :: Latitude
- data Longitude
- lon :: Angle -> Longitude
- east :: Angle -> Longitude
- west :: Angle -> Longitude
- greenwich :: Longitude
- data Angle
- degree :: Rational -> Angle
- minute :: Rational -> Angle
- second :: Rational -> Angle
- radian :: Double -> Angle
- toDegree :: Fractional r => Angle -> r
- toRadian :: Angle -> Double
- class Angular a where
Basics
A point on the globe is specified by giving its geo coordinates
represented by the type Geo
. It is essentially a pair of the
Latitude
and Longitude
of the point.
Examples
kanpurLatitude :: Latitude kanpurLatitude = lat $ degree 26.4477777 kanpurLongitude :: Longitude kanpurLongitude = lon $ degree 80.3461111 kanpurGeo :: Geo kanpurGeo = Geo kanpurLatitude kanpurLongitude
You can also specify the latitude and longitude in units of degree, minute and seconds.
kanpurLatitude = lat $ degree 26 <> minute 26 <> second 52 kanpurLongitude = lon $ degree 80 <> minute 20 <> second 46
The show and read instance of the Latitude
and Longitude
types
uses degrees for displaying and reading respectively. Show and Read
instances can express these quantities up to Nano degree precision.
Convention on sign.
For latitudes, positive means north of the equator and negative
means south. In the case of longitudes, positive means east of the
longitude zero and negative means west. However, if you find these
conventions confusing you can use the combinators north
, south
,
east
, and west
when constructing latitudes or longitudes.
The coordinates of a point on the earth's surface.
Latitudes
The latitude of a point. Positive denotes North of Equator where as negative South.
north :: Angle -> Latitude Source #
Convert an angle to a northern latitude
tropicOfCancer = north $ degree 23.5
south :: Angle -> Latitude Source #
Convert an angle to a southern latitude.
tropicOfCapricon = south $ degree 23.5
tropicOfCancer :: Latitude Source #
The latitude corresponding to the Tropic of Cancer.
tropicOfCapricon :: Latitude Source #
The latitude corresponding to the Tropic of Capricon
Longitudes.
The longitude of a point. Positive denotes East of the Greenwich meridian where as negative denotes West.
east :: Angle -> Longitude Source #
Convert angle to an eastern longitude.
kanpurLongitude = east $ degree 80.3461
west :: Angle -> Longitude Source #
Convert angle to a western longitude
newyorkLongitude = west $ degree 74.0059
Angles and angular quantities.
An abstract angle. Internally, angles are represented as a 64-bit integer with each unit contribute 1/2^64 fraction of a complete circle. This means that angles are accurate up to a resolution of 2 π / 2^64 radians. Angles form a group under the angular addition and the fact that these are represented as integers means one can expect high speed accurate angle arithmetic.
When expressing angles one can use a more convenient notation:
myAngle = degree 21.71167 yourAngle = degree 21 <> minute 42 <> second 42
Bounded Angle Source # | |
Enum Angle Source # | |
Eq Angle Source # | |
Ord Angle Source # | |
Read Angle Source # | |
Show Angle Source # | |
Monoid Angle Source # | |
Bits Angle Source # | |
Group Angle Source # | |
Unbox Angle Source # | |
Angular Angle Source # | |
Vector Vector Angle Source # | |
MVector MVector Angle Source # | |
data Vector Angle Source # | |
data MVector s Angle Source # | |
toDegree :: Fractional r => Angle -> r Source #
Measure angle in degrees. This conversion may lead to loss of precision.
toRadian :: Angle -> Double Source #
Measure angle in radians. This conversion may lead to loss of precision.
Geometric hashing.
Geometric hashing is a technique of converting geometric coordinates into 1-dimension strings. Often these hashes ensures that string with large common prefix are close by (although not the converse). Hence, these hashes can be used to stored geo-cordinates in database and build into it a sense of location awareness. We support the following geometric hashing:
- Naqsha.Geometry.Coordinate.GeoHash:
- The geohash standard (https://en.wikipedia.org/wiki/Geohash).
None of these modules are imported by default the user may import the one that is most desirable.
Distance calculation.
Calculating quantities like distance, bearing etc depends on the model of the globe that we choose. Even in a given model we might have different algorithms to compute the distance depending on speed-accuracy trade-offs. Choosing the correct model and algorithms is application dependent and hence we do not expose any default ones. The following modules can be imported depending on the need
- Naqsha.Geometry.Spherical:
- Assume a spherical model of the globe. Distance is calculated using the haversine formula.
Internal details
The basic types like Latitude
or Longitude
are exposed as
opaque types from this module. For type safety, we encourage the
users to use this module mostly when dealing with those times. For
the rare case when some non-trivial operations need to be defined,
we expose the internal module Naqsha.Geometry.Internal. However,
use this interface with caution.