diff options
| author | Kristian Evers <kristianevers@gmail.com> | 2021-03-01 13:01:25 +0100 |
|---|---|---|
| committer | Kristian Evers <kristianevers@gmail.com> | 2021-03-01 13:01:25 +0100 |
| commit | b6c588ee754f4a7e99809145315240862e5cb45e (patch) | |
| tree | bb60d588378fd25cbd0b02cd4b00937a4919d819 /docs/source | |
| parent | 12e7a4395784d2dfb45cc0b719d37cd7e534fe91 (diff) | |
| download | PROJ-b6c588ee754f4a7e99809145315240862e5cb45e.tar.gz PROJ-b6c588ee754f4a7e99809145315240862e5cb45e.zip | |
Update web docs for 8.0.0 release
Diffstat (limited to 'docs/source')
| -rw-r--r-- | docs/source/conf.py | 2 | ||||
| -rw-r--r-- | docs/source/download.rst | 10 | ||||
| -rw-r--r-- | docs/source/news.rst | 77 |
3 files changed, 84 insertions, 5 deletions
diff --git a/docs/source/conf.py b/docs/source/conf.py index fbf4358a..b898b7d6 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -70,7 +70,7 @@ copyright = u'1983-{0}'.format(now.year) # |version| and |release|, also used in various other places throughout the # built documents. version = '8.0.0' -data_version = '1.3' +data_version = '1.5' # use same |release| as |version| release = version diff --git a/docs/source/download.rst b/docs/source/download.rst index eddafcf2..03a61c76 100644 --- a/docs/source/download.rst +++ b/docs/source/download.rst @@ -13,8 +13,8 @@ distribution of the source code and various resource file archives. See Current Release -------------------------------------------------------------------------------- -* **2021-01-01** `proj-7.2.1.tar.gz`_ (`md5`_) -* **2021-01-01** `proj-data-1.4.tar.gz`_ +* **2021-03-01** `proj-8.0.0.tar.gz`_ (`md5`_) +* **2021-03-01** `proj-data-1.5.tar.gz`_ * **PDF Manual** `proj.pdf`_ .. note:: @@ -28,6 +28,7 @@ Current Release Past Releases -------------------------------------------------------------------------------- +* **2021-01-01** `proj-7.2.1.tar.gz`_ * **2020-11-01** `proj-7.2.0.tar.gz`_ * **2020-09-01** `proj-7.1.1.tar.gz`_ * **2020-07-01** `proj-7.1.0.tar.gz`_ @@ -49,6 +50,7 @@ Past Releases * **2015-09-13** `proj-4.9.2.tar.gz`_ * **2015-03-04** `proj-4.9.1.tar.gz`_ +* **2021-01-01** `proj-data-1.4.tar.gz`_ * **2020-11-01** `proj-data-1.3.tar.gz`_ * **2020-09-01** `proj-data-1.2.tar.gz`_ * **2020-05-01** `proj-data-1.1.tar.gz`_ @@ -74,8 +76,9 @@ Past Releases * **2018-03-01** `proj-datumgrid-oceania-1.1.zip`_ * **2018-03-01** `proj-datumgrid-oceania-1.0.zip`_ +.. _`proj-8.0.0.tar.gz`: https://download.osgeo.org/proj/proj-8.0.0.tar.gz +.. _`md5`: https://download.osgeo.org/proj/proj-8.0.0.tar.gz.md5 .. _`proj-7.2.1.tar.gz`: https://download.osgeo.org/proj/proj-7.2.1.tar.gz -.. _`md5`: https://download.osgeo.org/proj/proj-7.2.1.tar.gz.md5 .. _`proj-7.2.0.tar.gz`: https://download.osgeo.org/proj/proj-7.2.0.tar.gz .. _`proj-7.1.1.tar.gz`: https://download.osgeo.org/proj/proj-7.1.1.tar.gz .. _`proj-7.1.0.tar.gz`: https://download.osgeo.org/proj/proj-7.1.0.tar.gz @@ -97,6 +100,7 @@ Past Releases .. _`proj-4.9.2.tar.gz`: https://download.osgeo.org/proj/proj-4.9.2.tar.gz .. _`proj-4.9.3.tar.gz`: https://download.osgeo.org/proj/proj-4.9.3.tar.gz +.. _`proj-data-1.5.tar.gz`: https://download.osgeo.org/proj/proj-data-1.5.tar.gz .. _`proj-data-1.4.tar.gz`: https://download.osgeo.org/proj/proj-data-1.4.tar.gz .. _`proj-data-1.3.tar.gz`: https://download.osgeo.org/proj/proj-data-1.3.tar.gz .. _`proj-data-1.2.tar.gz`: https://download.osgeo.org/proj/proj-data-1.2.tar.gz diff --git a/docs/source/news.rst b/docs/source/news.rst index cc677c1f..9c529cd1 100644 --- a/docs/source/news.rst +++ b/docs/source/news.rst @@ -3,8 +3,83 @@ News ############################################################################### +8.0.0 Release Notes +++++++++++++++++++++++++++++++++++++++++ +*March 1st 2021* + +With the release of PROJ 8 the ``proj_api.h`` API is finally removed. See +:ref:`API_migration` for more info on how to migrate from the old to the +``proj.h`` API. + +With the removal of ``proj_api.h`` it has been possible to simplify error codes +and messages given by the software. The error codes are exposed in the API. + +Several improvements has been made to the command line utilities as well as +tweaks in the underlying API. + +Updates +------- + +* Public header file ``proj_api.h`` removed (`#837 <https://github.com/OSGeo/PROJ/issues/837>`_) + +* Improved accuracy of the Mercator projection (`#2397 <https://github.com/OSGeo/PROJ/issues/2397>`_) + +* Copyright statement wording updated (`#2417 <https://github.com/OSGeo/PROJ/issues/2417>`_) + +* Allow :program:`cct` to instantiate operations via object codes or names (`#2419 <https://github.com/OSGeo/PROJ/issues/2419>`_) + +* Allow ``@filename`` syntax in :program:`cct` (`#2420 <https://github.com/OSGeo/PROJ/issues/2420>`_) + +* Added :ref:`topocentric` (``+proj=topocentric``) (`#2444 <https://github.com/OSGeo/PROJ/issues/2444>`_) + +* Update GeographicLib to version 1.51 (`#2445 <https://github.com/OSGeo/PROJ/issues/2445>`_) + +* Added option to allow export of Geographic/Projected 3D CRS + in WKT1_GDAL (`#2450 <https://github.com/OSGeo/PROJ/issues/2450>`_) + +* Added ``--area`` and ``--bbox`` options in :program:`cs2cs` to restrict candidate + coordinate operations (`#2466 <https://github.com/OSGeo/PROJ/issues/2466>`_) + +* Added build time option to make :envvar:`PROJ_LIB` env var tested last (`#2476 <https://github.com/OSGeo/PROJ/issues/2476>`_) + +* Added ``--authority`` switch in :program:`cs2cs` to control where coordinate operations + are looked for. C API function :c:func:`proj_create_crs_to_crs_from_pj()` updated + accordingly (`#2477 <https://github.com/OSGeo/PROJ/issues/2477>`_) + +* Error codes revised and exposed in the public API (`#2487 <https://github.com/OSGeo/PROJ/issues/2487>`_) + +* Added ``--accuracy`` options to :program:`projinfo`. C API function + :c:func:`proj_create_crs_to_crs_from_pj()` updated accordingly (`#2488 <https://github.com/OSGeo/PROJ/issues/2488>`_) + +* Added :c:func:`proj_crs_is_derived()` function to C API (`#2496 <https://github.com/OSGeo/PROJ/issues/2496>`_) + +* Enabled linking against static cURL on Windows (`#2514 <https://github.com/OSGeo/PROJ/issues/2514>`_) + +* Updated ESRI CRS database to 12.7 (10.8.1/2.6) (`#2519 <https://github.com/OSGeo/PROJ/issues/2519>`_) + +* Allow a WKT BoundCRS to use a PROJ string transformation (`#2521 <https://github.com/OSGeo/PROJ/issues/2521>`_) + +* Update to EPSG v10.015 (`#2539 <https://github.com/OSGeo/PROJ/issues/2539>`_) + +* Default log level set to ``PJ_LOG_ERROR`` (`#2542 <https://github.com/OSGeo/PROJ/issues/2542>`_) + +* CMake installs a pkg-config file ``proj.pc``, where supported (`#2547 <https://github.com/OSGeo/PROJ/issues/2547>`_) + +Bug fixes +--------- + +* Do not restrict longitude to [-90;90] range in spherical transver Mercator + forward projection (`#2471 <https://github.com/OSGeo/PROJ/issues/2471>`_) + +* :cpp:func:`createOperations()`: fix Compound to Geog3D/Projected3D CRS with non-metre ellipsoidal height (`#2500 <https://github.com/OSGeo/PROJ/issues/2500>`_) + +* Avoid error messages to be emitted log level is set to ``PJ_LOG_NONE`` (`#2527 <https://github.com/OSGeo/PROJ/issues/2527>`_) + +* Close database connection when autoclose set to True (`#2532 <https://github.com/OSGeo/PROJ/issues/2532>`_) + + 7.2.1 Release Notes -------------------- +++++++++++++++++++++++++++++++++++++++++ *January 1st 2021* Updates |
