Nick Hodgskin
Nick Hodgskin
**Describe your suggested improvement** Add a description field in `resource_tags.yml` to make it clearer what the purpose of each tag is. This will make it easier for new users to...
Dependencies for the project are spread across a few different files Production: https://github.com/mvdh7/PyCO2SYS/blob/437db5da0f4b166a8d054dc02397d3631e24051b/pyproject.toml#L7-L14 Development/documentation: https://github.com/mvdh7/PyCO2SYS/blob/437db5da0f4b166a8d054dc02397d3631e24051b/.github/workflows/python-package.yml#L20-L24 https://github.com/mvdh7/PyCO2SYS/blob/437db5da0f4b166a8d054dc02397d3631e24051b/docs/requirements.txt#L1 I suggest consolidating these dependencies into one development Conda environment file (`environment.yml`), that way...
Enable the following Ruff linting rules and fix associated errors. See [docs](https://docs.astral.sh/ruff/rules/) for more info on the available rules: - B (Bugbear) - UP (pyupgrade) - LOG (logging) - ICN...
Adding Pydantic model for ingesting and validating the deployment config. This is a first draft so that maintainers can provide feedback and insight into how the fields are used. We...
Changes: - Migrate to `pyproject.toml` - Update min Python version to 3.9 - Add pypi metadata classifiers - Add contributing guide - Consolidate installation (for users, testing and docs) -...
#2037 introduced some functionality for checking the provided lon and lat grids. This, however, does not apply to constant fields which have 0D spatial grids. This PR also adds the...
- [x] Chose the correct base branch (`v4-dev` for v4 changes) - [x] Fixes #2035 - [x] Added tests - [x] Added documentation Changes: - Require dataset to have lon...
621a94830dfc544336555284d84b8c6f34445fca (#1946) introduced the interpolation template which allows users to pass in a function which performs the interpolation. Conceptually, interpolation is the interface between the grid (the particles position in...
In essene, ravelling and unravelling needs to know two things: - Which axes are part of the grid - How to get the dimensionality of an axis (i.e., how many...