Skip to content

Commit

Permalink
Update docs for 9.5.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
kbevers committed Sep 15, 2024
1 parent 0a40732 commit 6d60e83
Show file tree
Hide file tree
Showing 2 changed files with 77 additions and 3 deletions.
10 changes: 7 additions & 3 deletions docs/source/download.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ Download
Current Release
--------------------------------------------------------------------------------

* **2024-06-01** `proj-9.4.1.tar.gz`_ (`md5`_)
* **2024-06-01** `proj-data-1.18.tar.gz`_
* **2024-09-15** `proj-9.5.0.tar.gz`_ (`md5`_)
* **2024-09-15** `proj-data-1.19.tar.gz`_

.. note::

Expand All @@ -40,6 +40,7 @@ Current Release
Past Releases
--------------------------------------------------------------------------------

* **2024-06-01** `proj-9.4.1.tar.gz`_
* **2024-03-01** `proj-9.4.0.tar.gz`_
* **2023-12-01** `proj-9.3.1.tar.gz`_
* **2023-09-01** `proj-9.3.0.tar.gz`_
Expand Down Expand Up @@ -77,6 +78,7 @@ Past Releases
* **2015-09-13** `proj-4.9.2.tar.gz`_
* **2015-03-04** `proj-4.9.1.tar.gz`_

* **2024-06-01** `proj-data-1.18.tar.gz`_
* **2024-06-01** `proj-data-1.17.tar.gz`_
* **2023-12-01** `proj-data-1.16.tar.gz`_
* **2023-09-01** `proj-data-1.15.tar.gz`_
Expand Down Expand Up @@ -116,7 +118,8 @@ Past Releases
* **2018-03-01** `proj-datumgrid-oceania-1.1.zip`_
* **2018-03-01** `proj-datumgrid-oceania-1.0.zip`_

.. _`md5`: https://download.osgeo.org/proj/proj-9.4.1.tar.gz.md5
.. _`md5`: https://download.osgeo.org/proj/proj-9.5.0.tar.gz.md5
.. _`proj-9.5.0.tar.gz`: https://download.osgeo.org/proj/proj-9.5.0.tar.gz
.. _`proj-9.4.1.tar.gz`: https://download.osgeo.org/proj/proj-9.4.1.tar.gz
.. _`proj-9.4.0.tar.gz`: https://download.osgeo.org/proj/proj-9.4.0.tar.gz
.. _`proj-9.3.1.tar.gz`: https://download.osgeo.org/proj/proj-9.3.1.tar.gz
Expand Down Expand Up @@ -156,6 +159,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.19.tar.gz`: https://download.osgeo.org/proj/proj-data-1.19.tar.gz
.. _`proj-data-1.18.tar.gz`: https://download.osgeo.org/proj/proj-data-1.18.tar.gz
.. _`proj-data-1.17.tar.gz`: https://download.osgeo.org/proj/proj-data-1.17.tar.gz
.. _`proj-data-1.16.tar.gz`: https://download.osgeo.org/proj/proj-data-1.16.tar.gz
Expand Down
70 changes: 70 additions & 0 deletions docs/source/news.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,76 @@
News
###############################################################################

9.5.0 Release Notes
++++++++++++++++++++
*Septemper 15th 2024*

Updates
-------

* Database: add constraint for unicity of CRS and operation names (`#4071 <https://github.com/OSGeo/PROJ/issues/4071>`_)

* Make a few more functions that accept a ``PJ*`` to actually acccept a ``const PJ*`` (`#4074 <https://github.com/OSGeo/PROJ/issues/4074>`_)

* Database: Increase consistency in trigger checks (`#4080 <https://github.com/OSGeo/PROJ/issues/4080>`_)

* Speed-up ``+proj=cart +inv`` (`#4087 <https://github.com/OSGeo/PROJ/issues/4087>`_)

* Added EPSG:9656 "Cartesian Grid Offsets" operation method, and imported related records (`#4094 <https://github.com/OSGeo/PROJ/issues/4094>`_)

* Add a :cpp:func:`WKTParser::grammarErrorList()` method so that :c:func:`proj_create_from_wkt()` can behave as documented (`#4108 <https://github.com/OSGeo/PROJ/issues/4108>`_)

