Metadata-Version: 2.1
Name: gval
Version: 0.2.3.1
Summary: Flexible, portable, and efficient geospatial evaluations for a variety of data.
Author-email: Fernando Aristizabal <fernando.aristizabal@noaa.gov>, Gregory Petrochenkov <gregory.petrochenkov@noaa.gov>
License: MIT
Project-URL: Repository, https://github.com/NOAA-OWP/gval
Project-URL: Homepage, https://noaa-owp.github.io/gval/
Keywords: geospatial,evaluations
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE.MD
Requires-Dist: rioxarray>=0.13.4
Requires-Dist: dask==2023.5.0
Requires-Dist: xarray-spatial==0.3.5
Requires-Dist: pandera==0.15.1
Requires-Dist: shapely==2.0.1
Requires-Dist: geocube>=0.3.3
Requires-Dist: pandas==2.0.2
Requires-Dist: odc-geo==0.4.1
Requires-Dist: pydantic==1.10.10
Requires-Dist: rio-cogeo==4.0.0
Requires-Dist: matplotlib==3.7.1
Requires-Dist: contextily==1.3.0
Requires-Dist: flox==0.7.2
Provides-Extra: dev
Requires-Dist: pytest==7.2.2; extra == "dev"
Requires-Dist: pytest-benchmark==4.0.0; extra == "dev"
Requires-Dist: pytest-cov==4.1.0; extra == "dev"
Requires-Dist: pytest-cases==3.6.14; extra == "dev"
Requires-Dist: flake8==6.0.0; extra == "dev"
Requires-Dist: flake8-black==0.3.6; extra == "dev"
Requires-Dist: allure-pytest==2.13.2; extra == "dev"
Requires-Dist: jupyter==1.0.0; extra == "dev"
Requires-Dist: sphinx==6.2.1; extra == "dev"
Requires-Dist: pytest-memray==1.4.1; extra == "dev"
Requires-Dist: pytest-monitor==1.6.6; extra == "dev"
Requires-Dist: sphinx-rtd-theme==1.2.2; extra == "dev"
Requires-Dist: pre-commit==3.3.3; extra == "dev"
Requires-Dist: boto3==1.26.164; extra == "dev"
Requires-Dist: myst_parser==2.0.0; extra == "dev"
Requires-Dist: nbsphinx==0.9.2; extra == "dev"
Requires-Dist: sqlalchemy==2.0.17; extra == "dev"
Requires-Dist: colorama==0.4.6; extra == "dev"
Requires-Dist: build==0.10.0; extra == "dev"
Requires-Dist: twine==4.0.2; extra == "dev"

 ![alt
text](https://github.com/NOAA-OWP/gval/raw/main/docs/images/gval_light_mode.png#gh-light-mode-only)

![Build and
Test](https://github.com/NOAA-OWP/gval/actions/workflows/python-app.yml/badge.svg)![Coverage](https://github.com/NOAA-OWP/gval/raw/testing/docs/images/coverage.svg)[![PyPI
version](https://badge.fury.io/py/gval.svg)](https://badge.fury.io/py/gval)

GVAL (pronounced "g-val") is a high-level Python framework to evaluate
the skill of geospatial datasets by comparing candidates to benchmark
maps producing agreement maps and metrics.

GVAL is intended to work on raster and vector files as xarray and
geopandas objects, respectively. Abilities to prepare or homogenize maps
for comparison are included. The comparisons are based on scoring
philosophies for three statistical data types including categorical,
continuous, and probabilistic.

See the full documentation [here](https://noaa-owp.github.io/gval/).

WARNING:

- Our current public API and output formats are likely to change in the
  future.
- Software is provided "AS-IS" without any guarantees. Please QA/QC your
  metrics carefully until this project matures.

# Installation

## General Use

To use this package:

`pip install gval`

Or for bleeding edge updates install from the repository:

`pip install 'git+https://github.com/NOAA-OWP/gval'`

# Using GVAL

An example of running the entire process for two-class categorical
rasters with one function using minimal arguments is demonstrated below:

``` python
import gval
import rioxarray as rxr

candidate = rxr.open_rasterio('candidate_map_two_class_categorical.tif', mask_and_scale=True)
benchmark = rxr.open_rasterio('benchmark_map_two_class_categorical.tif', mask_and_scale=True)

(agreement_map,
 crosstab_table,
 metric_table) = candidate.gval.categorical_compare(benchmark,
                                                   positive_categories=[2],
                                                   negative_categories=[0, 1])
```

### Outputs

`agreement_map`

![alt text](https://github.com/NOAA-OWP/gval/raw/main/docs/images/agreement_map.png)

`crosstab_table`

![alt text](https://github.com/NOAA-OWP/gval/raw/main/docs/images/cross_table.png)

`metric_table`

![alt text](https://github.com/NOAA-OWP/gval/raw/main/docs/images/metric_table.png)

For more details on how to use this software, check out this [notebook
tutorial](https://github.com/NOAA-OWP/gval/blob/main/notebooks/Tutorial.ipynb).

# Contributing

Guidelines for contributing to this repository can be found at
[CONTRIBUTING](https://github.com/NOAA-OWP/gval/blob/main/CONTRIBUTING.MD).

# Citation

Please cite our work if using this package. See 'cite this repository'
in the about section on [GitHub](https://github.com/NOAA-OWP/gval/) or
refer to
[CITATION.cff](https://github.com/NOAA-OWP/gval/blob/main/CITATION.cff)
