@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,832 @@
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 "PROJINFO" "1" "10 avril 2026" "9.8" "PROJ"
32
+ .SH NAME
33
+ projinfo \- Geodetic object and coordinate operation queries
34
+ .SH SYNOPSIS
35
+ .INDENT 0.0
36
+ .INDENT 3.5
37
+ .nf
38
+ \fBprojinfo\fP
39
+ .in +2
40
+ [\-o formats] [\-k crs|operation|datum|ensemble|ellipsoid] [\-\-summary] [\-q]
41
+ [[\-\-area name_or_code] | [\-\-bbox west_long,south_lat,east_long,north_lat]]
42
+ [\-\-spatial\-test contains|intersects]
43
+ [\-\-crs\-extent\-use none|both|intersection|smallest]
44
+ [\-\-grid\-check none|discard_missing|sort|known_available]
45
+ [\-\-pivot\-crs always|if_no_direct_transformation|never|{auth:code[,auth:code]*}]
46
+ [\-\-show\-superseded] [\-\-hide\-ballpark] [\-\-accuracy {accuracy}]
47
+ [\-\-allow\-ellipsoidal\-height\-as\-vertical\-crs]
48
+ [\-\-boundcrs\-to\-wgs84]
49
+ [\-\-authority name]
50
+ [\-\-main\-db\-path path] [\-\-aux\-db\-path path]*
51
+ [\-\-dump\-db\-structure]
52
+ [\-\-identify] [\-\-3d]
53
+ [\-\-output\-id AUTH:CODE]
54
+ [\-\-c\-ify] [\-\-single\-line]
55
+ \-\-searchpaths | \-\-remote\-data |
56
+ \-\-list\-crs [list\-crs\-filter] |
57
+ \-\-dump\-db\-structure [{object_definition} | {object_reference}] |
58
+ {object_definition} | {object_reference} |
59
+ (\-s {srs_def} [\-\-s_epoch {epoch}] \-t {srs_def} [\-\-t_epoch {epoch}]) |
60
+ ({srs_def} {srs_def})
61
+
62
+ .in -2
63
+ .fi
64
+ .sp
65
+ .sp
66
+ where {object_definition} or {srs_def} is one of the possibilities accepted
67
+ by \fBproj_create()\fP \%<#\:c\:.proj_create>
68
+ .INDENT 0.0
69
+ .IP \(bu 2
70
+ a proj\-string,
71
+ .IP \(bu 2
72
+ a WKT string,
73
+ .IP \(bu 2
74
+ an object code (like \(dqEPSG:4326\(dq, \(dqurn:ogc:def:crs:EPSG::4326\(dq,
75
+ \(dqurn:ogc:def:coordinateOperation:EPSG::1671\(dq),
76
+ .IP \(bu 2
77
+ an Object name. e.g \(dqWGS 84\(dq, \(dqWGS 84 / UTM zone 31N\(dq. In that case as
78
+ uniqueness is not guaranteed, heuristics are applied to determine the appropriate best match.
79
+ .IP \(bu 2
80
+ a CRS name and a coordinate epoch, separated with \(aq@\(aq. For example \(dq\%<ITRF2014@\:2025.0>\(dq. (\fIadded in 9.2\fP)
81
+ .IP \(bu 2
82
+ a OGC URN combining references for compound coordinate reference systems
83
+ (e.g \(dq\%<urn:ogc:def:crs,crs:EPSG::2393,crs:EPSG::5717>\(dq or custom abbreviated
84
+ syntax \(dqEPSG:2393+5717\(dq),
85
+ .IP \(bu 2
86
+ a OGC URN combining references for references for projected or derived CRSs
87
+ e.g. for Projected 3D CRS \(dqUTM zone 31N / WGS 84 (3D)\(dq:
88
+ \(dq\%<urn:ogc:def:crs,crs:EPSG::4979,cs:PROJ::ENh,coordinateOperation:EPSG::16031>\(dq
89
+ (\fIadded in 6.2\fP)
90
+ .IP \(bu 2
91
+ Extension of OGC URN for CoordinateMetadata.
92
+ e.g. \(dq\%<urn:ogc:def:CoordinateMetadata:NRCAN::NAD83_CSRS_1997_MTM11_HT2_1997>\(dq
93
+ .IP \(bu 2
94
+ a OGC URN combining references for concatenated operations
95
+ (e.g. \(dq\%<urn:ogc:def:coordinateOperation,coordinateOperation:EPSG::3895,coordinateOperation:EPSG::1618>\(dq)
96
+ .IP \(bu 2
97
+ a PROJJSON string. The jsonschema is at \%<https://\:proj\:.org/\:schemas/\:v0\:.4/\:projjson\:.schema\:.json> (\fIadded in 6.2\fP)
98
+ .IP \(bu 2
99
+ a compound CRS made from two object names separated with \(dq + \(dq. e.g. \(dqWGS 84 + EGM96 height\(dq (\fIadded in 7.1\fP)
100
+ .UNINDENT
101
+ .sp
102
+ {object_reference} is a filename preceded by the \(aq@\(aq character. The
103
+ file referenced by the {object_reference} must contain a valid
104
+ {object_definition}.
105
+ .sp
106
+ The usage of \(dq{srs_def} {srs_def}\(dq is equivalent to \(dq\-s {srs_def} \-t {srs_def}\(dq (\fIadded in 9.5\fP).
107
+ .UNINDENT
108
+ .UNINDENT
109
+ .SH DESCRIPTION
110
+ .sp
111
+ projinfo is a program that can query information on a geodetic object,
112
+ coordinate reference system (CRS) or coordinate operation, when the \fB\-s\fP and \fB\-t\fP
113
+ options are specified, and display it under different formats (PROJ string, WKT string
114
+ or PROJJSON string).
115
+ .sp
116
+ It can also be used to query coordinate operations available between two CRS.
117
+ .sp
118
+ The program is named with some reference to the GDAL gdalsrsinfo \%<https://\:gdal\:.org/\:programs/\:gdalsrsinfo\:.html> utility that offers
119
+ partly similar services.
120
+ .sp
121
+ The following control parameters can appear in any order:
122
+ .INDENT 0.0
123
+ .TP
124
+ .B \-o formats
125
+ formats is a comma separated combination of:
126
+ \fBall\fP, \fBdefault\fP, \fBPROJ\fP, \fBWKT_ALL\fP, \fBWKT2:2015\fP, \fBWKT2:2019\fP, \fBWKT1:GDAL\fP, \fBWKT1:ESRI\fP, \fBPROJJSON\fP, \fBSQL\fP\&.
127
+ .sp
128
+ Except \fBall\fP and \fBdefault\fP, other formats can be preceded by \fB\-\fP to disable them.
129
+ .sp
130
+ \fBNote:\fP
131
+ .INDENT 7.0
132
+ .INDENT 3.5
133
+ WKT2_2019 was previously called WKT2_2018.
134
+ .UNINDENT
135
+ .UNINDENT
136
+ .sp
137
+ \fBNote:\fP
138
+ .INDENT 7.0
139
+ .INDENT 3.5
140
+ Before PROJ 6.3.0, WKT1:GDAL was implicitly calling \-\-boundcrs\-to\-wgs84.
141
+ This is no longer the case.
142
+ .UNINDENT
143
+ .UNINDENT
144
+ .sp
145
+ \fBNote:\fP
146
+ .INDENT 7.0
147
+ .INDENT 3.5
148
+ When SQL is specified, \fB\-\-output\-id\fP must be specified.
149
+ .UNINDENT
150
+ .UNINDENT
151
+ .UNINDENT
152
+ .INDENT 0.0
153
+ .TP
154
+ .B \-k crs|operation|datum|ensemble|ellipsoid
155
+ When used to query a single object with a AUTHORITY:CODE, determines the (k)ind of the object
156
+ in case there are CRS, coordinate operations or ellipsoids with the same CODE.
157
+ The default is crs.
158
+ .UNINDENT
159
+ .INDENT 0.0
160
+ .TP
161
+ .B \-\-summary
162
+ When listing coordinate operations available between 2 CRS, return the
163
+ result in a summary format, mentioning only the name of the coordinate
164
+ operation, its accuracy and its area of use.
165
+ .sp
166
+ \fBNote:\fP
167
+ .INDENT 7.0
168
+ .INDENT 3.5
169
+ only used for coordinate operation computation
170
+ .UNINDENT
171
+ .UNINDENT
172
+ .UNINDENT
173
+ .INDENT 0.0
174
+ .TP
175
+ .B \-q
176
+ Turn on quiet mode. Quiet mode is only available for queries on single objects,
177
+ and only one output format is selected. In that mode, only the PROJ, WKT or PROJJSON
178
+ string is displayed, without other introduction output. The output is then
179
+ potentially compatible of being piped in other utilities.
180
+ .UNINDENT
181
+ .INDENT 0.0
182
+ .TP
183
+ .B \-\-area name_or_code
184
+ Specify an area of interest to restrict the results when researching
185
+ coordinate operations between 2 CRS. The area of interest can be specified either
186
+ as a name (e.g \(dqDenmark \- onshore\(dq) or a AUTHORITY:CODE (EPSG:3237)
187
+ This option is exclusive of \fB\-\-bbox\fP\&.
188
+ .sp
189
+ \fBNote:\fP
190
+ .INDENT 7.0
191
+ .INDENT 3.5
192
+ only used for coordinate operation computation
193
+ .UNINDENT
194
+ .UNINDENT
195
+ .UNINDENT
196
+ .INDENT 0.0
197
+ .TP
198
+ .B \-\-bbox west_long,south_lat,east_long,north_lat
199
+ Specify an area of interest to restrict the results when researching
200
+ coordinate operations between 2 CRS. The area of interest is specified as a
201
+ bounding box with geographic coordinates, expressed in degrees in a
202
+ unspecified geographic CRS.
203
+ \fIwest_long\fP and \fIeast_long\fP should be in the [\-180,180] range, and
204
+ \fIsouth_lat\fP and \fInorth_lat\fP in the [\-90,90]. \fIwest_long\fP is generally lower than
205
+ \fIeast_long\fP, except in the case where the area of interest crosses the antimeridian.
206
+ .sp
207
+ \fBNote:\fP
208
+ .INDENT 7.0
209
+ .INDENT 3.5
210
+ only used for coordinate operation computation
211
+ .UNINDENT
212
+ .UNINDENT
213
+ .UNINDENT
214
+ .INDENT 0.0
215
+ .TP
216
+ .B \-\-spatial\-test contains|intersects
217
+ Specify how the area of use of coordinate operations found in the database
218
+ are compared to the area of use specified explicitly with \fB\-\-area\fP or \fB\-\-bbox\fP,
219
+ or derived implicitly from the area of use of the source and target CRS.
220
+ By default, projinfo will only keep coordinate operations whose are of use
221
+ is strictly within the area of interest (\fBcontains\fP strategy).
222
+ If using the \fBintersects\fP strategy, the spatial test is relaxed, and any
223
+ coordinate operation whose area of use at least partly intersects the
224
+ area of interest is listed.
225
+ .sp
226
+ \fBNote:\fP
227
+ .INDENT 7.0
228
+ .INDENT 3.5
229
+ only used for coordinate operation computation
230
+ .UNINDENT
231
+ .UNINDENT
232
+ .UNINDENT
233
+ .INDENT 0.0
234
+ .TP
235
+ .B \-\-crs\-extent\-use none|both|intersection|smallest
236
+ Specify which area of interest to consider when no explicit one is specified
237
+ with \fB\-\-area\fP or \fB\-\-bbox\fP options.
238
+ By default (\fBsmallest\fP strategy), the area of
239
+ use of the source or target CRS will be looked, and the one that is the
240
+ smallest one in terms of area will be used as the area of interest.
241
+ If using \fBnone\fP, no area of interest is used.
242
+ If using \fBboth\fP, only coordinate operations that relate (contain or intersect
243
+ depending of the \fB\-\-spatial\-test\fP strategy) to the area of use of both CRS
244
+ are selected.
245
+ If using \fBintersection\fP, the area of interest is the intersection of the
246
+ bounding box of the area of use of the source and target CRS
247
+ .sp
248
+ \fBNote:\fP
249
+ .INDENT 7.0
250
+ .INDENT 3.5
251
+ only used for coordinate operation computation
252
+ .UNINDENT
253
+ .UNINDENT
254
+ .UNINDENT
255
+ .INDENT 0.0
256
+ .TP
257
+ .B \-\-grid\-check none|discard_missing|sort|known_available
258
+ Specify how the presence or absence of a horizontal or vertical shift grid
259
+ required for a coordinate operation affects the results returned when
260
+ researching coordinate operations between 2 CRS.
261
+ The default strategy is \fBsort\fP (if \fBPROJ_NETWORK\fP \%<#\:envvar-PROJ_NETWORK> is not defined).
262
+ In that case, all candidate
263
+ operations are returned, but the actual availability of the grids is used
264
+ to determine the sorting order. That is, if a coordinate operation involves
265
+ using a grid that is not available in the PROJ resource directories
266
+ (determined by the \fBPROJ_DATA\fP \%<#\:envvar-PROJ_DATA> environment variable), it will be listed in
267
+ the bottom of the results.
268
+ The \fBnone\fP strategy completely disables the checks of presence of grids and
269
+ this returns the results as if all the grids where available.
270
+ The \fBdiscard_missing\fP strategy discards results that involve grids not
271
+ present in the PROJ resource directories.
272
+ The \fBknown_available\fP strategy discards results that involve grids not
273
+ present in the PROJ resource directories and that are not known of the CDN.
274
+ This is the default strategy is \fBPROJ_NETWORK\fP \%<#\:envvar-PROJ_NETWORK> is set to \fBON\fP\&.
275
+ .sp
276
+ \fBNote:\fP
277
+ .INDENT 7.0
278
+ .INDENT 3.5
279
+ only used for coordinate operation computation
280
+ .UNINDENT
281
+ .UNINDENT
282
+ .UNINDENT
283
+ .INDENT 0.0
284
+ .TP
285
+ .B \-\-pivot\-crs always|if_no_direct_transformation|never|{auth:code[,auth:code]*}
286
+ Determine if intermediate (pivot) CRS can be used when researching coordinate
287
+ operation between 2 CRS. A typical example is the WGS84 pivot. By default,
288
+ projinfo will consider any potential pivot if there is no direct transformation
289
+ ( \fBif_no_direct_transformation\fP). If using the \fBnever\fP strategy,
290
+ only direct transformations between the source and target CRS will be
291
+ used. If using the \fBalways\fP strategy, intermediate CRS will be considered
292
+ even if there are direct transformations.
293
+ It is also possible to restrict the pivot CRS to consider by specifying
294
+ one or several CRS by their AUTHORITY:CODE.
295
+ .sp
296
+ \fBNote:\fP
297
+ .INDENT 7.0
298
+ .INDENT 3.5
299
+ only used for coordinate operation computation
300
+ .UNINDENT
301
+ .UNINDENT
302
+ .UNINDENT
303
+ .INDENT 0.0
304
+ .TP
305
+ .B \-\-show\-superseded
306
+ When enabled, coordinate operations that are superseded by others will be
307
+ listed. Note that supersession is not equivalent to deprecation: superseded
308
+ operations are still considered valid although they have a better equivalent,
309
+ whereas deprecated operations have been determined to be erroneous and are
310
+ not considered at all.
311
+ .sp
312
+ \fBNote:\fP
313
+ .INDENT 7.0
314
+ .INDENT 3.5
315
+ only used for coordinate operation computation
316
+ .UNINDENT
317
+ .UNINDENT
318
+ .UNINDENT
319
+ .INDENT 0.0
320
+ .TP
321
+ .B \-\-hide\-ballpark
322
+ Added in version 7.1.
323
+
324
+ .sp
325
+ Hides any coordinate operation that is, or contains, a
326
+ Ballpark transformation \%<#\:term-Ballpark-transformation>
327
+ .sp
328
+ \fBNote:\fP
329
+ .INDENT 7.0
330
+ .INDENT 3.5
331
+ only used for coordinate operation computation
332
+ .UNINDENT
333
+ .UNINDENT
334
+ .UNINDENT
335
+ .INDENT 0.0
336
+ .TP
337
+ .B \-\-accuracy {accuracy}
338
+ Added in version 8.0.
339
+
340
+ .sp
341
+ Sets the minimum desired accuracy for returned coordinate operations.
342
+ .sp
343
+ \fBNote:\fP
344
+ .INDENT 7.0
345
+ .INDENT 3.5
346
+ only used for coordinate operation computation
347
+ .UNINDENT
348
+ .UNINDENT
349
+ .UNINDENT
350
+ .INDENT 0.0
351
+ .TP
352
+ .B \-\-allow\-ellipsoidal\-height\-as\-vertical\-crs
353
+ Added in version 8.0.
354
+
355
+ .sp
356
+ Allows exporting a geographic or projected 3D CRS as a compound CRS whose
357
+ vertical CRS represents the ellipsoidal height.
358
+ .sp
359
+ \fBNote:\fP
360
+ .INDENT 7.0
361
+ .INDENT 3.5
362
+ only used for CRS, and with WKT1:GDAL output format
363
+ .UNINDENT
364
+ .UNINDENT
365
+ .UNINDENT
366
+ .INDENT 0.0
367
+ .TP
368
+ .B \-\-boundcrs\-to\-wgs84
369
+ When specified, this option researches a coordinate operation from the
370
+ base geographic CRS of the single CRS, source or target CRS to the WGS84
371
+ geographic CRS, and if found, wraps those CRS into a BoundCRS object.
372
+ This is mostly to be used for early\-binding approaches.
373
+ .UNINDENT
374
+ .INDENT 0.0
375
+ .TP
376
+ .B \-\-authority name
377
+ Specify the name of the authority into which to restrict looks up for
378
+ objects, when specifying an object by name or when coordinate operations are
379
+ computed. The default is to allow all authorities.
380
+ .sp
381
+ When used with SQL output, this restricts the authorities to which intermediate
382
+ objects can belong to (the default is EPSG and PROJ). Note that the authority
383
+ of the \fB\-\-output\-id\fP option will also be implicitly added.
384
+ .UNINDENT
385
+ .INDENT 0.0
386
+ .TP
387
+ .B \-\-main\-db\-path path
388
+ Specify the name and path of the database to be used by projinfo\&.
389
+ The default is \fBproj.db\fP in the PROJ resource directories.
390
+ .UNINDENT
391
+ .INDENT 0.0
392
+ .TP
393
+ .B \-\-aux\-db\-path path
394
+ Specify the name and path of auxiliary databases, that are to be combined
395
+ with the main database. Those auxiliary databases must have a table
396
+ structure that is identical to the main database, but can be partly filled
397
+ and their entries can refer to entries of the main database.
398
+ The option may be repeated to specify several auxiliary databases.
399
+ .UNINDENT
400
+ .INDENT 0.0
401
+ .TP
402
+ .B \-\-identify
403
+ When used with an object definition, this queries the PROJ database to find
404
+ known objects, typically CRS, that are close or identical to the object.
405
+ Each candidate object is associated with an approximate likelihood percentage.
406
+ This is useful when used with a WKT string that lacks a EPSG identifier,
407
+ such as ESRI WKT1. This might also be used with PROJ strings.
408
+ For example, \fI+proj=utm +zone=31 +datum=WGS84 +type=crs\fP will be identified
409
+ with a likelihood of 70% to EPSG:32631
410
+ .UNINDENT
411
+ .INDENT 0.0
412
+ .TP
413
+ .B \-\-dump\-db\-structure
414
+ Added in version 8.1.
415
+
416
+ .sp
417
+ Outputs the sequence of SQL statements to create a new empty valid auxiliary
418
+ database. This option can be specified as the only switch of the utility.
419
+ If also specifying a CRS object and the \fB\-\-output\-id\fP option, the
420
+ definition of the object as SQL statements will be appended.
421
+ .UNINDENT
422
+ .INDENT 0.0
423
+ .TP
424
+ .B \-\-list\-crs [list\-crs\-filter]
425
+ Added in version 8.1.
426
+
427
+ .sp
428
+ Outputs a list (authority name:code and CRS name) of the filtered CRSs from the database.
429
+ If no filter is provided all authority names and types of non deprecated CRSs are dumped.
430
+ list\-crs\-filter is a comma separated combination of: allow_deprecated,geodetic,geocentric,
431
+ geographic,geographic_2d,geographic_3d,vertical,projected,compound.
432
+ Affected by options \fB\-\-authority\fP, \fB\-\-area\fP, \fB\-\-bbox\fP and \fB\-\-spatial\-test\fP
433
+ .sp
434
+ A visual alternative is the webpage
435
+ CRS Explorer \%<https://\:crs-explorer\:.proj\:.org/?\:all=true> .
436
+ .UNINDENT
437
+ .INDENT 0.0
438
+ .TP
439
+ .B \-\-3d
440
+ Added in version 6.3.
441
+
442
+ .sp
443
+ \(dqPromote\(dq 2D CRS(s) to their 3D version, where the vertical axis is the
444
+ ellipsoidal height in metres, using the ellipsoid of the base geodetic CRS.
445
+ Depending on PROJ versions and the exact nature of the CRS involved,
446
+ especially before PROJ 9.1, a mix of 2D and 3D CRS could lead to 2D or 3D
447
+ transformations. Starting with PROJ 9.1, both CRS need to be 3D for vertical
448
+ transformation to possibly happen.
449
+ .UNINDENT
450
+ .INDENT 0.0
451
+ .TP
452
+ .B \-\-output\-id=AUTH:NAME
453
+ Added in version 8.1.
454
+
455
+ .sp
456
+ Identifier to assign to the object (for SQL output).
457
+ .sp
458
+ It is strongly recommended that new objects should not be added in common
459
+ registries, such as \fBEPSG\fP, \fBESRI\fP, \fBIAU\fP, etc.
460
+ Users should use a custom authority name instead. If a new object should be
461
+ added to the official EPSG registry, users are invited to follow the
462
+ procedure explained at \%<https://\:epsg\:.org/\:dataset-change-requests\:.html>\&.
463
+ .sp
464
+ Combined with \fB\-\-dump\-db\-structure\fP, users can create
465
+ auxiliary databases, instead of directly modifying the main \fBproj.db\fP database.
466
+ See the example how to export to an auxiliary database\&.
467
+ .sp
468
+ Those auxiliary databases can be specified through
469
+ \fBproj_context_set_database_path()\fP or the \fBPROJ_AUX_DB\fP \%<#\:envvar-PROJ_AUX_DB>
470
+ environment variable.
471
+ .UNINDENT
472
+ .INDENT 0.0
473
+ .TP
474
+ .B \-\-c\-ify
475
+ For developers only. Modify the string output of the utility so that it
476
+ is easy to put those strings in C/C++ code
477
+ .UNINDENT
478
+ .INDENT 0.0
479
+ .TP
480
+ .B \-\-single\-line
481
+ Output PROJ, WKT or PROJJSON strings on a single line, instead of multiple
482
+ indented lines by default.
483
+ .UNINDENT
484
+ .INDENT 0.0
485
+ .TP
486
+ .B \-\-searchpaths
487
+ Added in version 7.0.
488
+
489
+ .sp
490
+ Output the directories into which PROJ resources will be looked for
491
+ (if not using C API such as \fBproj_context_set_search_paths()\fP
492
+ that will override them.
493
+ .UNINDENT
494
+ .INDENT 0.0
495
+ .TP
496
+ .B \-\-remote\-data
497
+ Added in version 7.0.
498
+
499
+ .sp
500
+ Display information regarding if Network capabilities \%<#\:network> is enabled, and the
501
+ related URL.
502
+ .UNINDENT
503
+ .INDENT 0.0
504
+ .TP
505
+ .B \-\-s_epoch
506
+ Added in version 9.4.
507
+
508
+ .sp
509
+ Epoch of coordinates in the source CRS, as decimal year.
510
+ Only applies to a dynamic CRS.
511
+ .UNINDENT
512
+ .INDENT 0.0
513
+ .TP
514
+ .B \-\-t_epoch
515
+ Added in version 9.4.
516
+
517
+ .sp
518
+ Epoch of coordinates in the target CRS, as decimal year.
519
+ Only applies to a dynamic CRS.
520
+ .UNINDENT
521
+ .SH EXAMPLES
522
+ .INDENT 0.0
523
+ .IP 1. 3
524
+ Query the CRS object corresponding to EPSG:4326
525
+ .UNINDENT
526
+ .INDENT 0.0
527
+ .INDENT 3.5
528
+ .sp
529
+ .EX
530
+ projinfo EPSG:4326
531
+ .EE
532
+ .UNINDENT
533
+ .UNINDENT
534
+ .sp
535
+ Output:
536
+ .INDENT 0.0
537
+ .INDENT 3.5
538
+ .sp
539
+ .EX
540
+ PROJ.4 string:
541
+ +proj=longlat +datum=WGS84 +no_defs +type=crs
542
+
543
+ WKT2:2019 string:
544
+ GEOGCRS[\(dqWGS 84\(dq,
545
+ DATUM[\(dqWorld Geodetic System 1984\(dq,
546
+ ELLIPSOID[\(dqWGS 84\(dq,6378137,298.257223563,
547
+ LENGTHUNIT[\(dqmetre\(dq,1]]],
548
+ PRIMEM[\(dqGreenwich\(dq,0,
549
+ ANGLEUNIT[\(dqdegree\(dq,0.0174532925199433]],
550
+ CS[ellipsoidal,2],
551
+ AXIS[\(dqgeodetic latitude (Lat)\(dq,north,
552
+ ORDER[1],
553
+ ANGLEUNIT[\(dqdegree\(dq,0.0174532925199433]],
554
+ AXIS[\(dqgeodetic longitude (Lon)\(dq,east,
555
+ ORDER[2],
556
+ ANGLEUNIT[\(dqdegree\(dq,0.0174532925199433]],
557
+ USAGE[
558
+ SCOPE[\(dqunknown\(dq],
559
+ AREA[\(dqWorld\(dq],
560
+ BBOX[\-90,\-180,90,180]],
561
+ ID[\(dqEPSG\(dq,4326]]
562
+ .EE
563
+ .UNINDENT
564
+ .UNINDENT
565
+ .INDENT 0.0
566
+ .IP 2. 3
567
+ List the coordinate operations between NAD27 (designed with its CRS name)
568
+ and NAD83 (designed with its EPSG code 4269) within an area of interest
569
+ .UNINDENT
570
+ .INDENT 0.0
571
+ .INDENT 3.5
572
+ .sp
573
+ .EX
574
+ projinfo \-s NAD27 \-t EPSG:4269 \-\-area \(dqUSA \- Missouri\(dq
575
+ .EE
576
+ .UNINDENT
577
+ .UNINDENT
578
+ .sp
579
+ Output:
580
+ .INDENT 0.0
581
+ .INDENT 3.5
582
+ .sp
583
+ .EX
584
+ DERIVED_FROM(EPSG):1241, NAD27 to NAD83 (1), 0.15 m, USA \- CONUS including EEZ
585
+
586
+ PROJ string:
587
+ +proj=pipeline +step +proj=axisswap +order=2,1 +step +proj=unitconvert \e
588
+ +xy_in=deg +xy_out=rad +step +proj=hgridshift +grids=conus \e
589
+ +step +proj=unitconvert +xy_in=rad +xy_out=deg +step +proj=axisswap +order=2,1
590
+
591
+ WKT2:2019 string:
592
+ COORDINATEOPERATION[\(dqNAD27 to NAD83 (1)\(dq,
593
+ SOURCECRS[
594
+ GEOGCRS[\(dqNAD27\(dq,
595
+ DATUM[\(dqNorth American Datum 1927\(dq,
596
+ ELLIPSOID[\(dqClarke 1866\(dq,6378206.4,294.978698213898,
597
+ LENGTHUNIT[\(dqmetre\(dq,1]]],
598
+ PRIMEM[\(dqGreenwich\(dq,0,
599
+ ANGLEUNIT[\(dqdegree\(dq,0.0174532925199433]],
600
+ CS[ellipsoidal,2],
601
+ AXIS[\(dqgeodetic latitude (Lat)\(dq,north,
602
+ ORDER[1],
603
+ ANGLEUNIT[\(dqdegree\(dq,0.0174532925199433]],
604
+ AXIS[\(dqgeodetic longitude (Lon)\(dq,east,
605
+ ORDER[2],
606
+ ANGLEUNIT[\(dqdegree\(dq,0.0174532925199433]]]],
607
+ TARGETCRS[
608
+ GEOGCRS[\(dqNAD83\(dq,
609
+ DATUM[\(dqNorth American Datum 1983\(dq,
610
+ ELLIPSOID[\(dqGRS 1980\(dq,6378137,298.257222101,
611
+ LENGTHUNIT[\(dqmetre\(dq,1]]],
612
+ PRIMEM[\(dqGreenwich\(dq,0,
613
+ ANGLEUNIT[\(dqdegree\(dq,0.0174532925199433]],
614
+ CS[ellipsoidal,2],
615
+ AXIS[\(dqgeodetic latitude (Lat)\(dq,north,
616
+ ORDER[1],
617
+ ANGLEUNIT[\(dqdegree\(dq,0.0174532925199433]],
618
+ AXIS[\(dqgeodetic longitude (Lon)\(dq,east,
619
+ ORDER[2],
620
+ ANGLEUNIT[\(dqdegree\(dq,0.0174532925199433]]]],
621
+ METHOD[\(dqCTABLE2\(dq],
622
+ PARAMETERFILE[\(dqLatitude and longitude difference file\(dq,\(dqconus\(dq],
623
+ OPERATIONACCURACY[0.15],
624
+ USAGE[
625
+ SCOPE[\(dqunknown\(dq],
626
+ AREA[\(dqUSA \- CONUS including EEZ\(dq],
627
+ BBOX[23.81,\-129.17,49.38,\-65.69]],
628
+ ID[\(dqDERIVED_FROM(EPSG)\(dq,1241]]
629
+ .EE
630
+ .UNINDENT
631
+ .UNINDENT
632
+ .INDENT 0.0
633
+ .IP 3. 3
634
+ Export an object as a PROJJSON string
635
+ .UNINDENT
636
+ .INDENT 0.0
637
+ .INDENT 3.5
638
+ .sp
639
+ .EX
640
+ projinfo GDA94 \-o PROJJSON \-q
641
+ .EE
642
+ .UNINDENT
643
+ .UNINDENT
644
+ .sp
645
+ Output:
646
+ .INDENT 0.0
647
+ .INDENT 3.5
648
+ .sp
649
+ .EX
650
+ {
651
+ \(dqtype\(dq: \(dqGeographicCRS\(dq,
652
+ \(dqname\(dq: \(dqGDA94\(dq,
653
+ \(dqdatum\(dq: {
654
+ \(dqtype\(dq: \(dqGeodeticReferenceFrame\(dq,
655
+ \(dqname\(dq: \(dqGeocentric Datum of Australia 1994\(dq,
656
+ \(dqellipsoid\(dq: {
657
+ \(dqname\(dq: \(dqGRS 1980\(dq,
658
+ \(dqsemi_major_axis\(dq: 6378137,
659
+ \(dqinverse_flattening\(dq: 298.257222101
660
+ }
661
+ },
662
+ \(dqcoordinate_system\(dq: {
663
+ \(dqsubtype\(dq: \(dqellipsoidal\(dq,
664
+ \(dqaxis\(dq: [
665
+ {
666
+ \(dqname\(dq: \(dqGeodetic latitude\(dq,
667
+ \(dqabbreviation\(dq: \(dqLat\(dq,
668
+ \(dqdirection\(dq: \(dqnorth\(dq,
669
+ \(dqunit\(dq: \(dqdegree\(dq
670
+ },
671
+ {
672
+ \(dqname\(dq: \(dqGeodetic longitude\(dq,
673
+ \(dqabbreviation\(dq: \(dqLon\(dq,
674
+ \(dqdirection\(dq: \(dqeast\(dq,
675
+ \(dqunit\(dq: \(dqdegree\(dq
676
+ }
677
+ ]
678
+ },
679
+ \(dqarea\(dq: \(dqAustralia \- GDA\(dq,
680
+ \(dqbbox\(dq: {
681
+ \(dqsouth_latitude\(dq: \-60.56,
682
+ \(dqwest_longitude\(dq: 93.41,
683
+ \(dqnorth_latitude\(dq: \-8.47,
684
+ \(dqeast_longitude\(dq: 173.35
685
+ },
686
+ \(dqid\(dq: {
687
+ \(dqauthority\(dq: \(dqEPSG\(dq,
688
+ \(dqcode\(dq: 4283
689
+ }
690
+ }
691
+ .EE
692
+ .UNINDENT
693
+ .UNINDENT
694
+ .INDENT 0.0
695
+ .IP 4. 3
696
+ Exporting the SQL statements to insert a new CRS in an auxiliary database.
697
+ .UNINDENT
698
+ .INDENT 0.0
699
+ .INDENT 3.5
700
+ .sp
701
+ .EX
702
+ # Get the SQL statements for a custom CRS
703
+ projinfo \(dq+proj=merc +lat_ts=5 +datum=WGS84 +type=crs +title=my_crs\(dq \-\-output\-id HOBU:MY_CRS \-o SQL \-q > my_crs.sql
704
+ cat my_crs.sql
705
+
706
+ # Initialize an auxiliary database with the schema of the reference database
707
+ echo \(dq.schema\(dq | sqlite3 /path/to/proj.db | sqlite3 aux.db
708
+
709
+ # Append the content of the definition of HOBU:MY_CRS
710
+ sqlite3 aux.db < my_crs.db
711
+
712
+ # Check that everything works OK
713
+ projinfo \-\-aux\-db\-path aux.db HOBU:MY_CRS
714
+ .EE
715
+ .UNINDENT
716
+ .UNINDENT
717
+ .sp
718
+ or more simply:
719
+ .INDENT 0.0
720
+ .INDENT 3.5
721
+ .sp
722
+ .EX
723
+ # Create an auxiliary database with the definition of a custom CRS.
724
+ projinfo \(dq+proj=merc +lat_ts=5 +datum=WGS84 +type=crs +title=my_crs\(dq \-\-output\-id HOBU:MY_CRS \-\-dump\-db\-structure | sqlite3 aux.db
725
+
726
+ # Check that everything works OK
727
+ projinfo \-\-aux\-db\-path aux.db HOBU:MY_CRS
728
+ .EE
729
+ .UNINDENT
730
+ .UNINDENT
731
+ .sp
732
+ Output:
733
+ .INDENT 0.0
734
+ .INDENT 3.5
735
+ .sp
736
+ .EX
737
+ INSERT INTO geodetic_crs VALUES(\(aqHOBU\(aq,\(aqGEODETIC_CRS_MY_CRS\(aq,\(aqunknown\(aq,\(aq\(aq,\(aqgeographic 2D\(aq,\(aqEPSG\(aq,\(aq6424\(aq,\(aqEPSG\(aq,\(aq6326\(aq,NULL,0);
738
+ INSERT INTO usage VALUES(\(aqHOBU\(aq,\(aqUSAGE_GEODETIC_CRS_MY_CRS\(aq,\(aqgeodetic_crs\(aq,\(aqHOBU\(aq,\(aqGEODETIC_CRS_MY_CRS\(aq,\(aqPROJ\(aq,\(aqEXTENT_UNKNOWN\(aq,\(aqPROJ\(aq,\(aqSCOPE_UNKNOWN\(aq);
739
+ INSERT INTO conversion VALUES(\(aqHOBU\(aq,\(aqCONVERSION_MY_CRS\(aq,\(aqunknown\(aq,\(aq\(aq,\(aqEPSG\(aq,\(aq9805\(aq,\(aqMercator (variant B)\(aq,\(aqEPSG\(aq,\(aq8823\(aq,\(aqLatitude of 1st standard parallel\(aq,5,\(aqEPSG\(aq,\(aq9122\(aq,\(aqEPSG\(aq,\(aq8802\(aq,\(aqLongitude of natural origin\(aq,0,\(aqEPSG\(aq,\(aq9122\(aq,\(aqEPSG\(aq,\(aq8806\(aq,\(aqFalse easting\(aq,0,\(aqEPSG\(aq,\(aq9001\(aq,\(aqEPSG\(aq,\(aq8807\(aq,\(aqFalse northing\(aq,0,\(aqEPSG\(aq,\(aq9001\(aq,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0);
740
+ INSERT INTO usage VALUES(\(aqHOBU\(aq,\(aqUSAGE_CONVERSION_MY_CRS\(aq,\(aqconversion\(aq,\(aqHOBU\(aq,\(aqCONVERSION_MY_CRS\(aq,\(aqPROJ\(aq,\(aqEXTENT_UNKNOWN\(aq,\(aqPROJ\(aq,\(aqSCOPE_UNKNOWN\(aq);
741
+ INSERT INTO projected_crs VALUES(\(aqHOBU\(aq,\(aqMY_CRS\(aq,\(aqmy_crs\(aq,\(aq\(aq,\(aqEPSG\(aq,\(aq4400\(aq,\(aqHOBU\(aq,\(aqGEODETIC_CRS_MY_CRS\(aq,\(aqHOBU\(aq,\(aqCONVERSION_MY_CRS\(aq,NULL,0);
742
+ INSERT INTO usage VALUES(\(aqHOBU\(aq,\(aqUSAGE_PROJECTED_CRS_MY_CRS\(aq,\(aqprojected_crs\(aq,\(aqHOBU\(aq,\(aqMY_CRS\(aq,\(aqPROJ\(aq,\(aqEXTENT_UNKNOWN\(aq,\(aqPROJ\(aq,\(aqSCOPE_UNKNOWN\(aq);
743
+ .EE
744
+ .UNINDENT
745
+ .UNINDENT
746
+ .INDENT 0.0
747
+ .INDENT 3.5
748
+ .sp
749
+ .EX
750
+ PROJ.4 string:
751
+ +proj=merc +lat_ts=5 +lon_0=0 +x_0=0 +y_0=0 +datum=WGS84 +units=m +no_defs +type=crs
752
+
753
+ WKT2:2019 string:
754
+ PROJCRS[\(dqmy_crs\(dq,
755
+ BASEGEOGCRS[\(dqunknown\(dq,
756
+ ENSEMBLE[\(dqWorld Geodetic System 1984 ensemble\(dq,
757
+ MEMBER[\(dqWorld Geodetic System 1984 (Transit)\(dq],
758
+ MEMBER[\(dqWorld Geodetic System 1984 (G730)\(dq],
759
+ MEMBER[\(dqWorld Geodetic System 1984 (G873)\(dq],
760
+ MEMBER[\(dqWorld Geodetic System 1984 (G1150)\(dq],
761
+ MEMBER[\(dqWorld Geodetic System 1984 (G1674)\(dq],
762
+ MEMBER[\(dqWorld Geodetic System 1984 (G1762)\(dq],
763
+ ELLIPSOID[\(dqWGS 84\(dq,6378137,298.257223563,
764
+ LENGTHUNIT[\(dqmetre\(dq,1]],
765
+ ENSEMBLEACCURACY[2.0]],
766
+ PRIMEM[\(dqGreenwich\(dq,0,
767
+ ANGLEUNIT[\(dqdegree\(dq,0.0174532925199433]],
768
+ ID[\(dqHOBU\(dq,\(dqGEODETIC_CRS_MY_CRS\(dq]],
769
+ CONVERSION[\(dqunknown\(dq,
770
+ METHOD[\(dqMercator (variant B)\(dq,
771
+ ID[\(dqEPSG\(dq,9805]],
772
+ PARAMETER[\(dqLatitude of 1st standard parallel\(dq,5,
773
+ ANGLEUNIT[\(dqdegree\(dq,0.0174532925199433],
774
+ ID[\(dqEPSG\(dq,8823]],
775
+ PARAMETER[\(dqLongitude of natural origin\(dq,0,
776
+ ANGLEUNIT[\(dqdegree\(dq,0.0174532925199433],
777
+ ID[\(dqEPSG\(dq,8802]],
778
+ PARAMETER[\(dqFalse easting\(dq,0,
779
+ LENGTHUNIT[\(dqmetre\(dq,1],
780
+ ID[\(dqEPSG\(dq,8806]],
781
+ PARAMETER[\(dqFalse northing\(dq,0,
782
+ LENGTHUNIT[\(dqmetre\(dq,1],
783
+ ID[\(dqEPSG\(dq,8807]]],
784
+ CS[Cartesian,2],
785
+ AXIS[\(dq(E)\(dq,east,
786
+ ORDER[1],
787
+ LENGTHUNIT[\(dqmetre\(dq,1]],
788
+ AXIS[\(dq(N)\(dq,north,
789
+ ORDER[2],
790
+ LENGTHUNIT[\(dqmetre\(dq,1]],
791
+ ID[\(dqHOBU\(dq,\(dqMY_CRS\(dq]]
792
+ .EE
793
+ .UNINDENT
794
+ .UNINDENT
795
+ .INDENT 0.0
796
+ .IP 5. 3
797
+ Get the WKT representation of EPSG:25832 in the WKT1:GDAL output format and on a single line
798
+ .UNINDENT
799
+ .INDENT 0.0
800
+ .INDENT 3.5
801
+ .sp
802
+ .EX
803
+ projinfo \-o WKT1:GDAL \-\-single\-line EPSG:25832
804
+ .EE
805
+ .UNINDENT
806
+ .UNINDENT
807
+ .sp
808
+ Output:
809
+ .INDENT 0.0
810
+ .INDENT 3.5
811
+ .sp
812
+ .EX
813
+ WKT1:GDAL string:
814
+ PROJCS[\(dqETRS89 / UTM zone 32N\(dq,GEOGCS[\(dqETRS89\(dq,DATUM[\(dqEuropean_Terrestrial_Reference_System_1989\(dq,SPHEROID[\(dqGRS 1980\(dq,6378137,298.257222101,AUTHORITY[\(dqEPSG\(dq,\(dq7019\(dq]],AUTHORITY[\(dqEPSG\(dq,\(dq6258\(dq]],PRIMEM[\(dqGreenwich\(dq,0,AUTHORITY[\(dqEPSG\(dq,\(dq8901\(dq]],UNIT[\(dqdegree\(dq,0.0174532925199433,AUTHORITY[\(dqEPSG\(dq,\(dq9122\(dq]],AUTHORITY[\(dqEPSG\(dq,\(dq4258\(dq]],PROJECTION[\(dqTransverse_Mercator\(dq],PARAMETER[\(dqlatitude_of_origin\(dq,0],PARAMETER[\(dqcentral_meridian\(dq,9],PARAMETER[\(dqscale_factor\(dq,0.9996],PARAMETER[\(dqfalse_easting\(dq,500000],PARAMETER[\(dqfalse_northing\(dq,0],UNIT[\(dqmetre\(dq,1,AUTHORITY[\(dqEPSG\(dq,\(dq9001\(dq]],AXIS[\(dqEasting\(dq,EAST],AXIS[\(dqNorthing\(dq,NORTH],AUTHORITY[\(dqEPSG\(dq,\(dq25832\(dq]]
815
+ .EE
816
+ .UNINDENT
817
+ .UNINDENT
818
+ .SH SEE ALSO
819
+ .sp
820
+ \fBcs2cs(1)\fP, \fBcct(1)\fP, \fBgeod(1)\fP, \fBgie(1)\fP, \fBproj(1)\fP, \fBprojsync(1)\fP
821
+ .SH BUGS
822
+ .sp
823
+ A list of known bugs can be found at \%<https://\:github\:.com/\:OSGeo/\:PROJ/\:issues>
824
+ where new bug reports can be submitted to.
825
+ .SH HOME PAGE
826
+ .sp
827
+ \%<https://\:proj\:.org/>
828
+ .SH Author
829
+ Even Rouault
830
+ .SH Copyright
831
+ 1983-2026, PROJ contributors
832
+ .\" End of generated man page.