aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-10-08Set area of use compatible with grid fileJavier Jimenez Shaw
2021-10-07extend unit test to find GGM10 for vcrs EPSG:5703Javier Jimenez Shaw
2021-10-07add GGM10 (Mexico to NAVD88) to geoid_model sql tableJavier Jimenez Shaw
2021-10-07add mx_inegi_ggm10.tif vertical grid file, with custom transformationJavier Jimenez Shaw
2021-10-07scripts/build_db.py: fix due to recent changesEven Rouault
2021-10-07cmake build: install proj_symbol_rename.hEven Rouault
2021-10-07Merge pull request #2887 from rouault/fix_2886Even Rouault
Fix CRS Equality with PROJ parameter order
2021-10-06CRS::_isEquivalentTo(): be tolerant to different order of PROJ step options ↵Even Rouault
(fixes #2886)
2021-10-06ProjectedCRS::_isEquivalentTo(): ignore base CRS axis order even in ↵Even Rouault
EQUIVALENT mode if one of them is lacking an explicit CS order (refs #2886)
2021-10-06Merge pull request #2884 from rouault/fix_op_alternatives_bbox_non_greenwichEven Rouault
proj_create_crs_to_crs() + proj_trans(): fix when non-Greenwich prime meridian is involved
2021-10-06proj_create_crs_to_crs() + proj_trans(): fix when non-Greenwich prime ↵Even Rouault
meridian is involved This fixes a regression introduced in 7af1d5741da08d9546b907e0da2c21c54c61b27 / PROJ 7.2.0 where reprojection of area of use was broken when the source/target CRS did not use Greenwich as prime meridian. Fixes https://lists.osgeo.org/pipermail/gdal-dev/2021-October/054764.html Now with the fix: - using grid: $ echo 286415 431434 | PROJ_NETWORK=ON src/cs2cs -d 4 EPSG:20790 EPSG:3763 86412.4262 131434.1706 0.0000 - not using it: $ echo 286415 431434 | src/cs2cs -d 4 EPSG:20790 EPSG:3763 86412.5265 131433.8561 0.0000
2021-10-06test_c_api.cpp: reformatEven Rouault
2021-10-05Add proj_trans_bounds to compute the image of a input bounding box through a ↵Alan D. Snow
transformation (#2882) Fixes #2779
2021-10-05Merge pull request #2876 from rouault/iauEven Rouault
Add IAU_2015 CRS definitions
2021-10-05Merge pull request #2868 from rouault/proj_factors_with_projected_crsEven Rouault
proj_factors(): accept P to be a projected CRS (fixes #2854)
2021-10-04Merge pull request #2883 from snowman2/build_docsEven Rouault
DOC: Add instructions for building docs with docker image
2021-10-03DOC: Add instructions for building docs with docker imagesnowman2
2021-09-30Merge pull request #2881 from ↵Even Rouault
rouault/fix_misidentification_of_projstring_with_ellipsoid CRS::identify(): fix ignoring CS order when identifying a geodetic CRS by a PROJ string with just the ellipsoid
2021-09-30proj_factors(): accept P to be a projected CRS (fixes #2854)Even Rouault
Updated doc: Starting with PROJ 8.2, the P object can be a projected CRS, for example instantiated from a EPSG CRS code. The factors computed will be those of the map projection implied by the transformation from the base geographic CRS of the projected CRS to the projected CRS. The input geodetic coordinate lp should be such that lp.lam is the longitude in radian, and lp.phi the latitude in radian (thus independently of the definition of the base CRS, if P is a projected CRS).
2021-09-29CRS::identify(): fix ignoring CS order when identifying a geodetic CRS by a ↵Even Rouault
PROJ string with just the ellipsoid
2021-09-29Merge pull request #2878 from kbevers/fix-latlon-docKristian Evers
doc: clarify use of +datum option with +proj=latlon
2021-09-29doc: clarify use of +datum option with +proj=latlonKristian Evers
2021-09-29Merge pull request #2877 from rouault/relates_to_gdal_3927Even Rouault
CRS::extractGeodeticCRS(): implement for DerivedProjectedCRS (related to refs OSGeo/gdal#3927)
2021-09-28CRS::extractGeodeticCRS(): implement for DerivedProjectedCRS (related to ↵Even Rouault
refs OSGeo/gdal#3927)
2021-09-28projinfo --list-crs / proj_get_crs_info_list_from_database(): make it work ↵Even Rouault
with IAU generic authority name
2021-09-28test: add tests of operations between geographic/geodetic and projected IAU CRSEven Rouault
2021-09-28PROJStringFormatter: add optimizations useful for IAU CRS transformation ↵Even Rouault
pipelines
2021-09-28Add a mapping for versioned authorities, so that one can use IAU:xxxx or ↵Even Rouault
IAU_2015:xxxx transparently
2021-09-28Database: add IAU_2015 CRSEven Rouault
2021-09-28Database: add check for Orthographic conversionEven Rouault
2021-09-28AuthorityFactory::createGeodeticCRS(): use description column for remarksEven Rouault
2021-09-28Database reading: implement reading a GeodeticCRS with a Spherical CSEven Rouault
2021-09-28Database: add some hand made entries earlyEven Rouault
2021-09-27Merge pull request #2872 from rouault/epsg_10_036Even Rouault
Database: update to EPSG v10.036
2021-09-27Database: update to EPSG v10.036Even Rouault
2021-09-27Merge pull request #2865 from direvus/doc/2864-error-handlingKristian Evers
DOC: Add content for Development/Error handling page.
2021-09-27DOC: Refresh Development/Quickstart and remove Development/Threads (#2863)Brendan Jurd
* DOC: Refresh Development/Quickstart and remove Development/Threads The document Development/Threads was severely out of date, and was focussed on contrasting the current API with an old API that was deprecated several years ago, and removed from the current PROJ earlier this year. Update Development/Quickstart to give more information about the use of threading context, as a replacement for the content that was previously in Threads. Also give the example code examples/pj_obs_api_mini_demo.c a cleanup pass to make it at least internally consistent with its own code style. The header comments of the example code are still, much like the Threads document, fixated on comparing proj.h against proj_api.h, which is an interesting historical curio to be sure, but probably doesn't need to persist here. It might be worth cleaning this up further as a separate exercise. Fixes #2451
2021-09-25Merge pull request #2869 from mathstuf/cmake-dl-lib-check-fixEven Rouault
cmake: check the right variable for `libdl`
2021-09-24cmake: check the right variable for `libdl`Ben Boeckel
2021-09-24Merge pull request #2867 from rouault/fix_2866Even Rouault
proj_normalize_for_visualization(): set input and output units when there are several alternative transformations (fixes #2866)
2021-09-24proj_normalize_for_visualization(): set input and output units when there ↵Even Rouault
are several alternative transformations (fixes #2866)
2021-09-24DOC: Add content for Development/Error handling page.Brendan Jurd
This page was previously empty. This commits populates it with some very basic information and a code example of how to use proj_context_errno and proj_context_errno_string. Something: because something is better than nothing. It might be good to include some more fine detail about how PROJ manages the error state internally, but I don't yet have the expertise in PROJ internals to write that content myself. Also the code sample probably has a segfault bug or leaks memory, because C.
2021-09-20Update proj_symbol_rename.hEven Rouault
2021-09-20Conversion::inverse(): avoid harmless division by zero. Fixes ↵Even Rouault
https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=39033
2021-09-19networkfilemanager.cpp: fix compiler warnings on 32-bit systems where time_t ↵Even Rouault
is 32-bit
2021-09-18Merge pull request #2861 from rouault/optimize_pipelines_planetary_crsEven Rouault
Optimize pipelines of planetary CRS (geocentric latitude, west-positive longitude)
2021-09-18Optimize pipelines of planetary CRS (geocentric latitude, west-positive ↵Even Rouault
longitude)
2021-09-18Merge pull request #2859 from rouault/database_anchorEven Rouault
Database: add a 'anchor' field to geodetic_datum and vertical_datum tables
2021-09-17test: getInsertStatementsFor(): test datums with anchorEven Rouault
2021-09-17Database: add a 'anchor' field to geodetic_datum and vertical_datum tablesEven Rouault
Update database layout version number to 1.2 consequently This new capability will be used by IAU planetary CRS (refs #2601)