Comparison of GHG concentration forcings used in CMIP6 vs. CMIP7.
- prototype: the project is just starting up and the code is all prototype
We do all our environment management using poetry. To get started, you will need to make sure that poetry is installed (instructions here, we found that pipx and pip worked better to install on a Mac).
To create the virtual environment, run
# Tell poetry to put virtual environments in the project
poetry config virtualenvs.in-project true
poetry install --all-extras
poetry run pre-commit install
These steps are also captured in the Makefile
so if you want a single
command, you can instead simply run make virtual-enviroment
.
Having installed your virtual environment, you can now run commands in your virtual environment using
poetry run <command>
For example, to run Python within the virtual environment, run
poetry run python
As another example, to run a notebook server, run
poetry run jupyter notebook
The analysis lives in notebooks/
.
Run the notebooks in order.
The notebooks aren't fully coupled
(you can run some of the later ones without running all of the early ones).
We don't document these dependencies at the moment because:
- they're changing over time
- the repository is simple, you'll figure it out by exploring
Happy analysis
Install and run instructions are the same as the above (this is a simple repository, without tests etc. so there are no development-only dependencies).
This is a very thin repository. There aren't any strict guidelines for contributing, partly because we don't know what we're trying to achieve (we're just exploring). If you would like to contribute, it is best to raise an issue to discuss what you want to do (without a discussion, we can't guarantee that any contribution can actually be used).
The repository is very basic. It imposes no structure on you so you can layout
your Python files, notebooks etc. in any way you wish. We do have a basic
Makefile
which captures key commands in one place (for more thoughts on why
this makes sense, see
general principles: automation).
For an introduction to make
, see
this introduction from Software Carpentry.
Having said this, if you're not interested in make
, you can just copy the
commands out of the Makefile
by hand and you will be 90% as happy for a
simple repository like this.
In this repository, we use the following tools:
- git for version-control (for more on version control, see
general principles: version control)
- for these purposes, git is a great version-control system so we don't complicate things any further. For an introduction to Git, see this introduction from Software Carpentry.
- Poetry for environment management
(for more on environment management, see
general principles: environment management)
- there are lots of environment management systems. Poetry works and for simple projects like this there is no need to overcomplicate things
- we track the
poetry.lock
file so that the environment is completely reproducible on other machines or by other people (e.g. if you want a colleague to take a look at what you've done)
- pre-commit with some very basic settings to get some
easy wins in terms of maintenance, specifically:
- code formatting with black
- basic file checks (removing unneeded whitespace, not committing large files etc.)
- (for more thoughts on the usefulness of pre-commit, see general principles: automation
- track your notebooks using
jupytext
(for more thoughts on the usefulness of Jupytext, see
tips and tricks: Jupytext)
- this avoids nasty merge conflicts and incomprehensible diffs
This project was generated from this template: basic python repository. copier is used to manage and distribute this template.