Metadata-Version: 2.3
Name: pyncview
Version: 0.99.39
Summary: NetCDF viewer written in Python
Project-URL: Homepage, https://github.com/BoldingBruggeman/pyncview
Author-email: Jorn Bruggeman <jorn@bolding-bruggeman.com>
License-File: LICENSE
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: GNU General Public License v2 (GPLv2)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.8
Requires-Dist: xmlplot>=0.9.28
Description-Content-Type: text/markdown

# PyNcView
PyNcView is a cross-platform [NetCDF](https://www.unidata.ucar.edu/software/netcdf/)
viewer written in Python. It provides an easy-to-use graphical user interface
to the creation of animations and publication-quality figures. It can open
multiple NetCDF files side-by-side and can plot expressions containing NetCDF
variables and mathematical operators.

## Installation (Windows, Mac, Linux)

If you use [Anaconda](https://docs.anaconda.com/free/anaconda/) or
[Miniconda](https://docs.anaconda.com/free/miniconda/), the easiest way to
install PyNcView is:

```bash
conda install -c conda-forge pyncview
```

Alternatively, PyNcView can be installed with pip::

```bash
pip install pyncview
```

In that case, you will also need to make sure to have PyQt or PySide installed.
To install the former, use `pip install pyqt5`.

## Use

To use PyNcView, start it from the command line with

```bash
pyncview
```

If you add the path to the NetCDF file you want to open, PyNcView will show
that right away, for instance:

```bash
pyncview result.nc
```
