Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
HESTIA's set of modules for filling gaps in the activity data using external datasets (e.g. populating soil properties with a geospatial dataset using provided coordinates) and internal lookups (e.g. populating machinery use from fuel use). Includes rules for when gaps should be filled versus not (e.g. never gap fill yield, gap fill crop residue if yield provided etc.).
HESTIA's set of models for running calculations or retrieving data using external datasets and internal lookups.
Documentation for every model can be found in the HESTIA API Documentation.
3
(we recommend using python 3.6
minimum)pip install hestia_earth.models
API_URL=https://api.hestia.earth
WEB_URL=https://hestia.earth
from hestia_earth.models.pooreNemecek2018 import run
cycle_data = {"@type": "Cycle", ...}
# cycle is a JSONLD node Cycle
result = run('no3ToGroundwaterSoilFlux', cycle_data)
print(result)
This will display only the result of the no3ToGroundwaterSoilFlux
model (Emission).
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()
The models come with an "orchestrator", which allows you to run a pre-configured set of models instead of a single one.
The configuration for each Node (Cycle, Site or ImpactAssessment) can be found in the config folder.
Usage:
from hestia_earth.orchestrator import run
from hestia_earth.models.config import load_config
cycle_data = {"@type": "Cycle", ...}
result = run(cycle, load_config(cycle))
print(result)
This will display the Cycle recalculated with all HESTIA default models running.
We have models that can gap-fill geographical information on a Site
. If you want to use these models:
pip install hestia_earth.earth_engine
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.
FAQs
HESTIA's set of modules for filling gaps in the activity data using external datasets (e.g. populating soil properties with a geospatial dataset using provided coordinates) and internal lookups (e.g. populating machinery use from fuel use). Includes rules for when gaps should be filled versus not (e.g. never gap fill yield, gap fill crop residue if yield provided etc.).
We found that hestia-earth-models demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.