forked from locationtech/geomesa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
1968 lines (1227 loc) · 62.6 KB
/
ChangeLog
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
2015-12-13: jswhit <https://github.com/jswhit>
* : Add inverse hammer transform (pull request #329).
2015-09-10 sisyphus <https://github.com/sisyphus>
* : Rename PVALUE in pj_param.cto prevent Windows variable name clash
2015-09-10 Bas Couwenberg <https://github.com/sebastic>
* : Don't include files in proj dist, also included in proj-datumgrids
dist #301
2015-09-10 Ture Pålsson <https://github.com/turepalsson>
* : PTHREAD_MUTEX_RECURSIVE detection issue on FreeBSD #303
2015-09-10 Martin Raspaud <https://github.com/mraspaud>
* : Don't return values when doing inverse projections outside of the
mollweide map #304
2015-09-08 Charles Karney <https://github.com/cffk>
* : Update Geodesic library from GeographicLib
* Improve accuracy of calculations by evaluating trigonometric
functions more carefully and replacing the series for the reduced
length with one with a smaller truncation error.
* The allowed ranges for longitudes and azimuths is now unlimited; it
used to be [-540d, 540d).
* Enforce the restriction of latitude to [-90d, 90d] by returning NaNs
if the latitude is outside this range.
* The inverse calculation sets s12 to zero for coincident points at
pole (instead of returning a tiny quantity).
* This commit also includes a work-around for an inaccurate value for
pi/180 in dmstor.c (see the definitions of DEG_IN and DEG_OUT in
geod_interface.c).
2015-09-06 Even Rouault <[email protected]>
* re-add proj_def.dat which was missing from source distribution
https://github.com/OSGeo/proj.4/issues/274
https://github.com/OSGeo/proj.4/issues/296 and
https://github.com/OSGeo/proj.4/issues/297
2015-07-27 Even Rouault <[email protected]>
* : Remove setlocale() use in pj_init_ctx(), and replace uses of atof() &
strtod() by their locale safe variants pj_atof() and pj_strtod().
Proj versions from now advertize #define PJ_LOCALE_SAFE 1 in proj_api.h
and export pj_atof() & pj_strtod() (#226)
2015-06-01 Charles Karney <https://github.com/cffk>
Make PJ_aeqd.c use geodesics for inverse and forward projection
modification so that the geodesic structure is not global
https://github.com/OSGeo/proj.4/pull/281
2015-05-25 Elliott Sales de Andrade <https://github.com/QuLogic>
* : Fix inverse stereo projection on an ellipsoid
https://github.com/OSGeo/proj.4/pull/277
2015-02-21 Even Rouault <[email protected]>
* nad/epsg: regenerate nad/epsg with GDAL r28536 to avoid
precision loss in TOWGS84 parameters, e.g. on Amersfoort / RD
EPSG:4289 (#260)
2015-02-21 Howard Butler <[email protected]>
* cmake/Proj4Version.cmake src\lib_proj.cmake: Align
SOVERSION CMake configuration with autotools #263
2015-02-21 Howard Butler <[email protected]>
* src/lib_proj.cmake: define PROJ_LIB as part
of the compilation defines #261
2015-02-21 Even Rouault <[email protected]>
* src/lib_proj.cmake nad/CMakeLists.txt: cmake build: install
nad.lst, geodesic.h. But not emess.h and pj_list.h (from Charles Karney)
2015-02-21 Even Rouault <[email protected]>
* src/pj_gridinfo.c: remove trailing / from preprocessor line
(from Charles Karney)
2015-02-21 Even Rouault <[email protected]>
* src/PJ_aitoff.c: define M_PI and M_PI_2 (needed for Windows)
(from Charles Karney)
2015-02-21 Even Rouault <[email protected]>
* src/lib_proj.cmake: remove space from variable name to
suppress policy warning. (from Charles Karney)
2015-02-21 Even Rouault <[email protected]>
* src/bin_nad2bin.cmake: backward test for nad2nad warning.
bad directory specified for emess (from Charles Karney)
2015-02-21 Even Rouault <[email protected]>
* man/man1/proj.1 man/man1/cs2cs.1 man/man1/geod.1 man/man3/pj_init.3:
fix various issues (#259)
2015-02-21 Even Rouault <[email protected]>
* nad/Makefile.am: compatibility with proj-datumgrids-1.6RC1
(patch by sebastic, #249)
2015-02-21 Even Rouault <[email protected]>
* nad/Makefile.am: fix install target when no .lla files are in
nad subdirectory.
2015-02-21 Even Rouault <[email protected]>
* cmake/Makefile.am man/Makefile.am: install missing CMake support
files for dist-all target
2015-02-20 Howard Butler <[email protected]>
* CMakeLists.txt cmake/Proj4Mac.cmake
man/CMakeLists.txt src/bin_cs2cs.cmake
src/lib_proj.cmake: Adapt Charles Karney
CMake patches for smoother build #258
2015-02-20 Howard Butler <[email protected]>
* config.guess config.sub: #257 update very old config.guess
and config.sub
2015-02-17 Howard Butler <[email protected]>
* src/PJ_aitoff.c: #250 Inverse solution for Winkel Tripel
from Drazan Tutic
2015-02-17 Howard Butler <[email protected]>
* CMakeLists.txt cmake/policies.cmake src/lib_proj.cmake: #256
CMake tweaks to shut off some noisy policies, fix installation
of proj_config header, and shut off Framework building by
default on OSX
2015-02-17 Howard Butler <[email protected]>
* src/lib_proj.cmake CMakeLists: Fix #248 healpix compilation typo
2015-02-16 Howard Butler <[email protected]>
* src/pj_init.c: Fix #237 warning about initialization
ordering due to setlocale
2015-02-16 Howard Butler <[email protected]>
* nad/Makefile.am nad/Makefile.in and others in nad/: Fix #247 to
allow out-of-tree autoconf builds
2014-09-17 Even Rouault <[email protected]>
* src/pj_datums.c, src/pj_ellps.c: Add clrk80ign ellipsoid and use it
in carthage datum def (#245)
2014-09-16 Frank Warmerdam <[email protected]>
* Generate 4.9.0 RC2.
* nad/epsg: updated with Pulkova 1942(58) reverted, and vertical
coordinate system names coming through properly.
* src/pj_gridinfo.c, pj_apply_vgridshift.c, pj_apply_gridshift.c:
Fix problems with NTv2 files with improper parent structure (#177).
2014-09-13 Frank Warmerdam <[email protected]>
* Generate 4.9.0 release.
2014-19-13 Howard Butler <[email protected]>
* CMake: Implement CMake build system for proj.4 #243
2014-09-13 Frank Warmerdam <[email protected]>
* src/pj_datums.c: fix spelling of clrk80 in carthage datum def (#245)
2014-19-13 Howard Butler <[email protected]>
* pj_gridinfo.c: Don't crash when nad_ctable_init doesn't return
a ctx. #231
2014-09-13 Frank Warmerdam <[email protected]>
* nad/epsg: Updated to EPSG 8.5
2014-19-08 Even Rouault <[email protected]>
* src/pj_gridinfo.c: Make pj_gridinfo_load() thread-safe (#228)
2014-19-08 Howard Butler <[email protected]>
* src/pj_init.c: apply fix specified in #229 -- pj_init_plus() with init
and other parms fails in 4.9.0beta
2014-06-06 Even Rouault <[email protected]>
* src/PJ_omerc.c: mark no_off/no_uoff as used for round-tripping
pj_init_ctxt()/pj_get_def() (#239)
2014-05-14 Even Rouault <[email protected]>
* nad/epsg: Upgraded to EPSG 8.4
2013-12-09 Frank Warmerdam <[email protected]>
* src/PJ_geos.c, testvarious: reverse sense of sweep flag. (#146)
2013-12-05 Frank Warmerdam <[email protected]>
* src/PJ_qsc.c: Add QSC projection (#179)
2013-10-27 Frank Warmerdam <warmerdam@gdal-c>
* Prepare 4.9.0beta2 release.
2013-10-21 Frank Warmerdam <[email protected]>
* src/PJ_omerc.c: Change handling of values nearly 90degrees away from
the origin (#114).
* src/pj_datums.c: Switch to using EPSG:1618 COORD_OP_CODE to transform
hermannskogel to WGS84 (same as used to ETRS89) (#207).
2013-10-20 Frank Warmerdam <[email protected]>
* src/Makefile.am: Given up on restricting access to projects.h, and
move it back into the list of files installed normally.
* configure.in: Add C_WFLAGS support, in particular use
-Wdeclaration-after-statement to warn about code that won't work
with MSVC (#224).
* src/cs2cs.c: Support -I when there is no +to projection.
* src/PJ_ob_tran.c: Propagate ctx into sub-projection (#225).
2013-10-03 Frank Warmerdam <[email protected]>
* src/PJ_healpix.c: Fix healpix build on msvc. (#223)
2013-10-01 Frank Warmerdam <[email protected]>
* nad/epsg: Upgraded to EPSG 8.2.
2013-07-21 Frank Warmerdam <[email protected]>
* src/proj_etmerc.c: Fix two errors in the n**5 coefficients. Add
sixth order coefficients. Fix rounding problems (#222)
2013-07-19 Frank Warmerdam <[email protected]>
* src/PJ_healpix.c: major update for polar scaling and parms (#219)
2013-07-12 Frank Warmerdam <[email protected]>
* src/geodesic.{c,h}: allow polygon vertices to be specified
incrementally for geodesic area (#221).
2013-07-08 Frank Warmerdam <[email protected]>
* src/PJ_calcofi.c: Add Cal Coop Ocean Fish Invest Lines/Stations
projections (calcofi) (#135)
2013-07-02 Frank Warmerdam <[email protected]>
* nad/testvarious, nad/tv_out.dist: add new robinson forward test,
and backwards tests.
* src/PJ_robin.c: Applied new coefficients supplied by Ed Campbell
pretty much on faith. (#113)
2013-06-26 Frank Warmerdam <[email protected]>
* src/pj_open_lib.c: change filename and access args to const.
2013-06-25 Frank Warmerdam <[email protected]>
* nad/Makefile.am: add CH to pkgdata_DATA (#145).
* src/PJ_putp3.c: Fix putp3p usage line to remove "no inv" (#167).
* src/PJ_aitoff.c: note that aitoff and wintri projections have no
inverse (#160, #168).
* src/PJ_urm5.c: Note that there is no inverse, fix spelling of alpha
in the short description (#169).
* src/pj_ell_set.c: Ensure thread context is forwarded.
* src/multistresstest.c: add windows support (#199)
* src/pj_ctx.c: avoid race condition on setting of
default_context_initialized. (#199)
* config.guess, config.sub: updated to newer versions (#208).
* src/proj.def: add pj_get_spheroid_defn to proj.def. (#214)
* install-sh: upgrade to support multiple files (#217)
2013-06-24 Frank Warmerdam <[email protected]>
* src/projects.h, src/proj_api.h: move pj_open_lib() into proj_api.h.
* src/projects.h: Do not define PROJ_LIB to "PROJ_LIB".
2013-06-22 Frank Warmerdam <[email protected]>
* Preparing for 4.9.0 beta release.
* src/geodesic.{c,h}: sync relative to GeographicLib 1.31. (#216)
* src/pj_fileapi.c, etc: Implement a virtual file api accessible
through the context for init file and grid shift file access.
* src/mk_cheby.c: reformat, add braces to avoid warnings.
2013-06-19 Frank Warmerdam <[email protected]>
* src/PJ_healpix.c: correct various warnings about unused variables.
2013-06-19 Frank Warmerdam <[email protected]>
* src/pj_mutex.c, configure.in: Ensure that the core mutex lock
is created in recursive mode. Results in -lpthread being required.
2013-06-18 Frank Warmerdam <[email protected]>
* src/PJ_healpix.c: rename sign() to pj_sign() and make it static. No
need to risk conflicting with sign() in other packages like gctpc.
2012-12-17 Frank Warmerdam <[email protected]>
* src/pj_init.c: Recover gracefully if setlocale() returns NULL
like on Android (#204).
2012-12-07 Frank Warmerdam <[email protected]>
* src/geod*: Replace geodesic implementation with one from
Charles Karney, add public interface (#197).
2012-12-05 Frank Warmerdam <[email protected]>
* nad/epsg: Upgraded to EPSG 8.0.
2012-07-24 Frank Warmerdam <[email protected]>
* src/pj_gridcatalog.c, src/makefile.vc: fixes for visual studio
builds (#182).
2012-07-04 Frank Warmerdam <[email protected]>
* src/PJ_healpix.c: Incorporate a polar fix (#176).
2012-06-27 Frank Warmerdam <[email protected]>
* src/nad2bin.c: Fix byte swapping for bigendian platforms (#157)
2012-06-07 Frank Warmerdam <[email protected]>
* src/pj_init.c: avoid leaking vgridlist_geoid (#175).
2012-06-01 Martin Desruisseaux <[email protected]>
* Removed the old JNI wrappers from trunk. Those wrappers are
still present on the 4.8 branch as deprecated classes.
2012-05-31 Martin Desruisseaux <[email protected]>
* Replaced usages of NAN C/C++ constant by the java.lang.Double.NaN
constant. This was done because not all C/C++ compilers define the
NAN constant, and for making sure that the bits pattern is exactly the
one expected by Java.
2012-03-25 Frank Warmerdam <[email protected]>
* src/Makefile.am: Add org_proj4_PJ.h to files to distribute.
2012-03-13 Frank Warmerdam <[email protected]>
* src/projects.h, src/pj_list.c: avoid using #include directly on a
macro expansion - it is unnecessary and makes for problems in my work
environment.
2012-03-06 Frank Warmerdam <[email protected]>
* Preparing 4.8.0 release candidate.
* nad/epsg: regenerate with +no_uoff for hotine oblique mercator (#104)
* src/PJ_sconics.c: Fix missing P->sig term in pconic forward
projection equation (#148).
2012-03-03 Frank Warmerdam <[email protected]>
* src/PJ_omerc.c: Support +no_uoff and +no_off (#128)
* src/PJ_stere.c: Cleanup odd code construct (#147)
2012-02-26 Frank Warmerdam <[email protected]>
* src/PJ_geos.c, nad/testvarious: Added GEOS +sweep and add GEOS
to the test suite (#146)
* nad/CH: added swiss datum related definitions from strk (#145)
* src/Makefile.am, src/mutltistresstest.c: provide for building
multistresstest in the makefile, and slightly improve it.
2012-02-25 Frank Warmerdam <[email protected]>
* nad/epsg: regenerate with +datum (#122)
2012-02-20 Frank Warmerdam <[email protected]>
* Prepare 4.8.0 Beta1.
* src/PJ_isea.c: Add Icosahedral Snyder Equal Area projection (#111)
* src/nad2nad.c: completely removed as part of the ctable2 overhaul.
* src/cs2cs.c, src/pj_init.c, src/geod_set.c, src/nad2nad.c, src/geod.c:
Use parenthesis around assignments in if statements (#123).
* src/nad2bin.c: improve io error checking (#140).
* src/PJ_healpix.c: fix windows build issues (#133)
2012-02-15 Frank Warmerdam <[email protected]>
* src/pj_utils.c: Add pj_get_spheroid_defn() (#142)
2012-02-08 Frank Warmerdam <[email protected]>
* src/pj_apply_gridshift.c: Ensure that one among many points
falling outside the grid areas will not cause the remainder to not
be datum shifted in a way that is hard to diagnose. (#45)
2012-02-01 Frank Warmerdam <[email protected]>
* src/pj_apply_gridshift.c: ensure we try to use grids as long as we
are within epsilon of the edge (#141).
2012-01-31 Frank Warmerdam <[email protected]>
* src/nad2bin.c: fix comparison test for -f flag (#139).
2011-12-22 Frank Warmerdam <[email protected]>
* src/pj_init.c; Only split arguments on pluses following spaces
in pj_init_plus() (#132)
2011-12-14 Frank Warmerdam <[email protected]>
* src/pj_open_lib.c: make sure we check errno before logging messages (#131).
2011-12-13 Frank Warmerdam <[email protected]>
* src/PJ_healpix.c, etc: added healpix support contributed by
Landcare in New Zealand.
2011-11-22 Frank Warmerdam <[email protected]>
* src/nad_init.c, src/pj_gridinfo.c, src/nad2bin.c: Implement
support for "ctable2" format grid shift files.
2011-11-18 Frank Warmerdam <[email protected]>
* src/pj_mutex.c, src/pj_apply_vgridshift.c: avoid unused warnings.
2011-11-13 Frank Warmerdam <[email protected]>
* src/nad2bin.c: Modified to write NTv2 format files.
* src/pj_init.c: avoid casting warning with old_locale.
2011-09-28 Frank Warmerdam <[email protected]>
* nad/epsg: Upgrade to EPSG 7.9. Ideal datum selection rules also
changed a bit upstream.
2011-09-01 Martin Desruisseaux <[email protected]>
* Updated jniwrap/build.xml Ant script and README file.
2011-08-27 Martin Desruisseaux <[email protected]>
* Fixed some (but not all) memory leaks in org.proj4.Projections JNI bindings
* Deprecated org.proj4.Projections JNI bindings
* Added org.proj4.PJ JNI bindings in replacement of org.proj4.Projections
2011-08-27 Frank Warmerdam <[email protected]>
* pj_pr_list.c, pj_sterrno.c: doc typo fixes from Martin.
2011-08-07 Frank Warmerdam <[email protected]>
* src/pj_datums.c: Updated Potsdam (DHDN) towgs84 parameters to match
EPSG 7 parameter list for EPSG:4314 (#115).
* src/pj_mutex.c: alter name of core_lock to avoid conflict on AIX (#55)
2011-07-23 <[email protected]>
* configure.in, Makefile.am, proj.pc.in: Added pkg-config support (#3)
2011-07-05 Frank Warmerdam <[email protected]>
* src/pj_init.c, src/pj_gridinfo.c: Correct error handling for missing
grid shift files and defaults files (#116)
2011-06-09 Frank Warmerdam <[email protected]>
* src/PJ_robin.c: fix mistaken constant value (#113).
* src/pj_init.c: fix for +axis validation (#87)
* nad/IGNF: addition/fix of Kerguelen, Amsterdam and St Paul, Terre Adélie,
INSPIRE CRSes in IGNF catalogue (#88)
2011-05-31 Frank Warmerdam <[email protected]>
* src/PJ_igh.c: use project free instead of free() in FREEUP (#112).
* src/projects.h: memset PJ structure to zeros after allocation to
avoid problems getting everything initialized properly (#112).
2011-05-23 Frank Warmerdam <[email protected]>
* nad/esri.extra, nad/other.extra: moved 900913 definition from
esri.extra to other.extra since it has nothing to do with esri.
* nad/epsg: updated to EPSG 7.6.
2011-05-20 Frank Warmerdam <[email protected]>
* src/PJ_sterea.c: ensure P->en is properly initialized (#109)
2011-05-10 Frank Warmerdam <[email protected]>
* src/projects.h, src/pj_init.c, src/pj_transform.c: Implement
support for vto_meter and vunits vertical units transformation.
2011-05-04 Frank Warmerdam <[email protected]>
* src/PJ_igh.c: Added goodes interrupted homolosine (#106).
2011-03-28 Frank Warmerdam <[email protected]>
* src/pj_gridlist.c: avoid possible buffer overflow.
https://bugs.meego.com/show_bug.cgi?id=14963
2011-03-23 Frank Warmerdam <[email protected]>
* src/pj_initcache.c: Fix reversed memcpy that causes a crash on the
16th item put in the initcache. (#100).
2011-02-21 Frank Warmerdam <[email protected]>
* src/pj_init.c: fix serious bug in locale handling, wasn't copying
the old locale so it would sometimes get corrupted.
* src/proj_etmerc.c: added extended transverse mercator impl. (#97)
* Rerun autogen.sh with the latest versions of automake, autoconf and
libtool.
2011-02-10 Frank Warmerdam <[email protected]>
* src/pj_gridinfo.c: fix debug bounds reported (#95).
2011-02-08 Frank Warmerdam <[email protected]>
* src/PJ_cea.c: Fix particular CEA case (#94).
* src/pj_auth.c: correct precision of constants (#93)
* src/pj_init.c, pj_malloc.c, jniproj.c: avoid C++ comments (#92)
2011-01-11 Frank Warmerdam <[email protected]>
* src/PJ_goode.c: fix propagation of es and ctx to sub-projections.
2010-10-19 Frank Warmerdam <[email protected]>
* src/proj_api.h, src/projects.h: move pj_clear_initcache() to public
api and update to 4.8.0 PJ_VERSION to identify when this is available.
2010-08-31 Frank Warmerdam <[email protected]>
* src/pj_gridinfo.c: Move grids in 180 to 360 region to -180 to 0.
Improve error/debug reporting.
2010-08-21 Frank Warmerdam <[email protected]>
* nad/test*: default to using ../src/cs2cs
2010-07-31 Frank Warmerdam <[email protected]>
* nad/epsg: updated from GDAL. Adds TMSO projection definitions,
and replaces all named datums with fully defined datums.
2010-07-05 Frank Warmerdam <[email protected]>
* src/projects.h: I_ERROR macro must set context errno.
2010-06-10 Frank Warmerdam <[email protected]>
* src/*: Preliminary implementation of projCtx multithreading change.
2010-05-11 Frank Warmerdam <[email protected]>
* src/pj_apply_vgridshift.c (+more): preliminary addition of
vertical grid shifting support.
2010-03-16 Frank Warmerdam <[email protected]>
* src/pj_transform.c, src/pj_init.c, src/projects.h, src/pj_gridlist.c,
src/pj_apply_gridshift.c: rework the translation of nadgrids parameters
into a list of gridshift files to avoid use of static "lastnadgrids"
information which screws up multithreading. Changes the PJ structure.
* src/multistresstest.c: new harnass for multithreaded testing.
2010-03-03 Frank Warmerdam <[email protected]>
* src/*: fix a variety of warnings when -Wall is used. Mostly
unused variables, and use of assignment results in an if statement
without extra brackets.
* src/*: treat most grid shift errors as not-transient, with the
exception of not having a grid shift file for the area of interest.
This is done by adding a new error code for no grid shift file for
target area. Also ensure that cs2cs reports pj_transform() errors
via emess so we have a chance of seeing the error message.
2010-02-28 Frank Warmerdam <[email protected]>
* src/pj_init.c, src/pj_transform.c: added support for +axis setting
to control axis orientation (#18).
* nad/epsg: Regenerated from EPSG 7.4.1 with the big datum selection
upgrade.
2010-02-20 Frank Warmerdam <[email protected]>
* src/PJ_omerc.c: wholesale update from libproj4.3 (20081120) (#62)
2010-01-25 Frank Warmerdam <[email protected]>
* src/pj_mutex.c: avoid conflict between pthread and win32 mutex
implementations on unix-like build environments on windows. (#56)
* src/pj_init,src/projects.h,src/pj_transform.c,nad/testvarious:
Correct seriously broken +lon_wrap implementation. (#62)
* src/pj_mutex.c: fix creation of mutex on win32 to be in
unacquired state in pj_init_lock to avoid an extra reference. (#63)
2009-10-19 Frank Warmerdam <[email protected]>
* nad/ntf_r93.gsb: updated with file from IGN (#52).
* docs/*: files moved out of source tree (still in svn)
2009-09-29 Frank Warmerdam <[email protected]>
* nmake.opt: Update so that various items can be externally
overridden (#54).
2009-09-24 Frank Warmerdam <[email protected]>
* nad/Makefile.am: add ntv2 and ignf testing if grid shift files
are available.
2009-09-23 Frank Warmerdam <[email protected]>
* Preparing for 4.7.0 release.
* nad/makefile.vc: do not attempt to install ntf_r93.gsb by default.
* src/pj_init.c: Temporarily set locale to "C" to avoid locale
specific number parsing (#49).
* src/pj_rho.c: move rho out of structure, threadsafety issue (#41).
* nmake.opt: improve comments (#50).
* nad/epsg: regenerated - use more symbolic ellipsoid/datum names, and
fix EPSG 3857 and 3785 (#51).
* src/pj_gridlist.c: Implement mutex protection for grid loader/cacher.
* src/pj_mutex.c: fix up windows support.
* nad/ntf_r93.gsb: set mime-type to binary so it isn't corrupted on
windows systems.
2009-06-17 Frank Warmerdam <[email protected]>
* src/pj_mutex.c: Implement win32 and pthread mutex support.
* configure, src/Makefile.am: add --without-mutex support to configure
2009-06-16 Frank Warmerdam <[email protected]>
* README: Update windows build instructions (#30).
* nad/epsg: Upgraded to EPSG 7.1.
2009-05-19 Frank Warmerdam <[email protected]>
* nad/testvarious,nad/testdatumfile: split datum file specific
stuff into testdatumfile, and add kav5 test in testvarious (#40).
2009-05-18 Frank Warmerdam <[email protected]>
* src/PJ_sts.c: Remove duplicate division o lp.phi by P->C_p (#40).
2009-05-13 Frank Warmerdam <[email protected]>
* src/PJ_imw_p.c: Correct handling of yc in loc_for() (#39).
2009-04-02 Frank Warmerdam <[email protected]>
* nad/Makefile.am: Changes to ensure grid shift files are processed
before running check-local, and to use the local grid shift files
if available, and to avoid testvarious if grid shift files are
not available.
* src: Fix various warnings.
2009-03-11 Frank Warmerdam <[email protected]>
* man/man1: fix Snyder reference (#29)
2009-03-10 Howard Butler <[email protected]>
* autogen.sh: Use autogen.sh from libLAS for wider
platform (OSX, Solaris) compatibility
* config.guess config.log: remove autoconf temporary
files
2009-03-10 Mateusz Loskot <[email protected]>
* makefile.vc: Added new files pj_mutex.c, pj_initcache.c.
2009-03-09 Frank Warmerdam <[email protected]>
* pj_init.c, pj_mutex.c, pj_initcache.c: Introduced in-memory caching
of init file search results.
2009-03-08 IGNF <[email protected]>
* src/PJ_gstmerc.c: Correction of a bug in inv() function :
the projected origin coordinates where descaled.
* nad/testIGNF: Add a comment on the mandatory existence of the world grid
in order to make the test.
* ChangeLog: this comments
2009-01-26 Frank Warmerdam <[email protected]>
* src/*.c: Remove SCCSID and lint stuff from all source files.
2009-01-23 Frank Warmerdam <[email protected]>
* src/biveval.c: Avoid use of static variables which interfere with
re-entrancy (#24)"
2009-01-05 Frank Warmerdam <[email protected]>
* src: Removed CVS log messages from various files since they are
not maintained by subversion.
2008-09-16 Frank Warmerdam <[email protected]>
* src/{Makefile.am, Makefile.in}: Added '-no-undefined' option to
LDFLAGS. This is required to properly build a library in some
environments, MinGW in particular.
2008-08-21 Frank Warmerdam <[email protected]>
* Prepare 4.6.1RC2
* nad/td_out.dist: backed out erroneous changes in 4.6.0 that lost
datum shifts with grid shift files. Added stere (#12) test.
* nmake.opt: Added /Op to avoid stere errors per ticket #12.
2008-08-07 Frank Warmerdam <[email protected]>
* nmake.opt, nad/makefile.vc: Make sure we use PROJ_LIB_DIR when
installing nad directory support files on windows.
2008-07-28 IGNF <[email protected]>
* PJ_glabsgm.c : refactoring for better understanding of the projection's
formula.
* copy of PJ_glabsgm.c to PJ_gstmerc.c and make changes accordingly in src
and nad directories.
2008-07-21 Frank Warmerdam <[email protected]>
* Prepare 4.6.1 release.
* rename INSTALL.TXT to INSTALL since the damn distribution generator
won't stand for the alternate naming. Change makefile.vc to use
install-all target instead of install. What are the chances anyone
will think of trying that? Not high.
* nad/epsg: regenerated from EPSG 6.17. This should also correct the
odd precision problems in the last version or two caused by GDAL
numeric processing issues.
2008-06-17 Frank Warmerdam <[email protected]>
* src/PJ_tmerc.c: Ensure that tmerc forward projection inputs are
within 90 degrees of the central meridian. This should be considered
a preliminary patch until such time as Gerald comes up with a better
solution. http://trac.osgeo.org/proj/ticket/5
2008-04-24 Frank Warmerdam <[email protected]>
* src/cs2cs.c: Fix process() so it passes through extra text as the
docs claim.
2008-03-15 Frank Warmerdam <[email protected]>
* rename INSTALL to INSTALL.TXT to avoid screwing up "make install"
* Rework win32 makefiles to support "make install", and better
knowledge of grid shift files,
2008-01-18 IGNF <[email protected]>
* PJ_eqc.c : Merged eqr and eqc after advise from Gerald. eqc is
now generalized (supports latitude of origin). Cleaned files
including eqr.
* IGNF catalogue : changed accordingly. Added proj_outIGN.dist-real
in nad directory to get real coordinates for unit tests.
2008-01-05 IGNF <[email protected]>
* PJ_eqr.c: src/PJ_eqr.c added. src/pj_list.h modified (added eqr).
src/Makefile.am, src/makefile.vc modified (added PJ_eqr.c and al).
As automake 1.10 is missing, src/Makefile.in modified by hand.
* PJ_glabsgm.c: src/PJ_glabsgm.c added. src/pj_list.h modified (added glabsgm).
src/Makefile.am, src/makefile.vc modified (added PJ_glabgsm.c and al).
As automake 1.10 is missing, src/Makefile.in modified by hand.
* IGNF catalogue: nad/IGNF added. nad/ntf_r93.gsb added, nad/Makefile.am
modified (added IGNF, ntf_r93.gsb little endian release)
nad/README modified (added IGNF, ntf_r93.gsb).
As automake 1.10 is missing, nad/Makefile.in modified by hand.
* Specific IGN release : configure.in
ChangeLog
2007-12-21 Frank Warmerdam <[email protected]>
* Prepare 4.6.0 final release.
2007-12-21 Andrey Kiselv <[email protected]>
* PJ_wag3.c: Added missed "lat_ts" parameter to projection description
string.
2007-12-20 Frank Warmerdam <[email protected]>
* pj_list.h, Makefile.am, PJ_mpoly.c: Removed mpoly projection. It
was just a dummy (no actual transformation).
2007-12-06 Frank Warmerdam <[email protected]>
* pj_factors.c: in the case of phi=90, the derived should be calculated
at [90-delta,90] instead of at [90,90+delta] (the same is true for -90)
http://bugzilla.remotesensing.org/show_bug.cgi?id=1605
2007-12-03 Frank Warmerdam <[email protected]>
* pj_transform.c: Small improvement in WGS84_ES precision to avoid
an unnecessary trip through geocentric space (eg bug 1531).
2007-11-30 Frank Warmerdam <[email protected]>
* add latlon and lonlat as aliases.
2007-11-29 Frank Warmerdam <[email protected]>
* Prepare 4.6.0beta1 release.
* nad/epsg: Upgrade to EPSG 6.13
2007-11-25 Frank Warmerdam <[email protected]>
* pj_transform.c: Do ellipsoid comparisons using the _orig ellipse
values rather than the adjusted one. Use these original values for
any conversion to/from geocentric coordinates.
Also, only do pj_datum_transform if neither the source nor destination
is PJD_UNKNOWN. This means we will no longer attempt via-geocentric
adjustments for coordinate systems lacking a datum definition (having
only an ellipsoid.
* projects.h, pj_init.c: added a_orig and es_orig values in the PJ
structure so we can distinguish between the originally requested
ellipsoid, and the ellipsoid after adjustment for spherical projections
Todays changes courtesy of bug 1602.
2007-09-28 Frank Warmerdam <[email protected]>
* nad/esri.extra: Add "900913" code for google mercator.
2007-09-11 Frank Warmerdam <[email protected]>
* src/gencent.c/h, src/pj_transform.c: Restructure so geocentric code
does not use static variables - reentrancy fix.
* src/nad_init.c: Improve error recovery if ctable datum shift files
fails to load.
2007-08-20 Frank Warmerdam <[email protected]>
* src/proj_api.h: include void in arg list for prototypes with no
arguments to avoid warning about not being a function declaration.
2007-07-06 Frank Warmerdam <[email protected]>
* src/pj_open_lib.c: Per suggestion from Janne, ensure
pj_set_searchpath(0,NULL) clears the search path cleanly.
2007-06-04 Frank Warmerdam <[email protected]>
* src/proj.c: pj_free() the definition to simplify leak testing.
2007-04-04 Frank Warmerdam <[email protected]>
* src/PJ_laea.c: Fix memory leak of apa field.
2007-04-03 Frank Warmerdam <[email protected]>
* src/PJ_gn_sinu.c: remove duplicate call to pj_enfn() (bug #1536)
2007-03-12 Frank Warmerdam <[email protected]>
* src/pj_utils.c: Removed duplicate appending of towgs84 parameter.
2007-03-11 Frank Warmerdam <[email protected]>
* src/projects.h: Ensure that WIN32 is defined on win32 systems.
* src/pj_open_lib.c: support drive letter prefixes on absolute
paths. Support either \ or / as a dir delimiter on windows (bug 1499)
2007-03-07 Frank Warmerdam <[email protected]>
* src/PJ_krovak.c: info string change to report ellipsoidal instead
of spherical per email from Markus.
2007-01-31 Frank Warmerdam <[email protected]>
* src/pj_datum_set.cpp: Don't parse more datum shift parameters than
we have space to store in datum_params[].
2006-11-02 Frank Warmerdam <[email protected]>
* src/rtodms.c: Fix computation of degree per bug described on the
mailing list.
2006-10-22 Frank Warmerdam <[email protected]>
* Prepare for 4.5.0 final release.
2006-10-18 Frank Warmerdam <[email protected]>
* nad/epsg: added polish zones (2172-2175) manually per request from
Maciek on the mailing list.
* Preparing 4.5.0 beta4 release.
2006-10-17 Frank Warmerdam <[email protected]>
* src/proj_mdist.c, proj_rouss.c: Incorporated these from libproj4
for http://bugzilla.remotesensing.org/show_bug.cgi?id=967.
* nad/epsg: Regenerated from EPSG 6.11.1 with a few other
fixes (datum shift values) from several bug reports.
2006-10-12 Frank Warmerdam <[email protected]>
* Added experimental +lon_wrap argument to set a "center point" for
longitude wrapping of longitude values coming out of pj_transform().
2006-10-10 Frank Warmerdam <[email protected]>
* src/proj.c,nad2nad.c,cs2cs.c: Increase MAX_LINE to 1000 per
request from Dan Scheirer.
2006-10-01 Frank Warmerdam <[email protected]>
* nad/Makefile.am: added test target.
2006-09-23 Frank Warmerdam <[email protected]>
* nad/epsg: upgraded to EPSG 6.11
2006-09-22 Frank Warmerdam <[email protected]>
* src/pj_init.c: removed static "start" variable to resolve
thread-safety problems (bug 1283).
2006-09-14 Frank Warmerdam <[email protected]>
* Produce 4.5.0beta2 release.
* src/PJ_krovak.c: Add +czech flag to apply non-useful sign reversal