@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,255 @@
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 "GEOD" "1" "10 avril 2026" "9.8" "PROJ"
32
+ .SH NAME
33
+ geod \- Geodesic computations
34
+ .SH SYNOPSIS
35
+ .INDENT 0.0
36
+ .INDENT 3.5
37
+ \fBgeod\fP \fI+ellps=<ellispoid>\fP [\fB\-afFIlptwW\fP [args]] [\fI+opt[=arg]\fP ...] file ...
38
+ .sp
39
+ \fBinvgeod\fP \fI+ellps=<ellispoid>\fP [\fB\-afFIlptwW\fP [args]] [\fI+opt[=arg]\fP ...] file ...
40
+ .UNINDENT
41
+ .UNINDENT
42
+ .SH DESCRIPTION
43
+ .sp
44
+ geod (direct) and invgeod (inverse) perform geodesic
45
+ (Great Circle) computations for determining latitude, longitude and back
46
+ azimuth of a terminus point given a initial point latitude, longitude,
47
+ azimuth and distance (direct) or the forward and back azimuths and distance
48
+ between an initial and terminus point latitudes and longitudes (inverse).
49
+ The results are accurate to round off for |f| < 1/50, where
50
+ f is flattening.
51
+ .sp
52
+ invgeod may not be available on all platforms; in this case
53
+ use \fBgeod \-I\fP instead.
54
+ .sp
55
+ The following command\-line options can appear in any order:
56
+ .INDENT 0.0
57
+ .TP
58
+ .B \-I
59
+ Specifies that the inverse geodesic computation is to be performed. May be
60
+ used with execution of geod as an alternative to invgeod execution.
61
+ .UNINDENT
62
+ .INDENT 0.0
63
+ .TP
64
+ .B \-a
65
+ Latitude and longitudes of the initial and terminal points, forward and
66
+ back azimuths and distance are output.
67
+ .UNINDENT
68
+ .INDENT 0.0
69
+ .TP
70
+ .B \-t<a>
71
+ Where \fIa\fP specifies a character employed as the first character to denote a control
72
+ line to be passed through without processing.
73
+ .UNINDENT
74
+ .INDENT 0.0
75
+ .TP
76
+ .B \-le
77
+ Gives a listing of all the ellipsoids that may be selected with the
78
+ \fI+ellps=\fP option.
79
+ .UNINDENT
80
+ .INDENT 0.0
81
+ .TP
82
+ .B \-lu
83
+ Gives a listing of all the units that may be selected with the \fI+units=\fP
84
+ option. (Default units are meters.)
85
+ .UNINDENT
86
+ .INDENT 0.0
87
+ .TP
88
+ .B \-f <format>
89
+ Where \fIformat\fP is a printf format string to control the output form of the
90
+ geographic coordinate and azimuth values. The default mode is DMS.
91
+ .UNINDENT
92
+ .INDENT 0.0
93
+ .TP
94
+ .B \-F <format>
95
+ Where \fIformat\fP is a printf format string to control the output form of the distance
96
+ value. The default mode is \fB\(dq%.3f\(dq\fP\&.
97
+ .UNINDENT
98
+ .INDENT 0.0
99
+ .TP
100
+ .B \-w<n>
101
+ Where \fIn\fP is the number of significant fractional digits to employ for seconds
102
+ output (when the option is not specified, \fB\-w3\fP is assumed).
103
+ .UNINDENT
104
+ .INDENT 0.0
105
+ .TP
106
+ .B \-W<n>
107
+ Where \fIn\fP is the number of significant fractional digits to employ for seconds
108
+ output. When \fB\-W\fP is employed the fields will be constant width
109
+ with leading zeroes.
110
+ .UNINDENT
111
+ .INDENT 0.0
112
+ .TP
113
+ .B \-p
114
+ This option causes the azimuthal values to be output as unsigned DMS
115
+ numbers between 0 and 360 degrees. Also note \fB\-f\fP\&.
116
+ .UNINDENT
117
+ .sp
118
+ The \fI+opt\fP command\-line options are associated with geodetic
119
+ parameters for specifying the ellipsoidal or sphere to use.
120
+ controls. The options are processed in left to right order
121
+ from the command line. Reentry of an option is ignored with
122
+ the first occurrence assumed to be the desired value.
123
+ .sp
124
+ See the PROJ documentation for a full list of these parameters and
125
+ controls.
126
+ .sp
127
+ One or more files (processed in left to right order) specify
128
+ the source of data to be transformed. A \fB\-\fP will specify the
129
+ location of processing standard input. If no files are specified,
130
+ the input is assumed to be from stdin.
131
+ .sp
132
+ For direct determinations input data must be in latitude, longitude,
133
+ azimuth and distance order and output will be latitude,
134
+ longitude and back azimuth of the terminus point. Latitude,
135
+ longitude of the initial and terminus point are input for the
136
+ inverse mode and respective forward and back azimuth from the
137
+ initial and terminus points are output along with the distance
138
+ between the points.
139
+ .sp
140
+ Input geographic coordinates (latitude and longitude) and
141
+ azimuthal data must be in decimal degrees or DMS format and
142
+ input distance data must be in units consistent with the ellipsoid
143
+ major axis or sphere radius units. The latitude must lie
144
+ in the range [\-90d,90d]. Output geographic coordinates and azimuths will be
145
+ in DMS (if the \fB\-f\fP switch is not employed) to 0.001\(dq with trailing,
146
+ zero\-valued minute\-second fields deleted. Output distance
147
+ data will be in the same units as the ellipsoid or sphere
148
+ radius.
149
+ .sp
150
+ The Earth\(aqs ellipsoidal figure may be selected in the same manner
151
+ as program proj \%<#\:proj> by using \fI+ellps=\fP, \fI+a=\fP, \fI+es=\fP, etc.
152
+ .sp
153
+ geod may also be used to determine intermediate points along
154
+ either a geodesic line between two points or along an arc of
155
+ specified distance from a geographic point. In both cases an
156
+ initial point must be specified with \fI+lat_1=lat\fP and \fI+lon_1=long\fP
157
+ parameters and either a terminus point \fI+lat_2=lat\fP and
158
+ \fI+lon_2=long\fP or a distance and azimuth from the initial point
159
+ with \fI+S=distance\fP and \fI+A=azimuth\fP must be specified.
160
+ .sp
161
+ If points along a geodesic are to be determined then either
162
+ \fI+n_S=integer\fP specifying the number of intermediate points
163
+ and/or \fI+del_S=distance\fP specifying the incremental distance
164
+ between points must be specified.
165
+ .sp
166
+ To determine points along an arc equidistant from the initial
167
+ point both \fI+del_A=angle\fP and \fI+n_A=integer\fP must be specified
168
+ which determine the respective angular increments and number of
169
+ points to be determined.
170
+ .SH EXAMPLES
171
+ .sp
172
+ The following script determines the geodesic azimuths and distance in U.S.
173
+ statute miles from Boston, MA, to Portland, OR:
174
+ .INDENT 0.0
175
+ .INDENT 3.5
176
+ .sp
177
+ .EX
178
+ geod +ellps=clrk66 \-I +units=us\-mi <<EOF
179
+ 42d15\(aqN 71d07\(aqW 45d31\(aqN 123d41\(aqW
180
+ EOF
181
+ .EE
182
+ .UNINDENT
183
+ .UNINDENT
184
+ .sp
185
+ which gives the results:
186
+ .INDENT 0.0
187
+ .INDENT 3.5
188
+ .sp
189
+ .EX
190
+ \-66d31\(aq50.141\(dq 75d39\(aq13.083\(dq 2587.504
191
+ .EE
192
+ .UNINDENT
193
+ .UNINDENT
194
+ .sp
195
+ where the first two values are the azimuth from Boston to Portland,
196
+ the back azimuth from Portland to Boston followed by the distance.
197
+ .sp
198
+ An example of forward geodesic use is to use the Boston location
199
+ and determine Portland\(aqs location by azimuth and distance:
200
+ .INDENT 0.0
201
+ .INDENT 3.5
202
+ .sp
203
+ .EX
204
+ geod +ellps=clrk66 +units=us\-mi <<EOF
205
+ 42d15\(aqN 71d07\(aqW \-66d31\(aq50.141\(dq 2587.504
206
+ EOF
207
+ .EE
208
+ .UNINDENT
209
+ .UNINDENT
210
+ .sp
211
+ which gives:
212
+ .INDENT 0.0
213
+ .INDENT 3.5
214
+ .sp
215
+ .EX
216
+ 45d31\(aq0.003\(dqN 123d40\(aq59.985\(dqW 75d39\(aq13.094\(dq
217
+ .EE
218
+ .UNINDENT
219
+ .UNINDENT
220
+ .sp
221
+ i.e., the latitude and longitude of Portland, and the
222
+ back azimuth from Portland to Boston.
223
+ .sp
224
+ \fBNote:\fP
225
+ .INDENT 0.0
226
+ .INDENT 3.5
227
+ Lack of precision in the distance value compromises the
228
+ precision of the Portland location.
229
+ .UNINDENT
230
+ .UNINDENT
231
+ .SH FURTHER READING
232
+ .INDENT 0.0
233
+ .IP 1. 3
234
+ GeographicLib \%<https://\:geographiclib\:.sourceforge\:.io>\&.
235
+ .IP 2. 3
236
+ C. F. F. Karney, Algorithms for Geodesics \%<https://\:doi\:.org/\:10\:.1007/\:s00190-012-0578-z>, J. Geodesy \fB87\fP(1), 43–55 (2013);
237
+ addenda \%<https://\:geographiclib\:.sourceforge\:.io/\:geod-addenda\:.html>\&.
238
+ .IP 3. 3
239
+ A geodesic bibliography \%<https://\:geographiclib\:.sourceforge\:.io/\:geodesic-papers/\:biblio\:.html>\&.
240
+ .UNINDENT
241
+ .SH SEE ALSO
242
+ .sp
243
+ \fBproj(1)\fP, \fBcs2cs(1)\fP, \fBcct(1)\fP, \fBgie(1)\fP, \fBprojinfo(1)\fP, \fBprojsync(1)\fP
244
+ .SH BUGS
245
+ .sp
246
+ A list of known bugs can be found at \%<https://\:github\:.com/\:OSGeo/\:PROJ/\:issues>
247
+ where new bug reports can be submitted to.
248
+ .SH HOME PAGE
249
+ .sp
250
+ \%<https://\:proj\:.org/>
251
+ .SH Author
252
+ Charles Karney
253
+ .SH Copyright
254
+ 1983-2026, PROJ contributors
255
+ .\" End of generated man page.