aboutsummaryrefslogtreecommitdiff
path: root/docs/source/usage
diff options
context:
space:
mode:
authorKristian Evers <kristianevers@gmail.com>2017-11-15 21:52:25 +0100
committerKristian Evers <kristianevers@gmail.com>2017-11-15 21:52:25 +0100
commit082f5aed6ea6a746e73c17e39f8aabb85d840272 (patch)
treeceec40246a6f38181d0a66aa14127436d46c7246 /docs/source/usage
parent1f096c9f9cf1ef4c152c53605bf6f6347209b4b5 (diff)
downloadPROJ-082f5aed6ea6a746e73c17e39f8aabb85d840272.tar.gz
PROJ-082f5aed6ea6a746e73c17e39f8aabb85d840272.zip
Fix a few bad links [skip ci]
Diffstat (limited to 'docs/source/usage')
-rw-r--r--docs/source/usage/projections.rst9
-rw-r--r--docs/source/usage/quickstart.rst2
-rw-r--r--docs/source/usage/resource_files.rst4
3 files changed, 8 insertions, 7 deletions
diff --git a/docs/source/usage/projections.rst b/docs/source/usage/projections.rst
index b0bcce61..8f0b3586 100644
--- a/docs/source/usage/projections.rst
+++ b/docs/source/usage/projections.rst
@@ -5,14 +5,14 @@ Cartographic projection
================================================================================
The foundation of PROJ.4 is the large number of
-:doc:`projections<../projections/index>` available in the library. This section
+:doc:`projections<operations/projections/index>` available in the library. This section
is devoted to the generic parameters that can be used on any projection in the
PROJ.4 library.
Below is a list of PROJ.4 parameters which can be applied to most coordinate
system definitions. This table does not attempt to describe the parameters
particular to particular projection types. These can be found on the pages
-documenting the individual :doc:`projections<../projections/index>`.
+documenting the individual :doc:`projections<operations/projections/index>`.
========== ================================================================
Parameter Description
@@ -79,8 +79,9 @@ Longitude Wrapping
By default PROJ.4 wraps output longitudes in the range -180 to 180. The ``+over``
switch can be used to disable the default wrapping which is done at a low level
in ``pj_inv()``. This is particularly useful with projections like the
-:doc:`equidistant cylindrical<../projections/eqc>` where it would be desirable for
-X values past -20000000 (roughly) to continue past -180 instead of wrapping to +180.
+:doc:`equidistant cylindrical<operations/projections/eqc>`
+where it would be desirable for X values past -20000000 (roughly) to continue
+past -180 instead of wrapping to +180.
The ``+lon_wrap`` option can be used to provide an alternative means of doing
longitude wrapping within ``pj_transform()``. The argument to this option is a
diff --git a/docs/source/usage/quickstart.rst b/docs/source/usage/quickstart.rst
index d162ace9..96bfbba1 100644
--- a/docs/source/usage/quickstart.rst
+++ b/docs/source/usage/quickstart.rst
@@ -20,7 +20,7 @@ A proj-strings holds the parameters of a given coordinate transformation, e.g.
I.e. a proj-string consists of a projection specifier, ``+proj``, a number of
parameters that applies to the projection and, if needed, a description of a
datum shift. In the example above geodetic coordinates are transformed to
-projected space with the :doc:`Mercator projection<../projections/merc>` with
+projected space with the :doc:`Mercator projection<operations/projections/merc>` with
the latitude of true scale at 56.5 degrees north on the GRS80 ellipsoid. Every
projection in PROJ.4 is identified by a shorthand such as ``merc`` in the above
example.
diff --git a/docs/source/usage/resource_files.rst b/docs/source/usage/resource_files.rst
index e99763f1..9a202879 100644
--- a/docs/source/usage/resource_files.rst
+++ b/docs/source/usage/resource_files.rst
@@ -115,7 +115,7 @@ used, then all parameters in that section applies for all proj-strings. Otherwis
the identifier is connected to a specific projection. With the defaults file
supplied with PROJ.4 the default ellipsoid is set to WGS84 (for all proj-strings).
Apart from that only the Albers Equal Area,
-:doc:`Lambert Conic Conformal<../projections/lcc>` and the
-:doc:`Lagrange<../projections/lagrng>` projections have default parameters.
+:doc:`Lambert Conic Conformal<operations/projections/lcc>` and the
+:doc:`Lagrange<operations/projections/lagrng>` projections have default parameters.
Defaults can be ignored by adding the ``+no_def`` parameter to a proj-string.