aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-03-11DOCS: add missing functions from filemanager.cppBrendan Jurd
Add doxygen entries for: - proj_context_set_file_finder - proj_context_set_ca_bundle_path Fixes #2540
2022-03-10Merge pull request #3108 from rouault/fix_3095Even Rouault
createOperations(): fix issue in transformation northing,easting projected CRS -> +proj=longlat +lon_wrap (fixes #3095)
2022-03-09Merge pull request #3099 from rouault/fix_3078Even Rouault
CMake: fix installation of proj.pc on Windows (fixes #3078)
2022-03-09createOperations(): fix issue in transformation northing,easting projected ↵Even Rouault
CRS -> +proj=longlat +lon_wrap (fixes #3095)
2022-03-09Merge pull request #3106 from rouault/update_nkg_gieEven Rouault
nkg.gie: update results due to https://github.com/OSGeo/PROJ-data/pull/79
2022-03-09windows.yml: fix issue with sqlite3 binary and vcpkgEven Rouault
2022-03-09nkg.gie: update results due to https://github.com/OSGeo/PROJ-data/pull/79Even Rouault
2022-03-09Merge pull request #3102 from rouault/fix_3076Even Rouault
Fix issues with WKT of concatenated operations (#3076)
2022-03-09Merge pull request #3103 from rouault/epsg_10_055Even Rouault
Database: update to EPSG v10.055
2022-03-09Database: update to EPSG v10.055Even Rouault
2022-03-09PROJBasedOperation PROJJSON export: issues an empty 'parameters' array if ↵Even Rouault
needed (refs #3076)
2022-03-09Fix import of WKT of concatenated operation with inverse conversion of a ↵Even Rouault
compound CRS of a projected CRS (fixes #3076)
2022-03-09Merge pull request #3098 from rouault/fix_gdal_5408Even Rouault
Fix issue when transforming from/to BoundCRS of 3D CRS with non-Green…
2022-03-08CMake: fix installation of proj.pc on Windows (fixes #3078)Even Rouault
2022-03-08Fix issue when transforming from/to BoundCRS of 3D CRS with non-Greenwhich ↵Even Rouault
prime meridian, created from WKT (fixes OSGeo/gdal#5408)
2022-03-09DOC: improve CMake integration example; remove CMake <3 detail (#3093)Mike Taves
2022-03-08Merge pull request #3087 from mwtoews/cmake-list-remove-item-fixEven Rouault
CMake: handle potentially undefined value in list function
2022-03-07CMake: handle potentially undefined value in list functionMike Taves
2022-03-07Use CMAKE_INSTALL_MANDIR to override default (#3081)Mike Taves
2022-03-06Merge pull request #3089 from rouault/fix_3077Even Rouault
Fix wrong results with SQLite 3.38.0 (fixes #3077)
2022-03-06Fix wrong results with SQLite 3.38.0 (fixes #3077)Even Rouault
2022-03-05Increase MAX_ITER so Mollweide forward projection works near the poles. (#3082)erykoff
2022-03-04CI: use `ctest --output-on-failure` option (#3084)Mike Taves
2022-03-03Also bump version number in CMakeLists.txt for 9.1.0 releaseMike Taves
2022-03-02docs: fix syntax errors on news siteKristian Evers
2022-03-01Bump version numbers in preparation for 9.1.0 releaseKristian Evers
2022-03-01Update website for 9.0 websiteKristian Evers
2022-03-01Update website forr 8.2.1 releaseKristian Evers
2022-02-23Simple SOVERSION (#3066)9.0.0Mike Taves
Co-authored-by: Bas Couwenberg <sebastic@xs4all.nl>
2022-02-23Rename "Kavraisky" to transliteration "Kavrayskiy" used by Snyder1993 (#3071)Mike Taves
2022-02-22Merge pull request #3072 from rouault/coverity_scanEven Rouault
Fix various issues found by Coverity scan
2022-02-22geog3DToVertTryThroughGeog2D(): avoid potential nullptr deref (CID 383355)Even Rouault
2022-02-22WKTParser::Private::buildProjectedCRS(): avoid potential nullptr deref (CID ↵Even Rouault
383362)
2022-02-22ProjectedCRS::_exportToWKT(): avoid false positive warning about nullptr ↵Even Rouault
deref (CID 383356)
2022-02-22UnitOfMeasure::operator=(UnitOfMeasure &&): avoid use of moved member (CID ↵Even Rouault
383358)
2022-02-22CTable2Grid::open(): add missing call to extent.computeInvRes() (CID 383359)Even Rouault
2022-02-22proj_grid_info(): check pj_find_file() output (CID 383357)Even Rouault
2022-02-21Merge pull request #3062 from rouault/fix_3060Even Rouault
CMake: set RUN_NETWORK_DEPENDENT_TESTS to ON by default only if network seems available (fixes #3060)
2022-02-21Merge pull request #3064 from rouault/doc_gall_petersEven Rouault
Doc: mention Behrmann and Gall-Peters projections as specializations of cea
2022-02-21Merge pull request #3068 from rouault/db_esri_transformation_alias_nameEven Rouault
Database: insert entries in the alias_name for ESRI transformations that match a EPSG entry
2022-02-21Merge pull request #3070 from rouault/fix_crash_on_argc_0Even Rouault
Fix nullptr dereference in utilities when argv[0] == NULL
2022-02-19Fix nullptr dereference in utilities whan argv[0] == NULLEven Rouault
https://lwn.net/Articles/?offset=50 was an entertaining reading where we learn that the fact that argv[0] contains the name of the binary is purely a convention, normally taken by the shell that launches the process, but not guaranteed by the execve() system call that does the job. The following test program tested against cct, cs2cs, geod, gie and proj make them cause a null pointer dereference ``` #include <unistd.h> #include <stdio.h> extern char **environ; int main() { char* argv[] = { NULL }; printf("%d\n", execve("/path/to/some/proj/binary", argv, environ)); return 0; } ```
2022-02-19Database: insert entries in the alias_name for ESRI transformations that ↵Even Rouault
match a EPSG entry Make it possible to query them by name. e.g. `projinfo "NAD_1927_To_WGS_1984_3"` will return EPSG:1172 transformation "NAD27 to WGS 84 (3)" Partially helps use case of https://lists.osgeo.org/pipermail/gdal-dev/2022-February/055480.html
2022-02-18CMake: set RUN_NETWORK_DEPENDENT_TESTS to ON by default only if network ↵Even Rouault
seems available (fixes #3060)
2022-02-17Doc: gall.rst: add note that Gall != Gall-PetersEven Rouault
2022-02-17Doc: mention Lambert c.e.a, Behrmann, and Gall-Peters projections as ↵Even Rouault
specializations of cea Shared credits with @pramsey / PR #3063
2022-02-16Merge pull request #3061 from rouault/remove_googletestKristian Evers
Remove googletest source code remains
2022-02-15Remove googletest source code remainsEven Rouault
They are no longer needed, as there were only used by autoconf builds. For CMake, we either use external googletest, or use CMake download capabilities.
2022-02-15Update man-pages from Sphinx-docsKristian Evers
2022-02-15Update NEWS for 9.0.0Kristian Evers