aboutsummaryrefslogtreecommitdiff
path: root/docs/source/usage/operations/pipeline.rst
blob: 186377129d04bff7bba1587a7a6e8d470cd608f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
.. _pipeline:

================================================================================
The pipeline operator
================================================================================

Construct complex operations by daisy-chaining operations in a sequential pipeline.

+-----------------+--------------------------------------------------------------------+
| **Input type**  | Any.                                                               |
+-----------------+--------------------------------------------------------------------+
| **Output type** | Any.                                                               |
+-----------------+--------------------------------------------------------------------+
| **Options**                                                                          |
+-----------------+--------------------------------------------------------------------+
| `step`          | Separate each step in a pipeline.                                  |
+-----------------+--------------------------------------------------------------------+
| `inv`           | Invert a step in a pipeline.                                       |
+-----------------+--------------------------------------------------------------------+

.. note:: See the section on :ref:`transformation` for a more thorough introduction
          to the concept of transformation pipelines in PROJ.


With the pipeline operation it is possible to perform several operations after each
other on the same input data. This feature makes it possible to create transformations
that are made up of more than one operation, e.g. performing a datum shift and then
applying a suitable map projection. Theoretically any transformation between two
coordinate reference systems is possible to perform using the pipeline operation,
provided that the necessary coordinate operations in each step is available in PROJ.

A pipeline is made up of a number of steps, with each step being a coordinate operation
in itself. By connecting these individual steps sequentially we end up with a concatenated
coordinate operation. An example of this is a transformation from geodetic coordinates
on the GRS80 ellipsoid to a projected system where the east-west and north-east axes has
been swapped:

::

    +proj=pipeline +ellps=GRS80 +step +proj=merc +step +proj=axisswap +order=2,1

Here the first step is applying the :ref:`merc` projection and the second step is
applying the :ref:`axisswap` conversion. Note that the `+ellps=GRS80` is specified
before the first occurence of `+step`. This means that the GRS80 ellipsoid is used
in both steps, since any parameter stated before the first occurence of `+step` is
treated as a global parameter and is transferred to each individual steps.


Rules for pipelines
-------------------------------------------------------------------------------

**1. Pipelines must consist of at least one step.**

::

    +proj=pipeline

Will result in an error.

**2. Pipelines can only be nested if the nested pipeline is defined in an init-file.**

::

    +proj=pipeline
    +step +proj=pipeline +step +proj=merc +step +proj=axisswap +order=2,1
    +step +proj=unitconvert +xy_in=m +xy_out=us-ft

Results in an error, while

::

    +proj=pipeline
    +step +init=predefined_pipelines:projectandswap
    +step +proj=unitconvert +xy_in=m +xy_out=us-ft

does not.

**3. Pipelines without a forward path can't be constructed.**

::

    +proj=pipeline +step +inv +proj=urm5

Will result in an error since :ref:`urm5` does not have an inverse operation defined.

**4. Parameters added before the first `+step` are global and will be applied to all steps.**

In the following the GRS80 ellipsoid will be applied to all steps.

::

    +proj=pipeline +ellps=GRS80
    +step +proj=cart
    +step +proj=helmert +x=10 +y=3 +z=1
    +step +proj=cart +inv
    +step +proj=merc