gis-tools-ts - v0.6.0
    Preparing search index...

    Class EquidistantCylindrical

    Equidistant Cylindrical (Plate Carrée)

    Classification: Conformal cylindrical

    Available forms: Forward and inverse

    Defined area: Global, but best used near the equator

    Alias: eqc, plate_carrée, simple_cylindrical

    Domain: 2D

    Input type: Geodetic coordinates

    Output type: Projected coordinates

    +proj=eqc
    

    Because of the distortions introduced by this projection, it has little use in navigation or cadastral mapping and finds its main use in thematic mapping. In particular, the Plate Carrée has become a standard for global raster datasets, such as Celestia and NASA World Wind, because of the particularly simple relationship between the position of an image pixel on the map and its corresponding geographic location on Earth.

    • Plain/Plane Chart: $0°$
    • Simple Cylindrical: $0°$
    • Plate Carrée: $0°$
    • Ronald Miller—minimum overall scale distortion: $37°30'$
    • E. Grafarend and A. Niermann: $42°$
    • Ronald Miller—minimum continental scale distortion: $43°30'$
    • Gall Isographic: $45°$
    • Ronald Miller Equirectangular: $50°30'$
    • E. Grafarend and A. Niermann minimum linear distortion: $61°7'$

    Example using EPSG 32662 (WGS84 Plate Carrée):

    echo 2 47 | proj +proj=eqc +ellps=WGS84
    

    Output: 222638.98 5232016.07

    Example using Plate Carrée projection with true scale at latitude 30° and central meridian 90°W:

    echo -88 30 | proj +proj=eqc +lat_ts=30 +lon_0=90w
    

    Output: 192811.01 3339584.72

    • +lon_0 (Central meridian)
    • +lat_0 (Latitude of origin)
    • +lat_ts (Latitude of true scale)
    • +x_0 (False easting)
    • +y_0 (False northing)
    • +ellps (Ellipsoid name)
    • +R (Radius of the sphere)

    $$x = \lambda \cos(\phi_{ts})$$ $$y = \phi - \phi_0$$

    $$\lambda = x / \cos(\phi_{ts})$$ $$\phi = y + \phi_0$$

    Equidistant Cylindrical

    Hierarchy (View Summary)

    Implements

    Index

    Constructors

    Methods

    Constructors

    Methods

    • EquidistantCylindricalProjection forward equations--mapping lon-lat to x-y

      Parameters

      • p: VectorPoint

        lon-lat WGS84 point

      Returns void

    • EquidistantCylindricalProjection inverse equations--mapping x-y to lon-lat

      Parameters

      • p: VectorPoint

        EquidistantCylindricalProjection point

      Returns void