aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-05-30Replace suspicious use of strncat(), despite correct in that particular case ↵Even Rouault
(detected by gcc 8.1)
2018-05-30CI environment: adapt for C++11 capable environmentsEven Rouault
2018-05-30Enable c++ compilation with autotools and cmake, hardened compilation flags ↵Even Rouault
and add catch2 framework Hardened compilation flags come from GDAL' configure.ac and are 'combat proven' Dummy test added just to demonstrate catch2 based tests work.
2018-05-30Fix warnings found by clang with new warning flags to be added in later commitEven Rouault
Fixes consist in: - no use of comma operator for multi statement purpose - avoid confusing comma in for loops first and third clauses - avoid implicit long to int casts by storing to long, or explicit bound checking before cast
2018-05-29Ensure that operations are less than MAX_OPERATION long.Kurt Schwehr
Buffer overflow found with autofuzz.
2018-05-26cct.c: add missing va_end() in error code path (spotted by cppcheck)Even Rouault
2018-05-24.gitignore: add test-driverEven Rouault
2018-05-24Merge remote-tracking branch 'osgeo/master'5.1.0Kristian Evers
2018-05-24Add missing note about removing org_proj4_Projections.hKristian Evers
2018-05-24nad/Makefile.am: add tests/test_nodata.gtx to EXTRA_DIST (fixes #1019)Even Rouault
2018-05-24Fix libtool versioning, using the proper number for 'age'Kristian Evers
2018-05-24Merge pull request #1017 from kbevers/5.1-prepKristian Evers
5.1.0 preparation
2018-05-24gie T.fout output cleanupKurt Schwehr
- printf -> fprintf in more places - puts -> fprintf - Move list_err_codes to after where T.fout is set This makes fuzzing easier by allowing more of the output to be sent to /dev/null. Found with autofuzz.
2018-05-24Update NEWS for 5.1.0Kristian Evers
2018-05-24Update man pages in preparation for new releaseKristian Evers
2018-05-24Update version numbers for 5.1.0 releaseKristian Evers
2018-05-24Merge pull request #949 from kbevers/return-nans-quicklyKristian Evers
Return NaN coordinate immediately when receiving NaN input
2018-05-24Temporal gridshifting (#1015)Kristian Evers
Temporal gridshifts allow [h|v]gridshift operations to be used as step functions in a pipeline. This is useful in transformations dealing with deformations caused by earthquakes. See the included documentation for details.
2018-05-24Handle double to int typecasts in ISEA betterKristian Evers
Originally the code was doing double to int conversions like y = (int)(x + 0.5) which results in rounding when typecasting. In an earlier attempt to avoid buffer overflows in integer typecasts this was changed to y = lround(x + 0.5) which doesn't give the origial results. We fix that here by instead doing y = lround(x) It is safe to so as long as x is positive.
2018-05-24Docs: fix wrong spelling of t_obs and t_epochEven Rouault
2018-05-24Merge pull request #1013 from schwehr/proj_strtod_headerKristian Evers
Use proj_strtod.h for proj_strtod and proj_atof
2018-05-24Merge pull request #1012 from kbevers/behaviour-differencesKristian Evers
Add doc section with description of behavioural changes between versions
2018-05-24Add doc section with description of behavioural changes between PROJ versionsKristian Evers
2018-05-24Merge pull request #1014 from schwehr/gie-rst-indentKristian Evers
Fix indentation in gie roundtrip option
2018-05-23Fix indentation in gie roundtrip optionKurt Schwehr
2018-05-23Use proj_strtod.h for proj_strtod and proj_atofKurt Schwehr
2018-05-23Merge pull request #1011 from schwehr/gie-roundtripKristian Evers
Limit the number of round trips to 1 million and check for underflows
2018-05-23gie roundtrip: Expand the 3 cases for the argsKurt Schwehr
2018-05-23Add pj_isnan to proj.def to avoid linking errors for some MSVC versionsKristian Evers
2018-05-23Merge branch 'master' into return-nans-quicklyKristian Evers
2018-05-22Limit the number of round trips to 1 million and check for underflowsKurt Schwehr
Why was fabs applied to ntrips? And why is it parsed as a float? Also add documentation for roundtrip. External rst docs do not match this function.
2018-05-22Horner degree must be a positive integer (#1005)Kurt Schwehr
Found with autofuzz
2018-05-21Merge pull request #1007 from schwehr/pj_isea_cleanupKristian Evers
Pj isea cleanup
2018-05-20isea: Use PJ_TODEG and PJ_TORAD (#991)Kurt Schwehr
2018-05-19Add documentation for Include What You Use (IWYU) (#1006)Kurt Schwehr
Docs requested in discussion of #1000
2018-05-19Partial clean isea defines and includesKurt Schwehr
- Move includes to the top - Move #defines to the top after includes - Get M_PI and DEG90 from projects.h
2018-05-19Merge branch 'master' into pj_isea_cleanupKurt Schwehr
2018-05-19Merge pull request #1004 from rouault/fix_1002Kristian Evers
Vertical grid shift: do not interpolate node values at nodata value (fixes #1002)
2018-05-19Undef isnan if already defined before redefining it (typically with MSVC)Even Rouault
2018-05-19Vertical grid shift: do not interpolate node values at nodata value (fixes ↵Even Rouault
#1002)
2018-05-16Merge pull request #1000 from schwehr/iwyuKristian Evers
IWYU: Partial PJ_natearth.c..rtodms.c
2018-05-15IWYU: Partial PJ_natearth.c..rtodms.cKurt Schwehr
2018-05-15Merge pull request #999 from schwehr/iwyuKristian Evers
IWYU: Partial PJ_gstmerc.c..PJ_molodensky.c
2018-05-15IWYU: Partial PJ_gstmerc.c..PJ_molodensky.cKurt Schwehr
2018-05-15Merge pull request #998 from schwehr/iwyuKristian Evers
IWYU: Partial PJ_aitoff.c..PJ_goode.c
2018-05-15IWYU: Partial PJ_aitoff.c..PJ_goode.cKurt Schwehr
2018-05-14Revert "Set projection plot scale to 100% for better PDF output"Kristian Evers
This had unexpected side-effects when building the HTML docs on Travis compared to locally. The correct solution would be to set different scaling depending on the output. This reverts commit 325477ed0fac2c9233c2f6a2b7bb4125e04df24c.
2018-05-14Set projection plot scale to 100% for better PDF outputKristian Evers
2018-05-14Merge pull request #994 from Geomatys/masterKristian Evers
Set version number and improve documentation
2018-05-14Merge pull request #997 from schwehr/iwyuKristian Evers
Partial changes for IWYU