forked from OSGeo/PROJ
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NEWS
2701 lines (1720 loc) · 76.9 KB
/
NEWS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
9.1.0 Release Notes
-------------------
Updates
--------
+ Database
o Database: update to EPSG v10.074 (#3273)
o Update ESRI objects to version 3.0.0 (#3257)
o Generate null transformation between geodetic/vertical datum ensemble and
its members (#3266)
o Add fk delete cascade to database tables for improved customizability
of the database (#3237)
o Add Svalbard geoid grid no_kv_arcgp-2006-sk to grid alternatives (#3292)
o Added French grid fr_ign_RAF20 to grid alternatives (#3228)
+ WKT & PROJJSON
o WKT2 parser: allow unit-less PARAMETER for coordinate operations (#3271)
o WKT and PROJJSON adjustments (#3234)
o Bump PROJJSON to v0.5 (#3216)
o Change order of horizontal and vertical operations when dealing with
WKT1 / PROJ4 compound CRS (#3127)
+ Coordinate Operations
o Implement Vertical Offset and slope transformation method (#3200)
o Add Interrupted Mollweide (land and ocean view) projections (#3139)
o Add invertible Horner polynomials (#3133)
+ Optimizations
o NTv2 and GTX grid readers: add a cache of lines to speed-up (#3241)
o IComparable::isEquivalentTo() optimizations (#3233)
+ Various Updates
o createOperations() / proj_trans(): better take into account area of
interest name / do not only keep first returned coordinate operation (#3282)
o createOperations(): take into account axis unit and inversion of target
DerivedProjectedCRS (#3281)
o Allow a Compound CRS with derived projected (#3283)
o Make "Vertical Offset and Slope" method usable as a deriving conversion of
a DerivedVerticalCRS (#3270)
o PROJ pipeline generator: recognize opposite Helmert transformations using
a different convention (#3265)
o createOperations(): prefer simpler pipelines / affects WGS 84 to
GDA94/GDA2020 (#3248)
o Make it possible to determine which grid files were actually used during a
transformation (#3180)
o Transformation: no longer do vertical trasnformation when doing compound CRS
to 2D CRS / add --3d to cs2cs (#3119)
o Deprecate PROJ4 CMake name (#3094)
o Use GNUInstallDirs for CMake install locations (#3100)
o Introduce PROJ_DATA environment variable to deprecate PROJ_LIB (#3253)
Bug fixes
--------
o projinfo: fix crash on --list-crs when proj.db cannot be opened (#3290)
o getCRSInfoList(): fix retrieval of projected_crs given by text_definition
only (#3289)
o WKT parser: fix issue when parsing some WKT1 with
Hotine_Oblique_Mercator_Azimuth_Center and ignoring rectified_grid_angle (#3280)
o WKT1 import: better deal when the angular unit of the GEOGCS[] of the
PROJCS[] doesn't match the one from the database (#3274)
o createOperations(): avoid potential infinite recursions (#3264)
o WKT ESRI: fix related to projected CRS export and add support for geographic
3D CRS with LINUNIT node (#3256)
o proj_grid_info(): make it work again with remote grids (#3239)
o createOperations(): fix projected CRS with non-metre horiz&vertical unit and
towgs84 to gencentric CRS (#3231)
o createOperations(): fix infinite recursion in a complex case (#3226)
9.0.1 Release Notes
-------------------
Database updates
-------
o Update to EPSG 10.064 (#3208)
o Add OGC:CRS84h (WGS 84 longitude-latitude-height) (#3155)
Bug fixes
---------
o Use CMAKE_INSTALL_MANDIR to override default (#3081)
o Increase MAX_ITER so Mollweide forward projection works near the poles (#3082)
o Fix wrong results with SQLite 3.38.0 (#3091)
o Fix issue when transforming from/to BoundCRS of 3D CRS with non-Greenwich
prime meridian, created from WKT (#3098)
o Fix issues with WKT of concatenated operations (#3105)
o CMake: fix installation of proj.pc on Windows (#3109)
o createOperations(): fix issue in transformation northing, easting
projected CRS -> +proj=longlat +lon_wrap (#3110)
o unitconvert: round to nearest date when converting to yyyymmdd (#3111)
o Fix comparison of GeodeticRefrenceFrame vs DynamicGeodeticReferenceFrame (#3120)
o createOperations(): fix transformation involving CompoundCRS, ToWGS84
and PROJ4_GRIDS (#3124)
o Fix datum names when importing from PROJ4 crs strings (affects some
transformations using geoidgrids) (#3129)
o Deal with PARAMETER["EPSG code for Interpolation CRS",crs_code] (#3149)
o createOperations(): fix CompoundCRS[BoundCRS[ProjectedCRS],BoundCRS[VerticalCRS]]
to Geog3DCrs (#3151)
o ITRF2014: fix ITRF2014:ITRF88,ITRF94 and ITRF96 definitions (#3159)
o createBoundCRSToWGS84IfPossible(): improve selection logic to generate +towgs84=
taking into account extent (#3160)
o createOperations(): fix some complex cases involving TOWGS84 and CompoundCRS (#3163)
o Fix cmake CURL dependency, update appveyor - vcpkg interaction (#3185)
o WKT import: deal with Projected CRS that is a mix of WKT1:GDAL / WKT1:ESRI (#3189)
o createOperations(): fix/improve result of 'BD72 + Ostend height ' to 'WGS84+EGM96 height' (#3199)
o Identifier::isEquivalentName(): fix when ending by ' + ' which could indirectly cause
an infinite stack call in master (#3202)
o WKT import: correctly deal with absence of Latitude_Of_Origin parameter in
WKT1 ESRI with Stereographic projection (#3212)
o PROJJSON parser: do not error out if a datum ensemble member is unknown in the database (#3223)
9.0.0 Release Notes
-------------------
Breaking Changes
----------------
o Support for the autotools build system has been removed (#3027)
See RFC7 for details: https://proj.org/community/rfc/rfc-7.html
Updates
--------
o Database updates:
+ ESRI projection engine db to version 12.9 (#2943)
+ EPSG v10.054 (#3051)
+ Vertical grid files for PL-geoid-2011, Polish geoid model (#2960)
+ Belgian geoid model hBG18 to grid alternatives (#3044)
o Add new option to proj_create_crs_to_crs_from_pj method to force +over on
transformation operations (#2914)
o Specify CMAKE_INSTALL_RPATH for macOS; use -rpath LDFLAGS for tests (#3009)
o Implement Geographic3D to Depth/Geog2D+Depth as used by ETRS89 to CD Norway
depth (#3010)
o Allow PROJ_LIB paths wrapped with double quotes (#3031)
o Use external gtest by default when possible (#3035)
o CMake: make BUILD_SHARED_LIBS=ON the default even on Windows (#3042)
o proj.ini: add a 'ca_bundle_path' variable (#3049)
Bug fixes
----------
o Fix extremely long parsing time on hostile PROJ strings (#2968)
o CMake: fix warning with external googletest (#2980)
o proj_get_crs_info_list_from_database(): report PJ_TYPE_GEODETIC_CRS for
IAU_2015 -ocentric geodetic CRS (#3013)
o peirce_q: rename +type parameter wrongly introduced in 8.2.1 to +shape (#3014)
o Set more precise error code for parsing errors in proj_create() (#3037)
o createOperations(): fix transformations from/to a BoundCRS of a
DerivedGeographicCRS coming from WKT (#3046)
o Better deal with importing strings like '+init=epsg:XXXX +over' (#3055)
o Fix importing CRS definition with +proj=peirce_q and +shape different from
square or diamond (#3057)
8.2.1 Release Notes
-------------------
Updates
-------
o Database updated with EPSG v. 10.041 (#2974)
Bug fixes
---------
o BoundCRS WKT import: fix setting of name (#2917)
o PROJStringFormatter::toString(): avoid invalid iterator increment (#2932)
o Ensure CApi test are cross-platform (#2934)
o createOperations(): do not stop at the first operation in the PROJ namespace
for vertical transformations (#2937)
o createOperationsCompoundToCompound(): fix null pointer dereference when
connection to proj.db doesn't exist. (#2938)
o Fix windows.h conflict with Criterion::STRICT (#2950)
o Cache result of proj_get_type() to help for performance of
proj_factors() (#2967)
o createOperations(): improvement for "NAD83(CSRS) + CGVD28 height" to
"NAD83(CSRS) + CGVD2013(CGG2013) height" (#2977)
o WKT1 import: correctly deal with missing rectified_grid_angle
parameter (#2986)
o Fix and additional options for Peirce Quincuncial projections (#2978)
o Fix build with Intel C++ compiler (#2995)
8.2.0 Release Notes
-------------------
Announcements
-------------
From PROJ 9.0.0 and onwards CMake will be the only build system bundled
with the PROJ package. As a consequence support for Autotools builds will
stop when the 8.2 branch of PROJ reaches end of life. We encourage
everyone to adjust their build workflows as soon as possible and report
any discrepancies discovered between Autotools and CMake builds.
Details about the build system unification can be found in PROJ RFC 7.
Updates
-------
o Added the S2 projection (#2749)
o Added support for Degree Sign on input (#2791)
o ESRI WKT: add support for import/export of (non interrupted)
Goode Homolosine (#2827)
o Make filemanager aware of UWP Win32 API (#2831)
o Add proj_create_conversion_pole_rotation_netcdf_cf_convention() to
address netCDF datasets using a pole rotation method (#2835)
o Emit better debug message when a grid isn't found (#2838)
o Add support for GeodeticCRS using a Spherical planetocentric
coordinate system (#2847)
o PROJJSON: support additional properties allowed in id object (version,
authority_citation, uri) for parity with WKT2:2019 (#2850)
o Database layout modified to include "anchor" field to geodetic_datum and
vertical_datum tables, consequently database layout version is increased
to 1.2 (#2859)
o proj_factors(): accept P to be a projected CRS (#2868)
o Add IAU_2015 CRS definitions (#2876)
o CRS::extractGeodeticCRS(): implement for DerivedProjectedCRS (#2877)
o Added proj_trans_bounds() (#2882)
o CMake: add a BUILD_APPS to be able to disable build of all applications (#2895)
o CMake: generate invproj/invgeod binaries (symlinks on Unix, copy otherwise)
(#2897)
o CMake build: add generate_wkt1_parser and generate_wkt2_parser manual
target, and logic to detect when they must be run (#2900)
o Add fallback strategy for tinshift transform to use closest triangle for
points not in any (#2907)
o Database: update to EPSG v10.038 (#2910)
o CMake: revise handling of symbol export and static builds (#2912)
Bug fixes
---------
o Fix O(n^2) performance patterns where n is the number of steps of
a pipeline (#2820)
o Detect ESRI WKT better in certain circumstances (#2823)
o Fix performance issue on pipeline instanciation of huge (broken)
pipelines (#2824)
o Make sure to re-order projection parameters according to their canonical
order if needed (#2842)
o Fix database access across fork() when SQLite3 doesn't use pread[64]() (#2845)
o Fix error in implementation of Inverse ellipsoidal orthographic projection
that cause convergence to sometimes fail (#2853)
o Fix handling of edge-case coordinates in invers ortho ellipsoidal
oblique (#2855)
o proj_normalize_for_visualization(): set input and output units when there
are several alternative transformations (#2867)
o CRS::identify(): fix ignoring CS order when identifying a geodetic CRS
by a PROJ string with just the ellipsoid (#2881)
o Fix CRS Equality with PROJ parameter order (#2887)
o WKT concatenated operation parsing: fix when a axis order reversal conversion
is the first or last operation (#2891)
o WKT1 parser: recognize Lambert_Conformal_Conic as projection name for
LCC 1SP or 2SP (#2893)
o CMake: Always build gie if testing is requested (#2899)
o Geographic 3D CRS: allow to export to WKT1:ESRI if only the GEOGCS is known
(and thus extrapolating a VERTCS) (#2902)
o lib_proj.cmake: add a PROJ::proj alias and add BUILD_INTERFACE include
directories, so that proj can be used as a subdirectory of a larger
project (#2913)
THANKS TO
---------
Thomas Knudsen
Alan D. Snow
Johannes Schauer Marin Rodrigues
Howard Butler
Geoff Evans
Joris Van den Bossche
marcus-elia
Waheed Barghouthi
snowman2
Ben Boeckel
Mike Taves
Javier Jimenez Shaw
Brendan Jurd
Kristian Evers
Even Rouault
8.1.1 Release Notes
-------------------
Updates
-------
o EPSG Database updated to version 10.028 (#2773)
Bug Fixes
---------
o Include algorithm header file to avoid build errors on Alpine Linux (#2769)
o CMake: fix installation of executables on iOS (#2766)
o Associate extents to transformations of CRS's that include GEOIDMODEL (#2769)
o Logging: avoid some overhead when logging is not enabled (#2775)
o ortho: remove useless and invalid log trace (#2777)
o CMake: remove external nlohmann_json from INTERFACE_LINK_LIBRARIES target (#2781)
o reateOperations(): fix SourceTargetCRSExtentUse::NONE mode (#2783)
o GeoTIFF grid reading: perf improvements (#2788)
o Conversion::createUTM(): avoid integer overflow (#2796)
o Inverse laea ellipsoidal: return PROJ_ERR_COORD_TRANSFM_OUTSIDE_PROJECTION_DOMAIN
when appropriates (#2801)
o Make sure that proj_crs_promote_to_3D returns a derived CRS (#2806)
o createOperations(): fix missing deg<-->rad conversion when transforming with a
CRS that has a fallback-to-PROJ4-string behaviour and is a BoundCRS of a
GeographicCRS (#2808)
o WKT2 import/export: preserve PROJ.4 CRS extension string in REMARKS[] (#2812)
o BoundCRS: accept importing/exporting in WKT2 and PROJJSON the
scope/area/extent/id attributes (#2815)
o ConcatenatedOperation::fixStepsDirection(): fix bad chaining of steps when
inverse map projection is involved in non-final step (#2819)
THANKS TO
---------
Brendan Jurd
Kristian Evers
Even Rouault
8.1.0 Release Notes
-------------------
Updates
-------
+ Database
o Update to EPSG v10.027 (#2751)
o Decrease DB size by using WITHOUT ROWID tables (#2730) (#2647)
o Add a ANALYZE step during proj.db creation allowing for
faster lookups (#2729)
o Added a PROJ.VERSION metadata entry (#2646)
o Added NGO48 (EPSG:4273) to ETRS89 (EPSG:4258) triangulation-based
transformation (#2554)
o Additions to the norwegian NKG2020 transformation (#2548)
o ESRI projection database updated to version 12.8 (#2717)
+ API additions
o Added proj_get_geoid_models_from_database() function that returns a list of
geoid models available for a given CRS (#2681)
o Added proj_get_celestial_body_list_from_database that returns a list
of celestial bodies in the PROJ database (#2667)
o Added proj_get_celestial_body_name() (#2662)
+ Various improvements
o proj_trans/cs2cs: If two operations have the same accuracy,
use the one that is contained within a larger one (#2750)
o Share SQLite database handle among all contexts (#2738)
o Add proj/internal/mutex.hpp as compat layer for mingw32 for std::mutex (#2736)
o projsync: make it filter out files not intended for the current version (#2725)
o Improvements related to DerivedVerticalCRS using Change Unit and
Height/Depth reversal methods (#2696)
o Update internal nlohmann/json to 3.9.1, and add a CMake option to
be able to use external nlohmann/json (#2686)
o createFromUserInput(): change name of CRS built from URN combined references to match the convention of EPSG projected CRS (#2677)
o Parse compound id with two authorities, like ESRI:103668+EPSG:5703 (#2669)
o Added projinfo option --list-crs (supports --area) (#2663)
o Added support for hyperbolic Cassini-Soldner (#2637)
o Added capability to get SQL statements to add custom CRS in the database (#2577)
Bug fixes
---------
o Fix 'Please include winsock2.h before windows.h' warning with msys (#2692)
o Minor changes to address lint in geodesic.c (#2752)
o BoundCRS::identify(): avoid incompatible transformation for
WKT1 / TOWGS84 export (#2747)
o proj_create(): do not open proj.db if string is a PROJ string,
even if proj_context_set_autoclose_database() has been set (#2735)
o Fix export of transformation to PROJ string in a particular situation
where CompoundCRS are involved (#2721)
Thanks to
---------
Howard Butler
Alan D. Snow
Roel van den Berg
Heidi Vanparys
Sveinung Himle
積丹尼 Dan Jacobson
Nyall Dawson
Javier Jimenez Shaw
Charles Karney
Mike Taves
Kristian Evers
Even Rouault
8.0.1 Release Notes
-------------------
Updates
-------
o Database: update to EPSG v10.018 (#2636)
o Add transformations for CHGeo2004, Swiss geoid model (#2604)
o Additions to the norwegian NKG2020 transformation (#2600)
Bug fixes
---------
o pj_vlog(): fix buffer overflow in case of super lengthy error message (#2693)
o Revert "proj_create_crs_to_crs_from_pj(): do not use PROJ_SPATIAL_CRITERION_PARTIAL_INTERSECTION if area is specified" (#2679)
o UTM: error out when value of +zone= is not an integer (#2672)
o getCRSInfoList(): make result order deterministic (by increasing auth_name,
code) (#2661)
o createOperation(): make sure no to discard deprecated operations if the
replacement uses an unknow grid (#2623)
o Fix build on Solaris 11.4 (#2621)
o Add mapping of ESRI Equal_Area projection method to EPSG (#2612)
o Fix incorrect EPGS extent code for EPSG:7789>EPSG:4976 NKG transformation (#2599)
o fix wrong capitalization of CHENyx06_ETRS.gsb (#2597)
o createOperations(): improve handling of vertical transforms when
when compound CRSs are used (#2592)
o CRS::promoteTo3D(): propagate the extent from the 2D CRS (#2589)
o createFromCRSCodesWithIntermediates(): improve performance when there is
no match (#2583)
o Fix proj_clone() to work on 'meta' coordinate operation PJ* objects that
can be returned by proj_create_crs_to_crs() (#2582)
o add PROJ_COMPUTE_VERSION, PROJ_VERSION_NUMBER,
PROJ_AT_LEAST_VERSION macros (#2581)
o Make proj_lp_dist() and proj_geod() work on a PJ* CRS object (#2570)
o Fix gcc 11 -Wnonnull compilation warnings (#2559)
o Fix use of uninitialized memory in gie tests (#2558)
o createOperations(): fix incorrect height transformation between 3D promoted RGF93 and CH1903+ (#2555)
THANKS TO
---------
Dan Jacobson
Sveinung Himle
Mike Taves
Javier Jimenez Shaw
Kristian Evers
Even Rouault
8.0.0 Release Notes
-------------------
With the release of PROJ 8 the proj_api.h API is finally removed. See
https://proj.org/development/migration.html for more info on how to migrate
from the old to the proj.h API.
With the removal of proj_api.h it has been possible to simplify error codes
and messages given by the software. The error codes are exposed in the API.
Several improvements has been made to the command line utilities as well as
tweaks in the underlying API.
Updates
-------
o Public header file proj_api.h removed (#837)
o Improved accuracy of the Mercator projection (#2397)
o Copyright statement wording updated (#2417)
o Allow cct to instantiate operations via object codes or names (#2419)
o Allow @filename syntax in cct (#2420)
o Added geocentric->topocentric conversion (+proj=topocentric) (#2444)
o Update GeographicLib to version 1.51 (#2445)
o Added option to allow export of Geographic/Projected 3D CRS
in WKT1_GDAL (#2450)
o Added --area and --bbox options in cs2cs to restrict candidate
coordinate operations (#2466)
o Added build time option to make PROJ_LIB env var tested last (#2476)
o Added --authority switch in cs2cs to control where coordinate operations
are looked for. C API function proj_create_crs_to_crs_from_pj() updated
accordingly (#2477)
o Error codes revised and exposed in the public API (#2487)
o Added --accuracy options to projinfo. C API function
proj_create_crs_to_crs_from_pj() updated accordingly (#2488)
o Added proj_crs_is_derived() function to C API (#2496)
o Enabled linking against static cURL on Windows (#2514)
o Updated ESRI CRS database to 12.7 (10.8.1/2.6) (#2519)
o Allow a WKT BoundCRS to use a PROJ string transformation (#2521)
o Update to EPSG v10.015 (#2539)
o Default log level set to PJ_LOG_ERROR (#2542)
o CMake installs a pkg-config file proj.pc, where supported (#2547)
Bug fixes
---------
o Do not restrict longitude to [-90;90] range in spherical transverse Mercator
forward projection (#2471)
o createOperations(): fix Compound to Geog3D/Projected3D CRS with non-metre ellipsoidal height (#2500)
o Avoid error messages to be emitted log level is set to PJ_LOG_NONE (#2527)
o Close database connection when autoclose set to True (#2532)
THANKS TO
---------
Zac Miller
Juan Hernando
Thomas Knudsen
Sveinung Himle
Olli Raisa
Nomit Rawat
Modern Slave
J.H. van de Water
Guillaume Lostis
Martin Steinisch
Javier Jimenez Shaw
Mateusz Łoskot
Martijn Visser
Alan D. Snow
Mike Taves
Nyall Dawson
Charles Karney
Kristian Evers
Even Rouault
7.2.1 Release Notes
-------------------
Updates
-------
o Add metadata with the version number of the database layout (#2474)
o Split coordinateoperation.cpp and test_operation.cpp in several parts (#2484)
o Update to EPSG v10.008 (#2490)
o Added the NKG 2008 and 2020 transformations in proj.db (#2495)
Bug fixes
---------
o Set CURL_ENABLED definition on projinfo build (#2405)
o createBoundCRSToWGS84IfPossible(): make it return same result with a CRS
built from EPSG code or WKT1 (#2412)
o WKT2 parsing: several fixes related to map projection parameter units (#2428)
o createOperation(): make it work properly when one of the CRS is a BoundCRS of
a DerivedGeographicCRS (+proj=ob_tran +o_proj=lonlat +towgs84=....) (#2441)
o WKT parsing: fix ingestion of WKT with a Geocentric CRS as the base of the
projected CRS (#2443)
o GeographicCRS::_isEquivalentTo(EQUIVALENT_EXCEPT_AXIS_ORDER_GEOGCRS):
make it work when comparing easting,northing,up and northing,easting,up (#2446)
o createOperation(): add a ballpark vertical transformation when dealing
with GEOIDMODEL[] (#2449)
o Use same arguments to printf format string for both radians and degrees in
output by cct (#2453)
o PRIMEM WKT handling: fixes on import for 'sexagesimal DMS' or from WKT1:GDAL/ESRI
when GEOGCS UNIT != Degree; morph to ESRI the PRIMEM name on export (#2455)
o createObjectsFromName(): in exact match, make looking for 'ETRS89 / UTM zone 32N'
return only the exact match (#2462)
o Inverse tmerc spherical: fix wrong sign of latitude when lat_0 is used (#2469)
o Add option to allow export of Geographic/Projected 3D CRS in WKT1_GDAL (#2470)
o Fix building proj.db with SQLite built with -DSQLITE_DQS=0 (#2480)
o Include JSON Schema files in CMake builds (#2485)
o createOperations(): fix inconsistent chaining exception when transforming from BoundCRS of projected CRS based on NTF Paris to BoundCRS of geog CRS NTF Paris (#2486)
THANKS TO
---------
Zac Miller
Nomit Rawat
Guillaume Lostis
J.H. van de Water
Kristian Evers
Even Rouault
7.2.0 Release Notes
-------------------
Updates
-------
+ Command line tools:
o Add multi-line PROJ string export capability, and use it by default in
projinfo (unless --single-line is specified) (#2381)
+ Coordinate operations:
o +proj=col_urban projection, implementing a EPSG projection method
used by a number of projected CRS in Colombia (#2395)
o +proj=tinshift for triangulation-based transformations (#2344)
o Added ellipsoidal formulation of +proj=ortho (#2361)
+ Database
o Update to EPSG 10.003 and make code base robust to dealing with
WKT CRS with DatumEnsemble (#2370)
o Added Finland tinshift operations (#2392)
o Added transformation from JGD2011 Geographic 3D to JGD2011
height using GSIGEO2011 (#2393)
o Improve CompoundCRS identification and name morphing in VerticalCRS
with ESRI WKT1 (#2386)
o Added OGC:CRS27 and OGC:CRS83 CRS entries for NAD27 and NAD83
in longitude, latitude order (#2350)
+ API
o Added temporal, engineering, and parametric datum
PJ_TYPE enumerations (#2274)
o Various improvements to context handling (#2329, #2331)
o proj_create_vertical_crs_ex(): add a ACCURACY option to provide
an explicit accuracy, or derive it from the grid name if it is
known (#2342)
o proj_crs_create_bound_crs_to_WGS84(): make it work on
verticalCRS/compoundCRS such as EPSG:4326+5773 and
EPSG:4326+3855 (#2365)
o promoteTo3D(): add a remark with the original CRS identifier (#2369)
o Added proj_context_clone (#2383)
Bug fixes
---------
o Avoid core dumps when copying contexts in certain scenarios (#2324)
o proj_trans(): reset errno before attemptying a retry with a new
coordinate operation (#2353)
o PROJJSON schema corrected to allow prime meridians values with
explicitly stating a unit (degrees assumed) (#2354)
o Adjust createBoundCRSToWGS84IfPossible() and operation filtering
(for POSGAR 2007 to WGS84 issues) (#2357)
o createOperations(): several fixes affecting NAD83 -> NAD83(2011) (#2364)
o WKT2:2019 import/export: handle DATUM (at top level object) with PRIMEM
o WKT1_ESRI: fix import and export of CompoundCRS (#2389)
THANKS TO
---------
Alexander Saprykin
Jeff McKenna
Nyall Dawson
Kai Pastor
Juan Hernando
Javier Jimenez Shaw
Howard Butler
Alan D. Snow
Charles Karney
Kristian Evers
Even Rouault
7.1.1 Release Notes
-------------------
Updates
-------
o Added various Brazillian grids to the database #2277
o Added geoid file for Canary Islands to the database #2312
o Updated EPSG database to version 9.8.15 #2310
Bug fixes
---------
o WKT parser: do not raise warning when parsing a WKT2:2015 TIMECRS
whose TIMEUNIT is at the CS level, and not inside #2281
o Parse '+proj=something_not_latlong +vunits=' without +geoidgrids as a
Projected3D CRS and not a compound CRS with a unknown datum #2289
o C API: Avoid crashing due to missing SANITIZE_CTX() in entry points #2293
o CMake build: Check "target_clones" before use #2297
o PROJ string export of +proj=krovak +czech: make sure we export +czech… #2301
o Helmert 2D: do not require a useless +convention= parameter #2305
o Fix a few spelling errors ("vgridshit" vs. "vgridshift") #2307
o Fix ability to identify EPSG:2154 as a candidate for 'RGF93_Lambert_93' #2316
o WKT importer: tune for Oracle WKT and 'Lambert Conformal Conic' #2322
o Revert compiler generated Fused Multiply Addition optimized routines #2328
THANKS TO
---------
Jeff McKenna
Kai Pastor
Javier Jimenez Shaw
Kristian Evers
Even Rouault
7.1.0 Release Notes
-------------------
Updates
-------
+ New transformations:
o Add a +proj=defmodel transformation for multi-component time-based deformation models (#2206)
+ New projections:
o Add square conformal projections from libproject:
- Adams Hemisphere in a Square
- Adams World in a Square I
- Adams World in a Square II
- Guyou
- Pierce Quincuncial
(#2148)
o Adams Square II: map ESRI WKT to PROJ string, and implement iterative
inverse method (#2157)
o Added IGH Oceanic View projection (#2226)
o Add wink2 inverse by generic inversion of forward method (#2243)
+ Database:
o Update to EPSG 9.8.12, ESRI 10.8.1 and import scope and remarks for
conversion (#2238) (#2267)
o Map the Behrmann projection to cae when converting ESRI CRSes (#1986)
o Support conversion of Flat_Polar_Quartic projection method (#1987)
o Register 4 new Austrian height grids (see https://github.com/OSGeo/PROJ-data/pull/13)
and handle 'Vertical Offset by Grid Interpolation (BEV AT)' method (#1989)
o Add ESRI projection method mappings for Mercator_Variant_A, Mercator_Variant_B
and Transverse_Cylindrical_Equal_Area and various grid mappings (#2020) (#2195)
o Map ESRI Transverse_Mercator_Complex to Transverse Mercator (#2040)
o Register grids for New Caledonia (see https://github.com/OSGeo/PROJ-data/pull/16) (#2051) (#2239)
o Register NZGD2000 -> ITRF96 transformation for NZGD2000 database (#2248)
o Register geoid file for UK added
(see https://github.com/OSGeo//PROJ-data/pull/25() (#2250)
o Register Slovakian geoid transformations with needed code changes (#2259)
o Register Spanish SPED2ETV2 grid for ED50->ETRS89 (#2261)
+ API:
o Add API function proj_get_units_from_database() (#2065)
o Add API function proj_get_suggested_operation() (#2068)
o Add API functions proj_degree_input() and proj_degree_output() (#2144)
o Moved proj_context_get_url_endpoint & proj_context_get_user_writable_directory
from proj_experimental.h to proj.h (#2162)
o createFromUserInput(): allow compound CRS with the 2 parts given by names,
e.g. 'WGS 84 + EGM96 height' (#2126)
o createOperations(): when converting CompoundCRS<-->Geographic3DCrs, do not
use discard change of ellipsoidal height if a Helmert transformation is