| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2020-11-26 | Fix mingw_w64 warning about pj_acquire_lock() prototype being missing | Even Rouault | |
| 2020-11-26 | Merge pull request #2403 from kbevers/remove-proj_api.h | Kristian Evers | |
| Remove proj_api.h | |||
| 2020-11-24 | Add option to allow export of Geographic/Projected 3D CRS in WKT1_GDAL | Even Rouault | |
| as CompoundCRS with a VerticalCRS being an ellipsoidal height, which is not conformant. But needed for LAS 1.4 that only supports WKT1 | |||
| 2020-11-24 | Merge pull request #2449 from rouault/geoidmodel_ballpark | Even Rouault | |
| createOperation(): add a ballpark vertical transformation when dealing with GEOIDMODEL[] | |||
| 2020-11-24 | createOperation(): add a ballpark vertical transformation when dealing with ↵ | Even Rouault | |
| GEOIDMODEL[] | |||
| 2020-11-24 | Merge pull request #2448 from rouault/gha_mingw_w64 | Even Rouault | |
| CI: move mingw job to GitHub actions | |||
| 2020-11-24 | Sync w GeographicLib 1.51. Remove C99 compatibility functions. (#2445) | Charles Karney | |
| Should be no changes in the compiled code. | |||
| 2020-11-24 | mutex.cpp: replace NULL by nullptr | Even Rouault | |
| 2020-11-23 | Add +proj=topocentric geocentric->topocentric conversion (fixes #500) | Even Rouault | |
| 2020-11-23 | GeographicCRS::_isEquivalentTo(EQUIVALENT_EXCEPT_AXIS_ORDER_GEOGCRS): make ↵ | Even Rouault | |
| it work when comparing easting,northing,up and northing,easting,up | |||
| 2020-11-22 | projinfo.cpp: improve hint when to use --spatial-test intersects | Even Rouault | |
| 2020-11-21 | PROJJSON parsing: fix parsing of a Geodetic CRS with a DatumEnsemble, and ↵ | Even Rouault | |
| fix parsing of a ProjectedCRS whose base is a Geocentric CRS | |||
| 2020-11-21 | WKT parsing: fix ingestion of WKT with a Geocentric CRS as the base of the ↵ | Even Rouault | |
| projected CRS | |||
| 2020-11-21 | createOperation(): make it work properly when one of the CRS is a BoundCRS ↵ | Even Rouault | |
| of a DerivedGeographicCRS (+proj=ob_tran +o_proj=lonlat +towgs84=....) | |||
| 2020-11-21 | Make GeographicCRS/GeodeticCRS::isEquivalentTo() work properly when ↵ | Even Rouault | |
| comparing to a DerivedGeographicCRS/DerivedGeodeticCRS | |||
| 2020-11-20 | Remove old pj_ memory (de)allocation functions | Kristian 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-20 | Remove pj_errno and related functions | Kristian Evers | |
| 2020-11-20 | Remove pj_free() and move it's functional parts to proj_destroy() | Kristian Evers | |
| 2020-11-20 | Removed unused function pj_set_searchpath() and pj_set_finder() | Kristian Evers | |
| 2020-11-20 | Remove unused pj_apply_gridshift() | Kristian Evers | |
| 2020-11-20 | Removed unused functions from src/utils.cpp | Kristian Evers | |
| 2020-11-20 | Remove pj_ctx_* functions and use their proj_context counterparts | Kristian Evers | |
| 2020-11-20 | Remove legacy file API | Kristian Evers | |
| 2020-11-20 | Convert multistresstest to new API | Kristian Evers | |
| 2020-11-20 | Weed out proj_api.h datatypes and replace them with their proj.h counterparts | Kristian Evers | |
| 2020-11-20 | Remove src/transform.cpp and related tests | Kristian Evers | |
| 2020-11-20 | Raise error when ACCEPT_USE_OF_DEPRECATED_PROJ_API_H is defined | Kristian Evers | |
| 2020-11-20 | Remove ACCEPT_USE_OF_DEPRECATED_PROJ_API_H macro | Kristian Evers | |
| 2020-11-20 | Remove proj_api.h | Kristian 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-19 | Replace line feed in input line by null character | J.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-17 | cs2cs, 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-16 | WKT2 parsing: several fixes related to map projection parameter units | Even 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-12 | Polar 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-10 | cct: allow @filename syntax | Even 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-10 | Allow 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-04 | createBoundCRSToWGS84IfPossible(): 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-02 | cmake build: set CURL_ENABLED definition on projinfo build (#2404) | Olli Raisa | |
| Fixes projinfo operation, when --remote-data command line option is parsed. | |||
| 2020-11-01 | Merge pull request #2371 from rouault/epsg10_part2 | Even Rouault | |
| EPSG v10 update part 2: ingest DatumEnsemble from the database | |||
| 2020-11-01 | proj.h: add PJ_CATEGORY_DATUM_ENSEMBLE for proj_create_from_database() | Even Rouault | |
| 2020-11-01 | projinfo / createObjectsFromName(): support returning a datum ensemble | Even Rouault | |
| 2020-11-01 | When reading from database, possibly return VerticalCRS with a DatumEnsemble | Even Rouault | |
| Only occurence for now is EPSG:9451 'BI height' using the 'British Isles height ensemble' | |||
| 2020-11-01 | When reading from database, possibly return Geographic/GeodeticCRS with a ↵ | Even Rouault | |
| DatumEnsemble, typically for WGS 84 and ETRS89 ('breaking change') | |||
| 2020-11-01 | Merge pull request #2397 from cffk/merc-update | Charles Karney | |
| Update Mercator projection, more accurate, faster | |||
| 2020-11-01 | Merge pull request #2402 from rouault/improved_comments_datum | Even Rouault | |
| Doxygen: improve doc of functions related to Datum/DatumEnsemble | |||
| 2020-11-01 | Merge pull request #2401 from rouault/improve_remarks | Even Rouault | |
| Fill remarks on coordinate operations in more situations | |||
| 2020-11-01 | Merge pull request #2400 from ↵ | Even Rouault | |
| rouault/proj_create_ellipsoidal_2D_cs_doc_improvement proj_create_ellipsoidal_2D/3D_cs(): doc improvement | |||
| 2020-11-01 | Update version numbers in preparation for 8.0.0 release | Kristian Evers | |
| 2020-10-31 | Doxygen: improve doc of functions related to Datum/DatumEnsemble | Even Rouault | |
| 2020-10-31 | Fill remarks for PROJ-based operation mixing horizontal and vertical ↵ | Even Rouault | |
| transformations | |||
| 2020-10-31 | Make sure that remarks is preserved when substituting (EPSG) grid name by ↵ | Even Rouault | |
| PROJ one | |||
