| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2018-11-15 | Merge pull request #1175 from rouault/iso19111_for_merge | Even Rouault | |
| Implement RFC 2: Initial integration of "GDAL SRS barn" work | |||
| 2018-11-15 | Merge pull request #1174 from mwtoews/docs | Kristian Evers | |
| DOC: remove old docs that are published by USGS | |||
| 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-15 | Revise old documentation | Mike Taves | |
| Remove documents that are published externally, and re-do ps2pdf conversion for unpublished documents to reduce their file size and allow text access. Also add README.md and update references.bib | |||
| 2018-11-10 | Merge pull request #1171 from kbevers/master | Kristian Evers | |
| Remove unused struct from projects.h | |||
| 2018-11-10 | Remove unused struct from projects.h | Kristian Evers | |
| 2018-11-10 | Merge pull request #1170 from kbevers/geocentric-latitude | Kristian Evers | |
| Remove proj_geocentric_latitude from public API | |||
| 2018-11-10 | Remove proj_geocentric_latitude from public API | Kristian Evers | |
| Closes #1107 | |||
| 2018-11-10 | Merge pull request #1162 from kbevers/proj-output-units | Kristian Evers | |
| Disallow use of non-projection operations in proj (was: Don't convert non-angular inputs to proj to radians) | |||
| 2018-11-10 | Disallow use of non-projection operations in proj | Kristian Evers | |
| Since the introduction of other operations types than projections it has been unclear how proj should treat those. This commit sets record straight once and for all: proj is only allowed to initialize operations that take angular input and produces non-angular output, i.e. projections. This is true to the version of proj before the introduction of the pipeline and other non-projection operations. Users can still initiliaze pipelines with proj as long as the resulting concatenated operation requires angular input and outputs non-angular output. | |||
| 2018-11-05 | Merge pull request #1169 from QuLogic/table-headings | Kristian Evers | |
| Add headings on tables where needed. | |||
| 2018-11-04 | Add headings on tables where needed. | Elliott Sales de Andrade | |
| 2018-10-31 | RFC 2: update adoption status | Even Rouault | |
| 2018-10-31 | Merge branch 'rfc2' | Even Rouault | |
| 2018-10-28 | Remove British grids from non-free section of docs | Kristian Evers | |
| Closes #1159 | |||
| 2018-10-28 | Merge pull request #1161 from rouault/molobadekas | Kristian Evers | |
| Implement Molodensky-Badekas transform (fixes #1160) | |||
| 2018-10-27 | helmert.rst: small fixes | Even Rouault | |
| 2018-10-27 | Implement Molodensky-Badekas transform (fixes #1160) | Even Rouault | |
| 2018-10-27 | Merge pull request #1164 from mathstuf/cmake-pthread-mutex-recursive-detection | Kristian Evers | |
| cmake: detect PTHREAD_MUTEX_RECURSIVE by compiling | |||
| 2018-10-27 | Merge pull request #1163 from mathstuf/remove-unused-cmake-code | Kristian Evers | |
| cmake: remove unused code | |||
| 2018-10-26 | cmake: detect PTHREAD_MUTEX_RECURSIVE by compiling | Ben Boeckel | |
| The `check_symbol_exists` cannot detect `#define symbol 1` because it takes the address of the symbol to detect it, but the address of a literal is not allowed. Some platforms define `PTHREAD_MUTEX_RECURSIVE` by such a literal. Fixes #1158 | |||
| 2018-10-26 | cmake: remove unused code | Ben Boeckel | |
| These functions aren't called from anywhere else in the codebase. | |||
| 2018-10-26 | ProjVersion: use cmake_parse_arguments | Ben Boeckel | |
| CMake provides this function, but only in CMake 2.8.3 and up. This minimum version bump is OK because it is from 2010, but the code requires C++11 features to exist. Any platform with a suitable compiler, but too-old of a CMake can easily compile the required CMake version as well. | |||
| 2018-10-26 | RFC2: take into account @schwehr review | Even Rouault | |
| 2018-10-26 | Update RFC 2 with latest developments | Even Rouault | |
| 2018-10-17 | No longer declare pj_prime_meridians, pj_ellps and pj_units as extern C, but ↵ | Even Rouault | |
| static'ify them | |||
| 2018-10-16 | Merge pull request #1148 from kbevers/lists-to-proj.hiso19111_dev | Kristian Evers | |
| Move struct definitions for proj_list_* functions to proj.h | |||
| 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-10-16 | Change pj_mkparam to take const char pointer | Kristian Evers | |
| pj_mkparam() and pj_mkparam_ws() doesn't alter the input string should therefore be const. This will be useful when making other changes to the code base later. | |||
| 2018-10-15 | Merge pull request #1153 from sphynx/tobler-mercator | Kristian Evers | |
| Add Tobler-Mercator projection | |||
| 2018-10-15 | Add Tobler-Mercator projection | Ivan Veselov | |
| 2018-10-15 | Merge pull request #1151 from kbevers/horner-docs | Kristian Evers | |
| Horner docs | |||
| 2018-10-15 | Merge pull request #1154 from sphynx/better-plotting-error-message | Kristian Evers | |
| Make plot.py error message more helpful | |||
| 2018-10-14 | Make plot.py error message more helpful | Ivan Veselov | |
| 2018-10-12 | Add docs for the horner operation | Kristian Evers | |
| 2018-10-12 | Exclude option-includes to avoid blocking warnings in doc builds | Kristian Evers | |
| 2018-10-11 | RFC2: rework adoption status to indicate that a vote will hopefully occur | Even Rouault | |
| 2018-10-11 | RFC2: fix typos | Even Rouault | |
| 2018-10-11 | Merge pull request #1133 from Fil/bertin1953 | Kristian Evers | |
| the Bertin 1953 projection | |||
| 2018-10-11 | Merge remote-tracking branch 'osgeo/master' into bertin1953 | Kristian Evers | |
| 2018-10-11 | Merge pull request #1144 from rouault/ntv1_fix | Kristian Evers | |
| NTv1 grid shift: fix file offset for reading of shift values in ntv1_can.dat | |||
| 2018-10-11 | Merge pull request #1142 from sphynx/proj-lcc-2sp-michigan | Kristian Evers | |
| Add Lambert Conic Conformal (2SP Michigan) projection | |||
| 2018-10-11 | Support LCC 2SP Michigan projection | Ivan Veselov | |
| 2018-10-11 | RFC2: mention Breathe integration | Even Rouault | |
| 2018-10-10 | Doc: add RFC2 initial version | Even Rouault | |
| 2018-10-09 | Fix typos | Even Rouault | |
| 2018-10-08 | Merge pull request #1137 from rouault/drop_nmake | Kristian Evers | |
| Remove nmake build system | |||
| 2018-10-08 | Merge pull request #1146 from mbernasocchi/patch-2 | Kristian Evers | |
| changed docker command | |||
| 2018-10-08 | fix typo | Marco Bernasocchi | |
| 2018-10-08 | Update install.rst | Marco Bernasocchi | |
