aboutsummaryrefslogtreecommitdiff
path: root/docs
AgeCommit message (Collapse)Author
2019-03-06Improve formatting of program references on apps indexKristian Evers
2019-03-03Merge pull request #1305 from mwtoews/docsKristian Evers
More updates to references
2019-03-04Further corrections to BibTeXMike Taves
- Use names as published - Change Tobler2017 -> Tobler2018 - Change EPSGGuidanceNumber7Part2 -> IOGP2018
2019-03-03Sphinxify formatting of recent news entryKristian Evers
2019-03-03Configure bibstyle to abbreviate namesMike Taves
2019-03-01Doc: fix various warnings/errors raised by SphinxEven Rouault
2019-03-01Merge pull request #1303 from dbaston/doc-editsKristian Evers
Minor doc edits
2019-03-01Bump version numbers in preparation for 6.1.0Kristian Evers
2019-03-01Fix typos in docs/source/news.rstKristian Evers
2019-03-01Update docs and travis for 6.0.0 releaseKristian Evers
2019-03-01Minor doc editsDan Baston
2019-02-28Miscellaneous documentation fixesMike Taves
- Corrections to BibTeX references, normalise format with JabRef - Typos in projinfo - Simplify update CITATION step
2019-02-24Doc: fix plotdefs.json, and aea and lcc descriptions, to take into account ↵Even Rouault
removal of proj_def.dat
2019-02-24Some improvements to the docs for tmerc and omerc (#1281)Thomas Knudsen
2019-02-24Merge pull request #1285 from rouault/doc_pattersonKristian Evers
Doc: add minimal documentation for patterson, compact miller, misrsom, natearth2, sch and times projections
2019-02-23Doc: add minimal doumentation for misrsom projectionEven Rouault
2019-02-23Doc: add minimal doumentation for times projectionEven Rouault
2019-02-23Doc: add minimal documentation for sch projectionEven Rouault
2019-02-23Doc: add minimal doumentation for natearth2 projectionEven Rouault
2019-02-23Fix spelling errors.Bas Couwenberg
* specfied -> specified
2019-02-23Doc: add minimal doumentation for comill / Compact Miller projectionEven Rouault
2019-02-23Doc: add minimal documentation for patterson projectionEven Rouault
2019-02-17Modify the default strategy of researching intermediate CRS to do it only if ↵Even Rouault
there is no direct transformation
2019-02-16Improve CMake sqlite3 dependency docsMike Taves
2019-02-14Merge pull request #1264 from kbevers/remove-t_obsKristian Evers
Clean up time handling in helmert and deformation
2019-02-14deformation: Replace +t_obs with +dtKristian Evers
The +t_obs parameter was confusing for users since it effectively overwrote the observation time in input coordinates. To make it more clear what is the operation is doing, users are now required to directly specify the time span for which they wish to apply a given deformation. The parameter +dt has been added for that purpose. The new parameter is mutually exclusive with +t_epoch. +dt is used when deformation for a set amount of time is needed and +t_epoch is used (in conjunction with the observation time of the input coordinate) when deformation from a specific epoch to the observation time is needed.
2019-02-14Merge remote-tracking branch 'osgeo/master' into remove-t_obsKristian Evers
2019-02-14Cosmetical changes to differences.rstKristian Evers
2019-02-14Reverse direction of deformation operations/transformations/deformationKristian Evers
Changed the direction of dt-calculation to follow the same convention as helmert. Changed from dt = t_c - t_obs to dt = t_obs - t_c, which effectively reverses the direction of the operation. Existing projstrings using deformation can simply reverse the direction of the operation to achieve the same results as before this commit.
2019-02-13Add push and pop operationsKristian Evers
This commit introduces the concept of a pipeline coordinate stack in which components of coordinates can be saved and loaded from. This makes it possible to moved values from one step of a pipeline to another, effectively overwriting parts of the output from a given step.
2019-02-11Make tmerc an alias for etmerc. (#1234)Kristian Evers
* Make tmerc an alias for etmerc This switches the algorithm used in tmerc to the Poder/Engsager tmerc algorithm. The original tmerc algorithm of Evenden/Snyder origin can still be accessed by adding the +approx flag when initializing a tmerc projection. The +approx flag can also be used when initializing UTM projections, in which case the Evenden/Snyder algorithm is used as well. If a tmerc projection is instantiated on a spherical earth the Evenden/Snyder algorithm is used as well since the Poder/Engsager algorithm is only defined on the ellipsoid. +proj=etmerc can still be instantiated for backwards compatibility reasons. Co-authored-by: Kristian Evers <kristianevers@gmail.com> Co-authored-by: Even Rouault <even.rouault@spatialys.com>
2019-02-04Remove all traces of nad2bin and nad2nadKristian Evers
The source material for the default grids used by PROJ has been moved to the proj-datumgrid repository. For that reason it is no longer necessary to include the nad2bin program in the PROJ repository and source distribution. From now on the nad2bin application will be kept in the proj-datumgrid repo. Previously the null grid was generated by running nad2bin on the null.lla file. Since nad2bin is no longer available null.lla has been replaced by its binary counterpart null. This file will be distributed and installed alongside PROJ. Build scripts and documenation has been adjusted so that nad2bin is not mentioned anywhere. Additionally all references to nad2nad has been removed as well. nad2nad has not been part of the PROJ distribution for quite some time so this has been long overdue.
2019-02-01Remove +t_obs parameter from helmert operationKristian Evers
2019-01-22Merge pull request #1231 from rouault/fix_1229Even Rouault
proj_create_crs_to_crs(): defer selection of actual coordinate operation until proj_trans() is called (fixes #1229)
2019-01-22Update cs2cs man page result (the change is due to ntv1_can.dat being used ↵Even Rouault
instead of conus...) (refs #1229)
2019-01-22proj_create_crs_to_crs(): defer selection of actual coordinate operation ↵Even Rouault
until proj_trans() is called (fixes #1229)
2019-01-21Doc: typo fixEven Rouault
2019-01-19Doc: add doc for projinfo (fixes #1183)Even Rouault
2019-01-19Doc: update cs2cs and also C API regarding area of use (fixes #1186)Even Rouault
2019-01-19Merge pull request #1226 from kbevers/remove-chebyshevKristian Evers
Remove Chebyshev polynomials from proj
2019-01-18Remove Chebyshev polynomials from projKristian Evers
2019-01-17Doc: update docs of proj_create(), proj_create_argv() and ↵Even Rouault
proj_create_crs_to_crs() (refs #1223)
2019-01-17Remove 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-16[MOTIONED] RFC3: Dependency management (#1168)Kristian Evers
RFC3: Dependency management
2019-01-10Doc: document interaction issues between objects create with proj_create() ↵Even Rouault
vs the ones of the C++ API (fixes #1213) (#1215)
2019-01-09PROJ_LIB: support multiple paths supported by colon on Unix and semi-colon ↵Even Rouault
on Windows (fixes #1150)
2019-01-02Typo fixesEven Rouault
2019-01-01Split ISO19111 C API docs into functions and typesKristian 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.
2019-01-01Remove .doxygen_up_to_date when cleaning docs buildKristian Evers
2018-12-27Add an hardcoded +ellps=GRS80 when there is no datum/ellipsoid specification ↵Even Rouault
(refs #201)