aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-02-08travis/install.sh: fix wrong setting of CXXFLAGSEven Rouault
2020-02-08Travis: restrict symbol comparison to x86_64 buildsEven Rouault
2020-02-08Merge pull request #1917 from rouault/fix_test_issues_on_i386Kristian Evers
Fix test issues on i386
2020-02-07Merge pull request #1918 from rouault/update_travis_csaEven Rouault
Travis: update CLang Static Analyzer to CLang 9
2020-02-07Merge pull request #1912 from kbevers/fix-1906Kristian Evers
cart: Avoid discontinuity at poles in the inverse case (partial fix to #1906)
2020-02-07Fix numerical precision issues in vandg and robinEven Rouault
Refs #1906 Fix remaining issues of https://github.com/OSGeo/PROJ/issues/1906#issuecomment-583168348 as found with gcc 8.2.0 -m32 -O2
2020-02-07Fix test issues on i386Even Rouault
Fix a few issues of #1906 found when running the test suite on Ubuntu 16.04 with gcc 5.5 -m32. When applied on top of the fix of #1912, make check succeeds
2020-02-06Fix cppcheck warnings and make it work with latest cppcheck 1.90Even Rouault
2020-02-06Travis: update CLang Static Analyzer to CLang 9Even Rouault
Enable optional checkers Fix two false positives
2020-02-06cart: Avoid discontinuity at poles in the inverse caseKristian Evers
This should avoid issues with numerical stability as uncovered in https://github.com/OSGeo/PROJ/issues/1906. Practically speaking this change isn't going to affect real life scenarios since the position of the center of the Earth is rarely expressed in geodetic coordinates.
2020-02-06geodetictiffgrids.rst: fix linksEven Rouault
[skip appveyor]
2020-02-06Merge pull request #1915 from rouault/fix_1911Even Rouault
Fix identification of ESRI-style datum names starting with D_ but without alias
2020-02-06Merge pull request #1914 from rouault/fix_1913Even Rouault
Fix performance issue, affecting projinfo EPSG:7842
2020-02-05Fix identification of ESRI-style datum names starting with D_ but without aliasEven Rouault
Fixes #1911
2020-02-05Fix performance issue, affecting projinfo EPSG:7842Even Rouault
Fixes #1913 AuthorityFactory::createBetweenGeodeticCRSWithDatumBasedIntermediates() issued a complex SQL query that pushes the SQLite3 query plan optimizer to its limits. Was working reasonably with sqlite 3.11, but not with later versions. So put less constraints in the main query and do post-processing checks and auxiliary requests to avoid such issues. For some unknown reason, this slightly slows down a bit execution time of the whole test_cpp_api binary (~ 10%), but couldn't come with something better, despite trying many variations of the main SQL query. It seems that in the general case the non-filter LEFT JOIN on the supersession table helped, except on this EPSG:7842 case.
2020-02-05Add projsync to READMEKristian Evers
2020-02-04Merge pull request #1910 from cffk/cmake-projCharles Karney
Make PROJ the CMake project name addressing first stage of #1885 Let's go with this! It's conceivable that there's some wrinkle I haven't thought about. So let's expose the changes to a wider community.
2020-02-04Merge pull request #1903 from rouault/add_proj_downloadEven Rouault
Add projsync utility
2020-02-04Add projsync utilityEven Rouault
Fixes #1750
2020-02-04Make PROJ the CMake project nameCharles Karney
Allow both find_package(PROJ) and find_package(PROJ4). More details are in cmake/CMakeLists.txt.
2020-02-04Merge pull request #1905 from russkel/patch-1Kristian Evers
tests: force use of bash for proj_add_test_script_sh
2020-02-04Merge pull request #1907 from mwtoews/cmakeKristian Evers
Increase CMake minimum version from 3.5 to 3.9
2020-02-04Increase CMake minimum version from 3.5 to 3.9Mike Taves
* Also remove a few if()-blocks to support older CMake versions
2020-02-02Merge pull request #1902 from rouault/fix_asan_issue_sqlite3_vfsEven Rouault
Fix ASAN issue with SQLite3VFS class (fixes #1901)
2020-02-02proj_download_file(): relax test for the situation where a file < 1 MB is ↵Even Rouault
updated to be slightly larger CloudFront could return a Range: bytes=0-X/Y with X < Y and X being the previous file size and Y the new one
2020-02-02build_url(): remove no longer needed hackEven Rouault
2020-02-01test/fuzzers/build.sh: statically link sqlite3 for i386 buildsEven Rouault
2020-01-31Fix ASAN issue with SQLite3VFS class (fixes #1901)Even Rouault
2020-01-30Database: add a custom concatenated_operation for NTF (Paris) to RGF93, ↵Even Rouault
using the non-deprecated EPSG:9327 for the geocentric translation
2020-01-30Merge pull request #1897 from rouault/map_geocentric_translation_methodKristian Evers
Add EPSG records for 'Geocentric translation by Grid Interpolation (IGN)' (gr3df97a.txt) and map them to new +proj=xyzgridshift
2020-01-30Merge pull request #1898 from rouault/delete_nullKristian Evers
Remove 'null' grid file as it is now a special hardcoded case in grid code
2020-01-29Remove 'null' grid file as it is now a special hardcoded case in grid codeEven Rouault
2020-01-29test/fuzzers/build.sh: build with static libtiff [ci skip]Even Rouault
2020-01-29Merge pull request #1896 from rouault/add_set_operationKristian Evers
Add +proj=set operation to set component(s) of a coordinate to a fixed value
2020-01-29Add EPSG records for 'Geocentric translation by Grid Interpolation (IGN)' ↵Even Rouault
(gr3df97a.txt) and map them to new +proj=xyzgridshift
2020-01-29Make it possible to use grids from the CDN by their 'old name' even if not ↵Even Rouault
in the EPSG/grid_transformation table
2020-01-29scripts/grid_checks.py: update for change of PROJ-data repository name, and ↵Even Rouault
look for .tif extension
2020-01-29Merge pull request #1891 from rouault/rfc5Even Rouault
Implement RFC5: Adopt GeoTIFF-based grids for grids delivered with PROJ
2020-01-28Add +proj=set operation to set component(s) of a coordinate to a fixed valueEven Rouault
Fixes #1846
2020-01-28Add RFC5 text: Adopt GeoTIFF-based grids for grids delivered with PROJ (#1868)Even Rouault
2020-01-28Merge pull request #1893 from asinghvi17/patch-2Even Rouault
Mention the Julia package Proj4.jl
2020-01-28Merge pull request #1892 from rouault/add_projinfo_searchpathsEven Rouault
projinfo: add --searchpaths switch
2020-01-27projinfo: add --remote-data switchEven Rouault
2020-01-27Mention the Julia package Proj4.jlAnshul Singhvi
in `docs/src/development/bindings.rst`
2020-01-27projinfo: add --searchpaths switchEven Rouault
2020-01-26Doc: advertize FOSS4G 2020Even Rouault
Text copied from GDAL doc.
2020-01-26Merge pull request #1887 from jmckenna/ircKristian Evers
add #proj IRC channel notifications
2020-01-26Merge pull request #1886 from rouault/cppcheck_1_90_happynessKristian Evers
Few improvements to make cppcheck 1.90 happier
2020-01-26Fix ossfuzz builds [ci skip]Even Rouault
2020-01-26add PROJ channel notificationsJeff McKenna