aboutsummaryrefslogtreecommitdiff
path: root/docs/source
AgeCommit message (Collapse)Author
2020-01-18resource_files.rst: update user writable directory to ~/Library/Application ↵Even Rouault
Support for OSX
2020-01-17Doc: network and geotiff grid improvementsEven Rouault
- Add a usage/network.rst document for all network related information (fixes #1852) - reference it from cs2cs and cct docs - Create a specification/ section - Move usage/projjson.json to specification/ - Move the description of the GeoTIFF format from RFC-4 text to a specifications/geodetictiffgrids.rst (refs #1850)
2020-01-17Merge branch 'master' into rfc4_merge_back_masterEven Rouault
2020-01-16Address review comments for https://github.com/OSGeo/PROJ/pull/1817Even Rouault
2020-01-15Doc: add notes in deformation.rst regarding +xy_grids/+z_grids being ↵Even Rouault
exclusive of new option +grids
2020-01-15Integrate into .rst doxygen-generated doc for custom I/O and network ↵Even Rouault
functionality
2020-01-14doc: Fix error in previous commit (duplicate link targets)Kristian Evers
2020-01-14Doc: Update index of development sectionKristian Evers
Adds links to git repositories and adjusts deprecation warnings to reflect that PROJ 6 has been released.
2020-01-13cct doc: mention use or remote gridsEven Rouault
2020-01-13Remove -ld option from proj and cs2csKristian Evers
It promotes use of deprecated paramters +datum and +towgs84 which we don't want to encourage. Closes #1308
2020-01-11Fix missing word in cct.rst and cct.1andreas
2020-01-11Use Win32 Unicode APIs and expect all strings to be UTF-8 (fixes #1765)Even Rouault
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.
2020-01-10Add RFC 4 text: Remote access to grids and GeoTIFF grids (#1747)Even Rouault
2020-01-08Add capability to read resource files from the user writable directoryEven Rouault
2020-01-07Doc: address code review commentsEven Rouault
2020-01-07projinfo: support -k datumEven Rouault
2020-01-07xyzgridshift.rst: fix typoEven Rouault
2020-01-06Doc: add a 'Feedback from downstream projects' for PROJ6 migrationEven Rouault
2020-01-02operations_computation.rst: update with latest 6.3 adjustmentsEven Rouault
2020-01-01Bump version numbers in preparation for 7.0.0 releaseKristian Evers
2020-01-01Update github version in Sphinx configKristian Evers
2020-01-01Update website for 6.3.0 releaseKristian Evers
2019-12-30deformation: add support for +grids= for GeoTIFF gridsEven Rouault
This option is to load grid(s) that have both the horizontal and vertical velocities in the same file. Can be tested with the following grid https://github.com/rouault/sample_proj_gtiff_grids/blob/master/nkgrf03vel_realigned.tif converted from the original .ct2 and .gtx with ``` gdal_translate nkgrf03vel_realigned.vrt nkgrf03vel_realigned.tif -co COMPRESS=DEFLATE -co PREDICTOR=3 -co BLOCKYSIZE=241 -co INTERLEAVE=BAND ``` where nkgrf03vel_realigned.vrt is ``` <VRTDataset rasterXSize="223" rasterYSize="241"> <SRS dataAxisToSRSAxisMapping="2,1">GEOGCRS["Unknown based on GRS80", DATUM["Unknown based on GRS80", ELLIPSOID["GRS 1980",6378137,298.257222101, LENGTHUNIT["metre",1]]], PRIMEM["Greenwich",0, ANGLEUNIT["degree",0.0174532925199433]], CS[ellipsoidal,2], AXIS["geodetic latitude (Lat)",north, ORDER[1], ANGLEUNIT["degree",0.0174532925199433]], AXIS["geodetic longitude (Lon)",east, ORDER[2], ANGLEUNIT["degree",0.0174532925199433]]] </SRS> <GeoTransform> 2.9166666666666670e+00, 1.6666666666666666e-01, 0.0000000000000000e+00, 7.3041666666666686e+01, 0.0000000000000000e+00, -8.3333333333333329e-02</GeoTransform> <Metadata> <MDI key="DESCRIPTION"></MDI> <MDI key="area_of_use">Nordic and Baltic countries</MDI> <MDI key="AREA_OR_POINT">Point</MDI> <MDI key="TIFFTAG_COPYRIGHT">The Nordic Geodetic Commission. Creative Commons Attribution 4.0 https://creativecommons.org/licenses/by/4.0/</MDI> <MDI key="TIFFTAG_DATETIME">2019:12:30 00:00:00</MDI> <MDI key="TIFFTAG_IMAGEDESCRIPTION">Deformation model covering the Nordic and Baltic countries. Used in transformations between global reference frames and the local realisations of ETRS89 in the Nordic and Baltic countries</MDI> <MDI key="TYPE">VELOCITY</MDI> </Metadata> <VRTRasterBand dataType="Float32" band="1"> <Description>east_velocity</Description> <UnitType>mm/year</UnitType> <SimpleSource> <SourceFilename relativeToVRT="0">/home/even/proj/proj-datumgrid/europe/nkgrf03vel_realigned_xy.ct2</SourceFilename> <SourceBand>2</SourceBand> <!-- GDAL exposes the first physical component of the file (longitude offset normally, here east velocity) as the second band --> <SrcRect xOff="0" yOff="0" xSize="223" ySize="241" /> <DstRect xOff="0" yOff="0" xSize="223" ySize="241" /> </SimpleSource> </VRTRasterBand> <VRTRasterBand dataType="Float32" band="2"> <Description>north_velocity</Description> <UnitType>mm/year</UnitType> <SimpleSource> <SourceFilename relativeToVRT="0">/home/even/proj/proj-datumgrid/europe/nkgrf03vel_realigned_xy.ct2</SourceFilename> <SourceBand>1</SourceBand> <!-- and the second physical component (latitude offset normally, here north velocity) as the first band --> <SrcRect xOff="0" yOff="0" xSize="223" ySize="241" /> <DstRect xOff="0" yOff="0" xSize="223" ySize="241" /> </SimpleSource> </VRTRasterBand> <VRTRasterBand dataType="Float32" band="3"> <Description>up_velocity</Description> <UnitType>mm/year</UnitType> <SimpleSource> <SourceFilename relativeToVRT="0">/home/even/proj/proj-datumgrid/europe/nkgrf03vel_realigned_z.gtx</SourceFilename> <SourceBand>1</SourceBand> <SrcRect xOff="0" yOff="0" xSize="223" ySize="241" /> <DstRect xOff="0" yOff="0" xSize="223" ySize="241" /> </SimpleSource> </VRTRasterBand> </VRTDataset> ```
2019-12-27Network: make CDN endpoint configurable either in proj.ini, ↵Even Rouault
PROJ_NETWORK_ENDPOINT or proj_context_set_url_endpoint()
2019-12-27Network: automatically use CDN resources when local resources not available, ↵Even Rouault
and networking enabled
2019-12-26Add link to Go bindings (#1807)joe-mann
2019-12-25Doc: resource_files.rst: s/dictionaries/directoriesEven Rouault
2019-12-25Doc: differences.rst: add note about WKT1:GDAL no longer implicitly calling ↵Even Rouault
--boundcrs-to-wgs84
2019-12-25projinfo: no longer call createBoundCRSToWGS84IfPossible() for WKT1:GDALEven Rouault
To align with GDAL 3.0.3 behaviour, no longer automatically try to create a boundCRS to WGS84 when exporting to WKT1:GDAL. The user has to explicitly specify --boundcrs-to-wgs84 if he wishes this behaviour.
2019-12-11Add a +proj=xyzgridshift method to perform geocentric translation by grid. ↵Even Rouault
Used for French NTF to RGF93 transformation using gr3df97a.tif grid
2019-12-10DOC: correction to doi field; remove uri, which is identical to doi for ↵Mike Taves
Snyder1992
2019-12-09isea docs: Rewrite intro and reference to reflect actual projectionKristian Evers
Previous version was describing oea by mistake. It is also a projection by Snyder and the isea docs was based on the paper on the oea projection. This commit fixes that.
2019-12-07Add intro and table to isea doc pageKristian Evers
2019-12-06Merge pull request #1764 from rouault/updates_in_resource_filesKristian Evers
Doc: resource_files.rst updates
2019-12-05Merge pull request #1756 from rouault/document_create_operationsEven Rouault
Doc: add a operations_computation.rst describe the magic behind createOperations()
2019-12-04operations_computation.rst: try to clarify sorting logic [skip appveyor]Even Rouault
2019-12-01Doc: resource_files.rst: remove mentions of no longer existing esri, epsg ↵Even Rouault
and IGNF init-files
2019-12-01Doc: resource_files.rst: document recent Win32 specific addition ↵Even Rouault
(https://github.com/OSGeo/PROJ/pull/1755) regarding how resource files are looked for
2019-12-01Doc: resource_files.rst: document where resource files are looked for ↵Even Rouault
(without recent Win32 specific addition)
2019-11-30[Docs] Minor changes regarding datumgrid pages (#1751) (#1760)Jeff McKenna
Update README, install.rst and resource_files.rst
2019-11-29Doc: clarifications regarding grid packages (fixes #1751)Even Rouault
- Content partly borrowed from @kbevers ' suggestions of https://github.com/OSGeo/PROJ/issues/1751#issuecomment-558976968 - Remove mention about Swiss grids. Included in the europe package - Remove section about HARN / HPGN grids. Those have been included in the north-america package, and there is no longer any point in mentionning the particularities of how ancient ones had to be used with PROJ.4 - Remove section about obsolete proj_defs.dat
2019-11-29operations_computation.rst: fixesEven Rouault
2019-11-29Update docs/source/operations/operations_computation.rstEven Rouault
Co-Authored-By: Kristian Evers <kristianevers@gmail.com>
2019-11-29Update docs/source/operations/operations_computation.rstEven Rouault
Co-Authored-By: Kristian Evers <kristianevers@gmail.com>
2019-11-29Update docs/source/operations/operations_computation.rstEven Rouault
Co-Authored-By: Kristian Evers <kristianevers@gmail.com>
2019-11-29Update docs/source/operations/operations_computation.rstEven Rouault
Co-Authored-By: Kristian Evers <kristianevers@gmail.com>
2019-11-29Update docs/source/operations/operations_computation.rstEven Rouault
Co-Authored-By: Kristian Evers <kristianevers@gmail.com>
2019-11-29Update docs/source/operations/operations_computation.rstEven Rouault
Co-Authored-By: Kristian Evers <kristianevers@gmail.com>
2019-11-29Update docs/source/operations/operations_computation.rstEven Rouault
Co-Authored-By: Kristian Evers <kristianevers@gmail.com>
2019-11-29Update docs/source/operations/operations_computation.rstEven Rouault
Co-Authored-By: Kristian Evers <kristianevers@gmail.com>