diff --git a/.cruft.json b/.cruft.json index b20576a..bd934cf 100644 --- a/.cruft.json +++ b/.cruft.json @@ -6,7 +6,7 @@ "cookiecutter": { "project_name": "cf2cdm", "project_slug": "cf2cdm", - "project_short_description": "Translate xarray dataset to a custom data model", + "project_short_description": "Translates cf-compliant xarray datasets to a custom data model", "copyright_holder": "European Union", "copyright_year": "2017", "mypy_strict": true, diff --git a/README.md b/README.md index 17f4a00..232888d 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -Translate xarray datasets to a custom data model. +Translates cf-compliant xarray datasets to a custom data model. Contrary to netCDF the GRIB data format is not self-describing and several details of the mapping to the *Unidata Common Data Model* are arbitrarily set by the software components decoding the format. diff --git a/cf2cdm/__init__.py b/cf2cdm/__init__.py index 43962db..f27e6f8 100644 --- a/cf2cdm/__init__.py +++ b/cf2cdm/__init__.py @@ -1,6 +1,7 @@ -"""Translate xarray dataset to a custom data model.""" +"""Translates cf-compliant xarray datasets to a custom data model.""" # # Copyright 2017-2021 European Centre for Medium-Range Weather Forecasts (ECMWF). +# Copyright 2023 B-Open Solutions srl. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/cf2cdm/cfcoords.py b/cf2cdm/cfcoords.py index f9d6088..129088b 100644 --- a/cf2cdm/cfcoords.py +++ b/cf2cdm/cfcoords.py @@ -1,5 +1,6 @@ # # Copyright 2017-2021 European Centre for Medium-Range Weather Forecasts (ECMWF). +# Copyright 2023 B-Open Solutions srl. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/cf2cdm/cfunits.py b/cf2cdm/cfunits.py index 78162a4..bb4b510 100644 --- a/cf2cdm/cfunits.py +++ b/cf2cdm/cfunits.py @@ -1,5 +1,6 @@ # # Copyright 2017-2021 European Centre for Medium-Range Weather Forecasts (ECMWF). +# Copyright 2023 B-Open Solutions srl. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/cf2cdm/datamodels.py b/cf2cdm/datamodels.py index c5c4de8..151ae18 100644 --- a/cf2cdm/datamodels.py +++ b/cf2cdm/datamodels.py @@ -1,5 +1,6 @@ # # Copyright 2017-2021 European Centre for Medium-Range Weather Forecasts (ECMWF). +# Copyright 2023 B-Open Solutions srl. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/docs/index.md b/docs/index.md index d9e473e..06e22c7 100644 --- a/docs/index.md +++ b/docs/index.md @@ -1,6 +1,6 @@ # Welcome to cf2cdm's documentation! -Translate xarray dataset to a custom data model. +Translates cf-compliant xarray datasets to a custom data model. ```{toctree} :caption: 'Contents:' diff --git a/pyproject.toml b/pyproject.toml index fdb9069..ecfc0ca 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,7 +14,7 @@ classifiers = [ "Topic :: Scientific/Engineering" ] dependencies = ["xarray"] -description = "Translate xarray dataset to a custom data model" +description = "Translates cf-compliant xarray datasets to a custom data model" dynamic = ["version"] license = {file = "LICENSE"} name = "cf2cdm"