HESTIA Engine Models
HESTIA's set of models for running calculations or retrieving data using external datasets and internal lookups.
Documentation
Documentation for every model can be found in the HESTIA API Documentation.
Install
- Install python
3
(we recommend using python 3.6
minimum) - Install the module:
pip install hestia_earth.models
- Set the following environment variables:
API_URL=https://api.hestia.earth
WEB_URL=https://hestia.earth
Usage
from hestia_earth.models.pooreNemecek2018 import run
run('no3ToGroundwaterSoilFlux', cycle_data)
Additionally, to reduce the number of queries to the HESTIA API and run the models faster, prefetching can be enabled:
from hestia_earth.models.preload_requests import enable_preload
enable_preload()
Using Spatial Models
We have models that can gap-fill geographical information on a Site
. If you want to use these models:
- Install the library:
pip install hestia_earth.earth_engine
- Follow the Getting Started instructions.
Using the ecoinventV3 model
ecoinvent is a consistent, transparent, and well validated life cycle inventory database.
We use ecoinvent data to ascertain the environmental impacts of activities that occur outside of our system boundary, for example data on the environmental impacts of extracting oil and producing diesel, or the impacts of manufacturing plastics.
The ecoinventV3
model requires a valid license to run. We are currently working on a way to enable users of this code with a valid ecoinvent licence to run these models themselves, but for now, these models are only available on the public platform.