Skip to content

Commit c9deffc

Browse files
authored
Merge pull request #19 from OceanParcels/lowercase_plasticparcels
Changing PlasticParcels to lowercase plasticparcels in documentation
2 parents bc057d8 + 50143ae commit c9deffc

8 files changed

Lines changed: 15 additions & 15 deletions

File tree

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
1-
## PlasticParcels
2-
`PlasticParcels` is a python package for simulating the transport and dispersion of plastics in the ocean.
1+
## plasticparcels
2+
`plasticparcels` is a python package for simulating the transport and dispersion of plastics in the ocean.
33

44
The tool is based on the [`Parcels`](https://oceanparcels.org/) computational Lagrangian ocean analysis framework ([@Lange2017](http://dx.doi.org/10.5194/gmd-10-4175-2017) and [@Delandmeter2019](http://dx.doi.org/10.5194/gmd-12-3571-2019)), providing a modular and customisable collection of methods, notebooks, and tutorials for advecting virtual plastic particles with a wide range of physical properties.
55

6-
![PlasticParcels](docs/_static/plasticparcelslogo.png)
6+
![plasticparcels](docs/_static/plasticparcelslogo.png)
77

88
### Installation
99

10-
`PlasticParcels` can be installed using `conda` from the [`conda-forge` channel](https://anaconda.org/conda-forge/plasticparcels) with the following command:
10+
`plasticparcels` can be installed using `conda` from the [`conda-forge` channel](https://anaconda.org/conda-forge/plasticparcels) with the following command:
1111

1212
```bash
1313
conda install conda-forge::plasticparcels
1414
```
1515

1616
### Further information
17-
For more information and documentation, see the [PlasticParcels documentation](https://plastic.oceanparcels.org/).
17+
For more information and documentation, see the [plasticparcels documentation](https://plastic.oceanparcels.org/).
1818

1919
[![unit-tests](https://github.com/OceanParcels/plasticparcels/actions/workflows/unit_tests.yml/badge.svg)](https://github.com/OceanParcels/plasticparcels/actions/workflows/unit_tests.yml)
2020
[![Anaconda-release](https://anaconda.org/conda-forge/plasticparcels/badges/version.svg)](https://anaconda.org/conda-forge/plasticparcels/)

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
import sys
1313
import warnings
1414

15-
project = 'PlasticParcels'
15+
project = 'plasticparcels'
1616
copyright = f'{datetime.datetime.now().year}, The OceanParcels Team'
1717
author = 'The OceanParcels Team'
1818

docs/examples.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Examples
22
========
33

4-
PlasticParcels has a few example notebooks, see below.
4+
``plasticparcels`` has a few example notebooks, see below.
55

66

77

docs/examples/example_Greece_coast.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"# Library imports\n",
1818
"from datetime import datetime, timedelta\n",
1919
"\n",
20-
"# Parcels and PlasticParcels imports\n",
20+
"# parcels and plasticparcels imports\n",
2121
"import plasticparcels as pp\n",
2222
"\n",
2323
"# Plotting imports\n",

docs/examples/example_Italy_coast.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"import xarray as xr\n",
2020
"import numpy as np\n",
2121
"\n",
22-
"# Parcels and PlasticParcels imports\n",
22+
"# parcels and plasticparcels imports\n",
2323
"import plasticparcels as pp\n",
2424
"\n",
2525
"# Plotting imports\n",

docs/index.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
You can adapt this file completely to your liking, but it should at least
44
contain the root `toctree` directive.
55
6-
PlasticParcels documentation
6+
Plasticparcels documentation
77
============================
88

9-
Welcome to the documentation of PlasticParcels.
9+
Welcome to the documentation of ``plasticparcels``.
1010

1111
``plasticparcels`` is a python package for simulating the transport and dispersion of plastics in the ocean. The tool is based on the ``parcels`` computational Lagrangian ocean analysis framework, providing a modular and customisable collection of methods, notebooks, and tutorials for advecting virtual plastic particles with a wide range of physical properties.
1212

plasticparcels/particlefile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
def ParticleFile(name, particleset, outputdt, settings, **kwargs):
55
"""Wrapper method to initialise a :class:`parcels.particlefile.ParticleFile` object from the ParticleSet."""
66
pfile = pcls_particlefile(name=name, particleset=particleset, outputdt=outputdt, **kwargs)
7-
pfile.add_metadata('PlasticParcels_settings', str(settings))
7+
pfile.add_metadata('plasticparcels_settings', str(settings))
88
return pfile

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ requires = ["setuptools >= 61.0", "setuptools_scm[toml]>=6.2"]
33
build-backend = "setuptools.build_meta"
44

55
[project]
6-
name = "PlasticParcels"
6+
name = "plasticparcels"
77
description = "Package for simulating the transport and dispersion of plastics in the ocean."
88
readme = "README.md"
99
dynamic = ["version"]
@@ -33,8 +33,8 @@ dependencies = [
3333

3434
[project.urls]
3535
homepage = "https://oceanparcels.org/"
36-
repository = "https://github.com/OceanParcels/PlasticParcels/"
37-
tracker = "https://github.com/OceanParcels/PlasticParcels/issues"
36+
repository = "https://github.com/OceanParcels/plasticparcels/"
37+
tracker = "https://github.com/OceanParcels/plasticparcels/issues"
3838

3939
[tool.setuptools]
4040
packages = ["plasticparcels"]

0 commit comments

Comments
 (0)