aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-09-30ortho.cpp: more precise reference to guidance noteEven Rouault
2020-09-27Ortho ellipsoidal inverse: improve accuracy in polar case with (x,y) close ↵Even Rouault
to (0,0)
2020-09-27Ortho ellipsoidal inverse: add domain check for oblique case, and slighly ↵Even Rouault
improve initial guessing
2020-09-26Ortho ellipsoidal inverse: add non iterative implementations for polar and ↵Even Rouault
equatorial
2020-09-26Ortho: add visibility condition for ellipsoidal case. Credits to @cffkEven Rouault
2020-09-26Implement ellipsoidal formulation of +proj=ortho (fixes #397)Even Rouault
- Map ESRI 'Local' to +proj=ortho when Scale_Factor = 1 and Azimuth = 0 - Map ESRI 'Orthographic' to a PROJ WKT2 'Orthographic (Spherical)' which maps to +proj=ortho +f=0 to froce spherical evaluation
2020-09-24build_db.py: fix previous commit (those files were transient only)Even Rouault
2020-09-24build_db.py: remove unneeded filesEven Rouault
2020-09-22update Dockerfile for osgeo/proj-docs to include spell checkingHoward Butler
2020-09-18Merge pull request #2357 from rouault/fix_2356Even Rouault
Adjust createBoundCRSToWGS84IfPossible() and operation filtering (for POSGAR 2007 to WGS84 issues) (fixes #2356)
2020-09-17createOperations(): tune sorting of transformations so that the ones with ↵Even Rouault
greater 'version numbers' are prefered over other ones, when all other comparison criteria are equal. Helps with Amersfoort RD New to EPSG:4326
2020-09-17Adjust createBoundCRSToWGS84IfPossible() and operation filtering (for POSGAR ↵Even Rouault
2007 to WGS84 issues) (fixes #2356) - We make createBoundCRSToWGS84IfPossible() more restrictive. If there are more than one Helmert transformation from the CRS to WGS 84 covering the area of use of the CRS, we do not create a BoundCRS / +towgs84 - In createOperations() filtering, we are less aggressive in discarding operations that have the same area of use but worse accuracy. We do it only if they involve more transformation steps. We now get: ``` $ projinfo EPSG:5340 -o PROJ PROJ.4 string: +proj=longlat +ellps=GRS80 +no_defs +type=crs $ projinfo -s EPSG:5340 -t EPSG:4326 --spatial-test intersects --summary Candidate operations found: 2 EPSG:9264, POSGAR 2007 to WGS 84 (2), 0.5 m, Argentina EPSG:5351, POSGAR 2007 to WGS 84 (1), 1.0 m, Argentina ```
2020-09-17projjson.schema.json: indicate v0.2.1 (refs #2354)Even Rouault
2020-09-17projjson.schema.json: update to reflect that prime_meridian.longitude can ↵Even Rouault
just be a number, in which case the unit is implicitly degrees (fixes #2354)
2020-09-11Merge pull request #2353 from rouault/fix_2352Even Rouault
proj_trans(): reset errno before attemptying a retry with a new coordinate operation (fixes #2352)
2020-09-10proj_trans(): reset errno before attemptying a retry with a new coordinate ↵Even Rouault
operation (fixes #2352)
2020-09-10Merge pull request #2351 from rouault/update_to_epsg_9_9Even Rouault
Database: update to EPSG 9.9
2020-09-09Merge pull request #2350 from rouault/ogc_crs27_crs83Even Rouault
Database: add OGC:CRS27 and OGC:CRS83 CRS entries for NAD27 and NAD83 in longitude, latitude order
2020-09-09Map EPSG:1083 'Geog3D to Geog2D+Vertical (AUSGeoid v2)' method to ↵Even Rouault
+proj=vgridshift
2020-09-09Database: update to EPSG 9.9Even Rouault
2020-09-08Database: add OGC:CRS27 and OGC:CRS83 CRS entries for NAD27 and NAD83 in ↵Even Rouault
longitude, latitude order
2020-09-04Merge pull request #2347 from saprykin/masterEven Rouault
Fix compiling warnings when using GCC 4.8.x
2020-09-04Fix compiling warnings when using GCC 4.8.xAlexander Saprykin
2020-09-04DOC: Fix reference to proj_get_codes_from_database in ↵Alan D. Snow
proj_get_crs_info_list_from_database docstring (#2345)
2020-09-02Merge pull request #2283 from rouault/rfc6_textEven Rouault
Add RFC-6 text: triangulation-based transformations
2020-09-02Add RFC-6 textEven Rouault
2020-09-02Doc: document members of C structures generated from DoxygenEven Rouault
2020-09-01Update docs for 7.1.1 releaseKristian Evers
Conflicts: docs/source/conf.py
2020-09-01fix typo in Canary IslandsJavier Jimenez Shaw
2020-09-01Update NEWS for 7.1.1Kristian Evers
2020-08-31docs: Document missing members of PJ_COORDKristian Evers
2020-08-26Merge pull request #2342 from rouault/proj_create_vertical_crs_ex_accuracyEven Rouault
proj_create_vertical_crs_ex(): add a ACCURACY option to provide an explicit accuracy, or derive it from the grid name if it is known
2020-08-26proj_create_vertical_crs_ex(): add a ACCURACY option to provide an explicit ↵Even Rouault
accuracy, or derive it from the grid name if it is known
2020-08-23lcc: avoid harmless division by zero in untypical case. Fixes ↵Even Rouault
https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=24442
2020-08-21createObjectsFromName(): add back case insensitivity when comparing namesEven Rouault
Fixes #2332 Didn't affect released versions
2020-08-21Helmert: fix regression when rotation terms are 0, but scale is notEven Rouault
Fixes #2333 Was due to 3dc92ad7014e1cf20a3bc95c8c21a34a371fcb78 Doesn't affect released versions
2020-08-20projCtx_t: Copy ini file settings, proj4_init_rules, etc.. when initializing ↵Alan D. Snow
context from global (#2331)
2020-08-19Code reformattingEven Rouault
2020-08-19Merge pull request #2329 from snowman2/ensure_cpp_contextEven Rouault
Add methods to projCtx_t for safer interactions with cpp_context
2020-08-19Add methods to ensure safer interactions with cpp_contextsnowman2
2020-08-19Clone projCppContext context when copying projCtx_t (#2324)Alan D. Snow
2020-08-19Revert compiler generated Fused Multiply Addition optimized routines (#2327)Even Rouault
Fixes #2326 Partially reverts commit b84c9d0cb61f3bd561da6092e15e294ae7e410e0 to remove the use of the gcc 6 mechanism of generated multiple versions of functions with different optimization flags, which was found to causes crashes when dlopen'ing PROJ on CentOS 7.8 with gcc 8.3.1
2020-08-16ENH: Add support for custum CA Bundle path (#2323)Alan D. Snow
Fixes #2320
2020-08-13WKT importer: tune for Oracle WKT and 'Lambert Conformal Conic' (#2321)Even Rouault
Fixes https://github.com/qgis/QGIS/issues/37898
2020-08-13cs2cs/cct docs: Align versionadded directives correctly for -d optionKristian Evers
2020-08-11WKT parser: avoid null pointer dereference on corrupted WKTEven Rouault
Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=24809
2020-08-07ProjectedCRS::identify(): fix to be able to identify EPSG:2154 as a ↵Even Rouault
candidate for 'RGF93_Lambert_93' (contributes to fixes https://github.com/qgis/QGIS/issues/32255) (#2315)
2020-08-06Fix url for CDN GitHub project (#2313)Javier Jimenez Shaw
2020-08-06Merge pull request #2312 from jjimenezshaw/add-canary-islands-geoidEven Rouault
Add Canary Islands geoid file
2020-08-05add Canary Islands geoid file in grid_alternatives.sqlJavier Jimenez Shaw