ArtesiaWater / gwdatalens

Dashboard for quality control of head time series.
GNU Affero General Public License v3.0
3 stars 0 forks source link
dash dashboard error-detection groundwater hydrology monitoring python quality-control time-series-analysis

PyPI - Version

GW DataLens: Dashboard for quality control of head observations

Example error detection result

GW DataLens is a dashboard that can be used to view and check head time series. This dashboard runs in a browser (e.g. Firefox, Chrome) and connects to a database (e.g. PostgreSQL, or Hydropandas ObsCollection) to load and run error detection algorithms on stored head time series.

Installation

Install gwdatalens with:

pip install gwdatalens

Or clone the repository to your computer (or download a zip from GitHub and extract it). Open a terminal (e.g. Terminal, Anaconda Prompt), navigate to the folder containing the repository and install gwdatalens with:

pip install -e .

Pixi environment

If you cloned gwdatalens, it comes with a pixi.toml file. If you have pixi, the application can be launched with the following command:

pixi run gwdatalens

Or activate the pixi environment using pixi shell and launch the gwdatalens from there.

Usage

The dashboard can be run both as a stand-alone application, or as part of the Django application BRO-Connector.

The settings for the dashboard are stored in the gwdatalens/app/config.toml file.

Stand-alone

Currently, the app is set up to connect to a PostgreSQL database (a local copy of the Provincie Zeeland database). For more information about the database, see DJANGO HELP.

For a standalone run the configuration settings for the database (user, password, host, etc.) are stored in the database.toml file. See the database_template.toml file. Modify entries to match your database and rename the file to database.toml.

Once you have modified the TOML files for your setup, the dashboard can be launched from the command-line with:

gwdatalens [--debug True|False] [--port int]  # --debug and --port are optional

BRO-Connector

For implementing GW DataLens under BRO-Connector, follow these steps:

  1. Modify gwdatalens/app/config.toml, and set DJANGO_APP = true.
  2. Copy GW DataLens to the BRO-Connector root directory with cp_gwdatalens_to_broconnector [BRO_CONNECTOR_PATH] or modify the django_copy.py file to point to the correct path and run the file with python django_copy.py.
  3. Update main/urls.py file and main/settings/settings.py as outlined in this readme file: DJANGO_HELP
  4. Prepare the BRO-Connector application as outlined here
  5. Run the application with python manage.py runserver (from the directory containing the manage.py file).

More background and information is available in DJANGO_HELP and at the BRO-Connector repository.

Using a HydroPandas ObsCollection as "database"

The application can also be run using a HydroPandas ObsCollection as a data source.

Replace the current PostgreSQLDataSource() with HydropandasDataSource(). This data source can be instantiated in a few ways:

See the documentation for HydropandasDataSource for more information.

Data validation with GW DataLens

The GW DataLens dashboard can be used to validate/check groundwater measurements.

The validation process consists of the following steps:

  1. Select a head time series from a database. (Overview)
  2. Run a set of error-detection rules to identify potentially suspect measurements. (Error Detection)
  3. The time series is manually reviewed (accepting or rejecting) suggestions made by the error detection algorithm. (Manual Review)

Optionally, time series models can be inspected or created using the Time Series Models tab. These models can be used in the error detection step.

Overview tab

Overview Tab

The overview tab consists of three elements:

There are two ways of plotting head time series:

Time Series Models tab

Time Series Models Tab

The time series models tab allows users to create or inspect time series models using Pastas and Pastastore. Models are created using precipitation and evaporation from the nearest KNMI station.

Error Detection tab

Automatic Error Detection Tab

The Error Detection tab lets you run automatic error detection schemes on head time series (see the traval package). The rules that comprise the error detection algorithm are shown in the expandable section at the bottom. The error detection rules that are applied can be modified or adjusted in the dashboard.

Steps:

  1. Use the first dropdown to select or search for any time series in the database.
  2. Optionally modify the rules or parameters used for error detection under the Show Parameters button.
  3. Press the "Run TRAVAL" button.
  4. The chart will update showing the original time series and the measurements that were deemed suspect by the error detection algorithm. If available a pastas model simulation and prediction interval are also shown in the chart.

Manual Review tab

Manual Review Tab

The Manual Review tab lets you review the results of the error detection scheme and commit your manual review to the database, or download the results as a CSV file.

References