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

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