@crossbind/port-proj-wasm 2.0.0-beta.50

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (122) hide show
  1. package/LICENSE +34 -0
  2. package/README.md +12 -0
  3. package/crossbind.build.js +1 -0
  4. package/crossbind.config.js +8 -0
  5. package/dist/prebuilt/CMakeLists.txt +57 -0
  6. package/dist/prebuilt/wasm-wasm32-mt-release/crossbind-emccflags.fingerprint +1 -0
  7. package/dist/prebuilt/wasm-wasm32-mt-release/include/geodesic.h +837 -0
  8. package/dist/prebuilt/wasm-wasm32-mt-release/include/proj/common.hpp +489 -0
  9. package/dist/prebuilt/wasm-wasm32-mt-release/include/proj/coordinateoperation.hpp +2163 -0
  10. package/dist/prebuilt/wasm-wasm32-mt-release/include/proj/coordinates.hpp +115 -0
  11. package/dist/prebuilt/wasm-wasm32-mt-release/include/proj/coordinatesystem.hpp +892 -0
  12. package/dist/prebuilt/wasm-wasm32-mt-release/include/proj/crs.hpp +1597 -0
  13. package/dist/prebuilt/wasm-wasm32-mt-release/include/proj/datum.hpp +863 -0
  14. package/dist/prebuilt/wasm-wasm32-mt-release/include/proj/io.hpp +1420 -0
  15. package/dist/prebuilt/wasm-wasm32-mt-release/include/proj/metadata.hpp +474 -0
  16. package/dist/prebuilt/wasm-wasm32-mt-release/include/proj/nn.hpp +385 -0
  17. package/dist/prebuilt/wasm-wasm32-mt-release/include/proj/util.hpp +781 -0
  18. package/dist/prebuilt/wasm-wasm32-mt-release/include/proj.h +2299 -0
  19. package/dist/prebuilt/wasm-wasm32-mt-release/include/proj_constants.h +987 -0
  20. package/dist/prebuilt/wasm-wasm32-mt-release/include/proj_experimental.h +52 -0
  21. package/dist/prebuilt/wasm-wasm32-mt-release/include/proj_symbol_rename.h +317 -0
  22. package/dist/prebuilt/wasm-wasm32-mt-release/include/projapps_lib.h +68 -0
  23. package/dist/prebuilt/wasm-wasm32-mt-release/lib/cmake/proj/proj-config-version.cmake +52 -0
  24. package/dist/prebuilt/wasm-wasm32-mt-release/lib/cmake/proj/proj-config.cmake +79 -0
  25. package/dist/prebuilt/wasm-wasm32-mt-release/lib/cmake/proj/proj-targets-release.cmake +19 -0
  26. package/dist/prebuilt/wasm-wasm32-mt-release/lib/cmake/proj/proj-targets.cmake +108 -0
  27. package/dist/prebuilt/wasm-wasm32-mt-release/lib/cmake/proj/proj4-targets-release.cmake +19 -0
  28. package/dist/prebuilt/wasm-wasm32-mt-release/lib/cmake/proj/proj4-targets.cmake +108 -0
  29. package/dist/prebuilt/wasm-wasm32-mt-release/lib/cmake/proj4/proj-targets-release.cmake +19 -0
  30. package/dist/prebuilt/wasm-wasm32-mt-release/lib/cmake/proj4/proj-targets.cmake +108 -0
  31. package/dist/prebuilt/wasm-wasm32-mt-release/lib/cmake/proj4/proj4-config-version.cmake +52 -0
  32. package/dist/prebuilt/wasm-wasm32-mt-release/lib/cmake/proj4/proj4-config.cmake +79 -0
  33. package/dist/prebuilt/wasm-wasm32-mt-release/lib/cmake/proj4/proj4-targets-release.cmake +19 -0
  34. package/dist/prebuilt/wasm-wasm32-mt-release/lib/cmake/proj4/proj4-targets.cmake +108 -0
  35. package/dist/prebuilt/wasm-wasm32-mt-release/lib/libproj.a +0 -0
  36. package/dist/prebuilt/wasm-wasm32-mt-release/lib/pkgconfig/proj.pc +14 -0
  37. package/dist/prebuilt/wasm-wasm32-mt-release/share/bash-completion/completions/projinfo +51 -0
  38. package/dist/prebuilt/wasm-wasm32-mt-release/share/doc/proj/AUTHORS.md +33 -0
  39. package/dist/prebuilt/wasm-wasm32-mt-release/share/doc/proj/COPYING +34 -0
  40. package/dist/prebuilt/wasm-wasm32-mt-release/share/doc/proj/NEWS.md +3404 -0
  41. package/dist/prebuilt/wasm-wasm32-mt-release/share/man/man1/cct.1 +350 -0
  42. package/dist/prebuilt/wasm-wasm32-mt-release/share/man/man1/cs2cs.1 +516 -0
  43. package/dist/prebuilt/wasm-wasm32-mt-release/share/man/man1/geod.1 +255 -0
  44. package/dist/prebuilt/wasm-wasm32-mt-release/share/man/man1/gie.1 +494 -0
  45. package/dist/prebuilt/wasm-wasm32-mt-release/share/man/man1/proj.1 +318 -0
  46. package/dist/prebuilt/wasm-wasm32-mt-release/share/man/man1/projinfo.1 +832 -0
  47. package/dist/prebuilt/wasm-wasm32-mt-release/share/man/man1/projsync.1 +223 -0
  48. package/dist/prebuilt/wasm-wasm32-mt-release/share/proj/CH +22 -0
  49. package/dist/prebuilt/wasm-wasm32-mt-release/share/proj/GL27 +23 -0
  50. package/dist/prebuilt/wasm-wasm32-mt-release/share/proj/ITRF2000 +24 -0
  51. package/dist/prebuilt/wasm-wasm32-mt-release/share/proj/ITRF2008 +94 -0
  52. package/dist/prebuilt/wasm-wasm32-mt-release/share/proj/ITRF2014 +55 -0
  53. package/dist/prebuilt/wasm-wasm32-mt-release/share/proj/ITRF2020 +91 -0
  54. package/dist/prebuilt/wasm-wasm32-mt-release/share/proj/deformation_model.schema.json +582 -0
  55. package/dist/prebuilt/wasm-wasm32-mt-release/share/proj/nad.lst +142 -0
  56. package/dist/prebuilt/wasm-wasm32-mt-release/share/proj/nad27 +810 -0
  57. package/dist/prebuilt/wasm-wasm32-mt-release/share/proj/nad83 +745 -0
  58. package/dist/prebuilt/wasm-wasm32-mt-release/share/proj/other.extra +53 -0
  59. package/dist/prebuilt/wasm-wasm32-mt-release/share/proj/proj.db +0 -0
  60. package/dist/prebuilt/wasm-wasm32-mt-release/share/proj/proj.ini +59 -0
  61. package/dist/prebuilt/wasm-wasm32-mt-release/share/proj/projjson.schema.json +1174 -0
  62. package/dist/prebuilt/wasm-wasm32-mt-release/share/proj/triangulation.schema.json +214 -0
  63. package/dist/prebuilt/wasm-wasm32-mt-release/share/proj/world +214 -0
  64. package/dist/prebuilt/wasm-wasm32-st-release/crossbind-emccflags.fingerprint +1 -0
  65. package/dist/prebuilt/wasm-wasm32-st-release/include/geodesic.h +837 -0
  66. package/dist/prebuilt/wasm-wasm32-st-release/include/proj/common.hpp +489 -0
  67. package/dist/prebuilt/wasm-wasm32-st-release/include/proj/coordinateoperation.hpp +2163 -0
  68. package/dist/prebuilt/wasm-wasm32-st-release/include/proj/coordinates.hpp +115 -0
  69. package/dist/prebuilt/wasm-wasm32-st-release/include/proj/coordinatesystem.hpp +892 -0
  70. package/dist/prebuilt/wasm-wasm32-st-release/include/proj/crs.hpp +1597 -0
  71. package/dist/prebuilt/wasm-wasm32-st-release/include/proj/datum.hpp +863 -0
  72. package/dist/prebuilt/wasm-wasm32-st-release/include/proj/io.hpp +1420 -0
  73. package/dist/prebuilt/wasm-wasm32-st-release/include/proj/metadata.hpp +474 -0
  74. package/dist/prebuilt/wasm-wasm32-st-release/include/proj/nn.hpp +385 -0
  75. package/dist/prebuilt/wasm-wasm32-st-release/include/proj/util.hpp +781 -0
  76. package/dist/prebuilt/wasm-wasm32-st-release/include/proj.h +2299 -0
  77. package/dist/prebuilt/wasm-wasm32-st-release/include/proj_constants.h +987 -0
  78. package/dist/prebuilt/wasm-wasm32-st-release/include/proj_experimental.h +52 -0
  79. package/dist/prebuilt/wasm-wasm32-st-release/include/proj_symbol_rename.h +317 -0
  80. package/dist/prebuilt/wasm-wasm32-st-release/include/projapps_lib.h +68 -0
  81. package/dist/prebuilt/wasm-wasm32-st-release/lib/cmake/proj/proj-config-version.cmake +52 -0
  82. package/dist/prebuilt/wasm-wasm32-st-release/lib/cmake/proj/proj-config.cmake +79 -0
  83. package/dist/prebuilt/wasm-wasm32-st-release/lib/cmake/proj/proj-targets-release.cmake +19 -0
  84. package/dist/prebuilt/wasm-wasm32-st-release/lib/cmake/proj/proj-targets.cmake +108 -0
  85. package/dist/prebuilt/wasm-wasm32-st-release/lib/cmake/proj/proj4-targets-release.cmake +19 -0
  86. package/dist/prebuilt/wasm-wasm32-st-release/lib/cmake/proj/proj4-targets.cmake +108 -0
  87. package/dist/prebuilt/wasm-wasm32-st-release/lib/cmake/proj4/proj-targets-release.cmake +19 -0
  88. package/dist/prebuilt/wasm-wasm32-st-release/lib/cmake/proj4/proj-targets.cmake +108 -0
  89. package/dist/prebuilt/wasm-wasm32-st-release/lib/cmake/proj4/proj4-config-version.cmake +52 -0
  90. package/dist/prebuilt/wasm-wasm32-st-release/lib/cmake/proj4/proj4-config.cmake +79 -0
  91. package/dist/prebuilt/wasm-wasm32-st-release/lib/cmake/proj4/proj4-targets-release.cmake +19 -0
  92. package/dist/prebuilt/wasm-wasm32-st-release/lib/cmake/proj4/proj4-targets.cmake +108 -0
  93. package/dist/prebuilt/wasm-wasm32-st-release/lib/libproj.a +0 -0
  94. package/dist/prebuilt/wasm-wasm32-st-release/lib/pkgconfig/proj.pc +14 -0
  95. package/dist/prebuilt/wasm-wasm32-st-release/share/bash-completion/completions/projinfo +51 -0
  96. package/dist/prebuilt/wasm-wasm32-st-release/share/doc/proj/AUTHORS.md +33 -0
  97. package/dist/prebuilt/wasm-wasm32-st-release/share/doc/proj/COPYING +34 -0
  98. package/dist/prebuilt/wasm-wasm32-st-release/share/doc/proj/NEWS.md +3404 -0
  99. package/dist/prebuilt/wasm-wasm32-st-release/share/man/man1/cct.1 +350 -0
  100. package/dist/prebuilt/wasm-wasm32-st-release/share/man/man1/cs2cs.1 +516 -0
  101. package/dist/prebuilt/wasm-wasm32-st-release/share/man/man1/geod.1 +255 -0
  102. package/dist/prebuilt/wasm-wasm32-st-release/share/man/man1/gie.1 +494 -0
  103. package/dist/prebuilt/wasm-wasm32-st-release/share/man/man1/proj.1 +318 -0
  104. package/dist/prebuilt/wasm-wasm32-st-release/share/man/man1/projinfo.1 +832 -0
  105. package/dist/prebuilt/wasm-wasm32-st-release/share/man/man1/projsync.1 +223 -0
  106. package/dist/prebuilt/wasm-wasm32-st-release/share/proj/CH +22 -0
  107. package/dist/prebuilt/wasm-wasm32-st-release/share/proj/GL27 +23 -0
  108. package/dist/prebuilt/wasm-wasm32-st-release/share/proj/ITRF2000 +24 -0
  109. package/dist/prebuilt/wasm-wasm32-st-release/share/proj/ITRF2008 +94 -0
  110. package/dist/prebuilt/wasm-wasm32-st-release/share/proj/ITRF2014 +55 -0
  111. package/dist/prebuilt/wasm-wasm32-st-release/share/proj/ITRF2020 +91 -0
  112. package/dist/prebuilt/wasm-wasm32-st-release/share/proj/deformation_model.schema.json +582 -0
  113. package/dist/prebuilt/wasm-wasm32-st-release/share/proj/nad.lst +142 -0
  114. package/dist/prebuilt/wasm-wasm32-st-release/share/proj/nad27 +810 -0
  115. package/dist/prebuilt/wasm-wasm32-st-release/share/proj/nad83 +745 -0
  116. package/dist/prebuilt/wasm-wasm32-st-release/share/proj/other.extra +53 -0
  117. package/dist/prebuilt/wasm-wasm32-st-release/share/proj/proj.db +0 -0
  118. package/dist/prebuilt/wasm-wasm32-st-release/share/proj/proj.ini +59 -0
  119. package/dist/prebuilt/wasm-wasm32-st-release/share/proj/projjson.schema.json +1174 -0
  120. package/dist/prebuilt/wasm-wasm32-st-release/share/proj/triangulation.schema.json +214 -0
  121. package/dist/prebuilt/wasm-wasm32-st-release/share/proj/world +214 -0
  122. package/package.json +35 -0
