@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,3170 @@
1
+ 9.4.1 Release Notes
2
+ -------------------
3
+
4
+ Updates
5
+ -------
6
+
7
+ o Database: update to EPSG v11.006 (#4086)
8
+
9
+ o Database: update ESRI dataset to ArcGIS Pro 3.3 (#4143)
10
+
11
+ Bug fixes
12
+ -------
13
+
14
+ o DatabaseContext::lookForGridInfo(): do not trigger network activity in
15
+ PROJ_GRID_AVAILABILITY_KNOWN_AVAILABLE mode when all grids are known (#4090)
16
+
17
+ o Retry "Connection reset by peer" (#4107)
18
+
19
+ o Use unique names for NKG transformations (#4111)
20
+
21
+ o proj_create()/proj_create_from_database(): recall CRS AUTH:CODE in error message (#4114)
22
+
23
+ o DerivedProjectedCRS: deal with lack of explicit CS in BASEPROJCRS in WKT (#4139)
24
+
25
+ o proj_symbol_rename.h: update with current symbols (#4145)
26
+
27
+ o Improve detection of compatible/incompatible celestial bodies (#4150)
28
+
29
+
30
+ 9.4.0 Release Notes
31
+ -------------------
32
+
33
+ Updates
34
+ -------
35
+
36
+ o Add support for transformations involving coordinate epoch changes
37
+ (PointMotionOperation), specifically for Canadian NAD83(CSRS)(#3884)
38
+
39
+ o SSL_OPTIONS: set SSL options on Curl library (#3936)
40
+
41
+ o Add support for unity builds (#3962)
42
+
43
+ o Added ability to install *.tif if present in data (#3970)
44
+
45
+ o createOperationsCompoundToGeog(): tune selection logic
46
+ when --grid-check known_available is specified (#3990)
47
+
48
+ o Increase CMake minimum version from 3.9 to 3.16 (#3997)
49
+
50
+ o CMake: use FetchContent to get googletest-1.12.1 (#4006)
51
+
52
+ o CMake: Replace custom FindSqlite3 with FindSQLite3 built-in (#4007)
53
+
54
+ o tpeqd: use numerically stable formula for computing the central angle
55
+ from (phi_1, lam_1) to (phi_2, lam_2) (#4009)
56
+
57
+ o Move content of proj_experimental.h to proj.h (#4019)
58
+
59
+ o Add +proj=mod_krovak projection method for Modified Krovak that
60
+ applies to S-JTSK/05 in the Czech Republic (#4021)
61
+
62
+ o PROJString formatter optimizer: simplify pipelines doing
63
+ [Modified]Krovak (South West) <--> [Modified]Krovak (East North)
64
+ by just doing an axis swap (#4034)
65
+
66
+ o +proj=gridshift: enhance to support grids referenced in projected CRS,
67
+ and with easting_offset/northing_offset corrections (#4038)
68
+
69
+ o Tune concatenated operation instanciation, reference CR2005 geoid for
70
+ Czechia and add (disabled by default) records for Czechia S-JTSK/05 based
71
+ transformations (#4044)
72
+
73
+ o Database: update to EPSG v11.004 (#4062)
74
+
75
+ Bug fixes
76
+ ---------
77
+
78
+ o Fix missing symbols at link time for Windows target in Visual Studio (#3984)
79
+
80
+ o Improve error message in axisswap (#3975)
81
+
82
+ o Avoid convergence errors in +proj=gridshift when using biquadratic
83
+ interpolation (#3985)
84
+
85
+
86
+ 9.3.1 Release Notes
87
+ -------------------
88
+
89
+ Updates
90
+ -------
91
+
92
+ o Update to EPSG 10.098 (#3968)
93
+
94
+ o Update ESRI objects to v3.2.0 (#3944)
95
+
96
+ Bug fixes
97
+ ---------
98
+
99
+ o ITRF2008: fix wrong sign for 'dry' parameter of EURA and EURA_T (#3870)
100
+
101
+ o Fix build error with MSVC 2019 in /std:c++20 on NN_NO_CHECK() (#3872)
102
+
103
+ o ESRI WKT import: normalize GCS_unknown to unknown and D_unknown to unknown (#3874)
104
+
105
+ o CoordinateOperationFactory: deal with CompoundToCompound with a horizontal similarity
106
+ transformation and a ballpark vertical (#3881)
107
+
108
+ o Ellipsoid::_isEquivalentTo(): fix so that an ellipsoid of semi-major axis A (and
109
+ non-zero inv flattening) isn't equivalent to a sphere of radius A (#3882)
110
+
111
+ o isEquivalentTo(): make a datum name 'unknown' equivalent to another one (#3883)
112
+
113
+ o cs2cs: fix handling of input coordinates in grad (#3886)
114
+
115
+ o Make setargv.obj available on Universal Windows Platform (#3891)
116
+
117
+ o Allow opening proj.db with a URI (#3892)
118
+
119
+ o createOperations(): fix GeogCRS 3D with TOWGS84 to geocentric CRS (#3915)
120
+
121
+ o Fix test suite so that it can pass with ENABLE_TIFF=OFF (#3916)
122
+
123
+ o GeographicBoundingBox::intersects(): avoid infinite recursion and stack overflow
124
+ on invalid bounding boxes (#3919)
125
+
126
+ o Fix importing '+proj=topocentric ... +type=crs' by using a geocentric CRS as
127
+ the base CRS (#3924)
128
+
129
+ o Allow LOCAL_CS with 3 axes (#3928)
130
+
131
+ o WKT1 parser: in non-strict mode, accept missing UNIT[] in GEOGCS, GEOCCS,
132
+ PROJCS and VERT_CS elements (#3933)
133
+
134
+ o createOperations(): fix issue with a obscure case involving CompoundCRS of
135
+ unknown horizontal datum + boundCRS of vertical (#3934)
136
+
137
+ o createOperations(): fix bad PROJ pipeline when converting between Geog3D
138
+ with non-metre height to CompoundCRS (#3943)
139
+
140
+ o createOperations(): Fix possible null dereference on invalid WKT input (#3946)
141
+
142
+ o proj_factor: fix when input is a compound CRS of a projected CRS (#3950)
143
+
144
+ o pj_get_suggested_operation(): tune it to give correct result for RGAF09 to
145
+ RRAF 1991 / UTM zone 20N + Guadeloupe 1988 height transformation (#3954)
146
+
147
+ o Move static NameSpace::GLOBAL definition in static.cpp to avoid
148
+ 'static initialization fiasco' (#3956)
149
+
150
+ o horner: allow arbitrary input type of coordinate (#3961)
151
+
152
+
153
+ 9.3.0 Release Notes
154
+ -------------------
155
+
156
+ Updates
157
+ -------
158
+
159
+ o Add C++ API to transform coordinate (#3705)
160
+
161
+ o CMake: add PROJ_DB_CACHE_DIR (#3711)
162
+
163
+ o Implement EPSG:1026 Mercator (Spherical) method (#3741)
164
+
165
+ o CMake: remove useless cross-compiling related checks (#3747)
166
+
167
+ o Add mapping of Equidistant Conic to new EPSG:1119 method (#3812)
168
+
169
+ o Implement proposal001 from Planetary DWG from OGC (#3816)
170
+
171
+ o Add option in proj CLI to use a CRS (#3825)
172
+
173
+ o proj_factors(): make it work with projected CRS with non-metre unit and/or
174
+ northing/easting axis order (#3826)
175
+
176
+ o PROJ_DEBUG: make ON an alias of 2, and OFF of 1 (#3835)
177
+
178
+ o Database: update to EPSG 10.094 (#3847)
179
+
180
+ Bug fixes
181
+ ---------
182
+
183
+ o GeographicBoundingBox::intersection(): avoid infinite recursion and stack
184
+ overflow on invalid bounding boxes (#3748)
185
+
186
+ o Various fixes related to concatenated operations (#3820)
187
+
188
+ o Projected CRS identification: fix crash when the base CRS is a
189
+ non-geographic geodetic CRS (#3830)
190
+
191
+ o Avoid C++ exceptions to be thrown (and caught) when parsing strings
192
+ like '+proj=longlat +datum=WGS84 +type=crs' (#3834)
193
+
194
+ o BUG: Handle prefix whitespace when guessing WKT dialiect (#3841)
195
+
196
+ o proj_alter_id(): make it replace an existing ID instead
197
+ of appending a new one (#3846)
198
+
199
+ o bonne: fix inverse map projection computations when lat_1 < 0 (#3849)
200
+
201
+ o WKT1 ESRI import/export: fix GCS name for EPSG:8353 S-JTSK_[JTSK03]_Krovak_East_North (#3851)
202
+
203
+ 9.2.1 Release Notes
204
+ -------------------
205
+
206
+ Database updates
207
+ ----------------
208
+
209
+ o Add alias for old ESRI datum/CRS names of EPSG:8353
210
+ S_JTSK_JTSK03_Krovak_East_North (#3678)
211
+
212
+ o Pseudo Mercator now supported with IAU CRS's (#3645)
213
+
214
+ o Updated to EPSG 10.088 (#3731)
215
+
216
+ Bug fixes
217
+ ----------
218
+
219
+ o Fixed build errors with Cygwin (#3642)
220
+
221
+ o PROJ string CRS parser: make sure that PROJ arguments of the rotated
222
+ string are kept in the WKT representation (#3656)
223
+
224
+ o Fix slowness on proj_trans() when doing WGS 84 <--> NAD83 conversions (#3661)
225
+
226
+ o vgridshift/gridshift: accept hydroid_height as valid band description (#3675)
227
+
228
+ o WKT/PROJJSON: import/export accuracy of ConcatenatedOperation (#3676)
229
+
230
+ o Coordinate operation factory: count identified concatenated operations as a
231
+ single step (#3677)
232
+
233
+ o EngineeringCRS: make proj_create_engineering_crs() set a datum name
234
+ and relax isEquivalentTo() comparisons (#3685)
235
+
236
+ o PROJJSON: fix import/export of integer parameter value, and deal with
237
+ interpolation CRS parameters in conversions (#3695)
238
+
239
+ o CMake: avoid imbalanced cmake_policy push/pop if TIFF or CURL dependency
240
+ cannot be found (#3697)
241
+
242
+ o proj_create_crs_to_crs(): restore transformation selection behaviour
243
+ of PROJ 9.1 when grids are missing (#3707)
244
+
245
+ o ESRI WKT: improve roundtrip of name and definition for UPS WGS84 CRS (#3720)
246
+
247
+ o CRS instanciation from PROJ.4 string: set 'Unknown based on XXXX ellipsoid'
248
+ datum name when instanciating from known +a, +rf (#3727)
249
+
250
+ o cs2cs / proj_create_crs_to_crs(): fix regression with geocentric CRS (#3729)
251
+
252
+ o proj_trans(): set PROJ_ERR_COORD_TRANSFM_NO_OPERATION error when failing
253
+ in ONLY_BEST=YES mode (#3730)
254
+
255
+ o tinshift: raise maximum size of JSON file to 100 MB (#3736)
256
+
257
+
258
+
259
+ 9.2.0 Release Notes
260
+ -------------------
261
+
262
+ Updates
263
+ --------
264
+
265
+ + Database
266
+
267
+ o EPSG updated to EPSG 10.082 (#3609)
268
+
269
+ o ESRI objects updated to v3.1.0 (#3575)
270
+
271
+ o Added Slovenian geoid model SLO-VRP2016/Koper (#3610)
272
+
273
+ + Projections
274
+
275
+ o Added generic Space Oblique Mercator (#3338)
276
+
277
+ o Inverse eck4: Add checks for projection domain (#3625)
278
+
279
+ + Transformations
280
+
281
+ o Added support for NADCON5 grids and transformation method (#3510)
282
+
283
+ o Added option ONLY_BEST=YES (#3535)
284
+
285
+ When enabled only use the best possible transformation between two CRS's can be
286
+ instantiated. If the best possible transfomations can't be instantiated it will
287
+ fail instead of opting for the next best transformation.
288
+
289
+ With ONLY_BEST=YES a transformation will fail if a needed grid is unavailable.
290
+
291
+ The option can be toggled in proj.ini and with --only-best in cs2cs.
292
+
293
+ o Implement 'Similarity transformation' (EPSG:9621) and import related
294
+ tranformations from EPSG (#3578)
295
+
296
+ o Optimise transformations between GDA94, GDA2020 and WGS84 (#3621)
297
+
298
+ + Performance improvements
299
+
300
+ o Pass PJ_COORD by reference for fwd4d and inv4d callbacks (#3503)
301
+
302
+ o Improved of inverse meridian length calculations (#3516)
303
+
304
+ o Avoid very poor performance on a geographic CRS whose datum name is the alias
305
+ of an official one (#3624)
306
+
307
+ + Well-Known Text improvements
308
+
309
+ o Support WKT:2019 COORDINATEMETADATA[] construct (#2711)
310
+
311
+ o implement alterCSLinearUnit for CompoundCRS (#3325)
312
+
313
+ o Implement alterCSLinearUnit for BoundCRS (#3327)
314
+
315
+ o Added PJ_TYPE_DERIVED_PROJECTED_CRS (#3488)
316
+
317
+ o Added support for ISO19111 CoordinateMetadata class (#3562)
318
+
319
+ o Update WKT import to support WKT2 corrigendum (#3573)
320
+
321
+ o WKT import: Make axis direction and range meaning enumeration case
322
+ insensitive as mandated by spec (#3577)
323
+
324
+ o Implement AffineCS and handle it in WKT (#3579)
325
+
326
+ o WKT1 parser: Support inf as inverse flattening value (#3626)
327
+
328
+ + PROJJSON
329
+
330
+ o Version number changed to 0.6
331
+
332
+ o Added an additional optional source_crs property in abridged_transformation (#3454)
333
+
334
+ o Added support for ISO19111 CoordinateMetadata class (#3562)
335
+
336
+ o Implement AffineCS and handle it in PROJJSON (#3579)
337
+
338
+ + C/C++ API
339
+
340
+ o C API: add proj_get_domain_count(), proj_get_area_of_use_ex() and proj_get_scope_ex() (#3588)
341
+
342
+ DEPRECATIONS
343
+
344
+ The following functions have been deprecated and will be removed in a future version.
345
+
346
+ o C API function proj_rtodms. Use proj_rtodms2 instead (#3431)
347
+
348
+ o C experimental API function proj_create_conversion_tunisia_mapping_grid().
349
+ Use proj_create_conversion_tunisia_mining_grid() instead (#3559)
350
+
351
+ o C++ API function createTunisiaMapingGrid(). Use createTunisiaMiningGrid() instead (#3559)
352
+
353
+ o Added explicit NaN handling to proj_trans and gie (#3603)
354
+
355
+ + CMake
356
+
357
+ o Added uninstall target (#3362)
358
+
359
+ o Adopted use of TIFF:TIFF and CURL::libcurl targets (#3374)
360
+
361
+ + Security improvements
362
+
363
+ o Replaced uses of sprintf with the safer snprintf (#3421, #3431)
364
+
365
+ + Various other improvements
366
+
367
+ o Implemented platform independent mutex for better results on lesser used platforms (#3425)
368
+
369
+ o Improved name and remarks in descriptions of some vertical transformations (#3334)
370
+
371
+ o Implemented stricter matching by name to avoid false positives (#3487)
372
+
373
+ o Improved numerical accuracy of the meridian length calculations and its inverse (#3516)
374
+
375
+ o Added PROJ_IGNORE_CELESTIAL_BODY=YES environment variable that allows better matching of
376
+ non-earth shaped ellipsoids to other celestial bodies (#3569)
377
+
378
+ Bug fixes
379
+ ----------
380
+
381
+ o rtodms(): fix potential buffer overflow not dealt with (#3441)
382
+
383
+ o NetworkFile::open(): fix memory leak in unlikely error code path (#3443)
384
+
385
+ o When importing LOCAL_CS["foo"], generates a non-empty name for the datum (#3491)
386
+
387
+ o Avoid unit mix-up in CRS::alterCSLinearUnit for DerivedProjectedCRS (#3499)
388
+
389
+ o WKT to PROJ conversions: Map 'Lambert Azimuthal Equal Area (Spherical)' to '+proj=laea +R_A' (#3526)
390
+
391
+ o ProjectedCRS::identify(): Relax trust in id/authority in definition to identify (#3532)
392
+
393
+ o Fix instantion of http://www.opengis.net/def/crs/IAU/2015/xxx URNs (#3569)
394
+
395
+ o Fix proj_normalize_for_visualization() on a transformation with FORCE_OVER=YES (#3570)
396
+
397
+ o createBoundCRSToWGS84IfPossible(): Do not report +towgs84 for a CRS with multiple extents,
398
+ such as EPSG:6316 (#3587)
399
+
400
+ o pj_get_suggested_operation(): handle longitudes outside of [-180,180] for coordinate
401
+ operation selection (#3595)
402
+
403
+ o WKT1 parser: only emit warning when encountering invalid UNKNOWN WKT1 axis direction (#3618)
404
+
405
+ o projinfo: fix long option name --source-crs (#3601)
406
+
407
+
408
+ 9.1.1 Release Notes
409
+ -------------------
410
+
411
+ Updates
412
+ --------
413
+
414
+ o Database: register at_bev_AT_GIS_GRID_2021_09_28 grid (#3442)
415
+
416
+ Bug fixes
417
+ ----------
418
+
419
+ o Implement alterGeodeticCRS and stripVerticalComponent for DerivedProjected (#3482)
420
+
421
+ o Various improvements to handling of DerivedProjectedCRS
422
+ (#3482, #3477, #3342, #3319, #3317)
423
+
424
+ o Add missing <cstdint> includes (#3459)
425
+
426
+ o cs2cs: better validate value of -W option (#3453)
427
+
428
+ o DatabaseContext::lookForGridInfo(): fix caching of filenames and set
429
+ correct URLs (#3448)
430
+
431
+ o Database: register in grid_alternatives grids from PROJ-data that have no
432
+ corresponding transformation record (#3446)
433
+
434
+ o cass projection: fix forward computation of easting (#3433)
435
+
436
+ o Implement Geographic/Vertical Offset conversions (#3413)
437
+
438
+ o vandg projection: handle +over to extend the validity domain outside of
439
+ |lon|>180deg (#3427)
440
+
441
+ o eqdc projection: avoid floating point division by zero in non-nominal case (#3415)
442
+
443
+ o createOperations(): fix issues when transforming between Geog3D and
444
+ DerivedGeog3D CRS with Geographic3D offsets method (#3411)
445
+
446
+ o VerticalCRS::_isEquivalentTo(): do not consider VerticalCRS and
447
+ DerivedVerticalCRS as equivalent (#3408)
448
+
449
+ o cct and cs2cs: Avoid problems when encountering UTF-8 BOM characters at
450
+ beginning of input files (#3395)
451
+
452
+ o createFromUserInput(): Improved lookup when approximate name is provided (#3371)
453
+
454
+ o projinfo / cs2cs : auto promotion to 3D of CRS specified by name (#3367)
455
+
456
+ o findsOpsInRegistryWithIntermediate(): make it work when source/target geodetic
457
+ CRS has no known id (#3365)
458
+
459
+ o createOperations(): emulate PROJ < 6 behavior when doing geocentric <-->
460
+ geographic transformation between datum with unknown transformation (#3361)
461
+
462
+ o Fix issue when transforming from/into a WKT2 Bound VerticalCRS with a
463
+ 'Geographic3D to GravityRelatedHeight' method (#3355)
464
+
465
+ o proj_normalize_for_visualization(): take into account FORCE_OVER property
466
+ from source operation (#3350)
467
+
468
+ o Link geodtest against libm when available (#3341)
469
+
470
+ 9.1.0 Release Notes
471
+ -------------------
472
+
473
+ Updates
474
+ --------
475
+
476
+ + Database
477
+
478
+ o Database: update to EPSG v10.074 (#3273)
479
+
480
+ o Update ESRI objects to version 3.0.0 (#3257)
481
+
482
+ o Generate null transformation between geodetic/vertical datum ensemble and
483
+ its members (#3266)
484
+
485
+ o Add fk delete cascade to database tables for improved customizability
486
+ of the database (#3237)
487
+
488
+ o Add Svalbard geoid grid no_kv_arcgp-2006-sk to grid alternatives (#3292)
489
+
490
+ o Added French grid fr_ign_RAF20 to grid alternatives (#3228)
491
+
492
+ + WKT & PROJJSON
493
+
494
+ o WKT2 parser: allow unit-less PARAMETER for coordinate operations (#3271)
495
+
496
+ o WKT and PROJJSON adjustments (#3234)
497
+
498
+ o Bump PROJJSON to v0.5 (#3216)
499
+
500
+ o Change order of horizontal and vertical operations when dealing with
501
+ WKT1 / PROJ4 compound CRS (#3127)
502
+
503
+ + Coordinate Operations
504
+
505
+ o Implement Vertical Offset and slope transformation method (#3200)
506
+
507
+ o Add Interrupted Mollweide (land and ocean view) projections (#3139)
508
+
509
+ o Add invertible Horner polynomials (#3133)
510
+
511
+ + Optimizations
512
+
513
+ o NTv2 and GTX grid readers: add a cache of lines to speed-up (#3241)
514
+
515
+ o IComparable::isEquivalentTo() optimizations (#3233)
516
+
517
+ + Various Updates
518
+
519
+ o createOperations() / proj_trans(): better take into account area of
520
+ interest name / do not only keep first returned coordinate operation (#3282)
521
+
522
+ o createOperations(): take into account axis unit and inversion of target
523
+ DerivedProjectedCRS (#3281)
524
+
525
+ o Allow a Compound CRS with derived projected (#3283)
526
+
527
+ o Make "Vertical Offset and Slope" method usable as a deriving conversion of
528
+ a DerivedVerticalCRS (#3270)
529
+
530
+ o PROJ pipeline generator: recognize opposite Helmert transformations using
531
+ a different convention (#3265)
532
+
533
+ o createOperations(): prefer simpler pipelines / affects WGS 84 to
534
+ GDA94/GDA2020 (#3248)
535
+
536
+ o Make it possible to determine which grid files were actually used during a
537
+ transformation (#3180)
538
+
539
+ o Transformation: no longer do vertical trasnformation when doing compound CRS
540
+ to 2D CRS / add --3d to cs2cs (#3119)
541
+
542
+ o Deprecate PROJ4 CMake name (#3094)
543
+
544
+ o Use GNUInstallDirs for CMake install locations (#3100)
545
+
546
+ o Introduce PROJ_DATA environment variable to deprecate PROJ_LIB (#3253)
547
+
548
+
549
+ Bug fixes
550
+ --------
551
+
552
+ o projinfo: fix crash on --list-crs when proj.db cannot be opened (#3290)
553
+
554
+ o getCRSInfoList(): fix retrieval of projected_crs given by text_definition
555
+ only (#3289)
556
+
557
+ o WKT parser: fix issue when parsing some WKT1 with
558
+ Hotine_Oblique_Mercator_Azimuth_Center and ignoring rectified_grid_angle (#3280)
559
+
560
+ o WKT1 import: better deal when the angular unit of the GEOGCS[] of the
561
+ PROJCS[] doesn't match the one from the database (#3274)
562
+
563
+ o createOperations(): avoid potential infinite recursions (#3264)
564
+
565
+ o WKT ESRI: fix related to projected CRS export and add support for geographic
566
+ 3D CRS with LINUNIT node (#3256)
567
+
568
+ o proj_grid_info(): make it work again with remote grids (#3239)
569
+
570
+ o createOperations(): fix projected CRS with non-metre horiz&vertical unit and
571
+ towgs84 to gencentric CRS (#3231)
572
+
573
+ o createOperations(): fix infinite recursion in a complex case (#3226)
574
+
575
+
576
+
577
+ 9.0.1 Release Notes
578
+ -------------------
579
+
580
+ Database updates
581
+ -------
582
+
583
+ o Update to EPSG 10.064 (#3208)
584
+
585
+ o Add OGC:CRS84h (WGS 84 longitude-latitude-height) (#3155)
586
+
587
+ Bug fixes
588
+ ---------
589
+
590
+ o Use CMAKE_INSTALL_MANDIR to override default (#3081)
591
+
592
+ o Increase MAX_ITER so Mollweide forward projection works near the poles (#3082)
593
+
594
+ o Fix wrong results with SQLite 3.38.0 (#3091)
595
+
596
+ o Fix issue when transforming from/to BoundCRS of 3D CRS with non-Greenwich
597
+ prime meridian, created from WKT (#3098)
598
+
599
+ o Fix issues with WKT of concatenated operations (#3105)
600
+
601
+ o CMake: fix installation of proj.pc on Windows (#3109)
602
+
603
+ o createOperations(): fix issue in transformation northing, easting
604
+ projected CRS -> +proj=longlat +lon_wrap (#3110)
605
+
606
+ o unitconvert: round to nearest date when converting to yyyymmdd (#3111)
607
+
608
+ o Fix comparison of GeodeticRefrenceFrame vs DynamicGeodeticReferenceFrame (#3120)
609
+
610
+ o createOperations(): fix transformation involving CompoundCRS, ToWGS84
611
+ and PROJ4_GRIDS (#3124)
612
+
613
+ o Fix datum names when importing from PROJ4 crs strings (affects some
614
+ transformations using geoidgrids) (#3129)
615
+
616
+ o Deal with PARAMETER["EPSG code for Interpolation CRS",crs_code] (#3149)
617
+
618
+ o createOperations(): fix CompoundCRS[BoundCRS[ProjectedCRS],BoundCRS[VerticalCRS]]
619
+ to Geog3DCrs (#3151)
620
+
621
+ o ITRF2014: fix ITRF2014:ITRF88,ITRF94 and ITRF96 definitions (#3159)
622
+
623
+ o createBoundCRSToWGS84IfPossible(): improve selection logic to generate +towgs84=
624
+ taking into account extent (#3160)
625
+
626
+ o createOperations(): fix some complex cases involving TOWGS84 and CompoundCRS (#3163)
627
+
628
+ o Fix cmake CURL dependency, update appveyor - vcpkg interaction (#3185)
629
+
630
+ o WKT import: deal with Projected CRS that is a mix of WKT1:GDAL / WKT1:ESRI (#3189)
631
+
632
+ o createOperations(): fix/improve result of 'BD72 + Ostend height ' to 'WGS84+EGM96 height' (#3199)
633
+
634
+ o Identifier::isEquivalentName(): fix when ending by ' + ' which could indirectly cause
635
+ an infinite stack call in master (#3202)
636
+
637
+ o WKT import: correctly deal with absence of Latitude_Of_Origin parameter in
638
+ WKT1 ESRI with Stereographic projection (#3212)
639
+
640
+ o PROJJSON parser: do not error out if a datum ensemble member is unknown in the database (#3223)
641
+
642
+
643
+ 9.0.0 Release Notes
644
+ -------------------
645
+
646
+ Breaking Changes
647
+ ----------------
648
+
649
+ o Support for the autotools build system has been removed (#3027)
650
+ See RFC7 for details: https://proj.org/community/rfc/rfc-7.html
651
+
652
+ Updates
653
+ --------
654
+
655
+ o Database updates:
656
+
657
+ + ESRI projection engine db to version 12.9 (#2943)
658
+
659
+ + EPSG v10.054 (#3051)
660
+
661
+ + Vertical grid files for PL-geoid-2011, Polish geoid model (#2960)
662
+
663
+ + Belgian geoid model hBG18 to grid alternatives (#3044)
664
+
665
+ o Add new option to proj_create_crs_to_crs_from_pj method to force +over on
666
+ transformation operations (#2914)
667
+
668
+ o Specify CMAKE_INSTALL_RPATH for macOS; use -rpath LDFLAGS for tests (#3009)
669
+
670
+ o Implement Geographic3D to Depth/Geog2D+Depth as used by ETRS89 to CD Norway
671
+ depth (#3010)
672
+
673
+ o Allow PROJ_LIB paths wrapped with double quotes (#3031)
674
+
675
+ o Use external gtest by default when possible (#3035)
676
+
677
+ o CMake: make BUILD_SHARED_LIBS=ON the default even on Windows (#3042)
678
+
679
+ o proj.ini: add a 'ca_bundle_path' variable (#3049)
680
+
681
+
682
+ Bug fixes
683
+ ----------
684
+
685
+ o Fix extremely long parsing time on hostile PROJ strings (#2968)
686
+
687
+ o CMake: fix warning with external googletest (#2980)
688
+
689
+ o proj_get_crs_info_list_from_database(): report PJ_TYPE_GEODETIC_CRS for
690
+ IAU_2015 -ocentric geodetic CRS (#3013)
691
+
692
+ o peirce_q: rename +type parameter wrongly introduced in 8.2.1 to +shape (#3014)
693
+
694
+ o Set more precise error code for parsing errors in proj_create() (#3037)
695
+
696
+ o createOperations(): fix transformations from/to a BoundCRS of a
697
+ DerivedGeographicCRS coming from WKT (#3046)
698
+
699
+ o Better deal with importing strings like '+init=epsg:XXXX +over' (#3055)
700
+
701
+ o Fix importing CRS definition with +proj=peirce_q and +shape different from
702
+ square or diamond (#3057)
703
+
704
+
705
+ 8.2.1 Release Notes
706
+ -------------------
707
+
708
+ Updates
709
+ -------
710
+
711
+ o Database updated with EPSG v. 10.041 (#2974)
712
+
713
+ Bug fixes
714
+ ---------
715
+
716
+ o BoundCRS WKT import: fix setting of name (#2917)
717
+
718
+ o PROJStringFormatter::toString(): avoid invalid iterator increment (#2932)
719
+
720
+ o Ensure CApi test are cross-platform (#2934)
721
+
722
+ o createOperations(): do not stop at the first operation in the PROJ namespace
723
+ for vertical transformations (#2937)
724
+
725
+ o createOperationsCompoundToCompound(): fix null pointer dereference when
726
+ connection to proj.db doesn't exist. (#2938)
727
+
728
+ o Fix windows.h conflict with Criterion::STRICT (#2950)
729
+
730
+ o Cache result of proj_get_type() to help for performance of
731
+ proj_factors() (#2967)
732
+
733
+ o createOperations(): improvement for "NAD83(CSRS) + CGVD28 height" to
734
+ "NAD83(CSRS) + CGVD2013(CGG2013) height" (#2977)
735
+
736
+ o WKT1 import: correctly deal with missing rectified_grid_angle
737
+ parameter (#2986)
738
+
739
+ o Fix and additional options for Peirce Quincuncial projections (#2978)
740
+
741
+ o Fix build with Intel C++ compiler (#2995)
742
+
743
+
744
+ 8.2.0 Release Notes
745
+ -------------------
746
+
747
+ Announcements
748
+ -------------
749
+
750
+ From PROJ 9.0.0 and onwards CMake will be the only build system bundled
751
+ with the PROJ package. As a consequence support for Autotools builds will
752
+ stop when the 8.2 branch of PROJ reaches end of life. We encourage
753
+ everyone to adjust their build workflows as soon as possible and report
754
+ any discrepancies discovered between Autotools and CMake builds.
755
+
756
+ Details about the build system unification can be found in PROJ RFC 7.
757
+
758
+
759
+ Updates
760
+ -------
761
+
762
+ o Added the S2 projection (#2749)
763
+
764
+ o Added support for Degree Sign on input (#2791)
765
+
766
+ o ESRI WKT: add support for import/export of (non interrupted)
767
+ Goode Homolosine (#2827)
768
+
769
+ o Make filemanager aware of UWP Win32 API (#2831)
770
+
771
+ o Add proj_create_conversion_pole_rotation_netcdf_cf_convention() to
772
+ address netCDF datasets using a pole rotation method (#2835)
773
+
774
+ o Emit better debug message when a grid isn't found (#2838)
775
+
776
+ o Add support for GeodeticCRS using a Spherical planetocentric
777
+ coordinate system (#2847)
778
+
779
+ o PROJJSON: support additional properties allowed in id object (version,
780
+ authority_citation, uri) for parity with WKT2:2019 (#2850)
781
+
782
+ o Database layout modified to include "anchor" field to geodetic_datum and
783
+ vertical_datum tables, consequently database layout version is increased
784
+ to 1.2 (#2859)
785
+
786
+ o proj_factors(): accept P to be a projected CRS (#2868)
787
+
788
+ o Add IAU_2015 CRS definitions (#2876)
789
+
790
+ o CRS::extractGeodeticCRS(): implement for DerivedProjectedCRS (#2877)
791
+
792
+ o Added proj_trans_bounds() (#2882)
793
+
794
+ o CMake: add a BUILD_APPS to be able to disable build of all applications (#2895)
795
+
796
+ o CMake: generate invproj/invgeod binaries (symlinks on Unix, copy otherwise)
797
+ (#2897)
798
+
799
+ o CMake build: add generate_wkt1_parser and generate_wkt2_parser manual
800
+ target, and logic to detect when they must be run (#2900)
801
+
802
+ o Add fallback strategy for tinshift transform to use closest triangle for
803
+ points not in any (#2907)
804
+
805
+ o Database: update to EPSG v10.038 (#2910)
806
+
807
+ o CMake: revise handling of symbol export and static builds (#2912)
808
+
809
+ Bug fixes
810
+ ---------
811
+
812
+ o Fix O(n^2) performance patterns where n is the number of steps of
813
+ a pipeline (#2820)
814
+
815
+ o Detect ESRI WKT better in certain circumstances (#2823)
816
+
817
+ o Fix performance issue on pipeline instanciation of huge (broken)
818
+ pipelines (#2824)
819
+
820
+ o Make sure to re-order projection parameters according to their canonical
821
+ order if needed (#2842)
822
+
823
+ o Fix database access across fork() when SQLite3 doesn't use pread[64]() (#2845)
824
+
825
+ o Fix error in implementation of Inverse ellipsoidal orthographic projection
826
+ that cause convergence to sometimes fail (#2853)
827
+
828
+ o Fix handling of edge-case coordinates in invers ortho ellipsoidal
829
+ oblique (#2855)
830
+
831
+ o proj_normalize_for_visualization(): set input and output units when there
832
+ are several alternative transformations (#2867)
833
+
834
+ o CRS::identify(): fix ignoring CS order when identifying a geodetic CRS
835
+ by a PROJ string with just the ellipsoid (#2881)
836
+
837
+ o Fix CRS Equality with PROJ parameter order (#2887)
838
+
839
+ o WKT concatenated operation parsing: fix when a axis order reversal conversion
840
+ is the first or last operation (#2891)
841
+
842
+ o WKT1 parser: recognize Lambert_Conformal_Conic as projection name for
843
+ LCC 1SP or 2SP (#2893)
844
+
845
+ o CMake: Always build gie if testing is requested (#2899)
846
+
847
+ o Geographic 3D CRS: allow to export to WKT1:ESRI if only the GEOGCS is known
848
+ (and thus extrapolating a VERTCS) (#2902)
849
+
850
+ o lib_proj.cmake: add a PROJ::proj alias and add BUILD_INTERFACE include
851
+ directories, so that proj can be used as a subdirectory of a larger
852
+ project (#2913)
853
+
854
+
855
+ THANKS TO
856
+ ---------
857
+
858
+ Thomas Knudsen
859
+ Alan D. Snow
860
+ Johannes Schauer Marin Rodrigues
861
+ Howard Butler
862
+ Geoff Evans
863
+ Joris Van den Bossche
864
+ marcus-elia
865
+ Waheed Barghouthi
866
+ snowman2
867
+ Ben Boeckel
868
+ Mike Taves
869
+ Javier Jimenez Shaw
870
+ Brendan Jurd
871
+ Kristian Evers
872
+ Even Rouault
873
+
874
+
875
+ 8.1.1 Release Notes
876
+ -------------------
877
+
878
+ Updates
879
+ -------
880
+
881
+ o EPSG Database updated to version 10.028 (#2773)
882
+
883
+ Bug Fixes
884
+ ---------
885
+
886
+ o Include algorithm header file to avoid build errors on Alpine Linux (#2769)
887
+
888
+ o CMake: fix installation of executables on iOS (#2766)
889
+
890
+ o Associate extents to transformations of CRS's that include GEOIDMODEL (#2769)
891
+
892
+ o Logging: avoid some overhead when logging is not enabled (#2775)
893
+
894
+ o ortho: remove useless and invalid log trace (#2777)
895
+
896
+ o CMake: remove external nlohmann_json from INTERFACE_LINK_LIBRARIES target (#2781)
897
+ o reateOperations(): fix SourceTargetCRSExtentUse::NONE mode (#2783)
898
+
899
+ o GeoTIFF grid reading: perf improvements (#2788)
900
+
901
+ o Conversion::createUTM(): avoid integer overflow (#2796)
902
+
903
+ o Inverse laea ellipsoidal: return PROJ_ERR_COORD_TRANSFM_OUTSIDE_PROJECTION_DOMAIN
904
+ when appropriates (#2801)
905
+
906
+ o Make sure that proj_crs_promote_to_3D returns a derived CRS (#2806)
907
+
908
+ o createOperations(): fix missing deg<-->rad conversion when transforming with a
909
+ CRS that has a fallback-to-PROJ4-string behaviour and is a BoundCRS of a
910
+ GeographicCRS (#2808)
911
+
912
+ o WKT2 import/export: preserve PROJ.4 CRS extension string in REMARKS[] (#2812)
913
+
914
+ o BoundCRS: accept importing/exporting in WKT2 and PROJJSON the
915
+ scope/area/extent/id attributes (#2815)
916
+
917
+ o ConcatenatedOperation::fixStepsDirection(): fix bad chaining of steps when
918
+ inverse map projection is involved in non-final step (#2819)
919
+
920
+
921
+ THANKS TO
922
+ ---------
923
+
924
+ Brendan Jurd
925
+ Kristian Evers
926
+ Even Rouault
927
+
928
+ 8.1.0 Release Notes
929
+ -------------------
930
+
931
+ Updates
932
+ -------
933
+
934
+ + Database
935
+
936
+ o Update to EPSG v10.027 (#2751)
937
+
938
+ o Decrease DB size by using WITHOUT ROWID tables (#2730) (#2647)
939
+
940
+ o Add a ANALYZE step during proj.db creation allowing for
941
+ faster lookups (#2729)
942
+
943
+ o Added a PROJ.VERSION metadata entry (#2646)
944
+
945
+ o Added NGO48 (EPSG:4273) to ETRS89 (EPSG:4258) triangulation-based
946
+ transformation (#2554)
947
+
948
+ o Additions to the norwegian NKG2020 transformation (#2548)
949
+
950
+ o ESRI projection database updated to version 12.8 (#2717)
951
+
952
+ + API additions
953
+
954
+ o Added proj_get_geoid_models_from_database() function that returns a list of
955
+ geoid models available for a given CRS (#2681)
956
+
957
+ o Added proj_get_celestial_body_list_from_database that returns a list
958
+ of celestial bodies in the PROJ database (#2667)
959
+
960
+ o Added proj_get_celestial_body_name() (#2662)
961
+
962
+ + Various improvements
963
+
964
+ o proj_trans/cs2cs: If two operations have the same accuracy,
965
+ use the one that is contained within a larger one (#2750)
966
+
967
+ o Share SQLite database handle among all contexts (#2738)
968
+
969
+ o Add proj/internal/mutex.hpp as compat layer for mingw32 for std::mutex (#2736)
970
+
971
+ o projsync: make it filter out files not intended for the current version (#2725)
972
+
973
+ o Improvements related to DerivedVerticalCRS using Change Unit and
974
+ Height/Depth reversal methods (#2696)
975
+
976
+ o Update internal nlohmann/json to 3.9.1, and add a CMake option to
977
+ be able to use external nlohmann/json (#2686)
978
+
979
+ o createFromUserInput(): change name of CRS built from URN combined references to match the convention of EPSG projected CRS (#2677)
980
+
981
+ o Parse compound id with two authorities, like ESRI:103668+EPSG:5703 (#2669)
982
+
983
+ o Added projinfo option --list-crs (supports --area) (#2663)
984
+
985
+ o Added support for hyperbolic Cassini-Soldner (#2637)
986
+
987
+ o Added capability to get SQL statements to add custom CRS in the database (#2577)
988
+
989
+ Bug fixes
990
+ ---------
991
+
992
+ o Fix 'Please include winsock2.h before windows.h' warning with msys (#2692)
993
+
994
+ o Minor changes to address lint in geodesic.c (#2752)
995
+
996
+ o BoundCRS::identify(): avoid incompatible transformation for
997
+ WKT1 / TOWGS84 export (#2747)
998
+
999
+ o proj_create(): do not open proj.db if string is a PROJ string,
1000
+ even if proj_context_set_autoclose_database() has been set (#2735)
1001
+
1002
+ o Fix export of transformation to PROJ string in a particular situation
1003
+ where CompoundCRS are involved (#2721)
1004
+
1005
+ Thanks to
1006
+ ---------
1007
+
1008
+ Howard Butler
1009
+ Alan D. Snow
1010
+ Roel van den Berg
1011
+ Heidi Vanparys
1012
+ Sveinung Himle
1013
+ 積丹尼 Dan Jacobson
1014
+ Nyall Dawson
1015
+ Javier Jimenez Shaw
1016
+ Charles Karney
1017
+ Mike Taves
1018
+ Kristian Evers
1019
+ Even Rouault
1020
+
1021
+
1022
+ 8.0.1 Release Notes
1023
+ -------------------
1024
+
1025
+ Updates
1026
+ -------
1027
+
1028
+ o Database: update to EPSG v10.018 (#2636)
1029
+
1030
+ o Add transformations for CHGeo2004, Swiss geoid model (#2604)
1031
+
1032
+ o Additions to the norwegian NKG2020 transformation (#2600)
1033
+
1034
+ Bug fixes
1035
+ ---------
1036
+
1037
+ o pj_vlog(): fix buffer overflow in case of super lengthy error message (#2693)
1038
+
1039
+ o Revert "proj_create_crs_to_crs_from_pj(): do not use PROJ_SPATIAL_CRITERION_PARTIAL_INTERSECTION if area is specified" (#2679)
1040
+
1041
+ o UTM: error out when value of +zone= is not an integer (#2672)
1042
+
1043
+ o getCRSInfoList(): make result order deterministic (by increasing auth_name,
1044
+ code) (#2661)
1045
+
1046
+ o createOperation(): make sure no to discard deprecated operations if the
1047
+ replacement uses an unknow grid (#2623)
1048
+
1049
+ o Fix build on Solaris 11.4 (#2621)
1050
+
1051
+ o Add mapping of ESRI Equal_Area projection method to EPSG (#2612)
1052
+
1053
+ o Fix incorrect EPGS extent code for EPSG:7789>EPSG:4976 NKG transformation (#2599)
1054
+
1055
+ o fix wrong capitalization of CHENyx06_ETRS.gsb (#2597)
1056
+
1057
+ o createOperations(): improve handling of vertical transforms when
1058
+ when compound CRSs are used (#2592)
1059
+
1060
+ o CRS::promoteTo3D(): propagate the extent from the 2D CRS (#2589)
1061
+
1062
+ o createFromCRSCodesWithIntermediates(): improve performance when there is
1063
+ no match (#2583)
1064
+
1065
+ o Fix proj_clone() to work on 'meta' coordinate operation PJ* objects that
1066
+ can be returned by proj_create_crs_to_crs() (#2582)
1067
+
1068
+ o add PROJ_COMPUTE_VERSION, PROJ_VERSION_NUMBER,
1069
+ PROJ_AT_LEAST_VERSION macros (#2581)
1070
+
1071
+ o Make proj_lp_dist() and proj_geod() work on a PJ* CRS object (#2570)
1072
+
1073
+ o Fix gcc 11 -Wnonnull compilation warnings (#2559)
1074
+
1075
+ o Fix use of uninitialized memory in gie tests (#2558)
1076
+
1077
+ o createOperations(): fix incorrect height transformation between 3D promoted RGF93 and CH1903+ (#2555)
1078
+
1079
+
1080
+ THANKS TO
1081
+ ---------
1082
+
1083
+ Dan Jacobson
1084
+ Sveinung Himle
1085
+ Mike Taves
1086
+ Javier Jimenez Shaw
1087
+ Kristian Evers
1088
+ Even Rouault
1089
+
1090
+
1091
+ 8.0.0 Release Notes
1092
+ -------------------
1093
+
1094
+ With the release of PROJ 8 the proj_api.h API is finally removed. See
1095
+ https://proj.org/development/migration.html for more info on how to migrate
1096
+ from the old to the proj.h API.
1097
+
1098
+ With the removal of proj_api.h it has been possible to simplify error codes
1099
+ and messages given by the software. The error codes are exposed in the API.
1100
+
1101
+ Several improvements has been made to the command line utilities as well as
1102
+ tweaks in the underlying API.
1103
+
1104
+ Updates
1105
+ -------
1106
+
1107
+ o Public header file proj_api.h removed (#837)
1108
+
1109
+ o Improved accuracy of the Mercator projection (#2397)
1110
+
1111
+ o Copyright statement wording updated (#2417)
1112
+
1113
+ o Allow cct to instantiate operations via object codes or names (#2419)
1114
+
1115
+ o Allow @filename syntax in cct (#2420)
1116
+
1117
+ o Added geocentric->topocentric conversion (+proj=topocentric) (#2444)
1118
+
1119
+ o Update GeographicLib to version 1.51 (#2445)
1120
+
1121
+ o Added option to allow export of Geographic/Projected 3D CRS
1122
+ in WKT1_GDAL (#2450)
1123
+
1124
+ o Added --area and --bbox options in cs2cs to restrict candidate
1125
+ coordinate operations (#2466)
1126
+
1127
+ o Added build time option to make PROJ_LIB env var tested last (#2476)
1128
+
1129
+ o Added --authority switch in cs2cs to control where coordinate operations
1130
+ are looked for. C API function proj_create_crs_to_crs_from_pj() updated
1131
+ accordingly (#2477)
1132
+
1133
+ o Error codes revised and exposed in the public API (#2487)
1134
+
1135
+ o Added --accuracy options to projinfo. C API function
1136
+ proj_create_crs_to_crs_from_pj() updated accordingly (#2488)
1137
+
1138
+ o Added proj_crs_is_derived() function to C API (#2496)
1139
+
1140
+ o Enabled linking against static cURL on Windows (#2514)
1141
+
1142
+ o Updated ESRI CRS database to 12.7 (10.8.1/2.6) (#2519)
1143
+
1144
+ o Allow a WKT BoundCRS to use a PROJ string transformation (#2521)
1145
+
1146
+ o Update to EPSG v10.015 (#2539)
1147
+
1148
+ o Default log level set to PJ_LOG_ERROR (#2542)
1149
+
1150
+ o CMake installs a pkg-config file proj.pc, where supported (#2547)
1151
+
1152
+ Bug fixes
1153
+ ---------
1154
+
1155
+ o Do not restrict longitude to [-90;90] range in spherical transverse Mercator
1156
+ forward projection (#2471)
1157
+
1158
+ o createOperations(): fix Compound to Geog3D/Projected3D CRS with non-metre ellipsoidal height (#2500)
1159
+
1160
+ o Avoid error messages to be emitted log level is set to PJ_LOG_NONE (#2527)
1161
+
1162
+ o Close database connection when autoclose set to True (#2532)
1163
+
1164
+ THANKS TO
1165
+ ---------
1166
+
1167
+
1168
+ Zac Miller
1169
+ Juan Hernando
1170
+ Thomas Knudsen
1171
+ Sveinung Himle
1172
+ Olli Raisa
1173
+ Nomit Rawat
1174
+ Modern Slave
1175
+ J.H. van de Water
1176
+ Guillaume Lostis
1177
+ Martin Steinisch
1178
+ Javier Jimenez Shaw
1179
+ Mateusz Łoskot
1180
+ Martijn Visser
1181
+ Alan D. Snow
1182
+ Mike Taves
1183
+ Nyall Dawson
1184
+ Charles Karney
1185
+ Kristian Evers
1186
+ Even Rouault
1187
+
1188
+
1189
+ 7.2.1 Release Notes
1190
+ -------------------
1191
+
1192
+ Updates
1193
+ -------
1194
+
1195
+ o Add metadata with the version number of the database layout (#2474)
1196
+
1197
+ o Split coordinateoperation.cpp and test_operation.cpp in several parts (#2484)
1198
+
1199
+ o Update to EPSG v10.008 (#2490)
1200
+
1201
+ o Added the NKG 2008 and 2020 transformations in proj.db (#2495)
1202
+
1203
+ Bug fixes
1204
+ ---------
1205
+
1206
+ o Set CURL_ENABLED definition on projinfo build (#2405)
1207
+
1208
+ o createBoundCRSToWGS84IfPossible(): make it return same result with a CRS
1209
+ built from EPSG code or WKT1 (#2412)
1210
+
1211
+ o WKT2 parsing: several fixes related to map projection parameter units (#2428)
1212
+
1213
+ o createOperation(): make it work properly when one of the CRS is a BoundCRS of
1214
+ a DerivedGeographicCRS (+proj=ob_tran +o_proj=lonlat +towgs84=....) (#2441)
1215
+
1216
+ o WKT parsing: fix ingestion of WKT with a Geocentric CRS as the base of the
1217
+ projected CRS (#2443)
1218
+
1219
+ o GeographicCRS::_isEquivalentTo(EQUIVALENT_EXCEPT_AXIS_ORDER_GEOGCRS):
1220
+ make it work when comparing easting,northing,up and northing,easting,up (#2446)
1221
+
1222
+ o createOperation(): add a ballpark vertical transformation when dealing
1223
+ with GEOIDMODEL[] (#2449)
1224
+
1225
+ o Use same arguments to printf format string for both radians and degrees in
1226
+ output by cct (#2453)
1227
+
1228
+ o PRIMEM WKT handling: fixes on import for 'sexagesimal DMS' or from WKT1:GDAL/ESRI
1229
+ when GEOGCS UNIT != Degree; morph to ESRI the PRIMEM name on export (#2455)
1230
+
1231
+ o createObjectsFromName(): in exact match, make looking for 'ETRS89 / UTM zone 32N'
1232
+ return only the exact match (#2462)
1233
+
1234
+ o Inverse tmerc spherical: fix wrong sign of latitude when lat_0 is used (#2469)
1235
+
1236
+ o Add option to allow export of Geographic/Projected 3D CRS in WKT1_GDAL (#2470)
1237
+
1238
+ o Fix building proj.db with SQLite built with -DSQLITE_DQS=0 (#2480)
1239
+
1240
+ o Include JSON Schema files in CMake builds (#2485)
1241
+
1242
+ o createOperations(): fix inconsistent chaining exception when transforming from BoundCRS of projected CRS based on NTF Paris to BoundCRS of geog CRS NTF Paris (#2486)
1243
+
1244
+ THANKS TO
1245
+ ---------
1246
+
1247
+ Zac Miller
1248
+ Nomit Rawat
1249
+ Guillaume Lostis
1250
+ J.H. van de Water
1251
+ Kristian Evers
1252
+ Even Rouault
1253
+
1254
+
1255
+ 7.2.0 Release Notes
1256
+ -------------------
1257
+
1258
+ Updates
1259
+ -------
1260
+
1261
+ + Command line tools:
1262
+
1263
+ o Add multi-line PROJ string export capability, and use it by default in
1264
+ projinfo (unless --single-line is specified) (#2381)
1265
+
1266
+ + Coordinate operations:
1267
+
1268
+ o +proj=col_urban projection, implementing a EPSG projection method
1269
+ used by a number of projected CRS in Colombia (#2395)
1270
+
1271
+ o +proj=tinshift for triangulation-based transformations (#2344)
1272
+
1273
+ o Added ellipsoidal formulation of +proj=ortho (#2361)
1274
+
1275
+
1276
+ + Database
1277
+
1278
+ o Update to EPSG 10.003 and make code base robust to dealing with
1279
+ WKT CRS with DatumEnsemble (#2370)
1280
+
1281
+ o Added Finland tinshift operations (#2392)
1282
+
1283
+ o Added transformation from JGD2011 Geographic 3D to JGD2011
1284
+ height using GSIGEO2011 (#2393)
1285
+
1286
+ o Improve CompoundCRS identification and name morphing in VerticalCRS
1287
+ with ESRI WKT1 (#2386)
1288
+
1289
+ o Added OGC:CRS27 and OGC:CRS83 CRS entries for NAD27 and NAD83
1290
+ in longitude, latitude order (#2350)
1291
+
1292
+ + API
1293
+
1294
+ o Added temporal, engineering, and parametric datum
1295
+ PJ_TYPE enumerations (#2274)
1296
+
1297
+ o Various improvements to context handling (#2329, #2331)
1298
+
1299
+ o proj_create_vertical_crs_ex(): add a ACCURACY option to provide
1300
+ an explicit accuracy, or derive it from the grid name if it is
1301
+ known (#2342)
1302
+
1303
+ o proj_crs_create_bound_crs_to_WGS84(): make it work on
1304
+ verticalCRS/compoundCRS such as EPSG:4326+5773 and
1305
+ EPSG:4326+3855 (#2365)
1306
+
1307
+ o promoteTo3D(): add a remark with the original CRS identifier (#2369)
1308
+
1309
+ o Added proj_context_clone (#2383)
1310
+
1311
+
1312
+ Bug fixes
1313
+ ---------
1314
+
1315
+ o Avoid core dumps when copying contexts in certain scenarios (#2324)
1316
+
1317
+ o proj_trans(): reset errno before attemptying a retry with a new
1318
+ coordinate operation (#2353)
1319
+
1320
+ o PROJJSON schema corrected to allow prime meridians values with
1321
+ explicitly stating a unit (degrees assumed) (#2354)
1322
+
1323
+ o Adjust createBoundCRSToWGS84IfPossible() and operation filtering
1324
+ (for POSGAR 2007 to WGS84 issues) (#2357)
1325
+
1326
+ o createOperations(): several fixes affecting NAD83 -> NAD83(2011) (#2364)
1327
+
1328
+ o WKT2:2019 import/export: handle DATUM (at top level object) with PRIMEM
1329
+
1330
+ o WKT1_ESRI: fix import and export of CompoundCRS (#2389)
1331
+
1332
+
1333
+ THANKS TO
1334
+ ---------
1335
+
1336
+ Alexander Saprykin
1337
+ Jeff McKenna
1338
+ Nyall Dawson
1339
+ Kai Pastor
1340
+ Juan Hernando
1341
+ Javier Jimenez Shaw
1342
+ Howard Butler
1343
+ Alan D. Snow
1344
+ Charles Karney
1345
+ Kristian Evers
1346
+ Even Rouault
1347
+
1348
+
1349
+ 7.1.1 Release Notes
1350
+ -------------------
1351
+
1352
+ Updates
1353
+ -------
1354
+
1355
+ o Added various Brazillian grids to the database #2277
1356
+
1357
+ o Added geoid file for Canary Islands to the database #2312
1358
+
1359
+ o Updated EPSG database to version 9.8.15 #2310
1360
+
1361
+ Bug fixes
1362
+ ---------
1363
+
1364
+ o WKT parser: do not raise warning when parsing a WKT2:2015 TIMECRS
1365
+ whose TIMEUNIT is at the CS level, and not inside #2281
1366
+
1367
+ o Parse '+proj=something_not_latlong +vunits=' without +geoidgrids as a
1368
+ Projected3D CRS and not a compound CRS with a unknown datum #2289
1369
+
1370
+ o C API: Avoid crashing due to missing SANITIZE_CTX() in entry points #2293
1371
+
1372
+ o CMake build: Check "target_clones" before use #2297
1373
+
1374
+ o PROJ string export of +proj=krovak +czech: make sure we export +czech… #2301
1375
+
1376
+ o Helmert 2D: do not require a useless +convention= parameter #2305
1377
+
1378
+ o Fix a few spelling errors ("vgridshit" vs. "vgridshift") #2307
1379
+
1380
+ o Fix ability to identify EPSG:2154 as a candidate for 'RGF93_Lambert_93' #2316
1381
+
1382
+ o WKT importer: tune for Oracle WKT and 'Lambert Conformal Conic' #2322
1383
+
1384
+ o Revert compiler generated Fused Multiply Addition optimized routines #2328
1385
+
1386
+ THANKS TO
1387
+ ---------
1388
+
1389
+ Jeff McKenna
1390
+ Kai Pastor
1391
+ Javier Jimenez Shaw
1392
+ Kristian Evers
1393
+ Even Rouault
1394
+
1395
+
1396
+
1397
+
1398
+
1399
+ 7.1.0 Release Notes
1400
+ -------------------
1401
+
1402
+ Updates
1403
+ -------
1404
+
1405
+ + New transformations:
1406
+
1407
+ o Add a +proj=defmodel transformation for multi-component time-based deformation models (#2206)
1408
+
1409
+ + New projections:
1410
+
1411
+ o Add square conformal projections from libproject:
1412
+ - Adams Hemisphere in a Square
1413
+ - Adams World in a Square I
1414
+ - Adams World in a Square II
1415
+ - Guyou
1416
+ - Pierce Quincuncial
1417
+ (#2148)
1418
+
1419
+ o Adams Square II: map ESRI WKT to PROJ string, and implement iterative
1420
+ inverse method (#2157)
1421
+
1422
+ o Added IGH Oceanic View projection (#2226)
1423
+
1424
+ o Add wink2 inverse by generic inversion of forward method (#2243)
1425
+
1426
+ + Database:
1427
+
1428
+ o Update to EPSG 9.8.12, ESRI 10.8.1 and import scope and remarks for
1429
+ conversion (#2238) (#2267)
1430
+
1431
+ o Map the Behrmann projection to cae when converting ESRI CRSes (#1986)
1432
+
1433
+ o Support conversion of Flat_Polar_Quartic projection method (#1987)
1434
+
1435
+ o Register 4 new Austrian height grids (see https://github.com/OSGeo/PROJ-data/pull/13)
1436
+ and handle 'Vertical Offset by Grid Interpolation (BEV AT)' method (#1989)
1437
+
1438
+ o Add ESRI projection method mappings for Mercator_Variant_A, Mercator_Variant_B
1439
+ and Transverse_Cylindrical_Equal_Area and various grid mappings (#2020) (#2195)
1440
+
1441
+ o Map ESRI Transverse_Mercator_Complex to Transverse Mercator (#2040)
1442
+
1443
+ o Register grids for New Caledonia (see https://github.com/OSGeo/PROJ-data/pull/16) (#2051) (#2239)
1444
+
1445
+ o Register NZGD2000 -> ITRF96 transformation for NZGD2000 database (#2248)
1446
+
1447
+ o Register geoid file for UK added
1448
+ (see https://github.com/OSGeo//PROJ-data/pull/25() (#2250)
1449
+
1450
+ o Register Slovakian geoid transformations with needed code changes (#2259)
1451
+
1452
+ o Register Spanish SPED2ETV2 grid for ED50->ETRS89 (#2261)
1453
+
1454
+ + API:
1455
+
1456
+ o Add API function proj_get_units_from_database() (#2065)
1457
+
1458
+ o Add API function proj_get_suggested_operation() (#2068)
1459
+
1460
+ o Add API functions proj_degree_input() and proj_degree_output() (#2144)
1461
+
1462
+ o Moved proj_context_get_url_endpoint & proj_context_get_user_writable_directory
1463
+ from proj_experimental.h to proj.h (#2162)
1464
+
1465
+ o createFromUserInput(): allow compound CRS with the 2 parts given by names,
1466
+ e.g. 'WGS 84 + EGM96 height' (#2126)
1467
+
1468
+ o createOperations(): when converting CompoundCRS<-->Geographic3DCrs, do not
1469
+ use discard change of ellipsoidal height if a Helmert transformation is
1470
+ involved (#2227)
1471
+
1472
+ o proj_list_units() deprecated, superceeded by proj_get_units_from_database()
1473
+
1474
+ o proj_list_angular_units() deprecated, superceeded by proj_get_units_from_database()
1475
+
1476
+ + Optimizations:
1477
+
1478
+ o tmerc/utm: add a +algo=auto/evenden_snyder/poder_engsager parameter (#2030)
1479
+
1480
+ o Extended tmerc (Poder/Engsager): speed optimizations (#2036)
1481
+
1482
+ o Approximate tmerc (Snyder): speed optimizations (#2039)
1483
+
1484
+ o pj_phi2(): speed-up computation (and thus inverse ellipsoidal Mercator and LCC) (#2052)
1485
+
1486
+ o Inverse cart: speed-up computation by 33% (#2145)
1487
+
1488
+ o Extended tmerc: speed-up forward path by ~5% (#2147)
1489
+
1490
+ + Various:
1491
+
1492
+ o Follow PDAL's CMake RPATH strategy (#2009)
1493
+
1494
+ o WKT import/export: add support for WKT1_ESRI VERTCS synta (#2024)
1495
+
1496
+ o projinfo: add a --hide-ballpark option (#2127)
1497
+
1498
+ o gie: implement a strict mode with <gie-strict> </gie-strict> (#2168)
1499
+
1500
+ o Allow importing WKT1 COMPD_CS with a VERT_DATUM[Ellipsoid,2002] (#2229)
1501
+
1502
+ o Add runtime checking that sqlite3 is >= 3.11 (#2235)
1503
+
1504
+
1505
+ Bug fixes
1506
+ ---------
1507
+
1508
+ o createOperations(): do not remove ballpark transformation if there are only grid
1509
+ based operations, even if they cover the whole area of use (#2155)
1510
+
1511
+ o createFromProjString(): handle default parameters of '+krovak +type=crs', and
1512
+ handle +czech correctly (#2200)
1513
+
1514
+ o ProjectedCRS::identify(): fix identification of EPSG:3059 (#2215)
1515
+
1516
+ o Database: add a 'WGS84' alias for the EPSG:4326 CRS (#2218)
1517
+
1518
+ o Fixes related to CompoundCRS and BoundCRS (#2222)
1519
+
1520
+ o Avoid 2 warnings about missing database indices (#2223)
1521
+
1522
+ o Make projinfo --3d --boundcrs-to-wgs84 work better (#2224)
1523
+
1524
+ o Many fixes regarding BoundCRS, CompoundCRS, Geographic3D CRS with
1525
+ non-metre units (#2234)
1526
+
1527
+ o Fix identification of (one of the) ESRI WKT formulations of EPSG:3035 (#2240)
1528
+
1529
+ o Avoid using deprecated and removed Windows API function with Mingw32 (#2246)
1530
+
1531
+ o normalizeForVisualization(): make it switch axis for EPSG:5482
1532
+ (RSRGD2000 / RSPS2000) (#2256)
1533
+
1534
+ o Fix access violation in proj_context_get_database_metadata (#2260)
1535
+
1536
+ THANKS TO
1537
+ ---------
1538
+
1539
+ Martin Raspaud
1540
+ Jeroen Ooms
1541
+ Jeff McKenna
1542
+ Colin Doig
1543
+ Chris Mayo
1544
+ Chatziargyriou Eleftheria
1545
+ Bas Couwenberg
1546
+ B R S Recht
1547
+ 積丹尼 Dan Jacobson
1548
+ Alan D. Snow
1549
+ GitHub user @chrodger
1550
+ Pedro Venancio
1551
+ Olli Räisä
1552
+ John Krasting
1553
+ Andrei Marshalov
1554
+ Javier Jimenez Shaw
1555
+ Martin Dobias
1556
+ Howard Butler
1557
+ Nyall Dawson
1558
+ Mike Taves
1559
+ Kristian Evers
1560
+ Even Rouault
1561
+
1562
+ 7.0.1 Release Notes
1563
+ -------------------
1564
+
1565
+ Updates
1566
+ -------
1567
+
1568
+ o Database: update to EPSG v9.8.9 #2141
1569
+
1570
+ Bug fixes
1571
+ ---------
1572
+
1573
+ o Make tests independent of proj-datumgrid (#1995)
1574
+
1575
+ o Add missing projection property tables (#1996)
1576
+
1577
+ o Avoid crash when running against SQLite3 binary built with
1578
+ -DSQLITE_OMIT_AUTOINIT (#1999)
1579
+
1580
+ o createOperations(): fix wrong pipeline generation with CRS that has +nadgrids=
1581
+ and +pm= (#2002)
1582
+
1583
+ o Fix bad copy&replace pattern on HEALPix and rHEALPix projection names (#2007)
1584
+
1585
+ o createUnitOfMeasure(): use full double resolution for the conversion
1586
+ factor (#2014)
1587
+
1588
+ o Update README with info on PROJ-data (#2015)
1589
+
1590
+ o utm/ups: make sure to set errno to PJD_ERR_ELLIPSOID_USE_REQUIRED if
1591
+ es==0 (#2045)
1592
+
1593
+ o data/Makefile.am: remove bashism (#2048)
1594
+
1595
+ o ProjectedCRS::identify(): tune it to better work with ESRI WKT
1596
+ representation of EPSG:2193 (#2059)
1597
+
1598
+ o Fix build with gcc 4.8.5 (#2066)
1599
+
1600
+ o Autotools/pkg-conf: Define datarootdir (#2069)
1601
+
1602
+ o cs2cs: don't require +to for '{source_crs} {target_crs} filename...'
1603
+ syntax (#2081)
1604
+
1605
+ o CMake: fix bug with find_package(PROJ) with macOS (#2082)
1606
+
1607
+ o ESRI WKT import / identification: special case for
1608
+ NAD_1983_HARN_StatePlane_Colorado_North_FIPS_0501 with Foot_US unit (#2088)
1609
+
1610
+ o ESRI WKT import / identification: special case for
1611
+ NAD_1983_HARN_StatePlane_Colorado_North_FIPS_0501 with Foot_US unit (#2089)
1612
+
1613
+ o EngineeringCRS: when exporting to WKT1_GDAL, output unit and axis (#2092)
1614
+
1615
+ o Use jtsk03-jtsk horizontal grid from CDN (#2098)
1616
+
1617
+ o CMake: prefer to use use PROJ_SOURCE_DIR and PROJ_BINARY_DIR (#2100)
1618
+
1619
+ o Fix wrong grids file name in esri.sql (#2104)
1620
+
1621
+ o Fix identification of projected CRS whose name is close but not strictly
1622
+ equal to a ESRI alias (#2106)
1623
+
1624
+ o Fix working of Helmert transform between the horizontal part of
1625
+ 2 compoundCRS (#2111)
1626
+
1627
+ o Database: fix registration of custom entries of grid_transformation_custom.sql
1628
+ for geoid grids (#2114)
1629
+
1630
+ o ESRI_WKT ingestion: make sure to identify to non-deprecated EPSG entry when
1631
+ possible (#2119)
1632
+
1633
+ o Make sure that importing a Projected 3D CRS from WKT:2019 keeps the base
1634
+ geographic CRS as 3D (#2125)
1635
+
1636
+ o createOperations(): improve results of compoundCRS to compoundCRS case (#2131)
1637
+
1638
+ o hgridshift/vgridshift: defer grid opening when grid has already
1639
+ been opened (#2132)
1640
+
1641
+ o Resolve a few shadowed declaration warnings (#2142)
1642
+
1643
+ o ProjectedCRS identification: deal with switched 1st/2nd std parallels for
1644
+ LCC_2SP(#2153)
1645
+
1646
+ o Fix Robinson inverse projection (#2154)
1647
+
1648
+ o createOperations(): do not remove ballpark transformation if there are only
1649
+ grid based operations, even if they cover the whole area of use (#2156)
1650
+
1651
+ o createFromCoordinateReferenceSystemCodes(): 'optimization' to avoid using
1652
+ C++ exceptions (#2161)
1653
+
1654
+ o Ingestion of WKT1_GDAL: correctly map 'Cylindrical_Equal_Area' (#2167)
1655
+
1656
+ o Add limited support for non-conformant WKT1 LAS COMPD_CS[] (#2172)
1657
+
1658
+ o PROJ4 string import: take into correctly non-metre unit when the string
1659
+ looks like the one for WGS 84 / Pseudo Mercator (#2177)
1660
+
1661
+ o io.hpp: avoid dependency to proj_json_streaming_writer.hpp (#2184)
1662
+
1663
+ o Fix support of WKT1_GDAL with netCDF rotated pole formulation (#2186)
1664
+
1665
+
1666
+ THANKS TO
1667
+ ---------
1668
+
1669
+ Mike Taves
1670
+ Chris Mayo
1671
+ Kristian Evers
1672
+ Even Rouault
1673
+
1674
+
1675
+ 7.0.0 Release Notes
1676
+ -------------------
1677
+
1678
+ The major feature in PROJ 7 is significantly improved handling of gridded
1679
+ models. This was implemented in RFC4 (https://proj.org/community/rfc/rfc-4.html).
1680
+ The main features of the RFC4 work is that PROJ now implements a new grid format,
1681
+ Geodetic TIFF grids, for exchaning gridded transformation models. In addition
1682
+ to the new grid format, PROJ can now also access grids online using a data
1683
+ store in the cloud.
1684
+
1685
+ The grids that was previously available via the proj-datumgrid packages are now
1686
+ available in two places:
1687
+
1688
+ 1. As a single combined data archive including all available resource files
1689
+ 2. From the cloud via https://cdn.proj.org
1690
+
1691
+ In Addition, provided with PROJ is a utility called projsync that can be used
1692
+ download grids from the data store in the cloud.
1693
+
1694
+ The use of the new grid format and the data from the cloud requires that
1695
+ PROJ is build against libtiff and libcurl. Both are optional dependencies
1696
+ to PROJ but it is highly encouraged that the software is build against both.
1697
+
1698
+
1699
+ ATTENTION: PROJ 7 will be last major release version that includes the proj_api.h
1700
+ header. The functionality in proj_api.h is deprecated and only supported in
1701
+ maintenance mode. It is inferior to the functionality provided by functions
1702
+ in the proj.h header and all projects still relying on proj_api.h are encouraged
1703
+ to migrate to the new API in proj.h. See https://proj.org/development/migration.html
1704
+ for more info on how to migrate from the old to the new API.
1705
+
1706
+ Updates
1707
+ -------
1708
+ o Added new file access API to proj.h #866
1709
+
1710
+ o Updated the name of the most recent version of the WKT2 standard from
1711
+ WKT2_2018 to WKT2_2019 to reflect the proper name of the standard (#1585)
1712
+
1713
+ o Improvements in transformations from/to WGS 84 (Gxxxx) realizations and
1714
+ vertical <--> geog transormations #1608
1715
+
1716
+ o Update to version 1.50 of the geodesic library (#1629)
1717
+
1718
+ o Promote proj_assign_context to proj.h from proj_experimental.h (#1630)
1719
+
1720
+ o Add rotation support to the HEALPix projection (#1638)
1721
+
1722
+ o Add c function proj_crs_create_bound_vertical_crs() (#1689)
1723
+
1724
+ o Use Win32 Unicode APIs and expect all strings to be UTF-8 (#1765)
1725
+
1726
+ o Improved name aliases lookup (#1827)
1727
+
1728
+ o CMake: Employ better use of CTest with the BUILD_TESTING option (#1870)
1729
+
1730
+ o Grid correction: fix handling grids spanning antimeridian (#1882)
1731
+
1732
+ o Remove legacy CMake target name "proj" #1883
1733
+
1734
+ o projinfo: add --searchpaths switch (#1892)
1735
+
1736
+ o Add +proj=set operation to set component(s) of a coordinate to a fixed
1737
+ value (#1896)
1738
+
1739
+ o Add EPSG records for 'Geocentric translation by Grid Interpolation (IGN)'
1740
+ (gr3df97a.txt) and map them to new +proj=xyzgridshift (#1897)
1741
+
1742
+ o Remove 'null' grid file as it is now a special hardcoded case in grid
1743
+ code (#1898)
1744
+
1745
+ o Add projsync utility (#1903)
1746
+
1747
+ o Make PROJ the CMake project name #1910
1748
+
1749
+ o Use relative directory to locate PROJ resource files (#1921)
1750
+
1751
+
1752
+ Bug fixes
1753
+ ---------
1754
+
1755
+ o Horizontal grid shift: fix failures on points slightly outside a
1756
+ subgrid (#209)
1757
+
1758
+ o Fix ASAN issue with SQLite3VFS class (#1902)
1759
+
1760
+ o tests: force use of bash for proj_add_test_script_sh (#1905)
1761
+
1762
+
1763
+ Breaking changes
1764
+ ----------------
1765
+
1766
+ o Reject NTV2 files where GS_TYPE != SECONDS #1294
1767
+
1768
+ o On Windows the name of the library is now fixed to ``proj.lib`` instead
1769
+ of encoding the version number in the library name (#1581)
1770
+
1771
+ o Require C99 compiler (#1624)
1772
+
1773
+ o Remove deprecated JNI bindings (#1825)
1774
+
1775
+ o Remove -ld option from proj and cs2cs (#1844)
1776
+
1777
+ o Increase CMake minimum version from 3.5 to 3.9 (#1907)
1778
+
1779
+ THANKS TO
1780
+ ---------
1781
+
1782
+ Jeff McKenna
1783
+ Calum Robinson
1784
+ Anshul Singhvi
1785
+ Bas Couwenberg
1786
+ Mike Taves
1787
+ Alan D. Snow
1788
+ Charles Karney
1789
+ Kristian Evers
1790
+ Even Rouault
1791
+
1792
+ 6.3.1 Release Notes
1793
+ -------------------
1794
+
1795
+ Updates
1796
+ -------
1797
+
1798
+ o Update the EPSG database to version 9.8.6
1799
+
1800
+ o Database: add mapping for gg10_smv2.mnt and gg10_sbv2.mnt French grids
1801
+
1802
+ o Database: add mapping for TOR27CSv1.GSB
1803
+
1804
+ Bug fixes
1805
+ ---------
1806
+
1807
+ o Fix wrong use of derivingConversionRef() that caused issues with use of
1808
+ +init=epsg:XXXX by GDAL (affecting R spatial libraries) or in MapServer
1809
+
1810
+ o fix exporting CoordinateSystem to PROJ JSON with ID
1811
+
1812
+ o projinfo: use No. abbreviation instead of UTF-8 character (#1828)
1813
+
1814
+ o CompoundCRS::identify(): avoid exception when horiz/vertical part is a
1815
+ BoundCRS
1816
+
1817
+ o createOperations(): fix dealing with projected 3D CRS whose Z units != metre
1818
+
1819
+ o WKT1_GDAL export: limit datum name massaging to names matching EPSG (#1835)
1820
+
1821
+ o unitconvert with mjd time format: avoid potential integer overflow
1822
+ (ossfuzz 20072)
1823
+
1824
+ o ProjectedCRS::identify(): fix wrong identification of some ESRI WKT linked
1825
+ to units
1826
+
1827
+ o Database: add a geoid_like value for proj_method column of grid_alternatives,
1828
+ fix related entries and simplify/robustify logic to deal with EPSG
1829
+ 'Geographic3D to GravityRelatedHeight' methods
1830
+
1831
+ o Fix ingestion of +proj=cea with +k_0 (#1881)
1832
+
1833
+ o Fix performance issue, affecting PROJ.4 string generation of EPSG:7842
1834
+ (#1913)
1835
+
1836
+ o Fix identification of ESRI-style datum names starting with D_ but without
1837
+ alias (#1911)
1838
+
1839
+ o cart: Avoid discontinuity at poles in the inverse case (#1906)
1840
+
1841
+ o Various updates to make regression test suite pass with gcc on i386 (#1906)
1842
+
1843
+ THANKS TO
1844
+ ---------
1845
+
1846
+ Alan D. Snow
1847
+ GitHub user @russkel
1848
+ Gerrit Holl
1849
+ Anshul Singhvi
1850
+ Raven Kopelman
1851
+ Kristian Evers
1852
+ Even Rouault
1853
+
1854
+ 6.3.0 Release Notes
1855
+ -------------------
1856
+
1857
+ Updates
1858
+ -------
1859
+
1860
+ o Database: tune accuracy of Canadian NTv1 file w.r.t NTv2 (#1812)
1861
+
1862
+ o Modify verbosity level of some debug/trace messages (#1811)
1863
+
1864
+ o projinfo: no longer call createBoundCRSToWGS84IfPossible() for WKT1:GDAL
1865
+ (#1810)
1866
+
1867
+ o proj_trans: add retry logic to select other transformation if the best one
1868
+ fails. (#1809)
1869
+
1870
+ o BoundCRS::identify(): improvements to discard CRS that aren't relevant
1871
+ (#1802)
1872
+
1873
+ o Database: update to IGNF v3.1.0 (#1785)
1874
+
1875
+ o Build: Only export symbols if building DLL (#1773)
1876
+
1877
+ o Database: update ESRI entries with ArcGIS Desktop version 10.8.0 database
1878
+ (#1762)
1879
+
1880
+ o createOperations(): chain operations whose middle CRSs are not identical but
1881
+ have the same datum (#1734)
1882
+
1883
+ o import/export PROJJSON: support a interpolation_crs key to geoid_model
1884
+ (#1732)
1885
+
1886
+ o Database: update to EPSG v9.8.4 (#1725)
1887
+
1888
+ o Build: require SQLite 3.11 (#1721)
1889
+
1890
+ o Add support for GEOIDMODEL (#1710)
1891
+
1892
+ o Better filtering based on extent and performance improvements (#1709)
1893
+
1894
+
1895
+ Bug fixes
1896
+ ---------
1897
+
1898
+ o Horizontal grid shift: fix issue on iterative inverse computation when
1899
+ switching between (sub)grids (#1797)
1900
+
1901
+ o createOperations(): make filtering out of 'uninteresting' operations less
1902
+ aggressive (#1788)
1903
+
1904
+ o Make EPSG:102100 resolve to ESRI:102100 (#1786)
1905
+
1906
+ o ob_tran: restore traditional handling of +to_meter with pj_transform() and
1907
+ proj utility (#1783)
1908
+
1909
+ o CRS identification: use case insensitive comparison for authority name
1910
+ (#1780)
1911
+
1912
+ o normalizeForVisualization() and other methods applying on a ProjectedCRS: do
1913
+ not mess the derivingConversion object of the original object (#1746)
1914
+
1915
+ o createOperations(): fix transformation computation from/to a CRS with
1916
+ +geoidgrids and +vunits != m (#1731)
1917
+
1918
+ o Fix proj_assign_context()/pj_set_ctx() with pipelines and alternative coord
1919
+ operations (#1726)
1920
+
1921
+ o Database: add an auxiliary concatenated_operation_step table to allow
1922
+ arbitrary number of steps (#1696)
1923
+
1924
+ o Fix errors running gie-based tests in Debug mode on Windows (#1688)
1925
+
1926
+ THANKS TO
1927
+ ---------
1928
+
1929
+ Pedro Venancio
1930
+ Owen Rudge
1931
+ Nyall Dawson
1932
+ Mateusz Łoskot
1933
+ Markus Neteler
1934
+ Juergen E. Fischer
1935
+ Joaquim Luis
1936
+ Jeff McKenna
1937
+ Jakob Egger
1938
+ Guillaume Lostis
1939
+ GitHub user @yonarw
1940
+ Asa Packer
1941
+ Joe Mann
1942
+ Stephan Hügel
1943
+ Simon Schneegans
1944
+ R. Schmunk
1945
+ Alan D. Snow
1946
+ Chris Crook
1947
+ Howard Butler
1948
+ Fabrice Fontaine
1949
+ Kai Pastor
1950
+ Martin Desruisseaux
1951
+ Dalia Prizginiene
1952
+ Mike Taves
1953
+ Charles Karney
1954
+ Kristian Evers
1955
+ Even Rouault
1956
+
1957
+ 6.2.1 Release Notes
1958
+ -------------------
1959
+
1960
+ Updates
1961
+ -------
1962
+
1963
+ o Update the EPSG database to version 9.8.2
1964
+
1965
+ Bug fixes
1966
+ -------
1967
+
1968
+ o Fixed erroneous spelling of "Potsdam" (#1573)
1969
+
1970
+ o Calculate y-coordinate correctly in bertin1953 in all cases (#1579)
1971
+
1972
+ o proj_create_crs_to_crs_from_pj(): make the PJ* arguments const PJ* (#1583)
1973
+
1974
+ o PROJStringParser::createFromPROJString(): avoid potential infinite
1975
+ recursion (#1574)
1976
+
1977
+ o Avoid core dump when setting ctx==NULL in functions
1978
+ proj_coordoperation_is_instantiable and
1979
+ proj_coordoperation_has_ballpark_transformation (#1590)
1980
+
1981
+ o createOperations(): fix conversion from/to PROJ.4 CRS strings with
1982
+ non-ISO-kosher options and +towgs84/+nadgrids (#1602)
1983
+
1984
+ o proj_trans_generic(): properly set coordinate time to HUGE_VAL when no
1985
+ value is passed to the function (#1604)
1986
+
1987
+ o Fix support for +proj=ob_tran +o_proj=lonlat/latlong/latlon instead of only
1988
+ only allowing +o_proj=longlat (#1601)
1989
+
1990
+ o Improve backwards compatibility of vertical transforms (#1613)
1991
+
1992
+ o Improve emulation of deprecated +init style initialization (#1614)
1993
+
1994
+ o cs2cs: autopromote CRS to 3D when there's a mix of 2D and 3D (#1563)
1995
+
1996
+ o Avoid divisions by zero in odd situations (#1620)
1997
+
1998
+ o Avoid compile error on Solaris (#1639)
1999
+
2000
+ o proj_create_crs_to_crs(): fix when there are only transformations with
2001
+ ballpark steps (#1643)
2002
+
2003
+ o PROJ string CRS ingester: recognize more unit-less parameters, and general
2004
+ handling of +key=string_value parameters (#1645)
2005
+
2006
+ o Only call pkg-config in configure when necessary (#1652)
2007
+
2008
+ o aeqd: for spherical forward path, go to higher precision ellipsoidal
2009
+ case when the point coordinates are super close to the origin (#1654)
2010
+
2011
+ o proj_create_crs_to_crs(): remove elimination of Ballpark operations
2012
+ that caused transformation failures in some cases (#1665)
2013
+
2014
+ o createOperations(): allow transforming from a compoundCRS of a bound
2015
+ verticalCRS to a 2D CRS (#1667)
2016
+
2017
+ o Avoid segfaults in case of out-of-memory situations (#1679)
2018
+
2019
+ o createOperations(): fix double vertical unit conversion from CompoundCRS
2020
+ to other CRS when the horizontal part of the projected CRS uses non-metre
2021
+ unit (#1683)
2022
+
2023
+ o importFromWkt(): fix axis orientation for non-standard ESRI WKT (#1690)
2024
+
2025
+
2026
+ THANKS TO
2027
+ ---------
2028
+
2029
+ R. Schmunk
2030
+ Jakob Egger
2031
+ Alan D. Snow
2032
+ Stephan Hügel
2033
+ Kai Pastor
2034
+ Kristian Evers
2035
+ Even Rouault
2036
+
2037
+ 6.2.0 Release Notes
2038
+ -------------------
2039
+
2040
+ Updates
2041
+ -------
2042
+
2043
+ o Introduced PROJJSON, a JSON encoding of WKT2 (#1547)
2044
+
2045
+ o Support CRS instantiation of OGC URN's (#1505)
2046
+
2047
+ o Expose scope and remarks of database objects (#1537)
2048
+
2049
+ o EPSG Database updated to version 9.7.0 (#1558)
2050
+
2051
+ o Added C API function proj_grid_get_info_from_database() (#1494)
2052
+
2053
+ o Added C API function
2054
+ proj_operation_factory_context_set_discard_superseded() (#1534)
2055
+
2056
+ o Added C API function proj_context_set_autoclose_database() (#1566)
2057
+
2058
+ o Added C API function proj_create_crs_to_crs_from_pj() (#1567)
2059
+
2060
+ o Added C API function proj_cleanup() (#1569)
2061
+
2062
+ Bug Fixes
2063
+ ---------
2064
+
2065
+ o Fixed build failure on Solaris systems (#1554)
2066
+
2067
+ THANKS TO
2068
+ ---------
2069
+
2070
+ Version 6.2.0 is made possible by the following contributors:
2071
+
2072
+ GitHub user @edechaux
2073
+ Michael D. Smith
2074
+ Matt Littlemore
2075
+ Kristian Evers
2076
+ Even Rouault
2077
+
2078
+ 6.1.1 Release Notes
2079
+ -------------------
2080
+
2081
+ Updates
2082
+ -------
2083
+
2084
+ o Update EPSG registry to version 9.6.3 (1485)
2085
+
2086
+
2087
+ Bug Fixes
2088
+ ---------
2089
+
2090
+ o Take the passed authority into account when identifying
2091
+ objects (#1466)
2092
+
2093
+ o Avoid exception when transforming from NAD83 to projected
2094
+ CRS using NAD83(2011) (#1477)
2095
+
2096
+ o Avoid off-by-one reading of name argument if name of resource
2097
+ file has length 1 (#1489)
2098
+
2099
+ o Do not include PROJ_LIB in proj_info().searchpath when context
2100
+ search path is set (#1498)
2101
+
2102
+ o Use correct delimeter for the current platform when parsing
2103
+ PROJ_LIB (#1497)
2104
+
2105
+ o Do not confuse 'ID74' CRS with WKT2 ID[] node (#1506)
2106
+
2107
+ o WKT1 importer: do case insensitive comparison for axis
2108
+ direction (#1509)
2109
+
2110
+ o Avoid compile errors on GCC 4.9.3 (#1512)
2111
+
2112
+ o Make sure that pipelines including +proj=ob_tran can be
2113
+ created (#1526)
2114
+
2115
+
2116
+ THANKS TO
2117
+ ------------
2118
+
2119
+ Version 6.1.1 is made possible by the following contributors:
2120
+
2121
+
2122
+ Alan D. Snow
2123
+ Paul Menzel
2124
+ Mateusz Łoskot
2125
+ Bas Couwenberg
2126
+ Peter Limkilde Svendsen
2127
+ Mike Taves
2128
+ Howard Butler
2129
+ Nyall Dawson
2130
+ Andrew Bell
2131
+ Kristian Evers
2132
+ Even Rouault
2133
+
2134
+ 6.1.0 Release Notes
2135
+ -------------------
2136
+
2137
+ Updates
2138
+ -------
2139
+
2140
+ o Include custom ellipsoid definitions from QGIS (#1337)
2141
+
2142
+ o Add "-k ellipsoid" option to projinfo (#1338)
2143
+
2144
+ o Make cs2cs support 4D coordinates (#1355)
2145
+
2146
+ o WKT2 parser: update to OGC 18-010r6 (#1360 #1366)
2147
+
2148
+ o Update internal version of googletest to v1.8.1 (#1361)
2149
+
2150
+ o Database update: EPSG v9.6.2 (#1462), IGNF v3.0.3, ESRI 10.7.0
2151
+ and add operation_version column (#1368)
2152
+
2153
+ o Add proj_normalize_for_visualization() that attempts to apply axis
2154
+ ordering as used by most GIS applications and PROJ <6 (#1387)
2155
+
2156
+ o Added noop operation (#1391)
2157
+
2158
+ o Paths set by user take priority over PROJ_LIB for search paths (#1398)
2159
+
2160
+ o Reduced database size (#1438)
2161
+
2162
+ o add support for compoundCRS and concatenatedOperation named from
2163
+ their components (#1441)
2164
+
2165
+ Bug fixes
2166
+ ---------
2167
+
2168
+ o Have gie return non-zero code when file can't be opened (#1312)
2169
+
2170
+ o CMake cross-compilation fix (#1316)
2171
+
2172
+ o Use 1st eccentricity instead of 2nd eccentricity in Molodensky (#1324)
2173
+
2174
+ o Make sure to include grids when doing Geocentric to CompoundCRS with
2175
+ nadgrids+geoidgrids transformations (#1326)
2176
+
2177
+ o Handle coordinates outside of bbox better (#1333)
2178
+
2179
+ o Enable system error messages in command line automatically in builds (#1336)
2180
+
2181
+ o Make sure to install projinfo man page with CMake (#1347)
2182
+
2183
+ o Add data dir to pkg-config file proj.pc (#1348)
2184
+
2185
+ o Fix GCC 9 warning about useless std::move() (#1352)
2186
+
2187
+ o Grid related fixes (#1369)
2188
+
2189
+ o Make sure that ISO19111 C++ code sets pj_errno on errors (#1405)
2190
+
2191
+ o vgridshift: handle longitude wrap-around for grids with 360deg
2192
+ longitude extent (#1429)
2193
+
2194
+ o proj/cs2cs: validate value of -f parameter to avoid potential crashes (#1434)
2195
+
2196
+ o Many division by zero and similar bug fixes found by OSS Fuzz.
2197
+
2198
+ THANKS TO
2199
+ ------------
2200
+
2201
+ Version 6.1.0 is made possible by the following contributors:
2202
+
2203
+ Andrew Hardin
2204
+ Sean Warren
2205
+ Dan Baston
2206
+ Howard Butler
2207
+ Joris Van den Bossche
2208
+ Elliott Sales de Andrade
2209
+ Alan D. Snow
2210
+ Nyall Dawson
2211
+ Chris Mayo
2212
+ Mike Taves
2213
+ Kristian Evers
2214
+ Even Rouault
2215
+
2216
+
2217
+ 6.0.0 Release Notes
2218
+ -------------------
2219
+
2220
+ PROJ 6 has undergone extensive changes to increase its functional scope from a
2221
+ cartographic projection engine with so-called "early-binding" geodetic datum
2222
+ transformation capabilities to a more complete library supporting coordinate
2223
+ transformations and coordinate reference systems.
2224
+
2225
+ As a foundation for other enhancements, PROJ now includes a C++ implementation
2226
+ of the modelisation propopsed by the ISO-19111:2019 standard / OGC Abstract
2227
+ Specification Topic 2: "Referencing By Coordinates", for geodetic reference
2228
+ frames (datums), coordinate reference systems and coordinate operations.
2229
+ Construction and query of those geodetic objects is available through a new C++
2230
+ API, and also accessible for the most part from bindings in the C API.
2231
+
2232
+ Those geodetic objects can be imported and exported from and into the OGC
2233
+ Well-Known Text format (WKT) in its different variants: ESRI WKT, GDAL WKT 1,
2234
+ WKT2:2015 (ISO 19162:2015) and WKT2:2018 (ISO 19162:2018). Import and export of
2235
+ CRS objects from and into PROJ strings is also supported. This functionality
2236
+ was previously available in the GDAL software library (except WKT2 support
2237
+ which is a new feature), and is now an integral part of PROJ.
2238
+
2239
+ A unified database of geodetic objects, coordinate reference systems and their
2240
+ metadata, and coordinate operations between those CRS is now available in a
2241
+ SQLite3 database file, proj.db. This includes definitions imported from the
2242
+ IOGP EPSG dataset (v9.6.0 release), the IGNF (French national mapping agency)
2243
+ geodetic registry and the ESRI projection engine database. PROJ is now the
2244
+ reference software in the "OSGeo C stack" for this CRS and coordinate operation
2245
+ database, whereas previously this functionality was spread over PROJ, GDAL and
2246
+ libgeotiff, and used CSV or other adhoc text-based formats.
2247
+
2248
+ Late-binding coordinate operation capabilities, that takes metadata such as
2249
+ area of use and accuracy into account, has been added. This can avoid in a
2250
+ number of situations the past requirement of using WGS84 as a pivot system,
2251
+ which could cause unneeded accuracy loss, or was not doable at all sometimes
2252
+ when transformation to WGS84 was not available. Those late-binding capabilities
2253
+ are now used by the proj_create_crs_to_crs() function and the cs2cs utility.
2254
+
2255
+ A new command line utility, projinfo, has been added to query information about
2256
+ a geodetic object of the database, import and export geodetic objects from/into
2257
+ WKT and PROJ strings, and display coordinate operations available between two
2258
+ CRSs.
2259
+
2260
+ UPDATES
2261
+ -------
2262
+
2263
+ o Removed projects.h as a public interface (#835)
2264
+
2265
+ o Deprecated the proj_api.h interface. The header file is still available
2266
+ but will be removed with the next major version release of PROJ. It is
2267
+ now required to define ACCEPT_USE_OF_DEPRECATED_PROJ_API_H before the
2268
+ interface can be used (#836)
2269
+
2270
+ o Removed support for the nmake build system (#838)
2271
+
2272
+ o Removed support for the proj_def.dat defaults file (#201)
2273
+
2274
+ o C++11 required for building PROJ (#1203)
2275
+
2276
+ o Added build dependency on SQLite 3.7 (#1175)
2277
+
2278
+ o Added projinfo command line application (#1189)
2279
+
2280
+ o Added many functions to proj.h for handling ISO19111 functionality (#1175)
2281
+
2282
+ o Added C++ API exposing ISO19111 functionality (#1175)
2283
+
2284
+ o Updated cs2cs to use late-binding features (#1182)
2285
+
2286
+ o Removed the nad2bin application. Now available in the proj-datumgrid
2287
+ git repository (#1236)
2288
+
2289
+ o Removed support for Chebyshev polynomials in proj (#1226)
2290
+
2291
+ o Removed proj_geocentric_latitude from proj.h API (#1170)
2292
+
2293
+ o Changed behaviour of proj: Now only allow initialization of
2294
+ projections (#1162)
2295
+
2296
+ o Changed behaviour of tmerc: Now default to the Extended Transverse
2297
+ Mercator algorithm (etmerc). Old implementation available by adding
2298
+ +approx (#404)
2299
+
2300
+ o Chaged behaviour: Default ellipsoid now set to GRS80 (was WGS84) (#1210)
2301
+
2302
+ o Allow multiple directories in PROJ_LIB environment variable (#1281)
2303
+
2304
+ o Added Lambert Conic Conformal (2SP Michigan) projection (#1142)
2305
+
2306
+ o Added Bertin1953 projection (#1133)
2307
+
2308
+ o Added Tobler-Mercator projection (#1153)
2309
+
2310
+ o Added Molodensky-Badekas transform (#1160)
2311
+
2312
+ o Added push and pop coordinate operations (#1250)
2313
+
2314
+ o Removed +t_obs parameter from helmert and deformation (#1264)
2315
+
2316
+ o Added +dt parameter to deformation as replacement for
2317
+ removed +t_obs (#1264)
2318
+
2319
+ BUG FIXES
2320
+ ---------
2321
+
2322
+ o Read +towgs84 values correctly on locales not using dot as comma separator (#1136)
2323
+
2324
+ o Fixed file offset for reading of shift values in NTv1 files (#1144)
2325
+
2326
+ o Avoid problems with PTHREAD_MUTEX_RECURSIVE when using CMake (#1158)
2327
+
2328
+ o Avoid raising errors when setting ellipsoid flattening to zero (#1191)
2329
+
2330
+ o Fixed lower square calculations in rHealpix projection (#1206)
2331
+
2332
+ o Allow Molodensky transform parameters to be zero (#1194)
2333
+
2334
+ o Fixed wrong parameter in ITRF2000 init file (#1240)
2335
+
2336
+ o Fixed use of grid paths including spaces (#1152)
2337
+
2338
+ o Robinson: fix wrong values for forward path for latitudes >= 87.5 (#1172),
2339
+ and fix inaccurate inverse method.
2340
+
2341
+ THANKS TO
2342
+ ------------
2343
+
2344
+ Version 6.0.0 is made possible by the following contributors:
2345
+
2346
+ Aaron Puchert
2347
+ Thomas Knudsen
2348
+ Phil Elson
2349
+ Mateusz Łoskot
2350
+ Markus Neteler
2351
+ Jürgen Fischer
2352
+ Charles Karney
2353
+ Bas Couwenberg
2354
+ Karoline Skaar
2355
+ Alan D. Snow
2356
+ Howard Butler
2357
+ Marco Bernasocchi
2358
+ Ben Boeckel
2359
+ Ivan Veselov
2360
+ Philippe Rivière
2361
+ Mike Taves
2362
+ Elliott Sales de Andrade
2363
+ Kai Pastor
2364
+ Kristian Evers
2365
+ Even Rouault
2366
+
2367
+ 5.2.0 Release Notes
2368
+ -------------------
2369
+
2370
+ UPDATES
2371
+ -------
2372
+
2373
+ o Added support for deg, rad and grad in unitconvert (#1054)
2374
+
2375
+ o Assume +t_epoch as time input when not otherwise specified (#1065)
2376
+
2377
+ o Added inverse Lagrange projection (#1058)
2378
+
2379
+ o Added +multiplier option to vgridshift (#1072)
2380
+
2381
+ o Added Equal Earth projection (#1085)
2382
+
2383
+ o Added "require_grid" option to gie (#1088)
2384
+
2385
+ o Replace +transpose option of Helmert transform with +convention.
2386
+ From now on the convention used should be explicitly written. An
2387
+ error will be returned when using the +transpose option (#1091)
2388
+
2389
+ o Improved numerical precision of inverse spherical Mercator
2390
+ projection (#1105)
2391
+
2392
+ o cct will now forward text after coordinate input to output
2393
+ stream (#1111)
2394
+
2395
+
2396
+ BUG FIXES
2397
+ ------------
2398
+
2399
+ o Do not pivot over WGS84 when doing cs2cs-emulation with geocent (#1026)
2400
+
2401
+ o Do not scan past the end of the read data in pj_ctx_fgets (#1042)
2402
+
2403
+ o Make sure proj_errno_string() is available in DLL (#1050)
2404
+
2405
+ o Respect +to_meter setting when doing cs2cs-emulation (#1053)
2406
+
2407
+ o Fixed unit conversion factors for geod (#1075)
2408
+
2409
+ o Fixed test failures related to GCC 8 (#1084)
2410
+
2411
+ o Improved handling of +geoc flag (#1093)
2412
+
2413
+ o Calculate correct projection factors for Webmercator (#1095)
2414
+
2415
+ o cs2cs now always outputs degrees when transformed coordinates are
2416
+ in angular units (#1112)
2417
+
2418
+
2419
+ All bug fix numbers refer to issues or pull requests indexed at
2420
+ https://github.com/OSGeo/proj.4/
2421
+
2422
+ THANKS TO
2423
+ ------------
2424
+
2425
+ Version 5.2.0 is made possible by the following contributors:
2426
+
2427
+ Søren Holm
2428
+ Mateusz Łoskot
2429
+ Jürnjakob Dugge
2430
+ Greg Minshall
2431
+ Aaron Puchert
2432
+ Vedran Stojnović
2433
+ Bojan Šavrič
2434
+ Charles Karney
2435
+ Mateusz Loskot
2436
+ Howard Butler
2437
+ Mike Toews
2438
+ Kurt Schwehr
2439
+ Even Rouault
2440
+ Kristian Evers
2441
+
2442
+ 5.1.0 Release Notes
2443
+ -------------------
2444
+
2445
+ UPDATES
2446
+ -------
2447
+
2448
+ o Function proj_errno_string() added to proj.h API (#847)
2449
+
2450
+ o Validate units between pipeline steps and ensure transformation
2451
+ sanity (#906)
2452
+
2453
+ o Print help when calling cct and gie without arguments (#907)
2454
+
2455
+ o CITATION file added to source distribution (#914)
2456
+
2457
+ o Webmercator operation added (#925)
2458
+
2459
+ o Enhanced numerical precision of forward spherical Mercator near
2460
+ the Equator (#928)
2461
+
2462
+ o Added --skip-lines option to cct (#923)
2463
+
2464
+ o Consistently return NaN values on NaN input (#949)
2465
+
2466
+ o Removed unused src/org_proj4_Projections.h file (#956)
2467
+
2468
+ o Java Native Interface bindings updated (#957, #969)
2469
+
2470
+ o Horizontal and vertical gridshift operations extended to
2471
+ the temporal domain (#1015)
2472
+
2473
+
2474
+ BUG FIXES
2475
+ ------------
2476
+
2477
+ o Handle nan float cast overflow in PJ_robin.c and nad_intr.c (#887)
2478
+
2479
+ o Avoid overflow when Horner order is unreasonably large (#893)
2480
+
2481
+ o Avoid unwanted NaN conversions in etmerc (#899)
2482
+
2483
+ o Avoid memory failure in gie when not specifying x,y,z in gie files (#902)
2484
+
2485
+ o Avoid memory failure when +sweep is initialized incorrectly in geos (#908)
2486
+
2487
+ o Return HUGE_VAL on erroneous input in ortho (#912)
2488
+
2489
+ o Handle commented lines correctly in cct (#933)
2490
+
2491
+ o Avoid segmentation fault when transformation coordinates outside grid
2492
+ area in deformation (#934)
2493
+
2494
+ o Avoid doing false easting/northing adjustments on cartesian
2495
+ coordinates (#936)
2496
+
2497
+ o Thread-safe creation of proj mutex (#954)
2498
+
2499
+ o Avoid errors when setting up geos with +lat_0!=0 (#986)
2500
+
2501
+ o Reset errno when running proj in verbose mode (#988)
2502
+
2503
+ o Do not interpolate node values at nodata value in vertical
2504
+ grid shifts (#1004)
2505
+
2506
+ o Restrict Horner degrees to positive integer values to avoid
2507
+ memory allocation issues (#1005)
2508
+
2509
+ All bug fix numbers refer to issues or pull requests indexed at
2510
+ https://github.com/OSGeo/proj.4/
2511
+
2512
+ THANKS TO
2513
+ ------------
2514
+
2515
+ Version 5.1.0 is made possible by the following contributors:
2516
+
2517
+ Kristian Evers
2518
+ Even Rouault
2519
+ Kurt Schwehr
2520
+ Mike Toews
2521
+ Martin Desruisseaux
2522
+ Charles Karney
2523
+ Thomas Knudsen
2524
+ Javier Goizueta
2525
+ Bas Couwenberg
2526
+ Adam Wulkiewicz
2527
+ Aaron Puchert
2528
+
2529
+ 5.0.1 Release Notes
2530
+ -------------------
2531
+
2532
+ BUG FIXES
2533
+ ------------
2534
+
2535
+ All bug fix numbers refer to issues or pull requests indexed at
2536
+ https://github.com/OSGeo/proj.4/
2537
+
2538
+ o Handle ellipsoid change correctly in pipelines when
2539
+ +towgs84=0,0,0 is set #881
2540
+
2541
+ o Handle the case where nad_ctable2_init returns NULL #883
2542
+
2543
+ o Avoid shadowed declaration errors with old gcc #880
2544
+
2545
+ o Expand +datum properly +datum in pipelines #872
2546
+
2547
+ o Fail gracefully when incorrect headers are encountered in grid
2548
+ files #875
2549
+
2550
+ o Improve roundtrip stability in pipelines using +towgs84 #871
2551
+
2552
+ o Fixed typo in gie error codes #861
2553
+
2554
+ o Numerical stability fixes to the geodesic package #826 #843
2555
+
2556
+ o Make sure that transient errors are returned correctly #857
2557
+
2558
+ o Make sure that locally installed header files are not used when
2559
+ building PROJ #849
2560
+
2561
+ o Fix inconsistent parameter names in proj.h/proj_4D_api.c #842
2562
+
2563
+ o Make sure +vunits is applied #833
2564
+
2565
+ o Fix incorrect Web Mercator transformations #834
2566
+
2567
+ THANKS TO
2568
+ ------------
2569
+
2570
+ Version 5.0.1 is made possible by the following contributors:
2571
+
2572
+ Mike Toews
2573
+ Kurt Schwehr
2574
+ Even Rouault
2575
+ Charles Karney
2576
+ Thomas Knudsen
2577
+ Kristian Evers
2578
+
2579
+
2580
+ 5.0.0 Release Notes
2581
+ -------------------
2582
+
2583
+ This version of PROJ introduces some significant extensions and
2584
+ improvements to (primarily) the geodetic functionality of the system.
2585
+
2586
+ The main driver for introducing the new features is the emergence of
2587
+ dynamic reference frames, the increasing use of high accuracy GNSS,
2588
+ and the related growing demand for accurate coordinate
2589
+ transformations. While older versions of PROJ included some geodetic
2590
+ functionality, the new framework lays the foundation for turning PROJ
2591
+ into a generic geospatial coordinate transformation engine.
2592
+
2593
+ The core of the library is still the well established projection code.
2594
+ The new functionality is primarily exposed in a new programming
2595
+ interface and a new command line utility, "cct" (for "Coordinate
2596
+ Conversion and Transformation"). The old programming interface is
2597
+ still available and can - to some extent - use the new geodetic
2598
+ transformation features.
2599
+
2600
+ The internal architecture has also seen many changes and much
2601
+ improvement. So far, these improvements respect the existing
2602
+ programming interface. But the process has revealed a need to simplify
2603
+ and reduce the code base, in order to support sustained active
2604
+ development.
2605
+
2606
+ !!!
2607
+ !!! Therefore we have scheduled regular releases over the coming years
2608
+ !!! which will gradually remove the old programming interface.
2609
+ !!!
2610
+ !!! This will cause breaking changes with the next two major version
2611
+ !!! releases, which will affect all projects that depend on PROJ
2612
+ !!! (cf. section "deprecations" below).
2613
+ !!!
2614
+
2615
+ The decision to break the existing API has not been easy, but has
2616
+ ultimately been deemed necessary to ensure the long term survival of
2617
+ the project. Not only by improving the maintainability immensely, but
2618
+ also by extending the potential user (and hence developer) community.
2619
+
2620
+ The end goal is to deliver a generic coordinate transformation
2621
+ software package with a clean and concise code base appealing to
2622
+ both users and developers.
2623
+
2624
+
2625
+ VERSIONING AND NAMING
2626
+ ---------------------
2627
+
2628
+ For the first time in more than 25 years the major version number of
2629
+ the software is changed. The decision to do this is based on the many
2630
+ new features and new API. While backwards compatibility remains -
2631
+ except in a few rare corner cases - the addition of a new and improved
2632
+ programming interface warrants a new major release.
2633
+
2634
+ The new major version number unfortunately leaves the project in a bit
2635
+ of a conundrum regarding the name. For the majority of the life-time
2636
+ of the product it has been known as PROJ.4, but since we have now
2637
+ reached version 5 the name is no longer aligned with the version
2638
+ number.
2639
+
2640
+ Hence we have decided to decouple the name from the version number and
2641
+ from this version and onwards the product will simply be called PROJ.
2642
+
2643
+ In recognition of the history of the software we are keeping PROJ.4 as
2644
+ the *name of the organizing project*. The same project team also
2645
+ produces the datum-grid package.
2646
+
2647
+ In summary:
2648
+
2649
+ o The PROJ.4 project provides the product PROJ, which is now at
2650
+ version 5.0.0.
2651
+
2652
+ o The foundational component of PROJ is the library libproj.
2653
+
2654
+ o Other PROJ components include the application proj, which provides
2655
+ a command line interface to libproj.
2656
+
2657
+ o The PROJ.4 project also distributes the datum-grid package,
2658
+ which at the time of writing is at version 1.6.0.
2659
+
2660
+
2661
+ UPDATES
2662
+ -------
2663
+
2664
+ o Introduced new API in proj.h.
2665
+ - The new API is orthogonal to the existing proj_api.h API and the
2666
+ internally used projects.h API.
2667
+ - The new API adds the ability to transform spatiotemporal (4D)
2668
+ coordinates.
2669
+ - Functions in the new API use the "proj_" namespace.
2670
+ - Data types in the new API use the "PJ_" namespace, with a few
2671
+ historic exceptions such as XY, XYZ, LP and LPZ.
2672
+
2673
+ o Introduced the concept of "transformation pipelines" that makes it
2674
+ possible to do complex geodetic transformations of spatiotemporal
2675
+ coordinates by daisy chaining simple coordinate operations.
2676
+
2677
+ o Introduced cct, the Coordinate Conversion and Transformation
2678
+ application.
2679
+
2680
+ o Introduced gie, the Geospatial Integrity Investigation Environment.
2681
+ - Selftest invoked by -C flag in proj has been removed
2682
+ - Ported approx. 1300 built-in selftests to gie format
2683
+ - Ported approx. 1000 tests from the gigs test framework
2684
+ - Added approx. 200 new tests
2685
+
2686
+ o Adopted terminology from the OGC/ISO-19100 geospatial standards
2687
+ series. Key definitions are:
2688
+ - At the most generic level, a *coordinate operation* is a change
2689
+ of coordinates, based on a one-to-one relationship, from one
2690
+ coordinate reference system to another.
2691
+ - A *transformation* is a coordinate operation in which the two
2692
+ coordinate reference systems are based on different datums, e.g.
2693
+ a change from a global reference frame to a regional frame.
2694
+ - A *conversion* is a coordinate operation in which both
2695
+ coordinate reference systems are based on the same datum,
2696
+ e.g. change of units of coordinates.
2697
+ - A *projection* is a coordinate conversion from an ellipsoidal
2698
+ coordinate system to a plane. Although projections are simply
2699
+ conversions according to the standard, they are treated as
2700
+ separate entities in PROJ as they make up the vast majority
2701
+ of operations in the library.
2702
+
2703
+ o New operations:
2704
+ - The pipeline operator (pipeline)
2705
+ - Transformations:
2706
+ + Helmert transform (helmert)
2707
+ + Horner real and complex polynomial evaluation (horner)
2708
+ + Horizontal gridshift (hgridshift)
2709
+ + Vertical gridshift (vgridshift)
2710
+ + Molodensky transform (molodensky)
2711
+ + Kinematic gridshift with deformation model (deformation)
2712
+ - Conversions:
2713
+ + Unit conversion (unitconvert)
2714
+ + Axis swap (axisswap)
2715
+ - Projections:
2716
+ + Central Conic projection (ccon)
2717
+
2718
+ o Significant documentation updates, including
2719
+ - Overhaul of the structure of the documentation
2720
+ - A better introduction to the use of PROJ
2721
+ - A complete reference to the new proj.h API
2722
+ - a complete rewrite of the section on geodesic calculations
2723
+ - Figures for all projections
2724
+
2725
+ o New "free format" option for operation definitions, which
2726
+ permits separating tokens by whitespace when specifying key/value-
2727
+ pairs, e.g. "proj = merc lat_0 = 45".
2728
+
2729
+ o Added metadata to init-files that can be read with the
2730
+ proj_init_info() function in the new proj.h API.
2731
+
2732
+ o Added ITRF2000, ITRF2008 and ITRF2014 init-files with ITRF
2733
+ transformation parameters, including plate motion model
2734
+ parameters.
2735
+
2736
+ o Added ellipsoid parameters for GSK2011, PZ90 and "danish". The
2737
+ latter is similar to the already supported andrae ellipsoid,
2738
+ but has a slightly different semimajor axis.
2739
+
2740
+ o Added Copenhagen prime meridian.
2741
+
2742
+ o Updated EPSG database to version 9.2.0.
2743
+
2744
+ o Geodesic library updated to version 1.49.2-c.
2745
+
2746
+ o Support for analytical partial derivatives has been removed.
2747
+
2748
+ o Improved performance in Winkel Tripel and Aitoff.
2749
+
2750
+ o Introduced pj_has_inverse() function to proj_api.h. Checks if an
2751
+ operation has an inverse. Use this instead of checking whether
2752
+ P->inv exists, since that can no longer be relied on.
2753
+
2754
+ o ABI version number updated to 13:0:0.
2755
+
2756
+ o Removed support for Windows CE.
2757
+
2758
+ o Removed the VB6 COM interface.
2759
+
2760
+ BUG FIXES
2761
+ ------------
2762
+
2763
+ All bug fix numbers refer to issues indexed at
2764
+ https://github.com/OSGeo/proj.4/issues/
2765
+
2766
+ o Fixed incorrect convergence calculation in Lambert Conformal
2767
+ Conic. #16.
2768
+
2769
+ o Handle ellipsoid parameters correctly when using +nadgrids=@null.
2770
+ #22.
2771
+
2772
+ o Return correct latitude when using negative northings in
2773
+ Transverse Mercator (tmerc). #138.
2774
+
2775
+ o Return correct result at origin in inverse Modified Stereographic
2776
+ of Alaska. #161.
2777
+
2778
+ o Return correct result at origin in inverse Modified Stereographic
2779
+ of 48 U.S. #162.
2780
+
2781
+ o Return correct result at origin in inverse Modified Stereographic
2782
+ of 50 U.S. #163.
2783
+
2784
+ o Return correct result at origin in inverse Lee Oblated
2785
+ Stereographic. #164.
2786
+
2787
+ o Return correct result at origin in inverse Miller Oblated
2788
+ Stereographic. #164.
2789
+
2790
+ o Fixed scaling and wrap-around issues in Oblique Cylindrical
2791
+ Equal Area. #166.
2792
+
2793
+ o Corrected a coefficient error in inverse Transverse Mercator. #174.
2794
+
2795
+ o Respect -r flag when calling proj with -V. #184.
2796
+
2797
+ o Remove multiplication by 2 at the equator error in Stereographic
2798
+ projection. #194.
2799
+
2800
+ o Allow +alpha=0 and +gamma=0 when using Oblique Mercator. #195.
2801
+
2802
+ o Return correct result of inverse Oblique Mercator when alpha is
2803
+ between 90 and 270. #331.
2804
+
2805
+ o Avoid segmentation fault when accessing point outside grid. #369.
2806
+
2807
+ o Avoid segmentation fault on NaN input in Robin inverse. #463.
2808
+
2809
+ o Very verbose use of proj (-V) on Windows is fixed. #484.
2810
+
2811
+ o Fixed memory leak in General Oblique Transformation. #497.
2812
+
2813
+ o Equations for meridian convergence and partial derivatives have
2814
+ been corrected for non-conformal projections. #526.
2815
+
2816
+ o Fixed scaling of cartesian coordinates in pj_transform(). #726.
2817
+
2818
+ o Additional bug fixes courtesy of Google's OSS-Fuzz program:
2819
+ https://bugs.chromium.org/p/oss-fuzz/issues/list?can=1&q=proj4
2820
+
2821
+
2822
+ DEPRECATIONS
2823
+ ------------
2824
+
2825
+ o The projects.h header and the functions related to it is
2826
+ considered deprecated from version 5.0.0 and onwards.
2827
+
2828
+
2829
+ !!! PROJECTS.H WILL BE REMOVED FROM THE LIBRARY !!!
2830
+ !!! WITH VERSION 6.0.0 !!!
2831
+
2832
+ o The nmake build system on Windows will not be supported from
2833
+ version 6.0.0 on onwards. Use CMake instead.
2834
+
2835
+ !!! NMAKE BUILD SYSTEM WILL BE REMOVED FROM THE LIBRARY !!!
2836
+ !!! WITH VERSION 6.0.0 !!!
2837
+
2838
+ o The proj_api.h header and the functions related to it is
2839
+ consided deprecated from version 5.0.0 and onwards.
2840
+
2841
+ !!! PROJ_API.H WILL BE REMOVED FROM THE LIBRARY !!!
2842
+ !!! WITH VERSION 7.0.0 !!!
2843
+
2844
+
2845
+ THANKS TO
2846
+ ------------
2847
+
2848
+ Version 5.0.0 is made possible by the following contributors:
2849
+
2850
+ Lukasz Komsta
2851
+ Maxim Churilin
2852
+ edechaux
2853
+ dusanjovic
2854
+ Zoltan Siki
2855
+ Tom Fili
2856
+ Nicolas David
2857
+ Mike Toews
2858
+ Micah Cochran
2859
+ Luke Campbell
2860
+ Ilya Oshchepkov
2861
+ Adam Wulkiewicz
2862
+ Jonas Tittmann
2863
+ Mateusz Loskot
2864
+ Etienne Jacques
2865
+ Bas Couwenberg
2866
+ Elliott Sales de Andrade
2867
+ Charles Karney
2868
+ Aaron Puchert
2869
+ Julien Moquet
2870
+ Charles Karney
2871
+ Howard Butler
2872
+ Even Rouault
2873
+ Thomas Knudsen
2874
+ Kristian Evers
2875
+
2876
+
2877
+ 4.9.3 Release Notes
2878
+ -------------------
2879
+
2880
+ o UTM now uses etmerc, following NGA recommendations. Tests adjusted
2881
+ for tiny changes in values.
2882
+
2883
+ o new projections: Times, Natural Earth II, Compact Miller, Patterson
2884
+ Cylindrical, and inverse for Hammer and Eckert-Greifendorff.
2885
+
2886
+ o runtime self tests are now opt-in instead of opt-out
2887
+
2888
+ o math constants moved to projects.h
2889
+
2890
+ o bugfixes
2891
+
2892
+ o New (optional) runtime self tests added to proj
2893
+
2894
+ 4.9.2 Release Notes
2895
+ -------------------
2896
+
2897
+ o proj_def.dat was missing from source distribution
2898
+ see https://github.com/OSGeo/proj.4/issues/274 for more detail
2899
+
2900
+ o Update Geodesic library from GeographicLib
2901
+
2902
+ o Remove setlocale() use in pj_init_ctx()
2903
+
2904
+ o Renamed PVALUE in pj_param.c to prevent clash with Windows
2905
+
2906
+ 4.9.1 Release Notes
2907
+ -------------------
2908
+
2909
+ o 4.9.0RC2 release was abandoned because it was not promoted in a
2910
+ timely fashion. Subsequent maintenance of tickets has continued,
2911
+ and a new 4.9.1 release was issued in its place.
2912
+
2913
+ o Implement inverse solution for Winkel Tripel from Drazan Tutic #250
2914
+
2915
+ o More CMake configuration tweaks. The CMake configuration is probably
2916
+ not at feature parity with the autotools builds at this point but it
2917
+ is converging #256
2918
+
2919
+ o Tweak initialization ordering around setlocal which may have caused
2920
+ issues #237
2921
+
2922
+ o Support out-of-tree autoconf builds more completely #247
2923
+
2924
+ o Fix NaN handling by geod_inverse and geod_polygon_addedge #251 & #253
2925
+
2926
+ o Update config.sub and config.guess #257
2927
+
2928
+ o Adapt Charles Karney's CMake patches for smoother build #258
2929
+
2930
+ o Define default PROJ_LIB location for CMake compilation #261
2931
+
2932
+ o Fix Windows compilation on PJ_aitoff.c
2933
+
2934
+ o Align CMake SOVERSION with autotools #263
2935
+
2936
+ o Regenerate nad/epsg with GDAL r28536 to avoid precision loss in TOWGS84
2937
+ parameters, e.g. on Amersfoort / RD EPSG:4289 (#260)
2938
+
2939
+ o Add CMake project-config.cmake scripts (#264 from Charles Karney)
2940
+
2941
+ o Dial back test sensitivity #255
2942
+
2943
+ 4.9.0 Release Notes
2944
+ -------------------
2945
+
2946
+ o Implement CMake as an option for building PROJ.4
2947
+
2948
+ o Implement new virtual file api (projFileAPI) so that all access to grid
2949
+ shift and init files can be hooked.
2950
+
2951
+ o Replace geodesic implementation with one from Charles Karney and add a
2952
+ supported public interface (geodesic.h).
2953
+
2954
+ o Upgraded to EPSG 8.5.
2955
+
2956
+ o Removed old (deprecated) Java bindings in favor of the new api introduced
2957
+ in 4.8.0.
2958
+
2959
+ o Implement the calcofi (Cal Coop Ocean Fish Invest Lines/Stations) projection
2960
+
2961
+ o Install projects.h again for applications that want access to internal
2962
+ structures and functions despite the inherent fragility.
2963
+
2964
+ o Various bug fixes and cleanup.
2965
+
2966
+ o Added the CalCOFI pseudo-projection, #135
2967
+
2968
+ 4.8.0 Release Notes
2969
+ -------------------
2970
+
2971
+ o Added the Natural Earth projection.
2972
+
2973
+ o Added HEALPIX, rHEALPIX and Icosahedral Snyder Equal Area projections.
2974
+
2975
+ o nad2bin now produces "CTable2" format grid shift files by default which
2976
+ are platform independent.
2977
+
2978
+ o nad2nad removed, use cs2cs for datum shift operations.
2979
+
2980
+ o projects.h no longer installed as a public include file. Please try to
2981
+ only use proj_api.h.
2982
+
2983
+ o Add pj_get_spheroid_defn() accessor.
2984
+
2985
+ o Added an alternate version of pj_init() that takes a projCtx (execution
2986
+ context) structure to address multithreading issues with error management
2987
+ and to provide a support for application hookable error reporting and
2988
+ logging.
2989
+
2990
+ o Upgrade to EPSG 7.9. Some changes in ideal datum selection.
2991
+
2992
+ o JNI bindings reworked, org.proj4.Projections deprecated in favor of
2993
+ org.proj4.PJ.
2994
+
2995
+ o Added preliminary vertical datum support.
2996
+
2997
+ o Fix various multithreading issues, particular in datum grid handling code.
2998
+
2999
+ o Added support for the +axis= option for alternate axis orientations as
3000
+ part of a coordinate system (used for TM South Orientated support).
3001
+
3002
+ o +proj=omerc implementatioin replaced with code from libproj4. +rot_conv
3003
+ flag no longer works, and some coordinate systems (ie. Malaysian) will
3004
+ need to use +gamma instead. "epsg" init file updated accordingly.
3005
+
3006
+
3007
+ 4.7.0 Release Notes
3008
+ -------------------
3009
+
3010
+ o Added in memory caching of init file search results for substantial
3011
+ acceleration in some application environments (like MapServer).
3012
+
3013
+ o Regenerated nad/epsg init file with EPSG 7.1 database, including new
3014
+ support for Google Mercator (EPSG:3857).
3015
+
3016
+ o Various thread safety improvements, including preliminary support for
3017
+ a mutex lock around some operations, like grid loading.
3018
+
3019
+
3020
+ 4.6.1 Release Notes
3021
+ -------------------
3022
+
3023
+ o Upgraded to EPSG 6.17 version for nad/epsg. Also corrected the precision
3024
+ problem introduced in the last version.
3025
+
3026
+ o Added logic for tmerc projection to fail rather than return crazy results
3027
+ if more than 90 degrees away from the central meridian (#5). This change
3028
+ may only be temporary till a more comprehensive solution is found.
3029
+
3030
+ o Fixed handling of extra text in cs2cs.
3031
+
3032
+ o Renamed INSTALL to INSTALL.TXT.
3033
+
3034
+ o The eqc projection has been generalized to include a latitude of origin.
3035
+
3036
+ o Added the glabsgm (Gauss Laborde / Sphere Geometric Mean) projection,
3037
+ and gstmerc variation.
3038
+
3039
+ o nad/IGNF init catalogue created.
3040
+
3041
+ o added the ntf_r93.gsb datum shift file.
3042
+
3043
+ o Add /Op in nmake.opt compile options to avoid VC7 optimization bug (#12)
3044
+
3045
+ o Fix testvarious test script so it works properly when grid files available
3046
+
3047
+
3048
+
3049
+ 4.6.0 Release Notes
3050
+ -------------------
3051
+
3052
+ o MAJOR: Rework pj_transform() to avoid applying ellipsoid to ellipsoid
3053
+ transformations as a datum shift when no datum info is available.
3054
+
3055
+ o Avoid applying "change of ellipsoid" during datum shifting based on
3056
+ ellipsoids getting changed to spheres for spherical projections.
3057
+
3058
+ o Upgrade to EPSG 6.13
3059
+
3060
+ o Added "900913" "Google Mercator" code in nad/esri.extra.
3061
+
3062
+ o Avoid some static variable based multi-threading problems.
3063
+
3064
+ o Improve error recovery if ctable style datum shift grid fails to load.
3065
+
3066
+ o Support drive letters properly in PROJ_LIB paths for win32.
3067
+
3068
+ o Fix occasional problem with DMS parsing.
3069
+
3070
+ o Removed non-functional mpoly projection.
3071
+
3072
+ o add lonlat, and latlon as aliases for longlat.
3073
+
3074
+
3075
+ 4.5.0 Release Notes
3076
+ -------------------
3077
+
3078
+ o Microsoft Visual Studio 8 compatibility changes.
3079
+
3080
+ o Upgraded to EPSG 6.11.1 database.
3081
+
3082
+ o Several bug fixes to pj_transform() to handle transient errors properly.
3083
+
3084
+ o Fix Krovak projection (include +czech flag)
3085
+
3086
+ o Added Roussilhe Stereographic projection from libproj4 (proj=rouss).
3087
+
3088
+ o Added experimental +lon_wrap flag for alternate pj_transform() longitude
3089
+ wrapping behavior on output.
3090
+
3091
+
3092
+ 4.4.9 Release Notes
3093
+ -------------------
3094
+
3095
+ o Win32 build uses proj.dll by default now.
3096
+
3097
+ o Added accessor functions for the datums, ellps, prime_meridians, units and
3098
+ main projection definition lists so they can be used on windows where
3099
+ data objects exported from the DLL don't work easily.
3100
+
3101
+ o Added JNI (Java Native Interface) support within the jniwrap directory,
3102
+ and some supporting entry points directly in the proj dll/so. See
3103
+ --with-jni configure switch, and jniwrap/README.
3104
+
3105
+ o Added the proj=stereoa and proj=geos projections, incorporated from
3106
+ Gerald's libproj4.
3107
+
3108
+ o A few other bug fixes.
3109
+
3110
+
3111
+ 4.4.8 Release Notes
3112
+ -------------------
3113
+
3114
+ o Updated epsg file to EPSG 6.5, added other.extra pseudo-EPSG WMS definitions
3115
+
3116
+ o Made significant fixes to prime meridian support.
3117
+
3118
+ o Substantially change pj_datum_transform(), so it and pj_transform() will
3119
+ work between coordinate systems with different ellipsoids but no datum
3120
+ shift information (assume +towgs84=0,0,0).
3121
+
3122
+ o Added pj_get_release() function.
3123
+
3124
+ o Ensure pj_transform() will try to transform all points in provided list if
3125
+ even some might transform properly.
3126
+
3127
+ o Improved the accuracy of Geocentric_To_Geodetic() via an iterative
3128
+ solution.
3129
+
3130
+ o Various other bug fixes.
3131
+
3132
+
3133
+ 4.4.7 Release Notes
3134
+ -------------------
3135
+
3136
+ o Added NTv2 (.gsb) grid shift file support.
3137
+
3138
+ o Modified datum shift support so that data file data is only loaded if
3139
+ needed. Also added 'null' grid as a fallback option, and support for
3140
+ making grids optional (prefix with '@' in +nadgrids).
3141
+
3142
+ o Regenerated nad/epsg file with towgs84 parameters for non-greenwich prime
3143
+ meridians.
3144
+
3145
+ o Updated nad/esri file with better generated form from Paul Ramsey.
3146
+
3147
+ o Various bug fixes.
3148
+
3149
+
3150
+ 4.4.6 Release Notes
3151
+ -------------------
3152
+
3153
+ o Incorporated new lcca (Lambert Conformal Conic Alternate) projection from
3154
+ Gerald.
3155
+
3156
+ o Updated 'espg' translation file for EPSG 6.2.2 with better support for
3157
+ prime meridians.
3158
+
3159
+ o Added Prime Meridians via +pm command switch to cs2cs (and pj_transform).
3160
+
3161
+ o Fixed bug with 7 parameter transforms.
3162
+
3163
+ o Added 'esri' pseudo-epsg coordinate system file.
3164
+
3165
+ o Cleanup so that PROJ.4 compiles clean as C++ code.
3166
+
3167
+ o Added pj_get_def() to expand definitions of stuff like +init clauses.
3168
+
3169
+ o Added a Krovak implementation (proj=krov). Note this may change again
3170
+ in the next release.