aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-08-06Disable website deployment for branch 5.25.2Even Rouault
2019-08-06Fix tests still running despite being disabled in Release 5.2 (#1559)Kristian Evers
Fix tests still running despite being disabled in Release 5.2
2019-08-06Remove the "LANGUAGES" CMake 3 keywordConlan Cesar
`LANGUAGES` in this context was first introduced as a CMake 3 feature, but we advertise 2.6 support. Removing the keyword restores compatibility.
2019-08-05Fix tests still running despite being disabledConlan Cesar
This fix was included in release 6.0, simple backport to 5.2.
2019-01-21Doc: typo fixEven Rouault
2019-01-16[MOTIONED] RFC3: Dependency management (#1168)Kristian Evers
RFC3: Dependency management
2018-12-18Update bindings.rstmagau
Added Fortran-Proj, bindings for PROJ in Fortran.
2018-12-06Update URL to mailing listKristian Evers
2018-11-19Doc: fix geos projection explanation about the appropriate value for the ↵Even Rouault
sweep parameter depending on the satellite (fixes #1179)
2018-10-31Doc: add RFC2 initial versionEven Rouault
squashed cherry-picking of master commits: be58913801f400d9b00c8c3e8cdecb7e5fa89d38 5511ab8f4d75d7df6712619c77d2fa3e5dc07f1c 1b5e8db29f58627cdb722a6083348486e78bc4b0 9ae6713916f495b6f150915609a545275c5de699 0196fc54f779ef3a8045af0a3650b21908a178d2 ed0ee0bc9f0bada66eb42f6d0ed602d12558cf7c 2f48fe12dbd9be9075ea1359f01b4243b6e415bb
2018-10-28Remove British grids from non-free section of docsKristian Evers
Closes #1159
2018-10-25Doc: Add missing entry in references.bibEven Rouault
2018-10-25alphabetize titles in 'Non-Free Grids' section (content unchanged)Mike Toews
2018-10-25Remove free grids from 'Non-Free Grids' sectionMike Toews
These are included with proj-datumgrid: - Australia - Canada: ntv2_0.gsb - Germany: BETA2007.gsb
2018-10-15Add docs for the horner operationKristian Evers
2018-10-15Exclude option-includes to avoid blocking warnings in doc buildsKristian Evers
2018-10-08fix typoMarco Bernasocchi
2018-10-08Update install.rstMarco Bernasocchi
2018-09-28cs2cs_emulation_setup: fix issue with non C-localeEven Rouault
in +towgs84 case, we use sprintf() with floating-point formatter to output the ellipsoid parameters. For a locale with decimal separtor != dot, the resulting string will not be parsed correctly by proj_atof(), leading to wrong numeric result. The fix is similar to the one done in pj_latlong_from_proj() Note for later: if using C++, we could use a locale-independent formatting solution to avoid such issue.
2018-09-20Clean up FAQKristian Evers
This removes some questions that are no longer valid (covered elsewhere in the docs), adjusts the wording in other questions and fixes formatting and making it proper rst/sphinx syntax. With this, #1070 is almost fixed.
2018-09-19Build docs from most recent maintenance branchKristian Evers
2018-09-15Prepare website for 5.2 release5.2.0Kristian Evers
2018-09-11Merge pull request #1117 from mwtoews/intelKristian Evers
Modifications for Intel compilers
2018-09-11workaround Intel's shortcoming with constexprMike Toews
2018-09-11Specify c++11 for Intel compilersMike Toews
Also, workaround issue: CMake Error at test/unit/CMakeLists.txt:7 (string): string sub-command REGEX, mode REPLACE needs at least 6 arguments total to command.
2018-09-11Update release dateKristian Evers
2018-09-11Merge pull request #1116 from sebastic/dont-install-test-executablesEven Rouault
Don't install test executables.
2018-09-11Merge pull request #1115 from sebastic/dont-install-gtestEven Rouault
Don't install gtest libraries.
2018-09-11Don't install test executables.Bas Couwenberg
2018-09-11Don't install gtest libraries.Bas Couwenberg
2018-09-11Merge pull request #1114 from sebastic/sonameKristian Evers
Fix SONAME decrement from libproj.so.13 to libproj.so.12.
2018-09-11Fix SONAME decrement from libproj.so.13 to libproj.so.12.Bas Couwenberg
Increment age instead of revision for added interfaces, see: https://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
2018-09-10Release prep 5.2 (#1113)Kristian Evers
Steps 1.1-1.4 from HOWTO-RELEASE. Will publish the archives later today (evening central european time).
2018-09-10Update NEWS for 5.2Kristian Evers
2018-09-10Update man-pages from Sphinx-docsKristian Evers
2018-09-10Update ABI version for 5.2 releaseKristian Evers
2018-09-07cs2cs: Always convert to degrees when angular output is received (#1112)Kristian Evers
Previous to this commit cs2cs did not convert angular output to degrees when using operations setting PJ->right = PJ_IO_UNITS_ANGULAR. This commit adopts the conventions used after the introduction of pipelines. In practice, this allows the following and similar transformations to output in degrees and not radians: ``` echo 37.3916666667 -6.9325000 | cs2cs +proj=latlong +ellps=clrk80 \ +to +proj=molodensky +ellps=clrk80 +da=-112.145 +df=-0.54750714e-4 \ +dx=-175 +dy=-23 +dz=-303 37.39 -6.93 -8.2 ```
2018-09-07Change note to versionadded directiveKristian Evers
2018-09-07Fix formatting error in API functions docsKristian Evers
2018-09-07Merge pull request #1111 from kbevers/cct-forward-commentsKristian Evers
cct: forward comments to output
2018-09-07cct: forward comments to outputKristian Evers
Any text written after the coordinate input will automatically be forwarded to the output stream. Text in columns before the coordinate input is discarded in the output. This works for any combination of -c, -t and -z parameters: $ echo 12 56 100 2018.0 comment comment | cct +proj=merc 1335833.8895 7522963.2411 100.0000 2018.0000 comment commen $ echo text 12 56 100 2018.0 comment | cct -c 2,3,4,5 +proj=merc 1335833.8895 7522963.2411 100.0000 2018.0000 comment $ echo text 12 56 comment | cct -c 2,3 -t0 -z0 +proj=merc 1335833.8895 7522963.2411 0.0000 0.0000 comment $ echo 12 56 comment | cct -t0 -z0 +proj=merc 1335833.8895 7522963.2411 0.0000 0.0000 comment Closes #918
2018-09-05Minor corrections to cli app docs on -d optionKristian Evers
Added the version of introduction and removed comment about angular and linear output (it's an internal implementation detail that users doesn't need to be aware of).
2018-09-05Add -d option to proj, cs2cs and cct (#1109)Søren Holm
Specify number of decimals to display when transforming coordinates with either proj, cs2cs or cct.
2018-09-04Merge pull request #1108 from greg-minshall/masterKristian Evers
be more expansive in ignorance
2018-09-02be more expansive in ignoranceGreg Minshall
2018-08-29Merge pull request #1106 from rouault/vto_meter_4DAPI_proj_longlatKristian Evers
4D API: honour vto_meter / vunits for proj=longlat
2018-08-294D API: honour vto_meter / vunits for proj=longlatEven Rouault
This worked for cs2cs / pj_transform(), but not the new API
2018-08-28Merge pull request #1104 from jdugge/docs_image_ratiosKristian Evers
Ensure correct axis ratio for images in documentation
2018-08-27Ensure correct axis ratio for images in documentation; move proj-string from ↵Juernjakob Dugge
image to caption
2018-08-24proj_4D_api.c: fix potential null pointer dereference. Fixes ↵Even Rouault
https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=10033. Credit to OSS Fuzz. master only