aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-11-20Update list of exported symbolsKristian Evers
2020-11-20Remove old pj_ memory (de)allocation functionsKristian Evers
Gone are pj_malloc, pj_calloc, pj_dalloc and pj_dealloc. Their primary function as API memory functions in proj_api.h is no longer there and the other use as a workaround for old errno problems is no longer valid either. Replaced with malloc and free across the codebase.
2020-11-20Remove pj_errno and related functionsKristian Evers
2020-11-20Remove pj_free() and move it's functional parts to proj_destroy()Kristian Evers
2020-11-20Removed unused function pj_set_searchpath() and pj_set_finder()Kristian Evers
2020-11-20Remove unused pj_apply_gridshift()Kristian Evers
2020-11-20Removed unused functions from src/utils.cppKristian Evers
2020-11-20Remove pj_ctx_* functions and use their proj_context counterpartsKristian Evers
2020-11-20Remove legacy file APIKristian Evers
2020-11-20Convert multistresstest to new APIKristian Evers
2020-11-20Weed out proj_api.h datatypes and replace them with their proj.h counterpartsKristian Evers
2020-11-20Remove src/transform.cpp and related testsKristian Evers
2020-11-20Raise error when ACCEPT_USE_OF_DEPRECATED_PROJ_API_H is definedKristian Evers
2020-11-20Remove ACCEPT_USE_OF_DEPRECATED_PROJ_API_H macroKristian Evers
2020-11-20Remove proj_api.hKristian Evers
Removes proj_api.h from the public API. The contents of the header file has been moved to proj_internal.h verbatim and any references to proj_api.h has been changed to proj_internal.h. The documentation of proj_api.h has been removed. The only exception to this is the API migration guides which still mention the old API. Fixes #837
2020-11-19Replace line feed in input line by null characterJ.H. van de Water
As result of a modification in logging (adding a line feed), many changes had to be made in different places of cct.cpp. However, one missed the line feed in input to cct. As result of missing this, the output from cct showed a superfluous empty line after each output line, but only if the corresponding input line ended with comment. Replacing the LF in the "comment" string (present if the input line ended with comment) by a null character ('\0') solves this issue. Modification in logging? https://github.com/OSGeo/PROJ/commit/37da5e243191c04607597f6b8a77acfa017a5c99 ( cct: revise end-of-line handling in logging, and always output debug ) See also: https://github.com/OSGeo/PROJ/issues/1677 ( cct outputs excessive whitespace comments are included in input data )
2020-11-18Merge pull request #2434 from rouault/update_to_epsg_10.0.7Even Rouault
Database: update to EPSG v10.007
2020-11-18Database: update to EPSG v10.007Even Rouault
2020-11-17cs2cs, cct, proj and geod: fflush(stdout) after each line to emit each ↵Even Rouault
result as soon as it is produced This is needed when working with pipes, when stdout is not an interactive terminal, and thus the behaviour is to have it buffered as a regular file, whereas with an interactive terminal, each newline character causes an implicit flush.
2020-11-17github actions: update to conda-incubator/setup-miniconda@v2 to be ↵Even Rouault
compatible with latest github action security fix constraints
2020-11-16WKT2 parsing: several fixes related to map projection parameter unitsEven Rouault
- WKT2 grammar: accept PARAMETER[name,value,id] without unit - Recognize "Ellipsoid scaling factor" as a parameter with a scaling unit, and defaults to Unity when not specified - WKT2 parsing: implement the requirement of 18-010r7.html#80, that is when a map projection parameter has no explicit unit, use metre/degree/unity as the default unit (contrary to WKT1 parsing rules where they are deduced from the GeogCRS angular unit and coordinate system)
2020-11-12Merge pull request #2422 from rouault/fix_polar_stere_at_poleEven Rouault
Polar stereographic at pole: make it return (0,0)
2020-11-12Polar stereographic at pole: make it return (0,0)Even Rouault
Due to the improved accuracy of pj_tsfn(), it no longer returns 0 when phi=90° due to the conversion in radians. Some GDAL tests are very sensitive to the pole transforming to (0,0) exactly, so add a special case for that. master only
2020-11-10Merge pull request #2420 from rouault/cct_improvementsEven Rouault
cct: allow @filename syntax
2020-11-10cct: allow @filename syntaxEven Rouault
Similarly as for projinfo, allow "cct @filename" to mean read filename and use its content as if it was provided inline. Useful for WKT or PROJJSON And a tiny improvements, when the object definition contains ':', only try proj_create_from_database() if the left part (authority name) matches a known authority, to avoid a warning.
2020-11-10cct.rst: fix indentationEven Rouault
2020-11-10Allow cct to instantiate operations via object codes or names (#2419)Kristian Evers
Running cct like cct EPSG:8366 or cct "ITRF2014 to ETRF2014 (1)" is now possible.
2020-11-09Merge pull request #2417 from rouault/refresh_COPYINGEven Rouault
COPYING: update and install COPYING, NEWS and AUTHORS
2020-11-06automake and cmake: install COPYING, NEWS and AUTHORS in /share/doc/projEven Rouault
2020-11-06COPYING: updateEven Rouault
Fixes #2415 - Change mention of PROJ.4 to PROJ - Change 'I' pronoun to Frank Warmerdam
2020-11-04createBoundCRSToWGS84IfPossible(): make it return same result with a CRS ↵Even Rouault
built from EPSG code or WKT1 Related to https://github.com/OSGeo/gdal/issues/3144
2020-11-04Code formattingEven Rouault
2020-11-04docs/Makefile: restore custom 'html' targetEven Rouault
Fixes #2408 https://github.com/OSGeo/PROJ/pull/2377 removed our customized 'html' and .doxygen_up_to_date targets. Let's restore them
2020-11-03Correct links to github issues in release notes from 7.1.0 to 7.2.0Martin Steinisch
2020-11-02cmake build: set CURL_ENABLED definition on projinfo build (#2404)Olli Raisa
Fixes projinfo operation, when --remote-data command line option is parsed.
2020-11-01Merge pull request #2371 from rouault/epsg10_part2Even Rouault
EPSG v10 update part 2: ingest DatumEnsemble from the database
2020-11-01proj.h: add PJ_CATEGORY_DATUM_ENSEMBLE for proj_create_from_database()Even Rouault
2020-11-01projinfo / createObjectsFromName(): support returning a datum ensembleEven Rouault
2020-11-01When reading from database, possibly return VerticalCRS with a DatumEnsembleEven Rouault
Only occurence for now is EPSG:9451 'BI height' using the 'British Isles height ensemble'
2020-11-01When reading from database, possibly return Geographic/GeodeticCRS with a ↵Even Rouault
DatumEnsemble, typically for WGS 84 and ETRS89 ('breaking change')
2020-11-01Merge pull request #2397 from cffk/merc-updateCharles Karney
Update Mercator projection, more accurate, faster
2020-11-01Merge pull request #2402 from rouault/improved_comments_datumEven Rouault
Doxygen: improve doc of functions related to Datum/DatumEnsemble
2020-11-01Merge pull request #2401 from rouault/improve_remarksEven Rouault
Fill remarks on coordinate operations in more situations
2020-11-01Merge pull request #2400 from ↵Even Rouault
rouault/proj_create_ellipsoidal_2D_cs_doc_improvement proj_create_ellipsoidal_2D/3D_cs(): doc improvement
2020-11-01Switch website 'edit on GitHub' to 7.2 branchKristian Evers
2020-11-01Update version numbers in preparation for 8.0.0 releaseKristian Evers
2020-11-01Merge remote-tracking branch 'osgeo/master'Kristian Evers
2020-11-01Update docs for 7.2.0 releaseKristian Evers
2020-10-31Doxygen: improve doc of functions related to Datum/DatumEnsembleEven Rouault
2020-10-31Fill remarks for PROJ-based operation mixing horizontal and vertical ↵Even Rouault
transformations