aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorKristian Evers <kristianevers@gmail.com>2020-11-10 14:08:30 +0100
committerGitHub <noreply@github.com>2020-11-10 14:08:30 +0100
commitaf342bf74cd154b653a0f9d931d4ca17001650b9 (patch)
tree0385cc3b07d2b34b91a05f5fa95071178caf828b /docs
parentbcfb1940602bf4da9be9e7e8423645ef8c627633 (diff)
downloadPROJ-af342bf74cd154b653a0f9d931d4ca17001650b9.tar.gz
PROJ-af342bf74cd154b653a0f9d931d4ca17001650b9.zip
Allow cct to instantiate operations via object codes or names (#2419)
Running cct like cct EPSG:8366 or cct "ITRF2014 to ETRF2014 (1)" is now possible.
Diffstat (limited to 'docs')
-rw-r--r--docs/source/apps/cct.rst27
1 files changed, 27 insertions, 0 deletions
diff --git a/docs/source/apps/cct.rst b/docs/source/apps/cct.rst
index 1d2aef20..df81c571 100644
--- a/docs/source/apps/cct.rst
+++ b/docs/source/apps/cct.rst
@@ -15,6 +15,33 @@ Synopsis
**cct** [**-cIostvz** [args]] *+opt[=arg]* ... file ...
+or
+
+ **cct** [**-cIostvz** [args]] {operation_reference} file ...
+
+Where {operation_reference} is one of the possibilities accepted
+by :c:func:`proj_create`, provided it expresses a coordinate operation
+
+- a proj-string,
+ - a WKT string,
+ - an object code (like "EPSG:1671" "urn:ogc:def:coordinateOperation:EPSG::1671"),
+ - an object name. e.g "ITRF2014 to ETRF2014 (1)". In that case as
+ uniqueness is not guaranteed, heuristics are applied to determine the appropriate best match.
+ - a OGC URN combining references for concatenated operations
+ (e.g. "urn:ogc:def:coordinateOperation,coordinateOperation:EPSG::3895,coordinateOperation:EPSG::1618")
+ - a PROJJSON string. The jsonschema is at https://proj.org/schemas/v0.2/projjson.schema.json
+
+ .. versionadded:: 8.0.0
+
+ .. note::
+
+ Before version 8.0.0 only proj-strings could be used to instantiate
+ operations in :program:`cct`.
+
+
+
+
+
Description
***********