@@ -0,0 +1,350 @@
1
+ .\" Man page generated from reStructuredText
2
+ .\" by the Docutils 0.22.4 manpage writer.
3
+ .
4
+ .
5
+ .nr rst2man-indent-level 0
6
+ .
7
+ .de1 rstReportMargin
8
+ \\$1 \\n[an-margin]
9
+ level \\n[rst2man-indent-level]
10
+ level margin: \\n[rst2man-indent\\n[rst2man-indent-level]]
11
+ -
12
+ \\n[rst2man-indent0]
13
+ \\n[rst2man-indent1]
14
+ \\n[rst2man-indent2]
15
+ ..
16
+ .de1 INDENT
17
+ .\" .rstReportMargin pre:
18
+ . RS \\$1
19
+ . nr rst2man-indent\\n[rst2man-indent-level] \\n[an-margin]
20
+ . nr rst2man-indent-level +1
21
+ .\" .rstReportMargin post:
22
+ ..
23
+ .de UNINDENT
24
+ . RE
25
+ .\" indent \\n[an-margin]
26
+ .\" old: \\n[rst2man-indent\\n[rst2man-indent-level]]
27
+ .nr rst2man-indent-level -1
28
+ .\" new: \\n[rst2man-indent\\n[rst2man-indent-level]]
29
+ .in \\n[rst2man-indent\\n[rst2man-indent-level]]u
30
+ ..
31
+ .TH "CCT" "1" "10 avril 2026" "9.8" "PROJ"
32
+ .SH NAME
33
+ cct \- Coordinate Conversion and Transformation
34
+ .SH SYNOPSIS
35
+ .INDENT 0.0
36
+ .INDENT 3.5
37
+ \fBcct\fP [\fB\-cIostvz\fP [args]] \fI+opt[=arg]\fP ... file ...
38
+ .UNINDENT
39
+ .UNINDENT
40
+ .sp
41
+ or
42
+ .INDENT 0.0
43
+ .INDENT 3.5
44
+ \fBcct\fP [\fB\-cIostvz\fP [args]] {object_definition} file ...
45
+ .UNINDENT
46
+ .UNINDENT
47
+ .sp
48
+ Where {object_definition}\ is one of the possibilities accepted
49
+ by \fBproj_create()\fP \%<#\:c\:.proj_create>, provided it expresses a coordinate operation
50
+ .INDENT 0.0
51
+ .INDENT 3.5
52
+ .INDENT 0.0
53
+ .IP \(bu 2
54
+ a proj\-string,
55
+ .IP \(bu 2
56
+ a WKT string,
57
+ .IP \(bu 2
58
+ an object code (like \(dqEPSG:1671\(dq \(dqurn:ogc:def:coordinateOperation:EPSG::1671\(dq),
59
+ .IP \(bu 2
60
+ an object name. e.g. \(dqITRF2014 to ETRF2014 (1)\(dq. In that case as
61
+ uniqueness is not guaranteed, heuristics are applied to determine the appropriate best match.
62
+ .IP \(bu 2
63
+ a OGC URN combining references for concatenated operations
64
+ (e.g. \(dq\%<urn:ogc:def:coordinateOperation,coordinateOperation:EPSG::3895,coordinateOperation:EPSG::1618>\(dq)
65
+ .IP \(bu 2
66
+ a PROJJSON string. The jsonschema is at \%<https://\:proj\:.org/\:schemas/\:v0\:.4/\:projjson\:.schema\:.json>
67
+ .UNINDENT
68
+ .sp
69
+ Added in version 8.0.0.
70
+
71
+ .sp
72
+ \fBNote:\fP
73
+ .INDENT 0.0
74
+ .INDENT 3.5
75
+ Before version 8.0.0 only proj\-strings could be used to instantiate
76
+ operations in cct\&.
77
+ .UNINDENT
78
+ .UNINDENT
79
+ .UNINDENT
80
+ .UNINDENT
81
+ .sp
82
+ or
83
+ .INDENT 0.0
84
+ .INDENT 3.5
85
+ \fBcct\fP [\fB\-cIostvz\fP [args]] {object_reference} file ...
86
+ .UNINDENT
87
+ .UNINDENT
88
+ .sp
89
+ where {object_reference} is a filename preceded by the \(aq@\(aq character. The
90
+ file referenced by the {object_reference} must contain a valid
91
+ {object_definition}.
92
+ .INDENT 0.0
93
+ .INDENT 3.5
94
+ Added in version 8.0.0.
95
+
96
+ .UNINDENT
97
+ .UNINDENT
98
+ .SH DESCRIPTION
99
+ .sp
100
+ cct is a 4D equivalent to the proj \%<#\:proj> projection program,
101
+ performs transformation coordinate systems on a set of input points. The
102
+ coordinate system transformation can include translation between projected
103
+ and geographic coordinates as well as the application of datum shifts.
104
+ .sp
105
+ Note however that unlike the proj \%<#\:proj>, angular input must be in decimal degrees.
106
+ Any minutes and seconds given will be silently dropped.
107
+ .sp
108
+ The following control parameters can appear in any order:
109
+ .INDENT 0.0
110
+ .TP
111
+ .B \-c <x,y,z,t>
112
+ Specify input columns for (up to) 4 input parameters. Defaults to 1,2,3,4.
113
+ .UNINDENT
114
+ .INDENT 0.0
115
+ .TP
116
+ .B \-d <n>
117
+ Added in version 5.2.0.
118
+
119
+ .sp
120
+ Specify the number of decimals to round to in the output.
121
+ .UNINDENT
122
+ .INDENT 0.0
123
+ .TP
124
+ .B \-I
125
+ Do the inverse transformation.
126
+ .UNINDENT
127
+ .INDENT 0.0
128
+ .TP
129
+ .B \-o <output file name>, \-\-output=<output file name>
130
+ Specify the name of the output file.
131
+ .UNINDENT
132
+ .INDENT 0.0
133
+ .TP
134
+ .B \-t <time>, \-\-time=<time>
135
+ Specify a fixed observation \fItime\fP to be used for all input data.
136
+ .UNINDENT
137
+ .INDENT 0.0
138
+ .TP
139
+ .B \-z <height>, \-\-height=<height>
140
+ Specify a fixed observation \fIheight\fP to be used for all input data.
141
+ .UNINDENT
142
+ .INDENT 0.0
143
+ .TP
144
+ .B \-s <n>, \-\-skip\-lines=<n>
145
+ Added in version 5.1.0.
146
+
147
+ .sp
148
+ Skip the first \fIn\fP lines of input. This applies to any kind of input, whether
149
+ it comes from \fBSTDIN\fP, a file or interactive user input.
150
+ .UNINDENT
151
+ .INDENT 0.0
152
+ .TP
153
+ .B \-v, \-\-verbose
154
+ Write non\-essential, but potentially useful, information to stderr.
155
+ Repeat for additional information (\fB\-vv\fP, \fB\-vvv\fP, etc.)
156
+ .UNINDENT
157
+ .INDENT 0.0
158
+ .TP
159
+ .B \-\-version
160
+ Print version number.
161
+ .UNINDENT
162
+ .sp
163
+ The \fI+opt\fP arguments are associated with coordinate operation parameters.
164
+ Usage varies with operation.
165
+ .sp
166
+ cct is an acronym meaning \fICoordinate Conversion and Transformation\fP\&.
167
+ .sp
168
+ The acronym refers to definitions given in the OGC 08\-015r2/ISO\-19111
169
+ standard \(dqGeographical Information \-\- Spatial Referencing by Coordinates\(dq,
170
+ which defines two different classes of \fIcoordinate operations\fP:
171
+ .sp
172
+ \fICoordinate Conversions\fP, which are coordinate operations where input
173
+ and output datum are identical (e.g. conversion from geographical to
174
+ cartesian coordinates) and
175
+ .sp
176
+ \fICoordinate Transformations\fP, which are coordinate operations where
177
+ input and output datums differ (e.g. change of reference frame).
178
+ .SH USE OF REMOTE GRIDS
179
+ .sp
180
+ Added in version 7.0.0.
181
+
182
+ .sp
183
+ If the \fBPROJ_NETWORK\fP \%<#\:envvar-PROJ_NETWORK> environment variable is set to \fBON\fP,
184
+ cct will attempt to use remote grids stored on CDN (Content
185
+ Delivery Network) storage, when they are not available locally.
186
+ .sp
187
+ More details are available in the Network capabilities \%<#\:network> section.
188
+ .SH EXAMPLES
189
+ .INDENT 0.0
190
+ .IP 1. 3
191
+ The operator specs describe the action to be performed by cct\&. So
192
+ the following script
193
+ .UNINDENT
194
+ .INDENT 0.0
195
+ .INDENT 3.5
196
+ .sp
197
+ .EX
198
+ echo 12 55 0 0 | cct +proj=utm +zone=32 +ellps=GRS80
199
+ .EE
200
+ .UNINDENT
201
+ .UNINDENT
202
+ .sp
203
+ will transform the input geographic coordinates into UTM zone 32 coordinates.
204
+ Hence, the command
205
+ .INDENT 0.0
206
+ .INDENT 3.5
207
+ .sp
208
+ .EX
209
+ echo 12 55 | cct \-z0 \-t0 +proj=utm +zone=32 +ellps=GRS80
210
+ .EE
211
+ .UNINDENT
212
+ .UNINDENT
213
+ .sp
214
+ Should give results comparable to the classic proj \%<#\:proj> command
215
+ .INDENT 0.0
216
+ .INDENT 3.5
217
+ .sp
218
+ .EX
219
+ echo 12 55 | proj +proj=utm +zone=32 +ellps=GRS80
220
+ .EE
221
+ .UNINDENT
222
+ .UNINDENT
223
+ .INDENT 0.0
224
+ .IP 2. 3
225
+ Convert geographical input to UTM zone 32 on the GRS80 ellipsoid:
226
+ .UNINDENT
227
+ .INDENT 0.0
228
+ .INDENT 3.5
229
+ .sp
230
+ .EX
231
+ cct +proj=utm +ellps=GRS80 +zone=32
232
+ .EE
233
+ .UNINDENT
234
+ .UNINDENT
235
+ .INDENT 0.0
236
+ .IP 3. 3
237
+ Roundtrip accuracy check for the case above:
238
+ .UNINDENT
239
+ .INDENT 0.0
240
+ .INDENT 3.5
241
+ .sp
242
+ .EX
243
+ cct +proj=pipeline +ellps=GRS80 +zone=32 +step +proj=utm +step +proj=utm +inv
244
+ .EE
245
+ .UNINDENT
246
+ .UNINDENT
247
+ .INDENT 0.0
248
+ .IP 4. 3
249
+ As (2) but specify input columns for longitude, latitude, height and time:
250
+ .UNINDENT
251
+ .INDENT 0.0
252
+ .INDENT 3.5
253
+ .sp
254
+ .EX
255
+ cct \-c 5,2,1,4 +proj=utm +ellps=GRS80 +zone=32
256
+ .EE
257
+ .UNINDENT
258
+ .UNINDENT
259
+ .INDENT 0.0
260
+ .IP 5. 3
261
+ As (2) but specify fixed height and time, hence needing only 2 cols in
262
+ input:
263
+ .UNINDENT
264
+ .INDENT 0.0
265
+ .INDENT 3.5
266
+ .sp
267
+ .EX
268
+ cct \-t 0 \-z 0 +proj=utm +ellps=GRS80 +zone=32
269
+ .EE
270
+ .UNINDENT
271
+ .UNINDENT
272
+ .INDENT 0.0
273
+ .IP 6. 3
274
+ Auxiliary data following the coordinate input is forwarded to the output
275
+ stream:
276
+ .UNINDENT
277
+ .INDENT 0.0
278
+ .INDENT 3.5
279
+ .sp
280
+ .EX
281
+ $ echo 12 56 100 2018.0 auxiliary data | cct +proj=merc
282
+ 1335833.8895 7522963.2411 100.0000 2018.0000 auxiliary data
283
+ .EE
284
+ .UNINDENT
285
+ .UNINDENT
286
+ .INDENT 0.0
287
+ .IP 7. 3
288
+ Coordinate operation referenced through its code
289
+ .UNINDENT
290
+ .INDENT 0.0
291
+ .INDENT 3.5
292
+ .sp
293
+ .EX
294
+ $ echo 3541657.3778 948984.2343 5201383.5231 2020.5 | cct EPSG:8366
295
+ 3541657.9112 948983.7503 5201383.2482 2020.5000
296
+ .EE
297
+ .UNINDENT
298
+ .UNINDENT
299
+ .INDENT 0.0
300
+ .IP 8. 3
301
+ Coordinate operation referenced through its name
302
+ .UNINDENT
303
+ .INDENT 0.0
304
+ .INDENT 3.5
305
+ .sp
306
+ .EX
307
+ $ echo 3541657.3778 948984.2343 5201383.5231 2020.5 | cct \(dqITRF2014 to ETRF2014 (1)\(dq
308
+ 3541657.9112 948983.7503 5201383.2482 2020.5000
309
+ .EE
310
+ .UNINDENT
311
+ .UNINDENT
312
+ .SH BACKGROUND
313
+ .sp
314
+ cct also refers to Carl Christian Tscherning (1942\-\-2014),
315
+ professor of Geodesy at the University of Copenhagen, mentor and advisor
316
+ for a generation of Danish geodesists, colleague and collaborator for
317
+ two generations of global geodesists, Secretary General for the
318
+ International Association of Geodesy, IAG (1995\-\-2007), fellow of the
319
+ American Geophysical Union (1991), recipient of the IAG Levallois Medal
320
+ (2007), the European Geosciences Union Vening Meinesz Medal (2008), and
321
+ of numerous other honours.
322
+ .sp
323
+ \fIcct\fP, or Christian, as he was known to most of us, was recognized for his
324
+ good mood, his sharp wit, his tireless work, and his great commitment to
325
+ the development of geodesy \-\- both through his scientific contributions,
326
+ comprising more than 250 publications, and by his mentoring and teaching
327
+ of the next generations of geodesists.
328
+ .sp
329
+ As Christian was an avid Fortran programmer, and a keen Unix connoisseur,
330
+ he would have enjoyed to know that his initials would be used to name a
331
+ modest Unix style transformation filter, hinting at the tireless aspect
332
+ of his personality, which was certainly one of the reasons he accomplished
333
+ so much, and meant so much to so many people.
334
+ .sp
335
+ Hence, in honour of \fIcct\fP (the geodesist) this is cct (the program).
336
+ .SH SEE ALSO
337
+ .sp
338
+ \fBproj(1)\fP, \fBcs2cs(1)\fP, \fBgeod(1)\fP, \fBgie(1)\fP, \fBprojinfo(1)\fP, \fBprojsync(1)\fP
339
+ .SH BUGS
340
+ .sp
341
+ A list of known bugs can be found at \%<https://\:github\:.com/\:OSGeo/\:PROJ/\:issues>
342
+ where new bug reports can be submitted to.
343
+ .SH HOME PAGE
344
+ .sp
345
+ \%<https://\:proj\:.org/>
346
+ .SH Author
347
+ Thomas Knudsen
348
+ .SH Copyright
349
+ 1983-2026, PROJ contributors
350
+ .\" End of generated man page.