From a3f43744feec86272fe532124679d3a013ef9a8c Mon Sep 17 00:00:00 2001 From: PROJ deploybot Date: Tue, 22 Mar 2022 20:00:06 +0000 Subject: update with results of commit https://github.com/OSGeo/PROJ/commit/53c07a8bd211b7aee4bc07a9c6726005504b7181 --- _sources/apps/cct.rst.txt | 245 ++++++++++++++++ _sources/apps/common_man.rst.txt | 12 + _sources/apps/cs2cs.rst.txt | 320 +++++++++++++++++++++ _sources/apps/geod.rst.txt | 203 +++++++++++++ _sources/apps/gie.rst.txt | 398 +++++++++++++++++++++++++ _sources/apps/index.rst.txt | 28 ++ _sources/apps/proj.rst.txt | 219 ++++++++++++++ _sources/apps/projinfo.rst.txt | 606 +++++++++++++++++++++++++++++++++++++++ _sources/apps/projsync.rst.txt | 177 ++++++++++++ 9 files changed, 2208 insertions(+) create mode 100644 _sources/apps/cct.rst.txt create mode 100644 _sources/apps/common_man.rst.txt create mode 100644 _sources/apps/cs2cs.rst.txt create mode 100644 _sources/apps/geod.rst.txt create mode 100644 _sources/apps/gie.rst.txt create mode 100644 _sources/apps/index.rst.txt create mode 100644 _sources/apps/proj.rst.txt create mode 100644 _sources/apps/projinfo.rst.txt create mode 100644 _sources/apps/projsync.rst.txt (limited to '_sources/apps') diff --git a/_sources/apps/cct.rst.txt b/_sources/apps/cct.rst.txt new file mode 100644 index 00000000..08bdd004 --- /dev/null +++ b/_sources/apps/cct.rst.txt @@ -0,0 +1,245 @@ +.. _cct: + +================================================================================ +cct +================================================================================ + +.. Index:: cct + +.. only:: html + + Coordinate Conversion and Transformation. + +Synopsis +******** + + **cct** [**-cIostvz** [args]] *+opt[=arg]* ... file ... + +or + + **cct** [**-cIostvz** [args]] {object_definition} file ... + +Where {object_definition} 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.4/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`. + + +or + + **cct** [**-cIostvz** [args]] {object_reference} file ... + +where {object_reference} is a filename preceded by the '@' character. The +file referenced by the {object_reference} must contain a valid +{object_definition}. + + .. versionadded:: 8.0.0 + + + +Description +*********** + +:program:`cct` is a 4D equivalent to the :program:`proj` projection program, +performs transformation coordinate systems on a set of input points. The +coordinate system transformation can include translation between projected +and geographic coordinates as well as the application of datum shifts. + + +The following control parameters can appear in any order: + +.. program:: cct + +.. option:: -c + + Specify input columns for (up to) 4 input parameters. Defaults to 1,2,3,4. + +.. option:: -d + + .. versionadded:: 5.2.0 + + Specify the number of decimals in the output. + +.. option:: -I + + Do the inverse transformation. + +.. option:: -o , --output= + + Specify the name of the output file. + +.. option:: -t