hestia-earth-models 0.73.8__py3-none-any.whl → 0.74.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of hestia-earth-models might be problematic. Click here for more details.
- hestia_earth/models/aware/scarcityWeightedWaterUse.py +7 -6
- hestia_earth/models/aware2_0/__init__.py +14 -0
- hestia_earth/models/aware2_0/scarcityWeightedWaterUse.py +115 -0
- hestia_earth/models/config/Cycle.json +5 -3
- hestia_earth/models/config/ImpactAssessment.json +1 -1
- hestia_earth/models/config/__init__.py +26 -2
- hestia_earth/models/cycle/animal/input/hestiaAggregatedData.py +2 -2
- hestia_earth/models/cycle/animal/input/properties.py +6 -5
- hestia_earth/models/cycle/animal/milkYield.py +8 -3
- hestia_earth/models/cycle/utils.py +6 -6
- hestia_earth/models/data/ecoinventV3/__init__.py +8 -26
- hestia_earth/models/ecoalimV9/cycle.py +26 -10
- hestia_earth/models/ecoalimV9/impact_assessment.py +30 -10
- hestia_earth/models/ecoalimV9/utils.py +12 -72
- hestia_earth/models/ecoinventV3/__init__.py +8 -140
- hestia_earth/models/ecoinventV3/cycle.py +140 -0
- hestia_earth/models/ecoinventV3/utils.py +28 -1
- hestia_earth/models/ecoinventV3AndEmberClimate/__init__.py +8 -137
- hestia_earth/models/ecoinventV3AndEmberClimate/cycle.py +144 -0
- hestia_earth/models/emepEea2019/utils.py +2 -3
- hestia_earth/models/environmentalFootprintV3_1/environmentalFootprintSingleOverallScore.py +5 -7
- hestia_earth/models/frischknechtEtAl2000/ionisingRadiationKbqU235Eq.py +41 -43
- hestia_earth/models/geospatialDatabase/awareWaterBasinId.py +2 -2
- hestia_earth/models/geospatialDatabase/awareWaterBasinId_v1.py +45 -0
- hestia_earth/models/hestia/default_emissions.py +5 -1
- hestia_earth/models/hestia/default_resourceUse.py +5 -1
- hestia_earth/models/hestia/landCover.py +110 -12
- hestia_earth/models/hestia/utils.py +1 -0
- hestia_earth/models/hestia/waterSalinity.py +2 -3
- hestia_earth/models/impact_assessment/emissions.py +1 -1
- hestia_earth/models/linkedImpactAssessment/emissions.py +2 -2
- hestia_earth/models/log.py +8 -3
- hestia_earth/models/mocking/search-results.json +1549 -1545
- hestia_earth/models/utils/__init__.py +3 -0
- hestia_earth/models/utils/background_emissions.py +109 -9
- hestia_earth/models/utils/blank_node.py +1 -11
- hestia_earth/models/utils/feedipedia.py +2 -2
- hestia_earth/models/utils/impact_assessment.py +1 -3
- hestia_earth/models/utils/lookup.py +1 -1
- hestia_earth/models/version.py +1 -1
- hestia_earth/orchestrator/log.py +8 -3
- {hestia_earth_models-0.73.8.dist-info → hestia_earth_models-0.74.0.dist-info}/METADATA +2 -2
- {hestia_earth_models-0.73.8.dist-info → hestia_earth_models-0.74.0.dist-info}/RECORD +58 -49
- tests/models/aware2_0/__init__.py +0 -0
- tests/models/aware2_0/test_scarcityWeightedWaterUse.py +58 -0
- tests/models/ecoinventV3/__init__.py +0 -0
- tests/models/{test_ecoinventV3.py → ecoinventV3/test_cycle.py} +5 -5
- tests/models/ecoinventV3AndEmberClimate/__init__.py +0 -0
- tests/models/{test_ecoinventV3AndEmberClimate.py → ecoinventV3AndEmberClimate/test_cycle.py} +6 -4
- tests/models/environmentalFootprintV3_1/test_environmentalFootprintSingleOverallScore.py +2 -2
- tests/models/frischknechtEtAl2000/test_ionisingRadiationKbqU235Eq.py +18 -27
- tests/models/hestia/test_landCover.py +16 -6
- tests/models/site/pre_checks/test_cache_geospatialDatabase.py +4 -4
- tests/models/test_config.py +53 -7
- tests/models/{ecoalimV9/test_utils.py → utils/test_background_emissions.py} +2 -2
- {hestia_earth_models-0.73.8.dist-info → hestia_earth_models-0.74.0.dist-info}/LICENSE +0 -0
- {hestia_earth_models-0.73.8.dist-info → hestia_earth_models-0.74.0.dist-info}/WHEEL +0 -0
- {hestia_earth_models-0.73.8.dist-info → hestia_earth_models-0.74.0.dist-info}/top_level.txt +0 -0
|
@@ -43,6 +43,9 @@ def _omit(values: dict, keys: list) -> dict: return {k: v for k, v in values.ite
|
|
|
43
43
|
def _include(value: dict, keys: list) -> dict: return {k: v for k, v in value.items() if k in keys}
|
|
44
44
|
|
|
45
45
|
|
|
46
|
+
def unique_values(values: list, key='@id'): return list({v[key]: v for v in values}.values())
|
|
47
|
+
|
|
48
|
+
|
|
46
49
|
def _run_in_serie(data: dict, models: list): return reduce(lambda prev, model: model(prev), models, data)
|
|
47
50
|
|
|
48
51
|
|
|
@@ -1,16 +1,19 @@
|
|
|
1
|
-
from
|
|
1
|
+
from functools import reduce
|
|
2
|
+
from typing import Callable, Tuple
|
|
3
|
+
from hestia_earth.schema import TermTermType, EmissionMethodTier
|
|
4
|
+
from hestia_earth.utils.lookup import _is_missing_value, lookup_columns
|
|
2
5
|
from hestia_earth.utils.model import find_term_match, filter_list_term_type
|
|
3
|
-
from hestia_earth.utils.tools import flatten, non_empty_list
|
|
6
|
+
from hestia_earth.utils.tools import flatten, non_empty_list, safe_parse_float
|
|
4
7
|
from hestia_earth.utils.emission import cycle_emissions_in_system_boundary
|
|
5
8
|
|
|
6
|
-
from hestia_earth.models.log import logShouldRun, debugValues
|
|
7
|
-
from . import is_from_model
|
|
9
|
+
from hestia_earth.models.log import logShouldRun, logRequirements, debugValues
|
|
10
|
+
from . import is_from_model, _omit
|
|
8
11
|
from .term import get_lookup_value
|
|
9
12
|
|
|
10
13
|
|
|
11
14
|
def _animal_inputs(animal: dict):
|
|
12
15
|
inputs = animal.get('inputs', [])
|
|
13
|
-
return [(input | {'animal': animal.get('term', {})}) for input in inputs]
|
|
16
|
+
return [(input | {'animalId': animal['animalId'], 'animal': animal.get('term', {})}) for input in inputs]
|
|
14
17
|
|
|
15
18
|
|
|
16
19
|
def _should_run_input(products: list):
|
|
@@ -58,21 +61,24 @@ def no_gap_filled_background_emissions(
|
|
|
58
61
|
return check_input
|
|
59
62
|
|
|
60
63
|
|
|
61
|
-
def
|
|
64
|
+
def _all_background_emission_term_ids(node: dict, termType: TermTermType):
|
|
62
65
|
term_ids = cycle_emissions_in_system_boundary(node, termType=termType)
|
|
63
|
-
|
|
66
|
+
background_ids = list(set([
|
|
64
67
|
get_lookup_value({'termType': termType.value, '@id': term_id}, 'inputProductionGroupId')
|
|
65
68
|
for term_id in term_ids
|
|
66
69
|
]))
|
|
70
|
+
# make sure input production emission is itself in the system boundary
|
|
71
|
+
return [term_id for term_id in background_ids if term_id in term_ids]
|
|
67
72
|
|
|
68
73
|
|
|
69
74
|
def log_missing_emissions(node: dict, termType: TermTermType = TermTermType.EMISSION, **log_args):
|
|
70
|
-
all_emission_term_ids =
|
|
75
|
+
all_emission_term_ids = _all_background_emission_term_ids(node, termType)
|
|
71
76
|
|
|
72
77
|
def log_input(input_term_id: str, included_emission_term_ids: list, **extra_log_args):
|
|
73
78
|
missing_emission_term_ids = non_empty_list([
|
|
74
79
|
term_id for term_id in all_emission_term_ids if term_id not in included_emission_term_ids
|
|
75
80
|
])
|
|
81
|
+
|
|
76
82
|
for emission_id in missing_emission_term_ids:
|
|
77
83
|
# debug value on the emission itself so it appears for the input
|
|
78
84
|
debugValues(node, term=emission_id,
|
|
@@ -81,7 +87,101 @@ def log_missing_emissions(node: dict, termType: TermTermType = TermTermType.EMIS
|
|
|
81
87
|
input=input_term_id,
|
|
82
88
|
**log_args,
|
|
83
89
|
**extra_log_args)
|
|
84
|
-
|
|
90
|
+
logRequirements(node, term=input_term_id,
|
|
91
|
+
emission_id=emission_id,
|
|
92
|
+
has_emission_factor=False,
|
|
93
|
+
**log_args,
|
|
94
|
+
**extra_log_args)
|
|
95
|
+
logShouldRun(node, term=input_term_id, should_run=False,
|
|
96
|
+
emission_id=emission_id,
|
|
85
97
|
**log_args,
|
|
86
98
|
**extra_log_args)
|
|
87
99
|
return log_input
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
_KEY_TO_FIELD = {
|
|
103
|
+
'inputs': 'key'
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
def _key_to_field(key: str): return _KEY_TO_FIELD.get(key) or key
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
def _values_from_column(index_column: str, column: str, value: str):
|
|
111
|
+
values = column.split('+')
|
|
112
|
+
term_id = values[0]
|
|
113
|
+
value = safe_parse_float(value, default=None)
|
|
114
|
+
return {
|
|
115
|
+
term_id: {
|
|
116
|
+
'value': value
|
|
117
|
+
} | {
|
|
118
|
+
_key_to_field(v.split('[')[0]): v.split('[')[1][:-1] for v in values[1:]
|
|
119
|
+
}
|
|
120
|
+
} if all([
|
|
121
|
+
column != index_column,
|
|
122
|
+
not column.startswith('ecoinvent'),
|
|
123
|
+
not column.startswith('ecoalim'),
|
|
124
|
+
not _is_missing_value(value)
|
|
125
|
+
]) else {}
|
|
126
|
+
|
|
127
|
+
|
|
128
|
+
def convert_background_lookup(lookup, index_column: str):
|
|
129
|
+
columns = lookup_columns(lookup)
|
|
130
|
+
return {
|
|
131
|
+
row[index_column]: reduce(
|
|
132
|
+
lambda prev, curr: prev | _values_from_column(index_column, curr, row[curr]),
|
|
133
|
+
columns,
|
|
134
|
+
{}
|
|
135
|
+
)
|
|
136
|
+
for row in lookup
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
|
|
140
|
+
def parse_term_id(term_id: str): return term_id.split('-')[0]
|
|
141
|
+
|
|
142
|
+
|
|
143
|
+
def join_term_id(term_id: str, data: dict):
|
|
144
|
+
return '-'.join(non_empty_list([term_id] + list(_omit(data, ['value']).values())))
|
|
145
|
+
|
|
146
|
+
|
|
147
|
+
def _process_mapping(
|
|
148
|
+
node: dict,
|
|
149
|
+
input: dict,
|
|
150
|
+
term_type: TermTermType,
|
|
151
|
+
extract_mapping: Callable[[Tuple, TermTermType], Tuple[dict, float]],
|
|
152
|
+
**log_args
|
|
153
|
+
) -> dict:
|
|
154
|
+
input_term_id = input.get('term', {}).get('@id')
|
|
155
|
+
operation_term_id = input.get('operation', {}).get('@id')
|
|
156
|
+
animal_term_id = input.get('animal', {}).get('@id')
|
|
157
|
+
|
|
158
|
+
def add(prev: dict, mapping: Tuple):
|
|
159
|
+
values, coefficient = extract_mapping(mapping, term_type)
|
|
160
|
+
for term_id, data in values:
|
|
161
|
+
# log run on each node so we know it did run
|
|
162
|
+
logShouldRun(node, term=input_term_id, should_run=True,
|
|
163
|
+
methodTier=EmissionMethodTier.BACKGROUND.value,
|
|
164
|
+
emission_id=term_id,
|
|
165
|
+
**log_args)
|
|
166
|
+
debugValues(node, term=term_id,
|
|
167
|
+
value=data.get('value'),
|
|
168
|
+
coefficient=coefficient,
|
|
169
|
+
input=input_term_id,
|
|
170
|
+
operation=operation_term_id,
|
|
171
|
+
animal=animal_term_id,
|
|
172
|
+
**log_args)
|
|
173
|
+
group_id = join_term_id(term_id, data)
|
|
174
|
+
prev[group_id] = prev.get(group_id, []) + [data | {'coefficient': coefficient}]
|
|
175
|
+
return prev
|
|
176
|
+
return add
|
|
177
|
+
|
|
178
|
+
|
|
179
|
+
def process_input_mappings(
|
|
180
|
+
node: dict,
|
|
181
|
+
input: dict,
|
|
182
|
+
mappings: list,
|
|
183
|
+
term_type: TermTermType,
|
|
184
|
+
extract_mapping: Callable[[tuple, TermTermType], Tuple[dict, float]],
|
|
185
|
+
**log_args
|
|
186
|
+
):
|
|
187
|
+
return reduce(_process_mapping(node, input, term_type, extract_mapping, **log_args), mappings, {})
|
|
@@ -111,17 +111,6 @@ def properties_logs(blank_nodes: list, properties: Union[dict, list]):
|
|
|
111
111
|
return log_as_table(logs)
|
|
112
112
|
|
|
113
113
|
|
|
114
|
-
def group_by_keys(group_keys: list = ['term']):
|
|
115
|
-
def run(group: dict, node: dict):
|
|
116
|
-
group_key = '-'.join(non_empty_list([
|
|
117
|
-
node.get(v, {}).get('@id') if isinstance(node.get(v), dict) else node.get(v)
|
|
118
|
-
for v in group_keys
|
|
119
|
-
]))
|
|
120
|
-
group[group_key] = group.get(group_key, []) + [node]
|
|
121
|
-
return group
|
|
122
|
-
return run
|
|
123
|
-
|
|
124
|
-
|
|
125
114
|
def _module_term_id(term_id: str, module):
|
|
126
115
|
term_id_str = term_id.split('.')[-1] if '.' in term_id else term_id
|
|
127
116
|
return getattr(module, 'TERM_ID', term_id_str).split(',')[0]
|
|
@@ -1337,6 +1326,7 @@ def get_inputs_from_properties(input: dict, term_types: Union[TermTermType, List
|
|
|
1337
1326
|
{
|
|
1338
1327
|
'term': p.get('key'),
|
|
1339
1328
|
'value': [(p.get('value') / 100) * (p.get('share', 100) / 100) * input_value],
|
|
1329
|
+
# for grouping
|
|
1340
1330
|
'parent': term
|
|
1341
1331
|
} for p in (properties or []) if all([p.get('key'), p.get('value')])
|
|
1342
1332
|
]) if input_value > 0 else []
|
|
@@ -47,7 +47,7 @@ def _map_properties(lookup, term_id: str, column_prefix: str):
|
|
|
47
47
|
return {'value': value, 'sd': sd, 'min': min, 'max': max}
|
|
48
48
|
|
|
49
49
|
|
|
50
|
-
def rescale_properties_from_dryMatter(model: str, node: dict, blank_nodes: list):
|
|
50
|
+
def rescale_properties_from_dryMatter(model: str, node: dict, blank_nodes: list, **log_args):
|
|
51
51
|
properties = get_feedipedia_properties()
|
|
52
52
|
# download all to save time
|
|
53
53
|
term_types = [blank_node.get('term', {}).get('termType') for blank_node in blank_nodes]
|
|
@@ -78,7 +78,7 @@ def rescale_properties_from_dryMatter(model: str, node: dict, blank_nodes: list)
|
|
|
78
78
|
])
|
|
79
79
|
])
|
|
80
80
|
for prop in new_properties:
|
|
81
|
-
logShouldRun(node, model, term_id, True, property=prop.get('term', {}).get('@id'))
|
|
81
|
+
logShouldRun(node, model, term_id, True, property=prop.get('term', {}).get('@id'), **log_args)
|
|
82
82
|
return (
|
|
83
83
|
blank_node | {'properties': merge_blank_nodes(all_properties, new_properties)}
|
|
84
84
|
) if new_properties else blank_node
|
|
@@ -219,10 +219,8 @@ def impact_aware_value(model: str, term_id: str, impact: dict, lookup: str, grou
|
|
|
219
219
|
blank_nodes = impact.get('emissionsResourceUse', [])
|
|
220
220
|
site = get_site(impact)
|
|
221
221
|
aware_id = site.get('awareWaterBasinId')
|
|
222
|
-
if aware_id is None:
|
|
223
|
-
return None
|
|
224
222
|
|
|
225
|
-
return all_factor_value(
|
|
223
|
+
return None if aware_id is None else all_factor_value(
|
|
226
224
|
logs_model=model,
|
|
227
225
|
logs_term_id=term_id,
|
|
228
226
|
node=impact,
|
|
@@ -93,7 +93,7 @@ def aware_factor_value(model: str, term_id: str, lookup_name: str, aware_id: str
|
|
|
93
93
|
node=node_term_id,
|
|
94
94
|
value=value,
|
|
95
95
|
coefficient=coefficient)
|
|
96
|
-
except
|
|
96
|
+
except Exception: # factor does not exist
|
|
97
97
|
coefficient = None
|
|
98
98
|
|
|
99
99
|
return {'id': node_term_id, 'value': value, 'coefficient': coefficient}
|
hestia_earth/models/version.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
VERSION = '0.
|
|
1
|
+
VERSION = '0.74.0'
|
hestia_earth/orchestrator/log.py
CHANGED
|
@@ -3,6 +3,8 @@ import sys
|
|
|
3
3
|
import logging
|
|
4
4
|
|
|
5
5
|
LOG_LEVEL = os.getenv('LOG_LEVEL', 'INFO')
|
|
6
|
+
_EXTENDED_LOGS = os.getenv('LOG_EXTENDED', 'true') == 'true'
|
|
7
|
+
_LOG_DATE_FORMAT = os.getenv('LOG_DATE_FORMAT', '%Y-%m-%dT%H:%M:%S%z')
|
|
6
8
|
|
|
7
9
|
# disable root logger
|
|
8
10
|
root_logger = logging.getLogger()
|
|
@@ -25,9 +27,12 @@ def log_to_file(filepath: str):
|
|
|
25
27
|
Path of the file.
|
|
26
28
|
"""
|
|
27
29
|
formatter = logging.Formatter(
|
|
28
|
-
'{"timestamp": "%(asctime)s", "level": "%(levelname)s", "logger": "%(name)s", '
|
|
29
|
-
|
|
30
|
-
|
|
30
|
+
'{"timestamp": "%(asctime)s", "level": "%(levelname)s", "logger": "%(name)s", "message": "%(message)s"}',
|
|
31
|
+
_LOG_DATE_FORMAT
|
|
32
|
+
) if _EXTENDED_LOGS else logging.Formatter(
|
|
33
|
+
'{"logger": "%(name)s", "message": "%(message)s"}',
|
|
34
|
+
_LOG_DATE_FORMAT
|
|
35
|
+
)
|
|
31
36
|
handler = logging.FileHandler(filepath, encoding='utf-8')
|
|
32
37
|
handler.setFormatter(formatter)
|
|
33
38
|
handler.setLevel(logging.getLevelName(LOG_LEVEL))
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: hestia-earth-models
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.74.0
|
|
4
4
|
Summary: 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.).
|
|
5
5
|
Home-page: https://gitlab.com/hestia-earth/hestia-engine-models
|
|
6
6
|
Author: HESTIA Team
|
|
@@ -11,7 +11,7 @@ Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
|
|
|
11
11
|
Classifier: Programming Language :: Python :: 3.6
|
|
12
12
|
Description-Content-Type: text/markdown
|
|
13
13
|
License-File: LICENSE
|
|
14
|
-
Requires-Dist: hestia-earth-schema<34.0.0,>=33.
|
|
14
|
+
Requires-Dist: hestia-earth-schema<34.0.0,>=33.5.0
|
|
15
15
|
Requires-Dist: hestia-earth-utils>=0.15.1
|
|
16
16
|
Requires-Dist: python-dateutil>=2.8.1
|
|
17
17
|
Requires-Dist: CurrencyConverter==0.16.8
|
|
@@ -2,10 +2,10 @@ hestia_earth/__init__.py,sha256=G-d438vPx7m_ks5e9XTtM3u7LDRO5dSSukibukWmyPM,56
|
|
|
2
2
|
hestia_earth/models/__init__.py,sha256=qEFeq3yuf3lQKVseALmL8aPM8fpCS54B_5pry00M3hk,76
|
|
3
3
|
hestia_earth/models/cache_nodes.py,sha256=CqcTkvT0SQw-MKExUJgM3wDRt2sgdxgVYb6ylNnfC4I,5423
|
|
4
4
|
hestia_earth/models/cache_sites.py,sha256=XpXnkYt823PQzrswgP__L4CT8xZG_n7a41CIHK8wQ3U,6427
|
|
5
|
-
hestia_earth/models/log.py,sha256=
|
|
5
|
+
hestia_earth/models/log.py,sha256=LQ6nRMc5q8-xs8DsAx9h8drWhWLkqDG9dFlG9OzFbeA,3780
|
|
6
6
|
hestia_earth/models/preload_requests.py,sha256=vK_G1UzhNMhYy7ymnCtHUz_vv3cfApCSKqv29VREEBQ,1943
|
|
7
7
|
hestia_earth/models/requirements.py,sha256=eU4yT443fx7BnaokhrLB_PCizJI7Y6m4auyo8vQauNg,17363
|
|
8
|
-
hestia_earth/models/version.py,sha256=
|
|
8
|
+
hestia_earth/models/version.py,sha256=dr8LfdHIp0dVXgtrKmeyU5v4tY5NawYAi2uFcqYX_K0,19
|
|
9
9
|
hestia_earth/models/agribalyse2016/__init__.py,sha256=WvK0qCQbnYtg9oZxrACd1wGormZyXibPtpCnIQeDqbw,415
|
|
10
10
|
hestia_earth/models/agribalyse2016/fuelElectricity.py,sha256=1ngl8pdxeNhlVV8keAeWRwGorr_1uFXM9EoPUWx-uSc,4382
|
|
11
11
|
hestia_earth/models/agribalyse2016/machineryInfrastructureDepreciatedAmountPerCycle.py,sha256=queToXuzq0tQ9_XuUJ2pJgSywXmbt9uX3ZoIKgqkROM,2660
|
|
@@ -17,7 +17,9 @@ hestia_earth/models/akagiEtAl2011/pm25ToAirCropResidueBurning.py,sha256=88LaJnez
|
|
|
17
17
|
hestia_earth/models/akagiEtAl2011/so2ToAirCropResidueBurning.py,sha256=hoymFUx3TxzwhlOV65RzOx43IK-CGM8jYfWLH6ibHNo,791
|
|
18
18
|
hestia_earth/models/akagiEtAl2011/utils.py,sha256=Fh9BydxPV42xSMg17R-Hf9ehkZR1o9PbCi5UedcCoBQ,1932
|
|
19
19
|
hestia_earth/models/aware/__init__.py,sha256=F8XRo9nRiX-fHAqyeMARYtFmJWRPs-hnIaCiHcZhyMw,406
|
|
20
|
-
hestia_earth/models/aware/scarcityWeightedWaterUse.py,sha256=
|
|
20
|
+
hestia_earth/models/aware/scarcityWeightedWaterUse.py,sha256=yVVwPbsIcRZQxqxGPyHX6BFNPNt5f1MfvOarC7lmbyI,4055
|
|
21
|
+
hestia_earth/models/aware2_0/__init__.py,sha256=eAVMFlxXvbFGsn9qDZV4ZXthQjVe92JUMh_pNPh1B30,455
|
|
22
|
+
hestia_earth/models/aware2_0/scarcityWeightedWaterUse.py,sha256=kY_WlPITZJe6TnSrHXS83Dh73UKn4cg6dUiVa571SCc,4138
|
|
21
23
|
hestia_earth/models/chaudharyBrooks2018/__init__.py,sha256=LKxQu7-6gyWPpdXaYHDTawzsBNm7CpDrk98I5_TTLhA,420
|
|
22
24
|
hestia_earth/models/chaudharyBrooks2018/damageToTerrestrialEcosystemsLandOccupation.py,sha256=qsOClIL45FT9qbglvyB5NPOHlWLm8TZl8LDT0duQyfw,3905
|
|
23
25
|
hestia_earth/models/chaudharyBrooks2018/damageToTerrestrialEcosystemsLandTransformation.py,sha256=34WuvMQa3ERW-D9WEv3kbfLbCywaRqGAuXt85wTstUQ,3358
|
|
@@ -35,10 +37,10 @@ hestia_earth/models/cml2001Baseline/terrestrialAcidificationPotentialIncludingFa
|
|
|
35
37
|
hestia_earth/models/cml2001NonBaseline/__init__.py,sha256=vI8wp8Og_e8DiJqYYvp33YoI3t4ffAC31LWlnV20JTg,419
|
|
36
38
|
hestia_earth/models/cml2001NonBaseline/eutrophicationPotentialIncludingFateAverageEurope.py,sha256=lcgyRHY08KCBFPERJNqV4DYGEJCvyHBDnJXD0kEkVqM,1097
|
|
37
39
|
hestia_earth/models/cml2001NonBaseline/terrestrialAcidificationPotentialExcludingFate.py,sha256=xcrxfs9UoV_EWvV-XzMt35oPWCUsTzqg2SGA3j2MFIw,1091
|
|
38
|
-
hestia_earth/models/config/Cycle.json,sha256=
|
|
39
|
-
hestia_earth/models/config/ImpactAssessment.json,sha256=
|
|
40
|
+
hestia_earth/models/config/Cycle.json,sha256=jnCp-cI4Bcg0REa6hW9f9lHrVzmiFp6s2SuRrjM7HLw,60340
|
|
41
|
+
hestia_earth/models/config/ImpactAssessment.json,sha256=8RtgFdfFd0t8gb6sM4iyfHFE2dKgMld5Qg-cykapabY,60300
|
|
40
42
|
hestia_earth/models/config/Site.json,sha256=4DPSziHnDIngyub3Of8OvDEKa446q3Yx48R2Eobqk24,14374
|
|
41
|
-
hestia_earth/models/config/__init__.py,sha256=
|
|
43
|
+
hestia_earth/models/config/__init__.py,sha256=7ZqOGd4dO2Stonte6fbktVZqbY7vp8Ls_LifgofCu8I,3009
|
|
42
44
|
hestia_earth/models/config/run-calculations.json,sha256=e3nJ4M6CP1iFzfv8ou_ZUFbFxYkDxJgwuNDXTm4PBDc,615
|
|
43
45
|
hestia_earth/models/config/trigger-calculations.json,sha256=3dmn2bRuj6QEtSTOLdIy31ho7thgUXyDsnqZzPV9rAQ,623
|
|
44
46
|
hestia_earth/models/cycle/__init__.py,sha256=VowO3kOHb0LpURsljNaJsYO7s6vgjhul6bF_85UjUEI,406
|
|
@@ -52,13 +54,13 @@ hestia_earth/models/cycle/siteUnusedDuration.py,sha256=AHhU57E8R3i9pkTKQ37yMv6WK
|
|
|
52
54
|
hestia_earth/models/cycle/startDate.py,sha256=F42dxaRUFsd2tr8Wm3gJCstfLvpFP50LcmE7tYdNhxY,2509
|
|
53
55
|
hestia_earth/models/cycle/startDateDefinition.py,sha256=2sD4V6Jv-yGLM1nkA4eT-RHTnTNfPpl4L5p4jPKzmLo,1991
|
|
54
56
|
hestia_earth/models/cycle/transformation.py,sha256=s4vlje5g-pMKEMF-IqcrjfPOagBS3v8VItoU19EBc0A,1150
|
|
55
|
-
hestia_earth/models/cycle/utils.py,sha256=
|
|
57
|
+
hestia_earth/models/cycle/utils.py,sha256=FTlGBd3FQcuiF6RqmQ11BHzX9DYntENDTZ7cYJimF9Y,1209
|
|
56
58
|
hestia_earth/models/cycle/animal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
57
|
-
hestia_earth/models/cycle/animal/milkYield.py,sha256=
|
|
59
|
+
hestia_earth/models/cycle/animal/milkYield.py,sha256=4j7B0f2OWMUaf-pGs9jMeKw3rp-_INmKIXzFRog9PlY,2237
|
|
58
60
|
hestia_earth/models/cycle/animal/properties.py,sha256=KYCjznw9-e0BOLh3jep86DC_BmDGaZ0Y6TG-m3YnxHE,466
|
|
59
61
|
hestia_earth/models/cycle/animal/input/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
60
|
-
hestia_earth/models/cycle/animal/input/hestiaAggregatedData.py,sha256=
|
|
61
|
-
hestia_earth/models/cycle/animal/input/properties.py,sha256=
|
|
62
|
+
hestia_earth/models/cycle/animal/input/hestiaAggregatedData.py,sha256=1ZN_c7qj5GL8DuX9NDW_baoWLTx7fKnUEN_RYTFDjWo,2263
|
|
63
|
+
hestia_earth/models/cycle/animal/input/properties.py,sha256=rqmwFznfgc-719vHfXNNleRMkpBmCSfjuNJUpIOFXa0,3286
|
|
62
64
|
hestia_earth/models/cycle/completeness/__init__.py,sha256=bQ-tpeCbUsIdSPGla06Mg2IZWpGp7TgWXlgZTYeLsKk,1512
|
|
63
65
|
hestia_earth/models/cycle/completeness/animalFeed.py,sha256=_qUJcQ2ggdy0fBCBkHmeRDL71HuX4b9KfnSm7JqPgFM,830
|
|
64
66
|
hestia_earth/models/cycle/completeness/cropResidue.py,sha256=7SNfYvP4erJ2keem3DHdOzuzzuAsrj15iffacWNgJHE,2653
|
|
@@ -95,16 +97,18 @@ hestia_earth/models/cycle/product/value.py,sha256=JYHlfmOakU1xgDcgGWc78WzRd50HYq
|
|
|
95
97
|
hestia_earth/models/dammgen2009/__init__.py,sha256=dZ8tIXl6e3ZEixYrWiW7rzoqRJVFOoxi4RPvM3N0L1E,412
|
|
96
98
|
hestia_earth/models/dammgen2009/noxToAirExcreta.py,sha256=LeTrgk4I1S8kNseNKXVYnn3VPyz2D2N_22S6Dsf29zA,1632
|
|
97
99
|
hestia_earth/models/data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
98
|
-
hestia_earth/models/data/ecoinventV3/__init__.py,sha256=
|
|
100
|
+
hestia_earth/models/data/ecoinventV3/__init__.py,sha256=9JGjfmDMxjdP_AMftq5f2koPDdK2OD9hba4K8KquKsc,629
|
|
99
101
|
hestia_earth/models/deRuijterEtAl2010/__init__.py,sha256=lbH6mB98dmZZlwdZctNYtEmVwAow957l80Dv7JSPDsI,418
|
|
100
102
|
hestia_earth/models/deRuijterEtAl2010/nh3ToAirCropResidueDecomposition.py,sha256=2z10WqMsGUDDO8xJ3lmXvSUHgzz2t6PPRDha5NHoT5s,3291
|
|
101
103
|
hestia_earth/models/ecoalimV9/__init__.py,sha256=_evwL-DZejYohms9PUi4TNqLic44-UbOzw178wak7Pk,410
|
|
102
|
-
hestia_earth/models/ecoalimV9/cycle.py,sha256=
|
|
103
|
-
hestia_earth/models/ecoalimV9/impact_assessment.py,sha256=
|
|
104
|
-
hestia_earth/models/ecoalimV9/utils.py,sha256=
|
|
105
|
-
hestia_earth/models/ecoinventV3/__init__.py,sha256=
|
|
106
|
-
hestia_earth/models/ecoinventV3/
|
|
107
|
-
hestia_earth/models/
|
|
104
|
+
hestia_earth/models/ecoalimV9/cycle.py,sha256=vS70XsPxWzEIRaPq1G7r_CUibQAyPzU0nbS8_64AJmQ,4936
|
|
105
|
+
hestia_earth/models/ecoalimV9/impact_assessment.py,sha256=6V2EPCQl2ssb88BwdHbL59_kkylFl7uMcyNSmMnEy-M,5035
|
|
106
|
+
hestia_earth/models/ecoalimV9/utils.py,sha256=EvzVfllJUbHfl2Q79ojK9fCdYLl58U48ql3PonNqLmI,1348
|
|
107
|
+
hestia_earth/models/ecoinventV3/__init__.py,sha256=ucIV9cYq4nH-BTMiDerL6_XvTAGlyU8On-2RnxJRghc,412
|
|
108
|
+
hestia_earth/models/ecoinventV3/cycle.py,sha256=l3geRHuVUzmh8F2BWCoybMujsnzykb7jmfxezAHAgGc,5317
|
|
109
|
+
hestia_earth/models/ecoinventV3/utils.py,sha256=1bCssR0Ffof_Lf56898vGZKX7PXYbKMNTmrQcSEDEMA,1385
|
|
110
|
+
hestia_earth/models/ecoinventV3AndEmberClimate/__init__.py,sha256=EQf8RtJQKpkOU0PqZA9qNYm8xzc0S2R1zWnXSvj02Ok,427
|
|
111
|
+
hestia_earth/models/ecoinventV3AndEmberClimate/cycle.py,sha256=63DIlQMIU5YAjj_izRqX2Kr2yBBCG7g0Pb16opmcJZc,5929
|
|
108
112
|
hestia_earth/models/ecoinventV3AndEmberClimate/utils.py,sha256=6niH2MArBK4KFzW-PeT09RZJElDtb-ILWqBEMU1SqXA,1141
|
|
109
113
|
hestia_earth/models/edip2003/__init__.py,sha256=nyB0CI2gNmRAXj-203aJHQMmETYhcY-dHbMABOhJ7YI,409
|
|
110
114
|
hestia_earth/models/edip2003/ozoneDepletionPotential.py,sha256=YkBct4eDUidGukaVdd2iaEouq_FckuG8l_7pgBQgCBw,1033
|
|
@@ -118,10 +122,10 @@ hestia_earth/models/emepEea2019/pm10ToAirAnimalHousing.py,sha256=7LhOEQokWMWEPsp
|
|
|
118
122
|
hestia_earth/models/emepEea2019/pm25ToAirAnimalHousing.py,sha256=IzGQrRv9Pk0o1Vq18HRWZ10jhmjFG59ijfn_VYAUJIA,1384
|
|
119
123
|
hestia_earth/models/emepEea2019/so2ToAirFuelCombustion.py,sha256=OC53aE0uCmUxgZcqQjyhjjFPZ5U5Rdfv8l8wYihcYY4,1833
|
|
120
124
|
hestia_earth/models/emepEea2019/tspToAirAnimalHousing.py,sha256=TaT5GyYK6MyJQHKApBe-u4fMjqXXdmuBEtUcRYnkhac,1381
|
|
121
|
-
hestia_earth/models/emepEea2019/utils.py,sha256=
|
|
125
|
+
hestia_earth/models/emepEea2019/utils.py,sha256=MWIH4jTwzXMMvfX5FBpnb5sdGvSUSrCkPnMkXGfEpcQ,5603
|
|
122
126
|
hestia_earth/models/emissionNotRelevant/__init__.py,sha256=yAunIZI_4nGV0khRiGhbZAmXmMiuICzEH-pvzWX1lpM,3000
|
|
123
127
|
hestia_earth/models/environmentalFootprintV3_1/__init__.py,sha256=tF2WrWiV1Wzi2vnRiNXdfPWfmVxgVu9w9-7eA6PA7-s,473
|
|
124
|
-
hestia_earth/models/environmentalFootprintV3_1/environmentalFootprintSingleOverallScore.py,sha256=
|
|
128
|
+
hestia_earth/models/environmentalFootprintV3_1/environmentalFootprintSingleOverallScore.py,sha256=i7Er5qYAj14MuiUvWSTi6OjQ4P7pwrslQxSFUYGM0zg,5718
|
|
125
129
|
hestia_earth/models/environmentalFootprintV3_1/freshwaterEcotoxicityPotentialCtue.py,sha256=N_gw2aNoCMW5Z1XM-uAyCF1kfpZUI07giv_bo3Lmr5Q,918
|
|
126
130
|
hestia_earth/models/environmentalFootprintV3_1/marineEutrophicationPotential.py,sha256=UM9pezQeETfk9i0FtOBRdreaaJ9OqL6G4gYljrKOz-0,1063
|
|
127
131
|
hestia_earth/models/environmentalFootprintV3_1/photochemicalOzoneCreationPotentialHumanHealthNmvocEq.py,sha256=47raZTA3aUbBpgClTzKnzUI8Vfy9qUwYNdFDUKM3hJ0,1101
|
|
@@ -143,10 +147,11 @@ hestia_earth/models/faostat2018/utils.py,sha256=bxd4dtML0z5D5LP7peZTcvt7U6GLxGdX
|
|
|
143
147
|
hestia_earth/models/faostat2018/product/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
144
148
|
hestia_earth/models/faostat2018/product/price.py,sha256=6oG8n-tGFRX2p4aC1RBeEvO7iexooFiRok39m8f4VN0,7734
|
|
145
149
|
hestia_earth/models/frischknechtEtAl2000/__init__.py,sha256=Fixyy9UwoCGP5-MHyJu_ctS40SQ2imfvZo8a547029U,421
|
|
146
|
-
hestia_earth/models/frischknechtEtAl2000/ionisingRadiationKbqU235Eq.py,sha256=
|
|
150
|
+
hestia_earth/models/frischknechtEtAl2000/ionisingRadiationKbqU235Eq.py,sha256=LVHTTauExpp2xTUaJtqEggj38-RIY1nKuAQ4d-AnCVA,4443
|
|
147
151
|
hestia_earth/models/geospatialDatabase/__init__.py,sha256=TH-FW3aoL7r1GquRChr7rde7uQonKQRDR00udG8tDrQ,957
|
|
148
152
|
hestia_earth/models/geospatialDatabase/altitude.py,sha256=B9FOuAIXLV4ip3MkTxFBm3xMex2BkELsOGybnsHkXVc,2015
|
|
149
|
-
hestia_earth/models/geospatialDatabase/awareWaterBasinId.py,sha256=
|
|
153
|
+
hestia_earth/models/geospatialDatabase/awareWaterBasinId.py,sha256=Yjr8Oe5rdg_WaUVj78rE596wCQosbOvUI8TLZY2wNO4,1261
|
|
154
|
+
hestia_earth/models/geospatialDatabase/awareWaterBasinId_v1.py,sha256=xuUD-isJSDdiVON07RJGZIpXh1norXWknWfjPmUNTYs,1252
|
|
150
155
|
hestia_earth/models/geospatialDatabase/clayContent.py,sha256=Rre3QpoYXViJEZv8XqDdiC7_86LjYNt9DwQmhlLd0a4,3398
|
|
151
156
|
hestia_earth/models/geospatialDatabase/croppingIntensity.py,sha256=d1WIrxO4rFj5Oj-k8f1eaVIOR6sfke2CYH8lwtuE_BM,2565
|
|
152
157
|
hestia_earth/models/geospatialDatabase/drainageClass.py,sha256=O77j_OqMMoRw-nlIpFp6T8A6D8Feg7M7nX527Inw5z8,1915
|
|
@@ -192,8 +197,8 @@ hestia_earth/models/hestia/coldDressedCarcassWeightPerHead.py,sha256=NE1aw4-rmKs
|
|
|
192
197
|
hestia_earth/models/hestia/concentrateFeed.py,sha256=HnuG3zAECtFVdPRbTATGz5ImO2Ve1NruqD8brbrO2c4,6647
|
|
193
198
|
hestia_earth/models/hestia/cropResidueManagement.py,sha256=VlubB0q5MtvBM2dQSWdrENBMOYpvFbGu36TEwxoDl7A,2301
|
|
194
199
|
hestia_earth/models/hestia/croppingIntensity.py,sha256=xev3GOE06nBJ8ZY3XtbnE0eR2YR_kqAFPnrTuKFtLrQ,1777
|
|
195
|
-
hestia_earth/models/hestia/default_emissions.py,sha256=
|
|
196
|
-
hestia_earth/models/hestia/default_resourceUse.py,sha256=
|
|
200
|
+
hestia_earth/models/hestia/default_emissions.py,sha256=UaG__VXbsa2f3lU_wD7Pz0hYWhABSTmyx8wwT3MQG1w,3546
|
|
201
|
+
hestia_earth/models/hestia/default_resourceUse.py,sha256=uV4yawZTDoDNyb_NojOEzRZgjy-tWzXCzaxgAT1BGTs,3880
|
|
197
202
|
hestia_earth/models/hestia/energyContentLowerHeatingValue.py,sha256=2gR7Iu5nUUCGSXjFrkTnss6XBGtQz-yKwexCQoy8TJU,2214
|
|
198
203
|
hestia_earth/models/hestia/excretaKgMass.py,sha256=pBhD3I2NPjJ-Dbnp_P508J7OCLI_fxOAyTi_wKtrkcg,4017
|
|
199
204
|
hestia_earth/models/hestia/excretaKgN.py,sha256=J2TuRGzA8KHDgsRnZflF8LMcd8993YPguY-cdbQOJ8Y,2878
|
|
@@ -203,7 +208,7 @@ hestia_earth/models/hestia/freshWater.py,sha256=Q-dmFJLZfyYEyFyYkJUOjgmQR3G5YXCX
|
|
|
203
208
|
hestia_earth/models/hestia/histosol.py,sha256=IexiWTSlSJYGjrdpYmRooW6v8LjhYATPQ8smMz1UZBA,1612
|
|
204
209
|
hestia_earth/models/hestia/inorganicFertiliser.py,sha256=We4PBaTXyGwEQTfhX0-J8Xt03p-FB9i9j3tEK5JQ8uE,9026
|
|
205
210
|
hestia_earth/models/hestia/irrigatedTypeUnspecified.py,sha256=VdYzfYxcRzWv21qxRkDn9HBid7-Bt_CgIv4iyXJH03g,1929
|
|
206
|
-
hestia_earth/models/hestia/landCover.py,sha256=
|
|
211
|
+
hestia_earth/models/hestia/landCover.py,sha256=9TLHpxjF0ceZYWiOSs96TCoOmIO4Bq0ELepNS9ApquE,39474
|
|
207
212
|
hestia_earth/models/hestia/landTransformation100YearAverageDuringCycle.py,sha256=hF7_DDvrs7swH6ott_ihgYx13UzEKHH6pccYCtzrN8o,1069
|
|
208
213
|
hestia_earth/models/hestia/landTransformation20YearAverageDuringCycle.py,sha256=05SCH6ZjEV3mIleRusBg677zu0xgu5YK0f9FCddgNPg,1067
|
|
209
214
|
hestia_earth/models/hestia/liveAnimal.py,sha256=d7HuUi40c-7TN1kecdRuqbht8PAe7x4ps0NhSuWG34Q,3868
|
|
@@ -240,9 +245,9 @@ hestia_earth/models/hestia/temperatureAnnual.py,sha256=IhMoO-SkSp1JBxgu9bSr1OCtr
|
|
|
240
245
|
hestia_earth/models/hestia/temperatureMonthly.py,sha256=sY4MrjCTm7X3BoDTUC0ZkxD7CWxvl51JW2UxDykCKzg,1842
|
|
241
246
|
hestia_earth/models/hestia/totalNitrogenPerKgSoil.py,sha256=hpyYqMwO9TvZjrpQuSBA3uRFrOk_PPZEo9ev4QeECI4,1956
|
|
242
247
|
hestia_earth/models/hestia/unknownPreSeasonWaterRegime.py,sha256=Ix7Eg4NVW1iKvPKIOqOdSkahn7BlJNtPM8nlrogrfcM,1460
|
|
243
|
-
hestia_earth/models/hestia/utils.py,sha256=
|
|
248
|
+
hestia_earth/models/hestia/utils.py,sha256=CMBo5wR47fyPkIH6k3ihWhFB-XyQfkv7O4CJOm_rJOc,4888
|
|
244
249
|
hestia_earth/models/hestia/waterDepth.py,sha256=gnvd1kwbTCt9HjgxlKzuCGkPi8Sq7nQiHFbk8xBAZV0,1251
|
|
245
|
-
hestia_earth/models/hestia/waterSalinity.py,sha256=
|
|
250
|
+
hestia_earth/models/hestia/waterSalinity.py,sha256=YkiLEljMd4xHT0bKv-nXbgOXcaEQmLDlSwpFrfg49ow,2962
|
|
246
251
|
hestia_earth/models/hestia/feedConversionRatio/__init__.py,sha256=G4T1jfN1OqERsywiWyrBiFneUZs5QXpChz7dgGfg9Ko,2512
|
|
247
252
|
hestia_earth/models/hestia/feedConversionRatio/feedConversionRatioCarbon.py,sha256=21_PXoKXJCxPOPOspKqqq-E7dh-2tVQnR4cnGZ9JGj8,1992
|
|
248
253
|
hestia_earth/models/hestia/feedConversionRatio/feedConversionRatioDryMatter.py,sha256=zf-v-cAPLpSe7sr1auzUUXkjXwpXRTVvsCrzbZrwBI8,2388
|
|
@@ -251,7 +256,7 @@ hestia_earth/models/hestia/feedConversionRatio/feedConversionRatioFedWeight.py,s
|
|
|
251
256
|
hestia_earth/models/hestia/feedConversionRatio/feedConversionRatioNitrogen.py,sha256=RV7lLd4PiFRCkH83-DvuZKnOCA9bXbYOcDHea8Wz4LY,2603
|
|
252
257
|
hestia_earth/models/impact_assessment/__init__.py,sha256=B6UO8z3NR6JjIycyT7adZbnNKcBC49qnF2bOhVcufy4,355
|
|
253
258
|
hestia_earth/models/impact_assessment/allocationMethod.py,sha256=x52IjSmyu8vSyr9_IfMzF00w_DcQyav4WBqnHOdkJHA,1090
|
|
254
|
-
hestia_earth/models/impact_assessment/emissions.py,sha256=
|
|
259
|
+
hestia_earth/models/impact_assessment/emissions.py,sha256=w5Fs6g_ZdGpeDxIVWCErt7wSk3qRZ31vFsdJQMPeE94,3773
|
|
255
260
|
hestia_earth/models/impact_assessment/irrigated.py,sha256=syD3r4wykOHnC9PC-J67QXlWHnJ6K6MjTC2InccWxXI,674
|
|
256
261
|
hestia_earth/models/impact_assessment/organic.py,sha256=FtYco3NwhSJEsMjjK_JDRyxwuSoKH_8y17x-RBl3exM,645
|
|
257
262
|
hestia_earth/models/impact_assessment/post_checks/__init__.py,sha256=rkHO4Z3Zz8LCT1OoDgHmUuGURvXsdzh2nQqgU2M4tjU,304
|
|
@@ -445,7 +450,7 @@ hestia_earth/models/lcImpactCertainEffectsInfinite/damageToTerrestrialEcosystems
|
|
|
445
450
|
hestia_earth/models/lcImpactCertainEffectsInfinite/damageToTerrestrialEcosystemsTerrestrialAcidification.py,sha256=mILJfHIobDE9EkW72Go731EFrfb6umF9Fa3Sy7sAqw0,1222
|
|
446
451
|
hestia_earth/models/lcImpactCertainEffectsInfinite/damageToTerrestrialEcosystemsTerrestrialEcotoxicity.py,sha256=dyUfAD74qEzfIGFei1IcI2RfQXgkjns7AhJ0iYzgCBk,963
|
|
447
452
|
hestia_earth/models/linkedImpactAssessment/__init__.py,sha256=SPP09DMS4zUThyQfcgLpivFwsey4WSt77CDMYHJPKWE,423
|
|
448
|
-
hestia_earth/models/linkedImpactAssessment/emissions.py,sha256=
|
|
453
|
+
hestia_earth/models/linkedImpactAssessment/emissions.py,sha256=5BvqmKVZcZVH6tTf3j73Qbzfgu5qrPGP3qLVNUKU9rk,6547
|
|
449
454
|
hestia_earth/models/linkedImpactAssessment/freshwaterWithdrawalsInputsProduction.py,sha256=OTWVjPikOsZTbzgTzCJBkL6fH4Zbprq5SrV5LSLc4C0,1137
|
|
450
455
|
hestia_earth/models/linkedImpactAssessment/landOccupationInputsProduction.py,sha256=M1_QXTxCdWccXPaO7YjOtBa6WkmiQj3Xs89lYIUrM7w,1141
|
|
451
456
|
hestia_earth/models/linkedImpactAssessment/landTransformation100YearAverageInputsProduction.py,sha256=IqQ76I05IC79g2GXY91iWFqEeXk8Fhw-hcrifCaAbiI,1228
|
|
@@ -454,7 +459,7 @@ hestia_earth/models/linkedImpactAssessment/utils.py,sha256=DM6ZUnw23KH0oMKS3jA5q
|
|
|
454
459
|
hestia_earth/models/mocking/__init__.py,sha256=9VX50c-grz-snfd-7MBS0KfF7AadtbKuj7kK6PqtsgE,687
|
|
455
460
|
hestia_earth/models/mocking/build_mock_search.py,sha256=p15ccEUmkmLp1RiGNznxMz3OFHbI8P1-29ExuohiQN8,1355
|
|
456
461
|
hestia_earth/models/mocking/mock_search.py,sha256=ccFe_WrI73JElFmxp4hPNLCX7eeU--lBC1JFR901KJY,1069
|
|
457
|
-
hestia_earth/models/mocking/search-results.json,sha256=
|
|
462
|
+
hestia_earth/models/mocking/search-results.json,sha256=pRDsDH9bmR8SC3v5C9AaXutnxXdrmx5LqPW4GAEpp1E,162763
|
|
458
463
|
hestia_earth/models/pooreNemecek2018/__init__.py,sha256=nPboL7ULJzL5nJD5q7q9VOZt_fxbKVm8fmn1Az5YkVY,417
|
|
459
464
|
hestia_earth/models/pooreNemecek2018/aboveGroundCropResidueTotal.py,sha256=oXillpppAas1q9GKmODxe1YXyno3EzV-j12xhzkqtTc,2404
|
|
460
465
|
hestia_earth/models/pooreNemecek2018/belowGroundCropResidue.py,sha256=_pQMPSvI--Xm00H6vXDA4ct_pQXKRGrLE2f-2tQE6y4,2323
|
|
@@ -596,12 +601,12 @@ hestia_earth/models/transformation/product/__init__.py,sha256=47DEQpj8HBSa-_TImW
|
|
|
596
601
|
hestia_earth/models/transformation/product/excreta.py,sha256=tggXIoUujzu8O949_3KFog219k_bQ0IcytpCsJ8oMcc,5384
|
|
597
602
|
hestia_earth/models/usetoxV2/__init__.py,sha256=pK37V3H-KvYcvRKw4Mv8CWrB2N0LFLzmv0jKLdhGGqs,409
|
|
598
603
|
hestia_earth/models/usetoxV2/freshwaterEcotoxicityPotentialCtue.py,sha256=pPX8u-Aq6Pg5Y9xw0CS0S2WkAHQpOMl0lL2tLQwwOuU,918
|
|
599
|
-
hestia_earth/models/utils/__init__.py,sha256=
|
|
604
|
+
hestia_earth/models/utils/__init__.py,sha256=W6LxMNLCfcviL6X8XMAExj_Z-E2x84HQw27_uQD5M18,7232
|
|
600
605
|
hestia_earth/models/utils/aggregated.py,sha256=G7FNJfHqJ_eoXB66kGdjLyZGDOI_gsF56o7VnyW3bqA,4801
|
|
601
606
|
hestia_earth/models/utils/animalProduct.py,sha256=M5IunAKGY6oZv3j1Ascl34ywyeLWApqOIlBzbtlA2FE,721
|
|
602
607
|
hestia_earth/models/utils/aquacultureManagement.py,sha256=dxrbC1Xf140cohxTbSw6TxLAnAASWTdNZwBBam4yQnw,171
|
|
603
|
-
hestia_earth/models/utils/background_emissions.py,sha256=
|
|
604
|
-
hestia_earth/models/utils/blank_node.py,sha256
|
|
608
|
+
hestia_earth/models/utils/background_emissions.py,sha256=0AmrKgV_ajVVhj8wwEIOwRfK5CwpYbS03E4eFGOY6h8,6959
|
|
609
|
+
hestia_earth/models/utils/blank_node.py,sha256=-nNzm0Ky34cE9ZEIQzECeZ0hvMC9uW0A76TTDO5Ntjk,55768
|
|
605
610
|
hestia_earth/models/utils/cache_sources.py,sha256=MBkrPpjwNiC4ApDjeYVHZjWBbpvAerXRDrMHpjasAZ0,377
|
|
606
611
|
hestia_earth/models/utils/completeness.py,sha256=iRG4uviOAQQ4T2Nr4LlelPVTS_F1felGZNJYxek_JG8,1239
|
|
607
612
|
hestia_earth/models/utils/constant.py,sha256=DmB3VVuoh7Pz2QDBJqiUG6yAML2i0fOy1BPuPHmhT1w,3442
|
|
@@ -613,16 +618,16 @@ hestia_earth/models/utils/cycle.py,sha256=J8ATBSDkhkEPRMRC0ufO8eC_JeGCpkpdvSz2xS
|
|
|
613
618
|
hestia_earth/models/utils/ecoClimateZone.py,sha256=kJmXtRiq8-vWF7S1rNIA6WpWkPtt8JoNfWgG9azM_ts,4269
|
|
614
619
|
hestia_earth/models/utils/emission.py,sha256=aIQA3mFbGYlnD2DqDx6GY8qd2bzcjUjfvz8wnzmQ6Tc,4227
|
|
615
620
|
hestia_earth/models/utils/excretaManagement.py,sha256=PNZoaf6nvdt1t7B8Apa638rU8T4hI5VW2fy1fAoC64k,2265
|
|
616
|
-
hestia_earth/models/utils/feedipedia.py,sha256=
|
|
621
|
+
hestia_earth/models/utils/feedipedia.py,sha256=ETJx80zf_qGFWASE1u4kmpYncCz-7xSFlQ-vDyHAVVk,4033
|
|
617
622
|
hestia_earth/models/utils/fertiliser.py,sha256=9Kv7czDEPDvZ5Bz6Rr_2vy2MsXrPDvBC3921cEJSks8,810
|
|
618
623
|
hestia_earth/models/utils/fuel.py,sha256=XzOELV3dn506PkMKjFQ_ZKVZInd2lL2x6PKdsa6Po4M,1429
|
|
619
|
-
hestia_earth/models/utils/impact_assessment.py,sha256=
|
|
624
|
+
hestia_earth/models/utils/impact_assessment.py,sha256=1gA7KstClbVEWfO5Uc0zNgxYOrmd2VOaPMeY6ZI83Fk,8432
|
|
620
625
|
hestia_earth/models/utils/indicator.py,sha256=Vb5L2ziXKXiL558M0K5V5ihaDTuvX3BLJP1SCbQ_B5E,1009
|
|
621
626
|
hestia_earth/models/utils/inorganicFertiliser.py,sha256=2Uq6ATWwb_YYRzBCMdrlVWyCDDtWVApUxgxDEN3-3OA,1782
|
|
622
627
|
hestia_earth/models/utils/input.py,sha256=61aaJV6QApJQIQT5TMsBww46cBYpJdf__krnwV95KsY,6160
|
|
623
628
|
hestia_earth/models/utils/landCover.py,sha256=8-nfynzCx9gf9YfhpuoH6Cn4kQwWFpYA5RmoGW-0ETE,300
|
|
624
629
|
hestia_earth/models/utils/liveAnimal.py,sha256=-ufUs00ALXRKGbrRJi7a7eTWVvkEj_pxLDWYbMJmx2g,1770
|
|
625
|
-
hestia_earth/models/utils/lookup.py,sha256=
|
|
630
|
+
hestia_earth/models/utils/lookup.py,sha256=USNU2wMokNhollPezuNsyqMq7zs6d6RFoe86cTEA-iI,7767
|
|
626
631
|
hestia_earth/models/utils/management.py,sha256=urvoHvTw5wrO12POjGQ50Or25X1Y4Gx26l4fDoVt-Ck,376
|
|
627
632
|
hestia_earth/models/utils/measurement.py,sha256=1Da0CzWu_RDzVEqcBIl_EGsRq7PmafICyBva3-QtjVQ,11744
|
|
628
633
|
hestia_earth/models/utils/method.py,sha256=ZYN2_Fyeiwr9pmvD84ZPg7ZHBlvaIY2A6XL4F_KByS0,740
|
|
@@ -641,7 +646,7 @@ hestia_earth/models/utils/transformation.py,sha256=nyT5Mz4_VgFwhkL8JoNX9kxxow0zu
|
|
|
641
646
|
hestia_earth/models/webbEtAl2012AndSintermannEtAl2012/__init__.py,sha256=Niv7ZFMBCwThlbCKGOwA17QdkpOUDFrqrFItGNqnZAA,434
|
|
642
647
|
hestia_earth/models/webbEtAl2012AndSintermannEtAl2012/nh3ToAirOrganicFertiliser.py,sha256=TGXyusrRd9shT842iqbrI6MkQhICgw7uYdrl4jsDrg8,4193
|
|
643
648
|
hestia_earth/orchestrator/__init__.py,sha256=ntPWzdomHMdKejrnUlVPCUrLw0P2C9UIt3jRJD_Gwn4,1402
|
|
644
|
-
hestia_earth/orchestrator/log.py,sha256=
|
|
649
|
+
hestia_earth/orchestrator/log.py,sha256=C45LGnZ_3I2SHqX75JFnkK1yYmfh5mkDLF4GcZRxXo4,2440
|
|
645
650
|
hestia_earth/orchestrator/utils.py,sha256=LAMUTyIQ-90TR6CUljWPbCNBsAMeukOhW4zoPy7LzuU,4111
|
|
646
651
|
hestia_earth/orchestrator/models/__init__.py,sha256=TCQjmMiAOvayPwqvIwzx7gEvyiUlUc69gMECkoHUNE8,4534
|
|
647
652
|
hestia_earth/orchestrator/models/transformations.py,sha256=zJwfVXabudLXhdyz0Hsk4IV_2OjgMtaYEZbD9kuZtLk,4128
|
|
@@ -660,9 +665,7 @@ hestia_earth/orchestrator/strategies/run/always.py,sha256=D0In6_kr28s-fgqspawgvj
|
|
|
660
665
|
tests/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
661
666
|
tests/models/test_cache_nodes.py,sha256=lSSoBGFVXpNv_TePSetls6QbnhfLC7dNLmfiFqT6WuY,1043
|
|
662
667
|
tests/models/test_cache_sites.py,sha256=eZkbgAhfA-67GhPgE4lk8byHnYvX2Ate1KPsE6jH1-c,2954
|
|
663
|
-
tests/models/test_config.py,sha256=
|
|
664
|
-
tests/models/test_ecoinventV3.py,sha256=SvBn1ZomoturZhjj4BE2EU46Sq0il-tOJIqutmGadWs,2023
|
|
665
|
-
tests/models/test_ecoinventV3AndEmberClimate.py,sha256=_7sX0s07Xr00uNcVk78L1AdSqI1OpUV3tkkG1hVSY2w,803
|
|
668
|
+
tests/models/test_config.py,sha256=wMzRHRtu_H61haAQpT-UtN6nxOQw-JAFrAf-jiIWkiQ,4578
|
|
666
669
|
tests/models/test_emissionNotRelevant.py,sha256=TsIV47lpn7joLGx-LlPVqWbshcLf2c6pUvB3FZwLvwY,1023
|
|
667
670
|
tests/models/test_resourceUseNotRelevant.py,sha256=z1zY3pJdffongIsBJaLB7WToBrMiE4wYuHSsAbGEJ7w,983
|
|
668
671
|
tests/models/test_utils.py,sha256=Caa9sCyz25egPrSlu7FQhjXD2vNcQW9gea_ppUYOsEs,186
|
|
@@ -678,6 +681,8 @@ tests/models/akagiEtAl2011/test_so2ToAirCropResidueBurning.py,sha256=kWoTSIMoGIp
|
|
|
678
681
|
tests/models/akagiEtAl2011/test_utils.py,sha256=bB-YcpJNcsGX1W6vaPao4_PeLS3Hx78ZCrHCJdqbajk,600
|
|
679
682
|
tests/models/aware/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
680
683
|
tests/models/aware/test_scarcityWeightedWaterUse.py,sha256=Tl888UE-v5xQCInOXxn291Tkx3Qyz_bKkd5inVwlDNc,2003
|
|
684
|
+
tests/models/aware2_0/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
685
|
+
tests/models/aware2_0/test_scarcityWeightedWaterUse.py,sha256=rg4Qi9gt11NI9LA-8Ne2fuq1pe6o-Xtll_ybEw_OGGI,2067
|
|
681
686
|
tests/models/chaudharyBrooks2018/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
682
687
|
tests/models/chaudharyBrooks2018/test_damageToTerrestrialEcosystemsLandOccupation.py,sha256=zHIig6bQWb9XxAjcS-jRXQZxRfG5DwpTLNk9lCD_KMw,1908
|
|
683
688
|
tests/models/chaudharyBrooks2018/test_damageToTerrestrialEcosystemsLandTransformation.py,sha256=lcyMTaNMbIjzZrbPxejujfYyAEj2XOH5Ei9pmAQAi7k,1912
|
|
@@ -752,7 +757,10 @@ tests/models/deRuijterEtAl2010/test_nh3ToAirCropResidueDecomposition.py,sha256=k
|
|
|
752
757
|
tests/models/ecoalimV9/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
753
758
|
tests/models/ecoalimV9/test_cycle.py,sha256=BWaZhVSt9zNFnju12m809Nxa2edj5OkWxSUn6FT7V7U,653
|
|
754
759
|
tests/models/ecoalimV9/test_impact_assessment.py,sha256=5h9jx7wSPah_FvRDyT-NEejRKlXc5ZmtVucHfkxVMQ8,862
|
|
755
|
-
tests/models/
|
|
760
|
+
tests/models/ecoinventV3/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
761
|
+
tests/models/ecoinventV3/test_cycle.py,sha256=jOX-1Xmp8rFzGammioA3zPwPq-w5CS3GeEJ5vUoX0JU,2030
|
|
762
|
+
tests/models/ecoinventV3AndEmberClimate/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
763
|
+
tests/models/ecoinventV3AndEmberClimate/test_cycle.py,sha256=sHCrAGyJ6GCOjlElFpH4NiSQPVn_v7932ovIGS0ORkQ,875
|
|
756
764
|
tests/models/edip2003/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
757
765
|
tests/models/edip2003/test_ozoneDepletionPotential.py,sha256=z0kimdTxzSr8_K5eScbkxq2SB9nbBp41IHqVNR4Nh4Y,688
|
|
758
766
|
tests/models/emepEea2019/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -767,7 +775,7 @@ tests/models/emepEea2019/test_so2ToAirFuelCombustion.py,sha256=RkC_ux5bxo6bIdcXI
|
|
|
767
775
|
tests/models/emepEea2019/test_tspToAirAnimalHousing.py,sha256=4MNDsxIeUk5_3IvZwEZslxgoPNyQN9OQFDNY3uGNX6E,714
|
|
768
776
|
tests/models/emepEea2019/test_utils.py,sha256=MUIeHgcCHLhbYWgleKIiKqO2Q4RX321J53YpOt9cogA,7060
|
|
769
777
|
tests/models/environmentalFootprintV3_1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
770
|
-
tests/models/environmentalFootprintV3_1/test_environmentalFootprintSingleOverallScore.py,sha256=
|
|
778
|
+
tests/models/environmentalFootprintV3_1/test_environmentalFootprintSingleOverallScore.py,sha256=F-asu8FDzxTN4RWXwSm1zxTrLu2VijgQCcNZHDpArv4,5853
|
|
771
779
|
tests/models/environmentalFootprintV3_1/test_freshwaterEcotoxicityPotentialCtue.py,sha256=WE-DcerljCjXMYE4f3Sv5ZCVHP0oTjbWkOGuvaa4p10,926
|
|
772
780
|
tests/models/environmentalFootprintV3_1/test_marineEutrophicationPotential.py,sha256=kY_pu_7SjSZl_l41mttMn4BpKl13TTV9jQYSHFMNXhI,968
|
|
773
781
|
tests/models/environmentalFootprintV3_1/test_photochemicalOzoneCreationPotentialHumanHealthNmvocEq.py,sha256=Z4KGhYmnao0J1rC_jY9P_8Lu9UKe-_RyrdO5k56EIsg,1022
|
|
@@ -790,7 +798,7 @@ tests/models/faostat2018/test_utils.py,sha256=G4pOEwcM5k6FRbkE_4x6_G8vQxzDexNZnl
|
|
|
790
798
|
tests/models/faostat2018/product/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
791
799
|
tests/models/faostat2018/product/test_price.py,sha256=zehnEQjwggit9su5jd5q3TTlyNxcswbxJCNaKaw1ZI0,3903
|
|
792
800
|
tests/models/frischknechtEtAl2000/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
793
|
-
tests/models/frischknechtEtAl2000/test_ionisingRadiationKbqU235Eq.py,sha256=
|
|
801
|
+
tests/models/frischknechtEtAl2000/test_ionisingRadiationKbqU235Eq.py,sha256=sy_nP0EYoaZuz_UBdgybivpYX8yZmUny6vQKXN5WQAw,4697
|
|
794
802
|
tests/models/geospatialDatabase/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
795
803
|
tests/models/geospatialDatabase/test_awareWaterBasinId.py,sha256=f9y70Yz5C3wX7mmc1KwC50gk_PWoD1iEZPRMGMbqPtc,869
|
|
796
804
|
tests/models/geospatialDatabase/test_clayContent.py,sha256=GqFAPIOkXfDpJFkI-vK6l3hK0Ap36lLCWGhXCly-DME,1797
|
|
@@ -850,7 +858,7 @@ tests/models/hestia/test_freshWater.py,sha256=v2UD69csKrniKP3MXkOEHxQeE6O3-lvIVi
|
|
|
850
858
|
tests/models/hestia/test_histosol.py,sha256=7g-3wQPZok2O8mExcnKZxO_T2Ye_h3UHv3HG3Kn8orM,888
|
|
851
859
|
tests/models/hestia/test_inorganicFertiliser.py,sha256=v2Zs1Ig-ChOaq9gXuurcBt12izkH2bRUUuzW6rh3rqQ,643
|
|
852
860
|
tests/models/hestia/test_irrigatedTypeUnspecified.py,sha256=bluZADFagxfXW4QyI0CIJzG97D2V33w333Z9Vwjqo0M,2015
|
|
853
|
-
tests/models/hestia/test_landCover.py,sha256=
|
|
861
|
+
tests/models/hestia/test_landCover.py,sha256=ekZsv-l8xMXJu384sO2UE8TbU0bUXvW3r5KMcuKwJDs,10216
|
|
854
862
|
tests/models/hestia/test_landTransformation100YearAverageDuringCycle.py,sha256=3qa4rWUFqP1VM5-vm_182rhiBYJDxPqJwWtBqJ5K028,956
|
|
855
863
|
tests/models/hestia/test_landTransformation20YearAverageDuringCycle.py,sha256=bUByojQuVeuCfko1_2YtNJi1PT9yktHlcbPi_p-MPvk,1001
|
|
856
864
|
tests/models/hestia/test_liveAnimal.py,sha256=3K9cL1fwr6LlBl1_D8zIaeCOuiExqkDEU7BXx1JK_dk,2139
|
|
@@ -1190,7 +1198,7 @@ tests/models/site/post_checks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5N
|
|
|
1190
1198
|
tests/models/site/post_checks/test_cache.py,sha256=g34PQgfyzYveRT-gVKJl0euyBp-Kav8JnBVk-bod1WA,191
|
|
1191
1199
|
tests/models/site/post_checks/test_country.py,sha256=LENeyFF5V440H06l-gYxl9fozBmOsp1W1nAu9kBu80o,239
|
|
1192
1200
|
tests/models/site/pre_checks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1193
|
-
tests/models/site/pre_checks/test_cache_geospatialDatabase.py,sha256=
|
|
1201
|
+
tests/models/site/pre_checks/test_cache_geospatialDatabase.py,sha256=YMBowk5qBKPzvZfRUmABfCU1BhGVeIvv4Xo782Crqec,658
|
|
1194
1202
|
tests/models/site/pre_checks/test_cache_years.py,sha256=sU0OhXGa4wC2DKduzlcxQVc51srS0Oks3L1gh1nJGf8,756
|
|
1195
1203
|
tests/models/site/pre_checks/test_country.py,sha256=f96w3K1kxt-2_D39P7ekhdAyytXOeZR-blQvXL5hTlo,439
|
|
1196
1204
|
tests/models/stehfestBouwman2006/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -1221,6 +1229,7 @@ tests/models/usetoxV2/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3h
|
|
|
1221
1229
|
tests/models/usetoxV2/test_freshwaterEcotoxicityPotentialCtue.py,sha256=eq7Gcmfya9g0eOKKkuBhz8vq7xi_CmZ_LTSxueBwZt4,835
|
|
1222
1230
|
tests/models/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1223
1231
|
tests/models/utils/test_array_builders.py,sha256=_ZxbKVReS9U2s6PhnXRqSKCsa9j-2Bxl8p_Fr7KHMBk,8418
|
|
1232
|
+
tests/models/utils/test_background_emissions.py,sha256=0C7sl0UWIN9V_gcjB7HM6alMO72T4vj80Xf8uJ2xeOI,465
|
|
1224
1233
|
tests/models/utils/test_blank_node.py,sha256=F5pCV-5bKxqsrubjN1W-PACltBljF7z84_7lFBcDFJs,32871
|
|
1225
1234
|
tests/models/utils/test_cache_sources.py,sha256=xcGMVbYoV23YC4HLBTL_4qZP1ME2cp3DFebgJMxI2TE,721
|
|
1226
1235
|
tests/models/utils/test_crop.py,sha256=d508vQdtB_Q_6hEahNueXed5PaEiLeN7ScbwZIKCiDI,862
|
|
@@ -1263,8 +1272,8 @@ tests/orchestrator/strategies/run/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeR
|
|
|
1263
1272
|
tests/orchestrator/strategies/run/test_add_blank_node_if_missing.py,sha256=K4xg4UAXfNhSaLyknKVPO7MGBF44Z_gD7CuZ_pe28gU,3512
|
|
1264
1273
|
tests/orchestrator/strategies/run/test_add_key_if_missing.py,sha256=hKwvk1ohcBVnQUCTiDhRW99J0xEa29BpwFi1KC0yWLE,329
|
|
1265
1274
|
tests/orchestrator/strategies/run/test_always.py,sha256=w5-Dhp6yLzgZGAeMRz3OrqZbbAed9gZ1O266a3z9k7w,134
|
|
1266
|
-
hestia_earth_models-0.
|
|
1267
|
-
hestia_earth_models-0.
|
|
1268
|
-
hestia_earth_models-0.
|
|
1269
|
-
hestia_earth_models-0.
|
|
1270
|
-
hestia_earth_models-0.
|
|
1275
|
+
hestia_earth_models-0.74.0.dist-info/LICENSE,sha256=TD25LoiRJsA5CPUNrcyt1PXlGcbUGFMAeZoBcfCrCNE,1154
|
|
1276
|
+
hestia_earth_models-0.74.0.dist-info/METADATA,sha256=xYHvi1dvF2aIr7WVyYCoZSJTjjzlAGt36kx_-PAUQ0U,4075
|
|
1277
|
+
hestia_earth_models-0.74.0.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
|
1278
|
+
hestia_earth_models-0.74.0.dist-info/top_level.txt,sha256=1dqA9TqpOLTEgpqa-YBsmbCmmNU1y56AtfFGEceZ2A0,19
|
|
1279
|
+
hestia_earth_models-0.74.0.dist-info/RECORD,,
|
|
File without changes
|