Metadata-Version: 2.1
Name: arinfopy
Version: 3.2.2
Summary: A package to read and write ADSO/BIN data files.
Home-page: https://github.com/Simularia/arinfopy
Author: Giuseppe Carlino
Author-email: g.carlino@simularia.it
License: GNU GPLv2
Classifier: Programming Language :: Python :: 3.9
Classifier: License :: OSI Approved :: GNU General Public License v2 (GPLv2)
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy>=1.24
Requires-Dist: setuptools>=70.0.0

# arinfopy

`arinfopy` is a Python library to read and write **ADSO/BIN** files generated by atmospheric dispersion models such as [SPRAY][spray] and others.

It also includes the `arinfopy` command line tool to summarize the content of **ADSO/BIN** files.

It requires Python >= 3.9.x (Python2 is unsupported.)

## Installation

`arinfopy` is on `PyPI` and it can be installed with `pip`:

```sh
pip install arinfopy
```

Use [pipx](https://github.com/pypa/pipx) to install the command line tool to isolated environment:

```sh
pipx install arinfopy
```

## Use

You can use the command line tools as follows.

```sh
> arinfopy --help
usage: arinfopy [-h] [-minmax] [-deadlines] [-v] inifile

arinfopy parser for ADSO/bin files.

positional arguments:
  inifile        File to be parsed

optional arguments:
  -h, --help     show this help message and exit
  -minmax        Show min/max values for each deadline
  -deadlines     Show deadlines
  -v, --verbose  Increse output verbosity.
```

## API

`arinfopy` can also be used an external module in other `python` scripts to read and write **ADSO/BIN** files.

Documentation for this feature is in preparation. 

## Who Are You

We are [Simularia][simularia] and we do numerical simulations of atmospheric phenomena and data analysis with `R` and `Python`.

## Contributors

[Giuseppe Carlino](https://github.com/gcarlino) (Simularia s.r.l.)

Bruno Guillaume (ARIA Technologies) bguillaume@aria.fr

Matteo Paolo Costa (while at Arianet s.r.l.)

Valeria Dentis (while at Simularia s.r.l.)

## License

arinfopy parser for ADSO/bin files.
Copyright (C) 2013  Simularia s.r.l. info@simularia.it

This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.

Simularia S.r.l.
via Sant'Antonio da Padova 12
Torino, Italy
[www.simularia.it][simularia]
<info@simularia.it>

[spray]:http://www.aria-net.it/
[simularia]:https://www.simularia.it
