From 9ccfce9787b9e46749427ed2c098dbb947a4b59d Mon Sep 17 00:00:00 2001 From: gaelforget Date: Mon, 11 Nov 2024 13:57:21 +0100 Subject: [PATCH] update following rename --- README.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 34fa9a45..d5f34757 100644 --- a/README.md +++ b/README.md @@ -1,34 +1,34 @@ -# IndividualDisplacements.jl +# Drifters.jl -[![](https://img.shields.io/badge/docs-dev-blue.svg)](https://JuliaClimate.github.io/IndividualDisplacements.jl/dev) -[![codecov](https://codecov.io/gh/JuliaClimate/IndividualDisplacements.jl/branch/master/graph/badge.svg?token=qgMClXyzVB)](https://codecov.io/gh/JuliaClimate/IndividualDisplacements.jl) -[![CI](https://github.com/JuliaClimate/IndividualDisplacements.jl/actions/workflows/ci.yml/badge.svg)](https://github.com/JuliaClimate/IndividualDisplacements.jl/actions/workflows/ci.yml) +[![](https://img.shields.io/badge/docs-dev-blue.svg)](https://JuliaClimate.github.io/Drifters.jl/dev) +[![codecov](https://codecov.io/gh/JuliaClimate/Drifters.jl/branch/master/graph/badge.svg?token=qgMClXyzVB)](https://codecov.io/gh/JuliaClimate/Drifters.jl) +[![CI](https://github.com/JuliaClimate/Drifters.jl/actions/workflows/ci.yml/badge.svg)](https://github.com/JuliaClimate/Drifters.jl/actions/workflows/ci.yml) [![DOI](https://joss.theoj.org/papers/10.21105/joss.02813/status.svg)](https://doi.org/10.21105/joss.02813) [![DOI](https://zenodo.org/badge/208676176.svg)](https://zenodo.org/badge/latestdoi/208676176) -[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/JuliaClimate/IndividualDisplacements.jl/master) +[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/JuliaClimate/Drifters.jl/master) -**IndividualDisplacements.jl** computes point displacements over a gridded domain. It is geared towards the analysis of Climate, Ocean, etc models (`Arakawa C-grids` are natively supported) and the simulation of material transports within the Earth System (e.g. plastics or planktons in the Ocean; dusts or chemicals in the Atmosphere). +**Drifters.jl** computes point displacements over a gridded domain. It is geared towards the analysis of Climate, Ocean, etc models (`Arakawa C-grids` are natively supported) and the simulation of material transports within the Earth System (e.g. plastics or planktons in the Ocean; dusts or chemicals in the Atmosphere). [](https://youtu.be/tsdf4fmYt1k) [](https://youtu.be/82HPnYBtoVo) -Inter-operability with popular climate model grids via [MeshArrays.jl](https://github.com/JuliaClimate/MeshArrays.jl) is an important aspect. The package can read and write individual displacement collection files, including those generated by the [MIT general circulation model](https://mitgcm.readthedocs.io/en/latest/?badge=latest). `IndividualDisplacements`'s initial test suite is based on global ocean model simulations called [ECCO (v4r2)](https://eccov4.readthedocs.io/en/latest/) and [CBIOMES (alpha)](https://cbiomes.readthedocs.io/en/latest/) (see [Forget et al. 2015](https://doi.org/10.5194/gmd-8-3071-2015)). +Inter-operability with popular climate model grids via [MeshArrays.jl](https://github.com/JuliaClimate/MeshArrays.jl) is an important aspect. The package can read and write individual displacement collection files, including those generated by the [MIT general circulation model](https://mitgcm.readthedocs.io/en/latest/?badge=latest). `Drifters`'s initial test suite is based on global ocean model simulations called [ECCO (v4r2)](https://eccov4.readthedocs.io/en/latest/) and [CBIOMES (alpha)](https://cbiomes.readthedocs.io/en/latest/) (see [Forget et al. 2015](https://doi.org/10.5194/gmd-8-3071-2015)). ### Installation ``` using Pkg -Pkg.add("IndividualDisplacements") -Pkg.test("IndividualDisplacements") +Pkg.add("Drifters") +Pkg.test("Drifters") ``` ### Examples -The movies highlighted above are from the [Global Climatology](https://juliaclimate.github.io/IndividualDisplacements.jl/dev/examples/global_ocean_circulation.html) and [Three Dimensional](https://juliaclimate.github.io/IndividualDisplacements.jl/dev/examples/three_dimensional_ocean.html) examples. The basic examples shown below are from the [Simple 3-D Flow](https://juliaclimate.github.io/IndividualDisplacements.jl/dev/examples/solid_body_rotation.html) and [Simple 2-D Flow](https://juliaclimate.github.io/IndividualDisplacements.jl/dev/examples/random_flow_field.html) notebooks. For more, please report to [the docs](https://JuliaClimate.github.io/IndividualDisplacements.jl/dev). +The movies highlighted above are from the [Global Climatology](https://juliaclimate.github.io/Drifters.jl/dev/examples/global_ocean_circulation.html) and [Three Dimensional](https://juliaclimate.github.io/Drifters.jl/dev/examples/three_dimensional_ocean.html) examples. The basic examples shown below are from the [Simple 3-D Flow](https://juliaclimate.github.io/Drifters.jl/dev/examples/solid_body_rotation.html) and [Simple 2-D Flow](https://juliaclimate.github.io/Drifters.jl/dev/examples/random_flow_field.html) notebooks. For more, please report to [the docs](https://JuliaClimate.github.io/Drifters.jl/dev). [](https://www.youtube.com/watch?v=W5DNqJG9jt0) - + ### Would like to contribute?