Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add release notes for 0.12.0 #572

Merged
merged 1 commit into from
Dec 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions docs/guide/sources.rst
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ We can get data from a given source by using :func:`from_source`:
- retrieve data from the `Copernicus Atmosphere Data Store <https://ads.atmosphere.copernicus.eu/>`_ (ADS)
* - :ref:`data-sources-cds`
- retrieve data from the `Copernicus Climate Data Store <https://cds.climate.copernicus.eu/>`_ (CDS)
* - :ref:`data-sources-ecfs`
- retrieve data from the ECMWF `ECFS File Storage system <https://confluence.ecmwf.int/display/UDOC/ECFS+user+documentation>`_
* - :ref:`data-sources-eod`
- retrieve `ECMWF open data <https://www.ecmwf.int/en/forecasts/datasets/open-data>`_
* - :ref:`data-sources-fdb`
Expand Down Expand Up @@ -670,6 +672,19 @@ cds
- :ref:`/examples/cds.ipynb`


.. _data-sources-ecfs:

ecfs
-------------------

.. py:function:: from_source("ecfs", path)
:noindex:

The ``ecfs`` source provides access to `ECMWF's File Storage system <https://confluence.ecmwf.int/display/UDOC/ECFS+user+documentation>`_. This service is only available at ECMWF.

The ``path`` has to start with ``ec:`` followed by the path to the file to retrieve.


.. _data-sources-eod:

ecmwf-open-data
Expand Down
2 changes: 1 addition & 1 deletion docs/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Alternatively, you can install the following components:
- fdb: provides access to the :ref:`data-sources-fdb` source
- polytope: provides access to the :ref:`data-sources-polytope` source
- odb: provides full support for the :ref:`odb` data type
- geo: enables to use Field.points_unrotated()
- geo: enables to use the :py:meth:`Field.points_unrotated()` method
- geopandas: adds GeoJSON/GeoPandas support
- projection: adds projection support
- covjsonkit: provides access to CoverageJSON data served by the :ref:`data-sources-polytope` source
Expand Down
1 change: 1 addition & 0 deletions docs/release_notes/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ Release notes
.. toctree::
:maxdepth: 1

version_0.12_updates
version_0.11_updates
version_0.10_updates
version_0.9_updates
Expand Down
27 changes: 27 additions & 0 deletions docs/release_notes/version_0.12_updates.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
Version 0.12 Updates
/////////////////////////


Version 0.12.0
===============

Changes
++++++++

- Enabled using environment variables to control the :ref:`settings <settings>` (:pr:`565`). See the notebook example:

- :ref:`/examples/settings_env_vars.ipynb`

- Re-enabled ``headers_only_clone=True`` when calling :meth:`GribMetadata.override() <data.readers.grib.metadata.GribMetadata.override>` (:pr:`567`)

- Added the :ref:`data-sources-ecfs` source to retrieve data from ECMWF's File Storage system (only available at ECMWF) (:pr:`568`)
- Made ``earthkit-geo`` an optional dependency (:pr:`569`) . See :ref:`install`.
- Enabled specifying the path to the standalone :ref:`MARS <data-sources-mars>` client command via the ``MARS_CLIENT_EXECUTABLE`` environment variable (:pr:`566`)
- Add JAX array backend (:pr:`533`)
- Allow encoding of PL array for GribCoder (:pr:`546`)

Fixes
+++++

- Fixed issue when ``sel()`` failed on Xarray generated with the earthkit engine from a single GRIB field (:pr:`564`)
- Fixed issue when could not correctly update the :ref:`settings <settings>` config file from concurrent processes (:pr:`559`)
Loading