aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-05-13identify(): take into account the authority passed in (fixes #1465)Even Rouault
When identifying an object that has already a code with authority A but the authority of interest passed was B, then it was not checking that A != B, and did not try to search in the objects of B.
2019-05-12Fix doc of proj_identify()Even Rouault
2019-05-12Fix identification of GeodeticCRS expressed by PROJ string for EPSG authorityEven Rouault
2019-05-09pj_release: Use correct release date for 6.1.0Kristian Evers
2019-05-08Update to EPSG 9.6.2 (#1462)Kristian Evers
Update to EPSG 9.6.2
2019-05-08NEWS: update for EPSG v9.6.2 mentionEven Rouault
2019-05-08Database: update to EPSG 9.6.2Even Rouault
2019-05-08scripts/build_db.py: update to reflect new proj.db structureEven Rouault
2019-05-08Database: add bd72lb72_etrs89lb08.gsb grid in grid_alternatives (added in ↵Even Rouault
proj-datumgrid-europe package per https://github.com/OSGeo/proj-datumgrid/pull/50)
2019-05-08proj_normalize_for_visualization(): fix crash when ctx == nullptrEven Rouault
2019-05-08Merge pull request #1459 from rouault/fix_proj_normalize_for_visualizationEven Rouault
proj_normalize_for_visualization(): fix when there are coordinate operation alternatives
2019-05-08proj_normalize_for_visualization(): fix when there are coordinate operation ↵Even Rouault
alternatives
2019-05-07Merge pull request #1454 from ↵Even Rouault
rouault/fix_ETRS89_3D_to_proj_string_with_geoidgrids_nadgrids createOperations(): fix case of ETRS89 3D to proj string with nadgrids and geoidgrids
2019-05-07Database: register URLs for naptrans2008.gtx and rdtrans2008.gsb (non-free) ↵Even Rouault
grids
2019-05-06data/Makefile.am: add detection of md5sum utility, and install md5sha1sum on ↵Even Rouault
MacOSX Travis
2019-05-06createOperations(): for 'Amersfoort / RD New + NAP height' (EPSG:7415) to ↵Even Rouault
ETRS89 (EPSG:4937), make sure that the vgridshift is applied first (ie on Amersfoort datum) before the hgridshift
2019-05-06Merge pull request #1455 from plimkilde/geodesic_typo_fixKristian Evers
Fix typos in geodesic doc
2019-05-06Fix typos in geodesic docPeter Limkilde Svendsen
2019-05-06createOperations(): fix case of ETRS89 3D to proj string with nadgrids and ↵Even Rouault
geoidgrids Fixes https://lists.osgeo.org/pipermail/proj/2019-May/008519.html
2019-05-06Fix spelling errors. (#1452)Kristian Evers
Fix spelling errors.
2019-05-06Fix spelling errors.Bas Couwenberg
* unknow -> unknown
2019-05-06Release notes for 6.1.0Kristian Evers
2019-05-06Update man-pages from Sphinx-docsKristian Evers
2019-05-06Update ABI version number for 6.1.0Kristian Evers
2019-05-06geos: avoid division by zero (#1451)Kristian Evers
geos: avoid division by zero
2019-05-05geos: avoid division by zeroEven Rouault
Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=14602 Credit to OSS Fuzz
2019-05-03cs2cs: set time value to HUGE_VAL if not explicitly specifiedEven Rouault
2019-05-02CONTRIBUTING.md: update links to mailing list [ci skip]Even Rouault
2019-05-02lagrng: avoid division by zero when latitude is very close to 90Even Rouault
Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=14477 Credit to OSS Fuzz
2019-05-02Travis: check that the exported symbols conform to what is expected (#1445)Kristian Evers
Travis: check that the exported symbols conform to what is expected
2019-05-01autoconf build: add a PROJ_DB_CACHE_DIR trick to speed-up builds (#1446)Kristian Evers
autoconf build: add a PROJ_DB_CACHE_DIR trick to speed-up builds
2019-05-01Merge pull request #1448 from rouault/fix_makedistcheckKristian Evers
automake: fix 'make distcheck'
2019-05-01Merge branch 'master' into check_exported_symbolsKristian Evers
2019-05-01Reduce database size (#1438)Kristian Evers
Reduce database size
2019-05-01Merge pull request #1444 from rouault/disambguish_forward_inverse_namesKristian Evers
Prefix inverse and forward functions by their projection names
2019-05-01Merge pull request #1437 from mwtoews/cmakeKristian Evers
CMake: enable LTO/IPO using a manual flag or property method
2019-05-01Merge pull request #1433 from rouault/update_quickstartKristian Evers
Doc: update quickstart with PROJ 6 API + add PROJ 4->6 migration guide (fixes #1403)
2019-05-01Merge pull request #1425 from mwtoews/defineKristian Evers
Remove `PROJ_COMPILATION=1` definition
2019-04-30WKT importer: accepts PROJ-based COORDINATEOPERATIONEven Rouault
2019-04-30createOperations(): in SourceTargetCRSExtentUse::INTERSECTION mode, early ↵Even Rouault
return if the intersection of the areas is empty
2019-04-30Propagate ballpark transformation flag to inverse coordinate operationsEven Rouault
2019-04-29automake: fix 'make distcheck'Even Rouault
This target fails because the generated tarball does not include README.md, and thus the README: README.md rule lacks a dependency
2019-04-28Merge pull request #1447 from rouault/fix_macosx_nprocEven Rouault
travis/install.sh: fix previous commit that failed on MacOSX
2019-04-28travis/install.sh: fix previous commit that failed on MacOSXEven Rouault
2019-04-28autoconf build: add a PROJ_DB_CACHE_DIR trick to speed-up buildsEven Rouault
If the PROJ_DB_CACHE_DIR environment variable is defined, then a $(PROJ_DB_CACHED_DIR)/proj.db.sql.md5 file is used to determine if the set of .sql files has changed since the last time. If not then $(PROJ_DB_CACHED_DIR)/proj.db is directly used. This can saved a few seconds when doing rebuilds. This is a poor man equivalent of ccache for generating the database :-)
2019-04-28travis/install.sh: use make -j$(nproc)Even Rouault
2019-04-28Fix false-positive -Wnull-dereference GCC 8 warningEven Rouault
2019-04-26Travis: check that the exported symbols conform to what is expectedEven Rouault
This is to help checking that we do not introduce un-intended API/ABI breakage. Not fully bullet proof, but a start.
2019-04-26Prefix inverse and forward functions by their projection namesEven Rouault
This is mostly to have better OSSFuzz report. Currently a lot of bug summaries are like `proj4/standard_fuzzer: Divide-by-zero in s_inverse` By prefixing the projection name, we will get better reports, like `Divide-by-zero in airy_s_inverse` This also makes it slightly easier to set a breakpoint by function name.
2019-04-26aitof: fix division by zeroEven Rouault
Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=14447 Credit to OSS Fuzz