aboutsummaryrefslogtreecommitdiff
path: root/docs/source/usage/quickstart.rst
diff options
context:
space:
mode:
authorMike Toews <mwtoews@gmail.com>2018-03-06 12:18:18 +1300
committerMike Toews <mwtoews@gmail.com>2018-03-06 12:18:18 +1300
commit5769d0bceef0b72494b87f63b040dafaed5da983 (patch)
treed4cf02584fcfaa477639a973dab2029e1d4a5147 /docs/source/usage/quickstart.rst
parent7d9a545d5052c3845a43c0bd96c124e93ed6d630 (diff)
downloadPROJ-5769d0bceef0b72494b87f63b040dafaed5da983.tar.gz
PROJ-5769d0bceef0b72494b87f63b040dafaed5da983.zip
fix a few typos (again)
Diffstat (limited to 'docs/source/usage/quickstart.rst')
-rw-r--r--docs/source/usage/quickstart.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/source/usage/quickstart.rst b/docs/source/usage/quickstart.rst
index 077e970c..89ac2172 100644
--- a/docs/source/usage/quickstart.rst
+++ b/docs/source/usage/quickstart.rst
@@ -33,7 +33,7 @@ utility ``proj`` we can convert the geodetic coordinates to projected space:
$ proj +proj=merc +lat_ts=56.5 +ellps=GRS80
If called as above ``proj`` will be in interactive mode, letting you type the
-input data manually and getting a responce presented on screen. ``proj``
+input data manually and getting a response presented on screen. ``proj``
works as any UNIX filter though, which means that you can also pipe data to
the utility, for instance by using the ``echo`` command:
@@ -44,7 +44,7 @@ the utility, for instance by using the ``echo`` command:
PROJ also comes bundled with the ``cs2cs`` utility which is used to transform
-from onecoordinate reference system to another. Say we want to convert
+from one coordinate reference system to another. Say we want to convert
the above Mercator coordinates to UTM, we can do that with ``cs2cs``:
::
@@ -52,10 +52,10 @@ the above Mercator coordinates to UTM, we can do that with ``cs2cs``:
$ echo 3399483.80 752085.60 | cs2cs +proj=merc +lat_ts=56.5 +ellps=GRS80 +to +proj=utm +zone=32
6103992.36 1924052.47 0.00
-Notice the ``+to`` parameter that seperates the source and destination
+Notice the ``+to`` parameter that separates the source and destination
projection definitions.
-If you happen to know the EPSG identifiers for the two cordinates reference
+If you happen to know the EPSG identifiers for the two coordinates reference
systems you are transforming between you can use those with ``cs2cs``:
::