aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-11-25Move option to module and add more commentsMike Taves
2021-11-25Also look for clcache for MSVC; only use wrappers for XcodeMike Taves
2021-11-20CMake: add option USE_CCACHE=OFF to use ccache to compile C/C++ objsMike Taves
2021-11-12Add new option to proj_create_crs_to_crs_from_pj method to force +over on ↵Peter Townsend
transformation operations (#2914) Fixes #2512
2021-11-10Merge pull request #2934 from toonn/cross-platform-testEven Rouault
test: Make CApi test cross-platform
2021-11-10test: Make CApi test cross-platformtoonn
The test made an assumption of being able to open 1024 - 50 files. On some platforms, like older Darwin, the default limit is only 256. To avoid the issue entirely we retrieve the current limit for the process. We decrease the OPEN_MAX limit if it's too high. On some platforms fopen returned nullptrs before reaching the limit (-50) and this doesn't happen if we decrease the limit to 1024.
2021-11-09Merge pull request #2932 from rouault/fix_2931Even Rouault
PROJStringFormatter::toString(): avoid invalid iterator increment (fixes #2931)
2021-11-09CI: add a MSVC Debug build (refs #2931)Even Rouault
2021-11-09PROJStringFormatter::toString(): avoid invalid iterator increment (fixes #2931)Even Rouault
2021-11-09Reformatting fixesEven Rouault
2021-11-06Merge pull request #2926 from snowman2/warnEven Rouault
DOC: Add warning in proj_as_proj_string about potential information loss with CRS
2021-11-06Merge pull request #2925 from snowman2/docsEven Rouault
DOC: add available keys to proj_context_get_database_metadata
2021-11-05DOC: Add warning in proj_as_proj_string about potential information loss ↵snowman2
with CRS
2021-11-05DOC: add available keys to proj_context_get_database_metadatasnowman2
2021-11-05Merge pull request #2921 from rouault/epsg_10_039Even Rouault
Database: update to EPSG v10.039
2021-11-04Remove useless PROJ_DLL uses in .cpp files (#2920)Momtchil Momtchev
2021-11-04Database: update to EPSG v10.039Even Rouault
2021-11-03Merge pull request #2917 from rouault/fix_boundcrs_nameEven Rouault
BoundCRS WKT import: fix setting of name
2021-11-03Doc: news.rst: formatting fixesEven Rouault
2021-11-03BoundCRS WKT import: fix setting of nameEven Rouault
Name was erroneously set (since 8.2.0) to SOURCECRS. Raised in https://lists.osgeo.org/pipermail/gdal-dev/2021-November/054944.html
2021-11-03util.hpp: reformatEven Rouault
2021-11-01docs: Fix errors in 8.2.0 news sectionKristian Evers
2021-11-01Update website for 8.2 releaseKristian Evers
2021-11-01Merge remote-tracking branch 'osgeo/master'Kristian Evers
2021-11-01Update website for 8.1.1 releaseKristian Evers
2021-10-31Merge pull request #2916 from rouault/cppcheck_2_7Even Rouault
cppcheck.sh: make it compatible with cppcheck 2.7
2021-10-31cppcheck.sh: make it compatible with cppcheck 2.7Even Rouault
2021-10-27RFC 7: Drop Autotools, maintain CMake (#2880)Mike Taves
2021-10-26Update NEWS for 8.2.0 releaseKristian Evers
2021-10-26Fix version number of latest release in NEWSKristian Evers
2021-10-26Update NEWS for 8.1.1 releaseKristian Evers
2021-10-26Bump PROJ-data version number in docsKristian Evers
2021-10-26Update man-pages from Sphinx-docsKristian Evers
2021-10-26Update ABI numbers for 8.2.0 releaseKristian Evers
2021-10-25Merge pull request #2913 from rouault/fix_2905Even Rouault
lib_proj.cmake: add a PROJ::proj alias and add BUILD_INTERFACE include directories...
2021-10-25lib_proj.cmake: add a PROJ::proj alias and add BUILD_INTERFACE include ↵Even Rouault
directories, so that proj can be used as a subdirectory of a larger project (fixes #2905)
2021-10-25Merge pull request #2912 from rouault/cmake_static_buildKristian Evers
CMake: revise how we deal with symbol export and static builds
2021-10-23CMake: revise how we deal with symbol export and static buildsEven Rouault
- Remove the explicit PROJ_MSVC_DLL_IMPORT symbol used for importing symbols from a MSVC .dll: by default on MSVC, we use now __declspec(dllimport), unless PROJ_MSVC_DLL_EXPORT is defined by PROJ at build time. This makes it easier for users: they don't have to define anything special. This simplifies in particular the build of our binaries - For static builds, export -DPROJ_DLL= as public, so that users that import PROJ through CMake mechanism don't have to do it manually.
2021-10-23Merge pull request #2911 from rouault/cmake_versionEven Rouault
CMake: align the VERSION of the library with libtool practices
2021-10-22Merge pull request #2907 from josch/tinshiftfallbackEven Rouault
add fallback strategy for tinshift transform to use closest triangle for points not in any
2021-10-22CMake: align the VERSION of the library with libtool practicesEven Rouault
Currently (at least as of 8.1.1) we don't have the same .so.x.y.z numbers for the libtool and cmake builds (the y and z are swapped for the cmake build). While only the SONAME (the .x part) mostly matters, it is probably better to stick with the libtool convention to determine the y and z. This patch should make it easier by setting explicitly each of the current, revision, age and computing automatically x = current - age y = age z = revision
2021-10-21Add fallback_strategy to tinshift transformJohannes Schauer Marin Rodrigues
- this bumps format_version of tinshift JSON to 1.1 for the new field fallback_strategy - the default behaviour without that field is retained - if fallback_strategy is set to "nearest_side", then points that do not fall into any of the triangles will be transformed according to the nearest triangle - if fallback_centroid is set to "nearest_side", then points that do not fall into any of the triangles will be transformed according to the triangle with the nearest centroid
2021-10-21Merge pull request #2908 from snowman2/constEven Rouault
TYPE: Update const declarations in proj_trans_bounds
2021-10-21Merge pull request #2910 from rouault/epsg_10_038Even Rouault
Database: update to EPSG v10.038
2021-10-21Database: update to EPSG v10.038Even Rouault
2021-10-21Merge pull request #2906 from jjimenezshaw/za_cdngi_sageoid2010Even Rouault
Add grid alternative for SAGEOID2010, South African geoid model
2021-10-19TYPE: Update const declarations in proj_trans_boundssnowman2
2021-10-17exportToPROJStringGeneric(): avoid harmless floating-point division by zero ↵Even Rouault
if conversion factor is 0. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=40050
2021-10-16createOperations(): avoid harmless floating-point division by zero if ↵Even Rouault
conversion factor of target unit is 0. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=39969
2021-10-16Fix previous commitEven Rouault