forked from OSGeo/PROJ
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NEWS
2243 lines (1445 loc) · 63.7 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
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
involved (#2227)
o proj_list_units() deprecated, superceeded by proj_get_units_from_database()
o proj_list_angular_units() deprecated, superceeded by proj_get_units_from_database()
+ Optimizations:
o tmerc/utm: add a +algo=auto/evenden_snyder/poder_engsager parameter (#2030)
o Extended tmerc (Poder/Engsager): speed optimizations (#2036)
o Approximate tmerc (Snyder): speed optimizations (#2039)
o pj_phi2(): speed-up computation (and thus inverse ellipsoidal Mercator and LCC) (#2052)
o Inverse cart: speed-up computation by 33% (#2145)
o Extended tmerc: speed-up forward path by ~5% (#2147)
+ Various:
o Follow PDAL's CMake RPATH strategy (#2009)
o WKT import/export: add support for WKT1_ESRI VERTCS synta (#2024)
o projinfo: add a --hide-ballpark option (#2127)
o gie: implement a strict mode with <gie-strict> </gie-strict> (#2168)
o Allow importing WKT1 COMPD_CS with a VERT_DATUM[Ellipsoid,2002] (#2229)
o Add runtime checking that sqlite3 is >= 3.11 (#2235)
Bug fixes
---------
o createOperations(): do not remove ballpark transformation if there are only grid
based operations, even if they cover the whole area of use (#2155)
o createFromProjString(): handle default parameters of '+krovak +type=crs', and
handle +czech correctly (#2200)
o ProjectedCRS::identify(): fix identification of EPSG:3059 (#2215)
o Database: add a 'WGS84' alias for the EPSG:4326 CRS (#2218)
o Fixes related to CompoundCRS and BoundCRS (#2222)
o Avoid 2 warnings about missing database indices (#2223)
o Make projinfo --3d --boundcrs-to-wgs84 work better (#2224)
o Many fixes regarding BoundCRS, CompoundCRS, Geographic3D CRS with
non-metre units (#2234)
o Fix identification of (one of the) ESRI WKT formulations of EPSG:3035 (#2240)
o Avoid using deprecated and removed Windows API function with Mingw32 (#2246)
o normalizeForVisualization(): make it switch axis for EPSG:5482
(RSRGD2000 / RSPS2000) (#2256)
o Fix access violation in proj_context_get_database_metadata (#2260)
THANKS TO
---------
Martin Raspaud
Jeroen Ooms
Jeff McKenna
Colin Doig
Chris Mayo
Chatziargyriou Eleftheria
Bas Couwenberg
B R S Recht
積丹尼 Dan Jacobson
Alan D. Snow
GitHub user @chrodger
Pedro Venancio
Olli Räisä
John Krasting
Andrei Marshalov
Javier Jimenez Shaw
Martin Dobias
Howard Butler
Nyall Dawson
Mike Taves
Kristian Evers
Even Rouault
7.0.1 Release Notes
-------------------
Updates
-------
o Database: update to EPSG v9.8.9 #2141
Bug fixes
---------
o Make tests independent of proj-datumgrid (#1995)
o Add missing projection property tables (#1996)
o Avoid crash when running against SQLite3 binary built with
-DSQLITE_OMIT_AUTOINIT (#1999)
o createOperations(): fix wrong pipeline generation with CRS that has +nadgrids=
and +pm= (#2002)
o Fix bad copy&replace pattern on HEALPix and rHEALPix projection names (#2007)
o createUnitOfMeasure(): use full double resolution for the conversion
factor (#2014)
o Update README with info on PROJ-data (#2015)
o utm/ups: make sure to set errno to PJD_ERR_ELLIPSOID_USE_REQUIRED if
es==0 (#2045)
o data/Makefile.am: remove bashism (#2048)
o ProjectedCRS::identify(): tune it to better work with ESRI WKT
representation of EPSG:2193 (#2059)
o Fix build with gcc 4.8.5 (#2066)
o Autotools/pkg-conf: Define datarootdir (#2069)
o cs2cs: don't require +to for '{source_crs} {target_crs} filename...'
syntax (#2081)
o CMake: fix bug with find_package(PROJ) with macOS (#2082)
o ESRI WKT import / identification: special case for
NAD_1983_HARN_StatePlane_Colorado_North_FIPS_0501 with Foot_US unit (#2088)
o ESRI WKT import / identification: special case for
NAD_1983_HARN_StatePlane_Colorado_North_FIPS_0501 with Foot_US unit (#2089)
o EngineeringCRS: when exporting to WKT1_GDAL, output unit and axis (#2092)
o Use jtsk03-jtsk horizontal grid from CDN (#2098)
o CMake: prefer to use use PROJ_SOURCE_DIR and PROJ_BINARY_DIR (#2100)
o Fix wrong grids file name in esri.sql (#2104)
o Fix identification of projected CRS whose name is close but not strictly
equal to a ESRI alias (#2106)
o Fix working of Helmert transform between the horizontal part of
2 compoundCRS (#2111)
o Database: fix registration of custom entries of grid_transformation_custom.sql
for geoid grids (#2114)
o ESRI_WKT ingestion: make sure to identify to non-deprecated EPSG entry when
possible (#2119)
o Make sure that importing a Projected 3D CRS from WKT:2019 keeps the base
geographic CRS as 3D (#2125)
o createOperations(): improve results of compoundCRS to compoundCRS case (#2131)
o hgridshift/vgridshift: defer grid opening when grid has already
been opened (#2132)
o Resolve a few shadowed declaration warnings (#2142)
o ProjectedCRS identification: deal with switched 1st/2nd std parallels for
LCC_2SP(#2153)
o Fix Robinson inverse projection (#2154)
o createOperations(): do not remove ballpark transformation if there are only
grid based operations, even if they cover the whole area of use (#2156)
o createFromCoordinateReferenceSystemCodes(): 'optimization' to avoid using
C++ exceptions (#2161)
o Ingestion of WKT1_GDAL: correctly map 'Cylindrical_Equal_Area' (#2167)
o Add limited support for non-conformant WKT1 LAS COMPD_CS[] (#2172)
o PROJ4 string import: take into correctly non-metre unit when the string
looks like the one for WGS 84 / Pseudo Mercator (#2177)
o io.hpp: avoid dependency to proj_json_streaming_writer.hpp (#2184)
o Fix support of WKT1_GDAL with netCDF rotated pole formulation (#2186)
THANKS TO
---------
Mike Taves
Chris Mayo
Kristian Evers
Even Rouault
7.0.0 Release Notes
-------------------
The major feature in PROJ 7 is significantly improved handling of gridded
models. This was implemented in RFC4 (https://proj.org/community/rfc/rfc-4.html).
The main features of the RFC4 work is that PROJ now implements a new grid format,
Geodetic TIFF grids, for exchaning gridded transformation models. In addition
to the new grid format, PROJ can now also access grids online using a data
store in the cloud.
The grids that was previously available via the proj-datumgrid packages are now
available in two places:
1. As a single combined data archive including all available resource files
2. From the cloud via https://cdn.proj.org
In Addition, provided with PROJ is a utility called projsync that can be used
download grids from the data store in the cloud.
The use of the new grid format and the data from the cloud requires that
PROJ is build against libtiff and libcurl. Both are optional dependencies
to PROJ but it is highly encouraged that the software is build against both.
ATTENTION: PROJ 7 will be last major release version that includes the proj_api.h
header. The functionality in proj_api.h is deprecated and only supported in
maintenance mode. It is inferior to the functionality provided by functions
in the proj.h header and all projects still relying on proj_api.h are encouraged
to migrate to the new API in proj.h. See https://proj.org/development/migration.html
for more info on how to migrate from the old to the new API.
Updates
-------
o Added new file access API to proj.h #866
o Updated the name of the most recent version of the WKT2 standard from
WKT2_2018 to WKT2_2019 to reflect the proper name of the standard (#1585)
o Improvements in transformations from/to WGS 84 (Gxxxx) realizations and
vertical <--> geog transormations #1608
o Update to version 1.50 of the geodesic library (#1629)
o Promote proj_assign_context to proj.h from proj_experimental.h (#1630)
o Add rotation support to the HEALPix projection (#1638)
o Add c function proj_crs_create_bound_vertical_crs() (#1689)
o Use Win32 Unicode APIs and expect all strings to be UTF-8 (#1765)
o Improved name aliases lookup (#1827)
o CMake: Employ better use of CTest with the BUILD_TESTING option (#1870)
o Grid correction: fix handling grids spanning antimeridian (#1882)
o Remove legacy CMake target name "proj" #1883
o projinfo: add --searchpaths switch (#1892)
o Add +proj=set operation to set component(s) of a coordinate to a fixed
value (#1896)
o Add EPSG records for 'Geocentric translation by Grid Interpolation (IGN)'
(gr3df97a.txt) and map them to new +proj=xyzgridshift (#1897)
o Remove 'null' grid file as it is now a special hardcoded case in grid
code (#1898)
o Add projsync utility (#1903)
o Make PROJ the CMake project name #1910
o Use relative directory to locate PROJ resource files (#1921)
Bug fixes
---------
o Horizontal grid shift: fix failures on points slightly outside a
subgrid (#209)
o Fix ASAN issue with SQLite3VFS class (#1902)
o tests: force use of bash for proj_add_test_script_sh (#1905)
Breaking changes
----------------
o Reject NTV2 files where GS_TYPE != SECONDS #1294
o On Windows the name of the library is now fixed to ``proj.lib`` instead
of encoding the version number in the library name (#1581)
o Require C99 compiler (#1624)
o Remove deprecated JNI bindings (#1825)
o Remove -ld option from proj and cs2cs (#1844)
o Increase CMake minimum version from 3.5 to 3.9 (#1907)
THANKS TO
---------
Jeff McKenna
Calum Robinson
Anshul Singhvi
Bas Couwenberg
Mike Taves
Alan D. Snow
Charles Karney
Kristian Evers
Even Rouault
6.3.1 Release Notes
-------------------
Updates
-------
o Update the EPSG database to version 9.8.6
o Database: add mapping for gg10_smv2.mnt and gg10_sbv2.mnt French grids
o Database: add mapping for TOR27CSv1.GSB
Bug fixes
---------
o Fix wrong use of derivingConversionRef() that caused issues with use of
+init=epsg:XXXX by GDAL (affecting R spatial libraries) or in MapServer
o fix exporting CoordinateSystem to PROJ JSON with ID
o projinfo: use No. abbreviation instead of UTF-8 character (#1828)
o CompoundCRS::identify(): avoid exception when horiz/vertical part is a
BoundCRS
o createOperations(): fix dealing with projected 3D CRS whose Z units != metre
o WKT1_GDAL export: limit datum name massaging to names matching EPSG (#1835)
o unitconvert with mjd time format: avoid potential integer overflow
(ossfuzz 20072)
o ProjectedCRS::identify(): fix wrong identification of some ESRI WKT linked
to units
o Database: add a geoid_like value for proj_method column of grid_alternatives,
fix related entries and simplify/robustify logic to deal with EPSG
'Geographic3D to GravityRelatedHeight' methods
o Fix ingestion of +proj=cea with +k_0 (#1881)
o Fix performance issue, affecting PROJ.4 string generation of EPSG:7842
(#1913)
o Fix identification of ESRI-style datum names starting with D_ but without
alias (#1911)
o cart: Avoid discontinuity at poles in the inverse case (#1906)
o Various updates to make regression test suite pass with gcc on i386 (#1906)
THANKS TO
---------
Alan D. Snow
GitHub user @russkel
Gerrit Holl
Anshul Singhvi
Raven Kopelman
Kristian Evers
Even Rouault
6.3.0 Release Notes
-------------------
Updates
-------
o Database: tune accuracy of Canadian NTv1 file w.r.t NTv2 (#1812)
o Modify verbosity level of some debug/trace messages (#1811)
o projinfo: no longer call createBoundCRSToWGS84IfPossible() for WKT1:GDAL
(#1810)
o proj_trans: add retry logic to select other transformation if the best one
fails. (#1809)
o BoundCRS::identify(): improvements to discard CRS that aren't relevant
(#1802)
o Database: update to IGNF v3.1.0 (#1785)
o Build: Only export symbols if building DLL (#1773)
o Database: update ESRI entries with ArcGIS Desktop version 10.8.0 database
(#1762)
o createOperations(): chain operations whose middle CRSs are not identical but
have the same datum (#1734)
o import/export PROJJSON: support a interpolation_crs key to geoid_model
(#1732)
o Database: update to EPSG v9.8.4 (#1725)
o Build: require SQLite 3.11 (#1721)
o Add support for GEOIDMODEL (#1710)
o Better filtering based on extent and performance improvements (#1709)
Bug fixes
---------
o Horizontal grid shift: fix issue on iterative inverse computation when
switching between (sub)grids (#1797)
o createOperations(): make filtering out of 'uninteresting' operations less
aggressive (#1788)
o Make EPSG:102100 resolve to ESRI:102100 (#1786)
o ob_tran: restore traditional handling of +to_meter with pj_transform() and
proj utility (#1783)
o CRS identification: use case insensitive comparison for authority name
(#1780)
o normalizeForVisualization() and other methods applying on a ProjectedCRS: do
not mess the derivingConversion object of the original object (#1746)
o createOperations(): fix transformation computation from/to a CRS with
+geoidgrids and +vunits != m (#1731)
o Fix proj_assign_context()/pj_set_ctx() with pipelines and alternative coord
operations (#1726)
o Database: add an auxiliary concatenated_operation_step table to allow
arbitrary number of steps (#1696)
o Fix errors running gie-based tests in Debug mode on Windows (#1688)
THANKS TO
---------