sectionate 0.3.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- sectionate/__init__.py +6 -0
- sectionate/catalog/Atlantic_transport_arrays.json +348 -0
- sectionate/gridutils.py +95 -0
- sectionate/section.py +786 -0
- sectionate/tests/test_convergent_transport.py +120 -0
- sectionate/tests/test_section.py +92 -0
- sectionate/tests/test_section_class.py +59 -0
- sectionate/tests/test_section_cornercases.py +63 -0
- sectionate/tests/test_utils.py +4 -0
- sectionate/tracers.py +76 -0
- sectionate/transports.py +505 -0
- sectionate/utils.py +173 -0
- sectionate/version.py +3 -0
- sectionate-0.3.0.dist-info/METADATA +44 -0
- sectionate-0.3.0.dist-info/RECORD +17 -0
- sectionate-0.3.0.dist-info/WHEEL +4 -0
- sectionate-0.3.0.dist-info/licenses/LICENSE +674 -0
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: sectionate
|
|
3
|
+
Version: 0.3.0
|
|
4
|
+
Summary: A package to sample grid-consistent sections from ocean model outputs
|
|
5
|
+
Project-URL: Homepage, https://github.com/MOM6-community/sectionate
|
|
6
|
+
Project-URL: Bugs/Issues/Features, https://github.com/MOM6-community/sectionate/issues
|
|
7
|
+
Project-URL: Sibling package, https://github.com/hdrake/regionate
|
|
8
|
+
Author-email: Raphael Dussin <raphael.dussin@gmail.com>, "Henri F. Drake" <hfdrake@uci.edu>
|
|
9
|
+
License-File: LICENSE
|
|
10
|
+
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
|
|
11
|
+
Classifier: Operating System :: OS Independent
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Requires-Python: >=3.8
|
|
14
|
+
Requires-Dist: dask
|
|
15
|
+
Requires-Dist: numba
|
|
16
|
+
Requires-Dist: numpy
|
|
17
|
+
Requires-Dist: scipy
|
|
18
|
+
Requires-Dist: xarray
|
|
19
|
+
Requires-Dist: xgcm>=0.9.0
|
|
20
|
+
Description-Content-Type: text/markdown
|
|
21
|
+
|
|
22
|
+
# sectionate
|
|
23
|
+
A package to sample grid-consistent sections from ocean model outputs
|
|
24
|
+
|
|
25
|
+
[](https://mybinder.org/v2/gh/raphaeldussin/sectionate/master)
|
|
26
|
+
|
|
27
|
+
Quick Start Guide
|
|
28
|
+
-----------------
|
|
29
|
+
|
|
30
|
+
**For users: minimal installation within an existing environment**
|
|
31
|
+
```bash
|
|
32
|
+
pip install git+https://github.com/MOM6-community/sectionate.git@master
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
**For developers: installing from scratch using `conda`**
|
|
36
|
+
```bash
|
|
37
|
+
git clone https://github.com/MOM6-community/sectionate.git
|
|
38
|
+
cd sectionate
|
|
39
|
+
conda env create -f docs/environment.yml
|
|
40
|
+
conda activate docs_env_sectionate
|
|
41
|
+
pip install -e .
|
|
42
|
+
python -m ipykernel install --user --name docs_env_sectionate --display-name "docs_env_sectionate"
|
|
43
|
+
jupyter-lab
|
|
44
|
+
```
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
sectionate/__init__.py,sha256=xXFoK167TSLsuoM8Li58YSjiUKGZDflWKNRToElpWOU,157
|
|
2
|
+
sectionate/gridutils.py,sha256=pNzHP9OcCbwCJ8HLv6XJwM3RBLjxqsOmxDRWOVEsG3c,3141
|
|
3
|
+
sectionate/section.py,sha256=mwYe02be4SL5lRoF-8p6fWQ0CYtGeWQTwTNLqqkiax0,27608
|
|
4
|
+
sectionate/tracers.py,sha256=WMhI97jwD1whUdLjzqpk2Jf2Go1JEhRm_2LYicIFF3Y,2938
|
|
5
|
+
sectionate/transports.py,sha256=KB9nEQzTQE9YmseDctptGo_WaaMpOtV38QeL9EO6f0o,19603
|
|
6
|
+
sectionate/utils.py,sha256=_pcDBehT72ZoV2Tap3bt8xVwaO9jIM7WwEWaelfUpo4,4863
|
|
7
|
+
sectionate/version.py,sha256=8og7dmmsaskJAgyvUfuHG5EQh24FboUgf4aBjq5a0Ao,61
|
|
8
|
+
sectionate/catalog/Atlantic_transport_arrays.json,sha256=f0RzTzdcyA7EfVdH-KzCNKaU_UOGfMCYWKXispTolHk,4059
|
|
9
|
+
sectionate/tests/test_convergent_transport.py,sha256=PLnH2LsA2HHe8Q7nZ8myPFI6oK6HxRcU3px7PXZbdCY,3966
|
|
10
|
+
sectionate/tests/test_section.py,sha256=Xsdh-d3caDntxrJOlQtHkChfRuh92T1W1NZo-LE8lXY,3038
|
|
11
|
+
sectionate/tests/test_section_class.py,sha256=OV88BNVp9OTUHXofKuk0QnV7yMEiJHtCEOg8mhC3gxg,2240
|
|
12
|
+
sectionate/tests/test_section_cornercases.py,sha256=Xwmx4oGPhloQkC6aSYp19VBqbqu0PZifsMcPy1NiZW8,2175
|
|
13
|
+
sectionate/tests/test_utils.py,sha256=fQwdd2ePNuFZzVMz5fpc0L2pyfEk3MOydgA0A3gw-h8,172
|
|
14
|
+
sectionate-0.3.0.dist-info/METADATA,sha256=WNn9PNVeTEOKcDkEhb2v1h0gVyOZUga5UUivbQwfiQY,1566
|
|
15
|
+
sectionate-0.3.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
16
|
+
sectionate-0.3.0.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
17
|
+
sectionate-0.3.0.dist-info/RECORD,,
|