| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2019-08-26 | Add a proj_cleanup() function to free global resources, typically at process ↵ | Even Rouault | |
| termination | |||
| 2019-08-23 | Add proj_create_crs_to_crs_from_pj() | Even Rouault | |
| I've been frustrated a number of times with proj_create_crs_to_crs() not accepting a PJ* object for the source and target CRS. And thus constraining to go back to WKT2 in a artificial way. | |||
| 2019-05-01 | Merge pull request #1433 from rouault/update_quickstart | Kristian Evers | |
| Doc: update quickstart with PROJ 6 API + add PROJ 4->6 migration guide (fixes #1403) | |||
| 2019-04-22 | proj_create(): add support for compoundCRS and concatenatedOperation named ↵ | Even Rouault | |
| from their components Support following syntaxes: - OGC URN combining references for compoundCRS: e.g. "urn:ogc:def:crs,crs:EPSG::2393,crs:EPSG::5717" - its GDAL shortcut: e.g. "EPSG:2393+5717" - OGC URN combining references for concatenated operations: e.g. "urn:ogc:def:coordinateOperation,coordinateOperation:EPSG::3895,coordinateOperation:EPSG::1618" | |||
| 2019-04-19 | Doc: update quickstart with PROJ 6 API (fixes #1403) | Even Rouault | |
| 2019-04-02 | Docs: Clarify that angular in proj_angular_input/output means radians | Kristian Evers | |
| 2019-03-28 | Docs: Clarify axis ordering used in proj_trans_generic() | Kristian Evers | |
| 2019-01-22 | proj_create_crs_to_crs(): defer selection of actual coordinate operation ↵ | Even Rouault | |
| until proj_trans() is called (fixes #1229) | |||
| 2019-01-19 | Doc: update cs2cs and also C API regarding area of use (fixes #1186) | Even Rouault | |
| 2019-01-17 | Doc: update docs of proj_create(), proj_create_argv() and ↵ | Even Rouault | |
| proj_create_crs_to_crs() (refs #1223) | |||
| 2019-01-17 | Remove proj_create_from_proj_string() and proj_create_from_user_input(), and ↵ | Even Rouault | |
| make proj_create() do more or less what proj_create_from_user_input() did before (fixes #1214) | |||
| 2019-01-10 | Doc: document interaction issues between objects create with proj_create() ↵ | Even Rouault | |
| vs the ones of the C++ API (fixes #1213) (#1215) | |||
| 2019-01-01 | Split ISO19111 C API docs into functions and types | Kristian Evers | |
| The rest of the C API is structured such that type definitions goes into one page and functions to another. This commit makes sure the same is done for the C bindings to the ISO19111 C++ API by defining two doxygen groups in proj.h, which is then organized into the proper pages with Sphinx and breathe. | |||
| 2018-11-14 | Implement RFC 2: Initial integration of "GDAL SRS barn" work | Even Rouault | |
| This work mostly consists of: - a C++ implementation of the ISO-19111:2018 / OGC Topic 2 "Referencing by coordinates" classes to represent Datums, Coordinate systems, CRSs (Coordinate Reference Systems) and Coordinate Operations. - methods to convert between this C++ modeling and WKT1, WKT2 and PROJ string representations of those objects - management and query of a SQLite3 database of CRS and Coordinate Operation definition - a C API binding part of those capabilities This is all-in-one squashed commit of the work of https://github.com/OSGeo/proj.4/pull/1040 | |||
| 2018-11-10 | Remove proj_geocentric_latitude from public API | Kristian Evers | |
| Closes #1107 | |||
| 2018-10-16 | Move struct definitions for proj_list_* functions to proj.h | Kristian Evers | |
| With projects.h not being available to outside users anymore we need to define PJ_UNITS, PJ_ELLPS, PJ_PRIME_MERIDIANS and PJ_OPERATIONS elsewhere. Related pj_get_*_ref() functions have been removed in favour of their proj_ namespaced counterparts. char pointers have been changed to const char pointers. Resolves #983 Resolved #1147 Make char pointers const | |||
| 2018-09-07 | Change note to versionadded directive | Kristian Evers | |
| 2018-09-07 | Fix formatting error in API functions docs | Kristian Evers | |
| 2018-07-06 | Add info on errnos when PJ creation fails. | Kristian Evers | |
| This was left out when documented the various proj_create_* functions. Added proj_context_errno description as well since it was undocumented and is needed when creating PJs for a specific context. | |||
| 2018-05-07 | Change duplicate doc entry of proj_lp_dist() to proj_lpz_dist() | Kristian Evers | |
| 2018-04-12 | Move logging functions to proj.h API | Kristian Evers | |
| 2018-03-15 | Doc: replace UTF-8 space by regular space to avoid confusing sphynx | Even Rouault | |
| 2018-03-11 | Merge pull request #847 from kbevers/proj_strerrno | Kristian Evers | |
| Add proj_errno_string function | |||
| 2018-03-09 | Add proj_errno_string function | Kristian Evers | |
| Equivalent to pj_strerrno. | |||
| 2018-03-08 | Use consistent names for PJ_COORD's in declarations | Kristian Evers | |
| Changes use of 'PJ_COORD coo' to 'PJ_COORD coord' so that variable names in public function prototypes are consistent. Closes #842. | |||
| 2018-03-06 | fix a few typos (again) | Mike Toews | |
| 2018-02-23 | datatypes.rst: linuistics + INFO datatypes | Thomas Knudsen | |
| Some minor linguistic corrections + general update to make the documentation reflect the updates in PR #775 | |||
| 2018-02-23 | Merge remote-tracking branch 'osgeo/master' into docs-release-4.10.0 | Kristian Evers | |
| 2018-02-19 | Merge branch 'docs-release-4.10.0' of https://github.com/OSGeo/proj.4 into ↵ | Kristian Evers | |
| docs-release-4.10.0 | |||
| 2018-02-19 | API reference updates to reflect recent changes across the code-base [skip ci]. | Kristian Evers | |
| 2018-02-01 | Update datatype and function reference to reflect recent code changes [skip ci] | Kristian Evers | |
| 2017-11-27 | Update API reference to reflect recent changes to the API | Kristian Evers | |
| 2017-10-09 | Add documentation for datatypes and functions related to internal lists in ↵ | Kristian Evers | |
| PROJ.4. [skip ci] | |||
| 2017-10-09 | Add PJ_DIRECTION to API referece [skip ci] | Kristian Evers | |
| 2017-09-27 | add proj_errno_* functions to API reference | Kristian Evers | |
| 2017-09-13 | Added functions API reference | Kristian Evers | |
| 2017-09-06 | Added data types reference section. | Kristian Evers | |
| 2017-09-04 | Added more pages to 'development' chapter. Moved old API description to ↵ | Kristian Evers | |
| section named 'deprecated'. Created a quickstart page for the development chapter. Scaffolding in place for the rest of the chapter. | |||
