aboutsummaryrefslogtreecommitdiff
path: root/docs/source/development/quickstart.rst
diff options
context:
space:
mode:
authorKristian Evers <kristianevers@gmail.com>2018-02-19 23:09:40 +0100
committerKristian Evers <kristianevers@gmail.com>2018-02-19 23:09:40 +0100
commit631145da4d23db670cb378fdae14dc6f3555513b (patch)
tree429db7a5d719d1d88c2e46cb30c7a1199e6416ef /docs/source/development/quickstart.rst
parentf63fe1b85d350315ca5ee1bc4b871c8585d05aca (diff)
downloadPROJ-631145da4d23db670cb378fdae14dc6f3555513b.tar.gz
PROJ-631145da4d23db670cb378fdae14dc6f3555513b.zip
Change most occurences of PROJ.4 to PROJ [skip ci]
Diffstat (limited to 'docs/source/development/quickstart.rst')
-rw-r--r--docs/source/development/quickstart.rst10
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/source/development/quickstart.rst b/docs/source/development/quickstart.rst
index 7137d85a..960cddbf 100644
--- a/docs/source/development/quickstart.rst
+++ b/docs/source/development/quickstart.rst
@@ -4,15 +4,15 @@
Quick start
================================================================================
-This is a short introduction to the PROJ.4 API. In the following section we
+This is a short introduction to the PROJ API. In the following section we
create a simple program that transforms a geodetic coordinate to UTM and back
again. The program is explained a few lines at a time. The complete program can
be seen at the end of the section.
See the following sections for more in-depth descriptions of different parts of
-the PROJ.4 API or consult the :doc:`API reference <reference/index>` for specifics.
+the PROJ API or consult the :doc:`API reference <reference/index>` for specifics.
-Before the PROJ.4 API can be used it is necessary to include the ``proj.h`` header
+Before the PROJ API can be used it is necessary to include the ``proj.h`` header
file. Here ``stdio.h`` is also included so we can print some text to the screen:
.. literalinclude:: ../../../examples/pj_obs_api_mini_demo.c
@@ -54,10 +54,10 @@ details.
:lines: 50-52
:dedent: 4
-PROJ.4 uses it's own data structures for handling coordinates. Here we use a
+PROJ uses it's own data structures for handling coordinates. Here we use a
``PJ_COORD`` which is easily assigned with the function ``proj_coord``. Note
that the input values are converted to radians with ``proj_torad``. This is
-necessary since PROJ.4 is using radians internally. See :doc:`transformations`
+necessary since PROJ is using radians internally. See :doc:`transformations`
for further details.
.. literalinclude:: ../../../examples/pj_obs_api_mini_demo.c