You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`Lenapy` is a Python library designed to facilitate the processing and analysis of geophysical and climate datasets, such as those used in oceanography, geodesy, and Earth observation in general.
9
+
Built on top of `xarray` and compatible with `dask`, it enables scalable workflows on multidimensional datasets using community standards for data formats (NetCDF) and metadata conventions (CF).
10
+
11
+
A key feature of `lenapy` is its ability to produce consistent computations of the Global Mean Sea Level components from various data sources, including satellite altimetry, GRACE/GRACE-FO, thermo-steric datasets, and climate model outputs.
12
+
3
13
## Documentation
4
14
5
-
Documentation can be found [here](https://lenapy.readthedocs.io/en/latest/)
15
+
Documentation can be found at [https://lenapy.readthedocs.io/en/latest/](https://lenapy.readthedocs.io/en/latest/).
6
16
7
17
## Installation
8
18
@@ -27,7 +37,7 @@ conda --version
27
37
28
38
### Step 2: Install lenapy Using Conda
29
39
30
-
Once Conda is installed, you can install lenapy by following these steps:
40
+
Once Conda is installed, you can install `lenapy` by following these steps:
31
41
32
42
#### 1. Create a new Conda environment (recommended):
33
43
```bash
@@ -44,7 +54,7 @@ conda activate lenapy_env
44
54
conda install -c conda-forge lenapy
45
55
```
46
56
47
-
This installs lenapy and its dependencies from the conda-forge channel.
57
+
This installs `lenapy` and its dependencies from the conda-forge channel.
48
58
49
59
## Use
50
60
@@ -54,12 +64,20 @@ In your python code, simply import the library with ::
54
64
import lenapy
55
65
```
56
66
57
-
You can now use all the functionnalities of lenapy by adding the right suffixe after your Dataset or DataArray ::
67
+
You can now use all the functionalities of `lenapy` by adding the right suffix after your Dataset or DataArray ::
Copy file name to clipboardExpand all lines: doc/index.rst
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ Welcome to lenapy's documentation!
13
13
* lenapy_time: common operations on time series (filtering, climatology, regressions, etc.)
14
14
* lenapy_harmo: operations related to spherical harmonics decomposition and their projections on latitude/longitude grids
15
15
16
-
This library is based on the principle of class extension, i.e. functions can be applied directly to Datasets or DataArrays, by adding the extension of the module concerned and the name of the method. Ex: ds.lntime.filter(...), ds.lngeo.mean(...), de.lnocean.gohc, etc.
16
+
This library is based on the principle of class extension, i.e. functions can be applied directly to Datasets or DataArrays, by adding the extension of the module concerned and the name of the method. Each module extension is an abbreviation of the module name with the logic **lenapy_xxx** abbreviate by **ds.lnxxx**. e.g.: ds.lntime.filter(...), ds.lngeo.mean(...), de.lnocean.gohc
17
17
18
18
Reading interfaces are implemented, enabling netcdf files to be opened with a compatible formalism from the **lenapy** library.
0 commit comments