hgis-1.0.0.0: Library and for GIS with Haskell

Safe HaskellNone
LanguageHaskell2010

GIS.Math.Projections

Contents

Description

Module containing several useful projections for generating maps.

Synopsis

Reference points

washingtonDC :: Point Source #

For use as a reference point

mecca :: Point Source #

For use as a reference point

Projections

littow :: Projection Source #

Littow retroazimuthal + conformal projection

craig :: Point -> Projection Source #

Craig retroazimuthal projection

winkel3 :: Projection Source #

Winkel Tripel projection

mercator :: Projection Source #

Mercator projection.

bonne :: Projection Source #

Bonne projection with standard parallel at 45 N and central meridian centered at Washington DC.

albers :: Point -> Projection Source #

Albers projection for a given reference point.

ablers washingtonDC

Helper functions

project :: Projection -> Polygon -> Polygon Source #

Helper to project given a Polygon.

projectMap :: Projection -> Map -> Map Source #

Helper to apply a projection given a Map.