aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-11-15Merge pull request #1175 from rouault/iso19111_for_mergeEven Rouault
Implement RFC 2: Initial integration of "GDAL SRS barn" work
2018-11-15Merge pull request #1174 from mwtoews/docsKristian Evers
DOC: remove old docs that are published by USGS
2018-11-14Implement RFC 2: Initial integration of "GDAL SRS barn" workEven 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-15Revise old documentationMike 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-10Merge pull request #1171 from kbevers/masterKristian Evers
Remove unused struct from projects.h
2018-11-10Remove unused struct from projects.hKristian Evers
2018-11-10Merge pull request #1170 from kbevers/geocentric-latitudeKristian Evers
Remove proj_geocentric_latitude from public API
2018-11-10Remove proj_geocentric_latitude from public APIKristian Evers
Closes #1107
2018-11-10Merge pull request #1162 from kbevers/proj-output-unitsKristian Evers
Disallow use of non-projection operations in proj (was: Don't convert non-angular inputs to proj to radians)
2018-11-10Disallow use of non-projection operations in projKristian 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-05Merge pull request #1169 from QuLogic/table-headingsKristian Evers
Add headings on tables where needed.
2018-11-04Add headings on tables where needed.Elliott Sales de Andrade
2018-10-31RFC 2: update adoption statusEven Rouault
2018-10-31Merge branch 'rfc2'Even Rouault
2018-10-28Remove British grids from non-free section of docsKristian Evers
Closes #1159
2018-10-28Merge pull request #1161 from rouault/molobadekasKristian Evers
Implement Molodensky-Badekas transform (fixes #1160)
2018-10-27helmert.rst: small fixesEven Rouault
2018-10-27Implement Molodensky-Badekas transform (fixes #1160)Even Rouault
2018-10-27Merge pull request #1164 from mathstuf/cmake-pthread-mutex-recursive-detectionKristian Evers
cmake: detect PTHREAD_MUTEX_RECURSIVE by compiling
2018-10-27Merge pull request #1163 from mathstuf/remove-unused-cmake-codeKristian Evers
cmake: remove unused code
2018-10-26cmake: detect PTHREAD_MUTEX_RECURSIVE by compilingBen 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-26cmake: remove unused codeBen Boeckel
These functions aren't called from anywhere else in the codebase.
2018-10-26ProjVersion: use cmake_parse_argumentsBen 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-26RFC2: take into account @schwehr reviewEven Rouault
2018-10-26Update RFC 2 with latest developmentsEven Rouault
2018-10-17No longer declare pj_prime_meridians, pj_ellps and pj_units as extern C, but ↵Even Rouault
static'ify them
2018-10-16Merge pull request #1148 from kbevers/lists-to-proj.hiso19111_devKristian Evers
Move struct definitions for proj_list_* functions to proj.h
2018-10-16Move struct definitions for proj_list_* functions to proj.hKristian 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-16Change pj_mkparam to take const char pointerKristian 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-15Merge pull request #1153 from sphynx/tobler-mercatorKristian Evers
Add Tobler-Mercator projection
2018-10-15Add Tobler-Mercator projectionIvan Veselov
2018-10-15Merge pull request #1151 from kbevers/horner-docsKristian Evers
Horner docs
2018-10-15Merge pull request #1154 from sphynx/better-plotting-error-messageKristian Evers
Make plot.py error message more helpful
2018-10-14Make plot.py error message more helpfulIvan Veselov
2018-10-12Add docs for the horner operationKristian Evers
2018-10-12Exclude option-includes to avoid blocking warnings in doc buildsKristian Evers
2018-10-11RFC2: rework adoption status to indicate that a vote will hopefully occurEven Rouault
2018-10-11RFC2: fix typosEven Rouault
2018-10-11Merge pull request #1133 from Fil/bertin1953Kristian Evers
the Bertin 1953 projection
2018-10-11Merge remote-tracking branch 'osgeo/master' into bertin1953Kristian Evers
2018-10-11Merge pull request #1144 from rouault/ntv1_fixKristian Evers
NTv1 grid shift: fix file offset for reading of shift values in ntv1_can.dat
2018-10-11Merge pull request #1142 from sphynx/proj-lcc-2sp-michiganKristian Evers
Add Lambert Conic Conformal (2SP Michigan) projection
2018-10-11Support LCC 2SP Michigan projectionIvan Veselov
2018-10-11RFC2: mention Breathe integrationEven Rouault
2018-10-10Doc: add RFC2 initial versionEven Rouault
2018-10-09Fix typosEven Rouault
2018-10-08Merge pull request #1137 from rouault/drop_nmakeKristian Evers
Remove nmake build system
2018-10-08Merge pull request #1146 from mbernasocchi/patch-2Kristian Evers
changed docker command
2018-10-08fix typoMarco Bernasocchi
2018-10-08Update install.rstMarco Bernasocchi