aboutsummaryrefslogtreecommitdiff
path: root/docs/source
AgeCommit message (Collapse)Author
2020-06-13Update code contributor guidelines so they reflect current state of affairsKristian Evers
2020-06-13add favicon.png in htmlJavier Jimenez Shaw
2020-06-05Doc: use Doxygen output for proj_normalize_for_visualization() to avoid ↵Even Rouault
duplication of info (current .rst content is outdated)
2020-06-03Doc: add specific explanations for lat_ts for +proj=stere, also mentions ↵github-actions[bot]
+lat_0 and +k_0
2020-05-04resource_file.rst: fix link to crs2crsgrid.py [skip appveyor] (#2207)Even Rouault
2020-05-02Merge pull request #2201 from PROJ-BOT/backport-2200-to-7.0Even Rouault
[Backport 7.0] createFromProjString(): handle default parameters of '+krovak +type=crs', and handle +czech correctly (fixes #2199)
2020-05-01doc: update download and news pages with new releasesKristian Evers
2020-04-28createFromProjString(): handle default parameters of '+krovak +type=crs', ↵github-actions[bot]
and handle +czech correctly (fixes #2199)
2020-04-27Bump version numbers for 7.0.1Kristian Evers
2020-04-26Update cs2cs options -r/-s to reflect axis ordering of PROJ >6Kristian Evers
Originally proposed by Greg Troxel on the mailing list: https://lists.osgeo.org/pipermail/proj/2020-April/009597.html Co-authored-by: Greg Troxel <gdt@lexort.com>
2020-04-24Doc: fixes for Sphinx 3.0 compat [skip appveyor]github-actions[bot]
2020-04-04Merge pull request #2131 from PROJ-BOT/backport-2128-to-7.0Even Rouault
[Backport 7.0] createOperations(): improve results of compoundCRS to compoundCRS case (fixes #2115)
2020-04-04glossary.rst: fix recent typo [skip appveyor]Even Rouault
2020-04-04Doc: define 'Ballpark transformation'Even Rouault
2020-04-04createOperations(): improve results of compoundCRS to compoundCRS case ↵github-actions[bot]
(fixes #2115)
2020-03-18cs2cs: don't require +to for '{source_crs} {target_crs} filename...' syntax ↵github-actions[bot]
(fixes #2012)
2020-03-17[Backport 7.0] Align install.rst with current version (#2078) [skip appveyor]PROJ-BOT
2020-03-12Add note about orientation of control points in `chamb`github-actions[bot]
2020-03-11Doc: use 'ellipsoidal' to refer to the ellipsoidal formulation (to be ↵github-actions[bot]
opposed to the spherical one)
2020-03-10utm/ups: make sure to set errno to PJD_ERR_ELLIPSOID_USE_REQUIRED if es==0github-actions[bot]
2020-03-10fix documentation for proj_trans_generic()github-actions[bot]
2020-03-06Typo fixes identified by scripts/fix_typos.shEven Rouault
2020-03-05Remove occurences of deprecated PROJ.4 syntax (#2021)Even Rouault
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2020-03-04Document Autotools and CMake configure options (#2018)PROJ-BOT
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2020-03-03Fix download link for proj-data 1.0Chris Mayo
2020-03-01Add missing projection property tablesgithub-actions[bot]
2020-03-01Update github_version in sphinx configKristian Evers
2020-03-01Update docs in preparation for 7.0.0 releaseKristian Evers
2020-02-24Expose proj_context_is_network_enabled() in C APIgithub-actions[bot]
2020-02-21Doc: advertize lat_0 for proj=nsperEven Rouault
2020-02-13Doc: update with 6.3.1 release [skip appveyor]Even Rouault
2020-02-11Use relative directory to locate PROJ resource files.Even Rouault
Fixes #1490 This is an extension of the Window-specific logic added recently to Unix builds. This reuses parts of proposed past commit https://github.com/OSGeo/PROJ/pull/1517/commits/82a07e51c6e24ddb936d131ababe29f1ac36ef14 (credits to @abellgithub)
2020-02-06geodetictiffgrids.rst: fix linksEven Rouault
[skip appveyor]
2020-02-04Merge pull request #1910 from cffk/cmake-projCharles Karney
Make PROJ the CMake project name addressing first stage of #1885 Let's go with this! It's conceivable that there's some wrinkle I haven't thought about. So let's expose the changes to a wider community.
2020-02-04Merge pull request #1903 from rouault/add_proj_downloadEven Rouault
Add projsync utility
2020-02-04Add projsync utilityEven Rouault
Fixes #1750
2020-02-04Make PROJ the CMake project nameCharles Karney
Allow both find_package(PROJ) and find_package(PROJ4). More details are in cmake/CMakeLists.txt.
2020-02-04Increase CMake minimum version from 3.5 to 3.9Mike Taves
* Also remove a few if()-blocks to support older CMake versions
2020-01-28Add +proj=set operation to set component(s) of a coordinate to a fixed valueEven Rouault
Fixes #1846
2020-01-28Add RFC5 text: Adopt GeoTIFF-based grids for grids delivered with PROJ (#1868)Even Rouault
2020-01-28Merge pull request #1893 from asinghvi17/patch-2Even Rouault
Mention the Julia package Proj4.jl
2020-01-27projinfo: add --remote-data switchEven Rouault
2020-01-27Mention the Julia package Proj4.jlAnshul Singhvi
in `docs/src/development/bindings.rst`
2020-01-27projinfo: add --searchpaths switchEven Rouault
2020-01-26Doc: advertize FOSS4G 2020Even Rouault
Text copied from GDAL doc.
2020-01-25Fix ingestion of +proj=cea with +k_0Even Rouault
Fixes #1881 Digging into the implementation of proj=cea, it appears that k_0 and lat_ts are intended to be exclusive ways of specifying the same concept. EPSG only models the variant using lat_s. So if k_0 is found and lat_ts is absent, compute the equivalent value of lat_ts from k_0. Note: k_0 should normally be in the [0,1] range. In case creative users would use something outside, we raise an exception, even if the cea implementation could potentially deal with any k_0 value. Hopefully this is a (reasonable) limitation that will address nominal use cases.
2020-01-24Merge pull request #1870 from mwtoews/build-testingMike Taves
CMake: replace PROJ_TESTS with CTest's BUILD_TESTING option
2020-01-24CMake: replace PROJ_TESTS with CTest's BUILD_TESTING optionMike Taves
* CTest automatically creates a BUILD_TESTING option (default is ON) * Also allow PROJ_TESTS to be used, but show deprecation message; and add note to remove this option by PROJ 8.0 * Only build geodtest when tests are enabled * Add documentation to configure a build using -DBUILD_TESTING=OFF
2020-01-23docs: add note about autogen.sh to install guideKristian Evers
2020-01-22Merge RFC4 (#1865)Even Rouault
This commit is the result of the squashing of rfc4_dev branch in a single commit. It implements mostly RFC 4 related work. * Grid handling: - remove obsolete and presumably unfinished implementation of grid catalog functionality - all grid functionality is in grids.cpp/.hpp - vertical and horizontal grid shift: rework to no longer load whole grid into memory - remove hgrids and vgrids member from PJ structure, and store them in hgridshift/vgridshift/deformation structures - build systems: add optional libtiff dependency. Must be explicitly disabled if not desired - add support for horizontal and vertical grids in GeoTIFF, if libtiff is available - add GenericShiftGridSet and GenericShiftGrid classes, relying on TIFF grids, that can be used for generic purpose grid-based adjustment - add a +proj=xyzgridshift method to perform geocentric translation by grid. Used for French NTF to RGF93 transformation using gr3df97a.tif grid - deformation: add support for +grids= for GeoTIFF grids - horizontal grid shift: fix failures on points slightly outside a subgrid (fixes #209) * File management: - add a filemanager.cpp/.hpp to deal with file related work - test for legacy proj_api.h fileapi - proj.h: add proj_context_set_fileapi() and proj_context_set_sqlite3_vfs_name() (fixes #866) - add capability to read resource files from the user writable directory * Network access: - build systems: add optional curl dependency - add a curl-based default implementation for network related functionality - proj.h: add C API to control network functionality, and optionaly provide network callbacks - add data/proj.ini with default settings - add a SQLite3 local cache of downloaded chunks - add proj_is_download_needed() and proj_download_file() * Use Win32 Unicode APIs and expect all strings to be UTF-8 (fixes #1765) For backward compatibility, if PROJ_LIB content is found to be not UTF-8 or pointing to a non existing directory, then an attempt at interpretating it in the ANSI page encoding is done. proj_context_set_search_paths() now assumes strings to be in UTF-8, and functions returning paths will also return values in UTF-8.