@cpp.js/package-proj 1.0.0-beta.20

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