* :cpp:func:`CRS::stripVerticalComponent()`: Redirect it to ``demoteTo2D(std::string(), nullptr)`` (`#4127 <https://github.com/OSGeo/PROJ/issues/4127>`_)

* Add :c:func:`proj_context_set_user_writable_directory()` to public API (`#4144 <https://github.com/OSGeo/PROJ/issues/4144>`_)

* CMake: for Windows builds, defaults PROJ DLL to be just ``proj_${PROJ_MAJOR_VERSION}.dll`` (`#4167 <https://github.com/OSGeo/PROJ/issues/4167>`_)

* Add ``toWGS84AutocorrectWrongValues()`` method and use it in PROJ.4 and WKT1 CRS import (`#4172 <https://github.com/OSGeo/PROJ/issues/4172>`_)

* WKT import: add support for Oracle WKT "Albers_Conical_Equal_Area" spelling (`#4181 <https://github.com/OSGeo/PROJ/issues/4181>`_)

* Limit number of C++ exceptions thrown & caught internally (`#4183 <https://github.com/OSGeo/PROJ/issues/4183>`_)

* Database: update to EPSG 11.016 (`#4241 <https://github.com/OSGeo/PROJ/issues/4241>`_)

* CMake: add option ``EMBED_PROJ_DATA_PATH`` (`#4207 <https://github.com/OSGeo/PROJ/issues/4207>`_)

* Add SEA Inverse projection (`#4211 <https://github.com/OSGeo/PROJ/issues/4211>`_)

* :program:`projinfo`: Add 2 args equivalent to usage of `-s` and `-t` (`#4218 <https://github.com/OSGeo/PROJ/issues/4218>`_)

* CMake: add ``TESTING_USE_NETWORK`` configure option (`#4220 <https://github.com/OSGeo/PROJ/issues/4220>`_)

* Add ``PROJ_ERR_COORD_TRANSFM_MISSING_TIME`` and :c:func:`proj_coordoperation_requires_per_coordinate_input_time()` (`#4221 <https://github.com/OSGeo/PROJ/issues/4221>`_)

* Add new Conversion "Local Orthographic" (#4228, #4229)

* Add data/ITRF2020 with ITRF2020 to ITRFother, and ITRF2020 plate motion models (`#4235 <https://github.com/OSGeo/PROJ/issues/4235>`_)

Bug fixes
---------

* Fix ``imoll`` and ``imoll_o`` zone calculations to correct inverse transformations near the "seams" (`#4159 <https://github.com/OSGeo/PROJ/issues/4159>`_)

* Fix wrong EPSG conversion code for UTM south (`#4166 <https://github.com/OSGeo/PROJ/issues/4166>`_)

* ``BoundCRS::exportToPROJ()``: handle case of NADCON conus grid (`#4168 <https://github.com/OSGeo/PROJ/issues/4168>`_)

* ``+proj=gridshift``: make projected grids work with `PROJ_NETWORK=ON` (`#4174 <https://github.com/OSGeo/PROJ/issues/4174>`_)

* :cpp:func:`createOperations()`: make it work when transforming from/to a CompoundCRS with a DerivedVerticalCRS with ellipsoidal height (`#4176 <https://github.com/OSGeo/PROJ/issues/4176>`_)

* Support default context as ``nullptr`` in ``CoordinateTransformer`` (`#4177 <https://github.com/OSGeo/PROJ/issues/4177>`_)

* :program:`cct`: emit error message and return error code when not being able to open input file (`#4200 <https://github.com/OSGeo/PROJ/issues/4200>`_)

* Fix race condition surrounding DB reopening during fork (`#4231 <https://github.com/OSGeo/PROJ/issues/4231>`_)

* :cpp:func:`GeographicBoundingBox::create()`: accept degenerate bounding box reduced to a point or a line (`#4237 <https://github.com/OSGeo/PROJ/issues/4237>`_)

* :cpp:func:`createOperation()`: tune so that ITRF2000->ETRS89 does not return only NKG grid based operations but also time-dependent Helmert (`#4244 <https://github.com/OSGeo/PROJ/issues/4244>`_)

9.4.1 Release Notes
++++++++++++++++++++
*June 1st 2024*
Expand Down

0 comments on commit 6d60e83

Please sign in to comment.