From 420c6d6cb25062622a407d4d8017e742385fb787 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrien=20Wehrl=C3=A9?= Date: Tue, 3 Nov 2020 09:23:28 +0100 Subject: [PATCH] Update README.md --- README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index ce636fc..b805ab8 100644 --- a/README.md +++ b/README.md @@ -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) ```