Metadata-Version: 2.4
Name: GrIS_vel
Version: 0.1.2
Summary: A Python package to identify and characterize transient acceleration events at North Lake in Southwest Greenland.
Author-email: Grace Gjerde <grace.gjerde@reuben.ox.ac.uk>, Aryaman Gupta <mert4366@ox.ac.uk>, Becky Tichford <rebecca.tichford@univ.ox.ac.uk>
Project-URL: Homepage, https://github.com/grace-gjerde/Greenland_Transient_Velocity_Event_Characterizer
Project-URL: Issues, https://github.com/grace-gjerde/Greenland_Transient_Velocity_Event_Characterizer/issues
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Requires-Dist: contourpy==1.3.3
Requires-Dist: coverage==7.11.0
Requires-Dist: cycler==0.12.1
Requires-Dist: fonttools==4.60.1
Requires-Dist: iniconfig==2.3.0
Requires-Dist: joblib==1.5.2
Requires-Dist: kiwisolver==1.4.9
Requires-Dist: matplotlib==3.10.7
Requires-Dist: numpy==2.3.4
Requires-Dist: packaging==25.0
Requires-Dist: pandas==2.3.3
Requires-Dist: pillow==12.0.0
Requires-Dist: pluggy==1.6.0
Requires-Dist: Pygments==2.19.2
Requires-Dist: pyparsing==3.2.5
Requires-Dist: pytest==8.4.2
Requires-Dist: pytest-cov==7.0.0
Requires-Dist: python-dateutil==2.9.0.post0
Requires-Dist: pytz==2025.2
Requires-Dist: scikit-learn==1.7.2
Requires-Dist: scipy==1.16.2
Requires-Dist: six==1.17.0
Requires-Dist: threadpoolctl==3.6.0
Requires-Dist: tzdata==2025.2
Dynamic: license-file

**GrIS_vel: Glacier Velocity Analysis Tool**  
\
GrIS_vel is a Python-based toolkit for analyzing glacier velocity data. It includes functionality to calculate moving averages, perform station-specific analysis, and generate plots.


## Package overview
Python package to identify and characterize transient acceleration events at North Lake in Southwest Greenland. This package is structured as follows:

- **`Data/`** Data from stations around North Lake. This is also where results of data analysis are stored.
- **`Analysis/`** Python scripts that take the data in Data/ as an input, and provide an analysis of transient acceleration events.
- **`Tests/`** Suite of tests to check that the Analysis script is working correctly.
- **`Results/`** Upon successful execution of the analysis pipeline, this directory will be generated, and analysis figures will be saved here.

\
**Installation**

Clone the repository:
```bash
git clone https://github.com/<username>/GrIS_vel.git
cd GrIS_vel
```

install dependencies
```bash
pip install -r requirements.txt
```

Create and activate a virtual environment:
```bash
python3 -m venv .venv
source .venv/bin/activate 
```

Use in command line interface:
```
pip install -i https://test.pypi.org/simple/ GrIS-vel==0.1.2
run_analysis --file --station --window --outdir

    --file: Path to input 
    --station: Specify station to analyze
    --window: Moving mean window size in days
    --outdir: Directory to save outputs
```
