Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 4 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,10 @@

The Hydrological Analysis Toolkit (HAT) is a software suite for hydrologists working with simulated and observed river discharge. HAT performs data analysis on hydrological datasets, with its main features being:
- mapping station locations into hydrological model grids
- extraction of timeseries at station locations from gridded model outputs
- statistical analysis of hydrological timeseries
- interactive visualizations

> [!NOTE]
> The station extraction and hydrostats functionality formerly in HAT now live in [ecmwf/hyve](https://github.com/ecmwf/hyve).

### Installation

Expand All @@ -50,18 +52,6 @@ pip install -e .[dev]
pre-commit install
```

HAT provides **experimental** support for earthkit-data's [gribjump source](https://earthkit-data.readthedocs.io/en/latest/guide/sources.html#gribjump).
To install the gribjump extras for testing and experimentation, run:
```bash
pip install hydro-analysis-toolkit[gribjump]
```

> [!NOTE]
> The gribjump feature is experimental. It is not recommended for production use and may change or break in future releases.
> Information on how to build gribjump can be found in [GribJump's source code](https://github.com/ecmwf/gribjump/). Experimental
> wheels of `gribjumplib` can also be found [on PyPI](https://pypi.org/project/gribjumplib/).


## Licence

```
Expand Down
30 changes: 0 additions & 30 deletions docs/hat_extract-timeseries.md

This file was deleted.

42 changes: 0 additions & 42 deletions docs/hat_hydrostats.md

This file was deleted.

6 changes: 1 addition & 5 deletions docs/index.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
# Welcome to HAT

The Hydrological Analysis Toolkit (HAT) is a software suite for hydrologists working with simulated and observed river discharge. HAT performs data analysis on hydrological datasets, with its main features being:
The Hydrological Analysis Toolkit (HAT) is a software suite for hydrologists working with simulated and observed river discharge. HAT performs data analysis on hydrological datasets, with its main feature being:

- mapping station locations into hydrological model grids

- extraction of timeseries

- statistical analysis of hydrological timeseries
2 changes: 1 addition & 1 deletion docs/usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ If you have already [installed](installation.md) hat then

Run a command line tool, for example

$ hat-extract-timeseries --help
$ hat-station-mapping --help

For more information on individual command line tools, use the `--help` option at the command line or read the documentation, for instance for the [station mapping](station_mapping.md) tool.

Expand Down
4 changes: 0 additions & 4 deletions hat/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@
import sys

from hat import _LOGGER as logger
from hat.compute_hydrostats.stat_calc import stat_calc
from hat.extract_timeseries.extractor import extractor
from hat.station_mapping.mapper import mapper


Expand All @@ -24,8 +22,6 @@ def wrapper(args=None):


mapper_cli = commandlineify(mapper)
extractor_cli = commandlineify(extractor)
stat_calc_cli = commandlineify(stat_calc)


if __name__ == "__main__":
Expand Down
42 changes: 0 additions & 42 deletions hat/compute_hydrostats/stat_calc.py

This file was deleted.

83 changes: 0 additions & 83 deletions hat/compute_hydrostats/stats.py

This file was deleted.

11 changes: 0 additions & 11 deletions hat/core.py

This file was deleted.

Loading