diff options
| author | Kurt Schwehr <schwehr@google.com> | 2018-05-23 09:46:12 -0700 |
|---|---|---|
| committer | Kurt Schwehr <schwehr@google.com> | 2018-05-23 09:46:12 -0700 |
| commit | 293b4fd9465cdc9384419a84941a1e1e88d7a338 (patch) | |
| tree | 21ff941d8abfd6fd149dd51584be22e273e1cc76 /docs/source | |
| parent | 03c4a33755f6c8bba4b97ea7cfd3536d95305014 (diff) | |
| download | PROJ-293b4fd9465cdc9384419a84941a1e1e88d7a338.tar.gz PROJ-293b4fd9465cdc9384419a84941a1e1e88d7a338.zip | |
gie roundtrip: Expand the 3 cases for the args
Diffstat (limited to 'docs/source')
| -rw-r--r-- | docs/source/apps/gie.rst | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/docs/source/apps/gie.rst b/docs/source/apps/gie.rst index b6c1c166..b3d1a06b 100644 --- a/docs/source/apps/gie.rst +++ b/docs/source/apps/gie.rst @@ -207,10 +207,26 @@ gie command language to function. The accepted coordinate is passed to the operation first in it's forward mode, then the output from the forward operation is passed back to the inverse operation. This procedure is done ``n`` times. If the - resulting coordinate is within the set tolerance of the initial coordinate + resulting coordinate is within the set tolerance of the initial coordinate, the test is passed. - Example: + Example with the default 100 iterations and the default tolerance: + + .. code-block:: console + + operation proj=merc + accept 12 55 + roundtrip + + Example with count and default tolerance: + + .. code-block:: console + + operation proj=merc + accept 12 55 + roundtrip 10000 + + Example with count and tolerance: .. code-block:: console |
