Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
AdrienWehrle authored Nov 3, 2020
1 parent 83ecc65 commit 420c6d6
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,16 @@ create a new environment using [PROMICE.yml](https://github.com/AdrienWehrle/Gre

```python
import sys
sys.path.append(path/to/module/)
import PROMICE_processing_tools as ppt
sys.path.append(path/to/module/)
#load PROMICE dataset for a given station, all available years
ds=ppt.load_data(file='path/to/dataset.txt', year='all')
# load PROMICE dataset for a given station, all available years
ds = ppt.load_data(file='path/to/dataset.txt', year='all')
#process ice ablation and albedo time series around the onset of bare ice conditions
ds_proc=ppt.BIC_processing(ds, visualisation=True)
# process ice ablation and albedo time series around the onset of bare ice conditions
ds_proc = ppt.BIC_processing(ds, visualisation=True)
#compute multi-year and multi-site composites for air temperature, snow height, ice ablation and albedo
#time series centered on bare ice appearance and spanning ± dt days
composite=ppt.BIC_composite('path/to/dataset/folder/', dt=45)
# compute multi-year and multi-site composites for air temperature, snow height, ice ablation
# and albedo time series centered on bare ice appearance and spanning ± dt days
composite = ppt.BIC_composite('path/to/dataset/folder/', dt=45)
```

0 comments on commit 420c6d6

Please sign in to comment.