aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorEven Rouault <even.rouault@mines-paris.org>2016-12-12 17:02:12 +0100
committerGitHub <noreply@github.com>2016-12-12 17:02:12 +0100
commit7aebf01badc811d8db2586d0f5542281e9913390 (patch)
tree0398d826eb4fd29a43d3360ba2e8b75b6f7e943d /docs
parente47afa43860e4350dce13689108096ab33c56d12 (diff)
parentab7e98b026b327e8b61510ba4e79b5ae42b5e5f2 (diff)
downloadPROJ-7aebf01badc811d8db2586d0f5542281e9913390.tar.gz
PROJ-7aebf01badc811d8db2586d0f5542281e9913390.zip
Merge pull request #464 from rouault/fix_typos
Add a scripts/fix_typos.sh script and correct reported errors
Diffstat (limited to 'docs')
-rw-r--r--docs/plot/plot.py2
-rw-r--r--docs/source/faq.rst2
-rw-r--r--docs/source/geodesic.rst4
-rw-r--r--docs/source/projections/merc.rst4
4 files changed, 6 insertions, 6 deletions
diff --git a/docs/plot/plot.py b/docs/plot/plot.py
index 42581f33..2ccb2814 100644
--- a/docs/plot/plot.py
+++ b/docs/plot/plot.py
@@ -76,7 +76,7 @@ def meridian(lon, lat_min, lat_max):
def parallel(lat, lon_min, lon_max):
'''
- Calculate parallell coordinates.
+ Calculate parallel coordinates.
'''
coords = np.zeros((N_POINTS, 2))
coords[:, 0] = np.linspace(lon_min, lon_max, N_POINTS)
diff --git a/docs/source/faq.rst b/docs/source/faq.rst
index 929386df..0240df1d 100644
--- a/docs/source/faq.rst
+++ b/docs/source/faq.rst
@@ -163,7 +163,7 @@ default numeric locale by setting the LC_NUMERIC environment variable to C.
.. note::
NOTE: Per ticket #49, in PROJ 4.7.0 and later pj_init() operates with locale
- overriden to "C" to avoid most locale specific processing for applications
+ overridden to "C" to avoid most locale specific processing for applications
using the API. Command line tools may still have issues.
Changing Ellipsoid / Why can't I convert from WGS84 to Google Earth / Virtual Globe Mercator?
diff --git a/docs/source/geodesic.rst b/docs/source/geodesic.rst
index e2665ab7..0f31802d 100644
--- a/docs/source/geodesic.rst
+++ b/docs/source/geodesic.rst
@@ -101,7 +101,7 @@ Thaddeus Vincenty's method, April 1975
For a very good procedure to calculate inter point distances see:
-http://www.ngs.noaa.gov/PC_PROD/Inv_Fwd/ (Fortan code, DOS executables, and an online app)
+http://www.ngs.noaa.gov/PC_PROD/Inv_Fwd/ (Fortran code, DOS executables, and an online app)
and algorithm details published in: `Vincenty, T. (1975) <http://www.ngs.noaa.gov/PUBS_LIB/inverse.pdf>`__
@@ -142,7 +142,7 @@ PROJ.4 - geod program
The PROJ.4 [wiki:man_geod geod] program can be used for great circle distances
-on an ellipsoid. As of proj verion 4.9.0, this uses a translation of
+on an ellipsoid. As of proj version 4.9.0, this uses a translation of
GeographicLib::Geodesic (see below) into C. The underlying geodesic
calculation API is exposed as part of the PROJ.4 library (via the geodesic.h
header). Prior to version 4.9.0, the algorithm documented here was used:
diff --git a/docs/source/projections/merc.rst b/docs/source/projections/merc.rst
index f8269a0e..64ba98a4 100644
--- a/docs/source/projections/merc.rst
+++ b/docs/source/projections/merc.rst
@@ -102,12 +102,12 @@ For the elliptical form of the projection we introduce the scaling factor:
k_0 = m\left( \phi_ts \right)
-where :math:`m\left(\phi\right)` is the parallel radius at lattitude :math:`\phi`.
+where :math:`m\left(\phi\right)` is the parallel radius at latitude :math:`\phi`.
We also use the Isometric Latitude kernel function :math:`t()`.
.. note::
- m() and t() should be described properly on a seperate page about the theory of projections on the ellipsoid.
+ m() and t() should be described properly on a separate page about the theory of projections on the ellipsoid.
Forward projection
==================