Metadata-Version: 2.1
Name: boario
Version: 0.3.0b0
Summary: A Python implementation of ARIO models
Project-URL: Bug Reports, https://github.com/spjuhel/BoARIO/issues
Project-URL: Documentation, https://spjuhel.github.io/BoARIO/index.html
Project-URL: Homepage, https://github.com/spjuhel/BoARIO
Project-URL: Source, https://github.com/spjuhel/BoARIO/
Author-email: Samuel JUHEL <pro@sjuhel.org>
License-File: LICENSE
Keywords: ario,economics,events,extreme,impact,indirect,input-output,modeling,mrio
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Topic :: Scientific/Engineering :: Mathematics
Requires-Python: <4,>=3.7
Requires-Dist: coloredlogs>=15.0.1
Requires-Dist: country-converter>=0.7.4
Requires-Dist: dask>=2021.9.0
Requires-Dist: nptyping>=1.4.4
Requires-Dist: numpy>=1.17.4
Requires-Dist: numpyencoder>=0.3.0
Requires-Dist: odfpy>=1.4.1
Requires-Dist: pandas>=1.4.1
Requires-Dist: progressbar2>=2.4
Requires-Dist: pyarrow>=9.0.0
Requires-Dist: pymrio>=0.4.6
Description-Content-Type: text/x-rst

.. role:: pythoncode(code)
   :language: python

#######
BoARIO
#######

BoARIO : The Adaptative Regional Input Output model in python.

What is BoARIO ?
=================

BoARIO, is a python implementation project of the Adaptative Regional Input Output (ARIO) model [`Hallegatte 2013`_].

Its objectives are to give an accessible and inter-operable implementation of ARIO, as well as tools to visualize and analyze simulation outputs and to
evaluate the effects of many parameters of the model.

This implementation would not have been possible without the `Pymrio`_ module and amazing work of [`Stadler 2021`_] !

It is still an ongoing project (in parallel of a PhD project).

.. _`Stadler 2021`: https://openresearchsoftware.metajnl.com/articles/10.5334/jors.251/
.. _`Hallegatte 2013`: https://doi.org/10.1111/j.1539-6924.2008.01046.x
.. _`Pymrio`: https://pymrio.readthedocs.io/en/latest/intro.html

Here is a non-exhaustive chronology of academic works with or about the ARIO model :

.. image:: https://raw.githubusercontent.com/spjuhel/BoARIO/master/imgs/chronology.svg?sanitize=true
           :width: 900
           :alt: ADEME Logo

Where to get it ?
===================

You can install BoARIO from ``pip`` with:

.. code:: console

   pip install boario


The full source code is also available on Github at: https://github.com/spjuhel/BoARIO

More info in the `installation page`_ of the documentation.

.. _installation page: https://spjuhel.github.io/BoARIO/boario-installation.html

How does BoARIO work?
=========================

In a nutshell, BoARIO takes the following inputs :

- an IO table (such as EXIOBASE3 or EORA26) in the form of an `IOSystem` object (define by the `pymrio` package)

- simulation and mrio parameters (as json files or dictionaries), which govern the simulation,

- event(s) description(s) (as json files or dictionaries), which are used as the perturbation to analyse during the simulation

in order to produce the following outputs:

- the step by step, sector by sector, region by region evolution of most of the variables involved in the simulation (production, demand, stocks, ...)

- aggregated indicators for the whole simulation (shortages duration, aggregated impacts, ...)

Example of use
=================

See `boario-quickstart`_.

.. _boario-quickstart: https://spjuhel.github.io/BoARIO/boario-quickstart.html

Credits
========

Associated PhD project
------------------------

This model is part of my PhD on the indirect impact of extreme events.
This work was supported by the French Environment and Energy Management Agency
(`ADEME`_).

.. image:: https://raw.githubusercontent.com/spjuhel/BoARIO/master/imgs/Logo_ADEME.svg?sanitize=true
           :width: 400
           :alt: ADEME Logo

.. _`ADEME`: https://www.ademe.fr/

Development
------------

* Samuel Juhel

Contributions
---------------

* Be the first `contributor`_ !

.. _`contributor`: https://spjuhel.github.io/BoARIO/development.html

Acknowledgements
------------------

I would like to thank Vincent Viguie, Fabio D'Andrea my PhD supervisors as well as Célian Colon for their inputs during the model implementaiton.
