hestia-earth-utils 0.15.8__py3-none-any.whl → 0.15.10__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.
@@ -5,6 +5,7 @@ from .lookup import download_lookup, lookup_term_ids
5
5
  from .lookup_utils import (
6
6
  is_in_system_boundary,
7
7
  is_siteType_allowed,
8
+ is_site_measurement_id_allowed,
8
9
  is_product_termType_allowed,
9
10
  is_product_id_allowed,
10
11
  is_input_termType_allowed,
@@ -30,6 +31,7 @@ def cycle_emission_is_in_system_boundary(cycle: dict):
30
31
  def filter_term(term_id: str):
31
32
  return is_in_system_boundary(term_id) and all(map(lambda check: check(cycle, term_id), [
32
33
  is_siteType_allowed,
34
+ is_site_measurement_id_allowed,
33
35
  is_product_termType_allowed,
34
36
  is_product_id_allowed,
35
37
  is_input_termType_allowed,
@@ -30,6 +30,11 @@ def _get_site_types(node: dict):
30
30
  return non_empty_list([site.get('siteType') for site in sites])
31
31
 
32
32
 
33
+ def _get_site_measurements(node: dict):
34
+ sites = [node] if _is_site(node) else _get_sites(node)
35
+ return non_empty_list([site.get('measurements', []) for site in sites])
36
+
37
+
33
38
  @lru_cache()
34
39
  def _allowed_model_mapping(model: str, term_id: str, column: str):
35
40
  mapping = _allowed_mapping_data()
@@ -76,6 +81,16 @@ def is_siteType_allowed(data: dict, term_id: str):
76
81
  ])
77
82
 
78
83
 
84
+ def is_site_measurement_id_allowed(data: dict, term_id: str):
85
+ measurements = _get_site_measurements(data)
86
+ values = non_empty_list([v.get('term', {}).get('@id') for v in measurements])
87
+ allowed_values = _allowed_mapping(term_id, 'siteMeasurementIdsAllowed')
88
+ return True if any([
89
+ _ALLOW_ALL in allowed_values,
90
+ len(values) == 0
91
+ ]) else any([value in allowed_values for value in values])
92
+
93
+
79
94
  def is_product_termType_allowed(data: dict, term_id: str):
80
95
  products = data.get('products', [])
81
96
  values = non_empty_list([p.get('term', {}).get('termType') for p in products])
@@ -3,7 +3,12 @@ import numpy as np
3
3
 
4
4
 
5
5
  EXCLUDE_FIELDS = ["@type", "type", "@context"]
6
- EXCLUDE_PRIVATE_FIELDS = ["added", "addedVersion", "updated", "updatedVersion", "_cache"]
6
+ EXCLUDE_PRIVATE_FIELDS = [
7
+ "added", "addedVersion",
8
+ "updated", "updatedVersion",
9
+ "aggregatedVersion",
10
+ "_cache"
11
+ ]
7
12
 
8
13
 
9
14
  def _with_csv_formatting(dct):
@@ -38,10 +38,15 @@ def _combine_node_ids(nodes: list):
38
38
  return {"@id": ";".join([node.get("@id", node.get("id")) for node in nodes])}
39
39
 
40
40
 
41
- def _base_pivoted_value(value):
41
+ def _base_pivoted_value(key: str, value, is_top_level: bool):
42
42
  # handle list of Nodes
43
43
  return (
44
- _combine_node_ids(value) if isinstance(value[0], dict) and value[0].get('@type') in NODE_TYPES else value
44
+ _combine_node_ids(value) if isinstance(value[0], dict) and value[0].get('@type') in NODE_TYPES else
45
+ json.dumps(value, separators=(',', ':')) if any([
46
+ is_top_level,
47
+ key in ['distribution']
48
+ ]) else
49
+ value
45
50
  ) if isinstance(value, list) else value
46
51
 
47
52
 
@@ -51,11 +56,12 @@ def _do_pivot(node, parent_node_type=None, parent_field=None, level=0): # noqa:
51
56
  if node_type not in ADAPTED_UNIQUENESS_FIELDS:
52
57
  return node
53
58
  pivoted_node = {
54
- field: _base_pivoted_value(value)
59
+ field: _base_pivoted_value(field, value, level==0)
55
60
  for field, value in node.items()
56
61
  if all([
57
62
  field not in ADAPTED_UNIQUENESS_FIELDS[node_type],
58
- node_type != 'Term' or field not in term_exclude_fields
63
+ node_type != 'Term' or field not in term_exclude_fields,
64
+ field not in EXCLUDE_PRIVATE_FIELDS
59
65
  ])
60
66
  }
61
67
 
@@ -1 +1 @@
1
- VERSION = '0.15.8'
1
+ VERSION = '0.15.10'
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: hestia-earth-utils
3
- Version: 0.15.8
3
+ Version: 0.15.10
4
4
  Summary: HESTIA's utils library
5
5
  Home-page: https://gitlab.com/hestia-earth/hestia-utils
6
6
  Author: HESTIA Team
@@ -6,9 +6,9 @@ hestia_earth/utils/calculation_status.py,sha256=X7lbgVMD9luH1gj9lEcxd3_P2-u7e8ZP
6
6
  hestia_earth/utils/cycle.py,sha256=rFLRL9X4KQ1UrE6fEPA_gV8KmwzrZpR3Ce56zg41lRk,1326
7
7
  hestia_earth/utils/date.py,sha256=SPQ69uxHiv1o3BqIkBKkM5XX_CmS20CB7g6u2rhsdh8,1807
8
8
  hestia_earth/utils/descriptive_stats.py,sha256=EMVwFvg2OnZgKRAfireAoWY2EbrSvqR0V0bK9B53p28,1583
9
- hestia_earth/utils/emission.py,sha256=crHAJOQRI0NRHht0fFOFjEqcarsFqzbV4pDgk90dfME,1595
9
+ hestia_earth/utils/emission.py,sha256=Dk99fpfGhVH3Azebqt7KAldWzVkEtsW5Yr1Ggfse8ho,1675
10
10
  hestia_earth/utils/lookup.py,sha256=0RLqy3HPzkbhkRaO7fYoHU0jKhAYzI6QHMptMEbqTlg,10344
11
- hestia_earth/utils/lookup_utils.py,sha256=9pkJUKo3NEBspoN9yRPoDCzkxcbpnbLpC7Z0I6HiP7I,5369
11
+ hestia_earth/utils/lookup_utils.py,sha256=cJO4pRPuipK-MmErO_nPUqlmfrB2yaTFKMS4MkAftGM,5967
12
12
  hestia_earth/utils/model.py,sha256=uUcrF07XmBzqLni8VSaP0HoebJnQ57kk0EOmhwYMbfI,4637
13
13
  hestia_earth/utils/pipeline.py,sha256=O-6DPtK0U1lJ51LFGa1gM6pjkBJUfxOjNjY8LxQPXV0,9588
14
14
  hestia_earth/utils/request.py,sha256=bu7hkWKmFdXl2_Feawiam_x32whlclA9oP0asJyC69k,626
@@ -16,22 +16,22 @@ hestia_earth/utils/stats.py,sha256=4t3op10xDJbGxWJEY1Jtyl302PYWyMFwLpsSkMlzQn8,3
16
16
  hestia_earth/utils/table.py,sha256=RrTt-KF_QzjKiCpaAueoG6La1FG-Iusxw5NMDpoRBpQ,2861
17
17
  hestia_earth/utils/term.py,sha256=6LiUSc6KX3IOkfWF6fYkQ2tENCO8ENljcdDypxU6WtA,1060
18
18
  hestia_earth/utils/tools.py,sha256=eCppZ0gFR6RPF7TEraMLwLJnUCJb93xP0iEzFPcYpK0,4685
19
- hestia_earth/utils/version.py,sha256=5hi4E88hS3MsyLqNGhaIdxzoN1dAL-AFFGZ8QV5HmWw,19
19
+ hestia_earth/utils/version.py,sha256=Lrldi9va_hx6kgVd3UHcQ0Mjuvie0YSsw0nw7uMZldk,20
20
20
  hestia_earth/utils/pivot/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
21
- hestia_earth/utils/pivot/_shared.py,sha256=sRE_PGe9u0-sFnCb0mdeM7vPOkFWt3-kDs8WSGQTQGk,875
21
+ hestia_earth/utils/pivot/_shared.py,sha256=MB9074xkgKO9D_B6tWM-pdOlpjP_9itWpAHAzkA_1to,914
22
22
  hestia_earth/utils/pivot/pivot_csv.py,sha256=Ed-sCKEqVIFJu71AncS7zlMkHbw5V15QLd5c5B_uxiE,12296
23
- hestia_earth/utils/pivot/pivot_json.py,sha256=Rm4_mNaEgx-Jmq8sGIq_-jYMtZO78YXGxwdz1_y886I,9497
23
+ hestia_earth/utils/pivot/pivot_json.py,sha256=Ld0SmUa-2aJ2pHOyicLujBP8KpBT_FnYNcy6FDbjLBY,9737
24
24
  hestia_earth/utils/storage/__init__.py,sha256=uNX6_EHWWnNUIm4Ng7L43-cQmuc6NGFAxXye85saIXQ,922
25
25
  hestia_earth/utils/storage/_azure_client.py,sha256=sevCZni04eknMql2DgUsWG23f7u0KvsXP7me1ZUBy00,1274
26
26
  hestia_earth/utils/storage/_local_client.py,sha256=IbzziUKY0QS3ybHFfgEpELqvafa7hQnZ-DdGdjQuypE,515
27
27
  hestia_earth/utils/storage/_s3_client.py,sha256=aWt4i_vObcTDWcwyzOOnBBnMv1rxPZV3AJZQMn96Hok,2975
28
28
  hestia_earth/utils/storage/_sns_client.py,sha256=LowUatj78Egu6_Id6Rr7hZjfZx1WguS3lozB3yAwSps,347
29
- hestia_earth_utils-0.15.8.data/scripts/hestia-format-upload,sha256=IhLAHHPJqRgUcht-M_EUEsRMbRbMfshig07o488zscM,703
30
- hestia_earth_utils-0.15.8.data/scripts/hestia-pivot-csv,sha256=0YBuGuyPO8rytod6iwWEKiQdSlr9JLuD001k6U5t6no,1163
29
+ hestia_earth_utils-0.15.10.data/scripts/hestia-format-upload,sha256=IhLAHHPJqRgUcht-M_EUEsRMbRbMfshig07o488zscM,703
30
+ hestia_earth_utils-0.15.10.data/scripts/hestia-pivot-csv,sha256=0YBuGuyPO8rytod6iwWEKiQdSlr9JLuD001k6U5t6no,1163
31
31
  tests/pivot/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
32
32
  tests/pivot/test_pivot_csv.py,sha256=aYni7o3QDPSgtVxVCspEetotgpYHY7Lz5VHf-DR89gw,8131
33
33
  tests/pivot/test_pivot_json.py,sha256=UYTAN4AZhzVicIYsU1A2VgJcctUXohjHppg6s-pqwcg,8287
34
- hestia_earth_utils-0.15.8.dist-info/METADATA,sha256=Gs1yR4BSYz4ytA17VCFUOg8ZUJVAb0vmgC39LHIpo9g,1757
35
- hestia_earth_utils-0.15.8.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
36
- hestia_earth_utils-0.15.8.dist-info/top_level.txt,sha256=1dqA9TqpOLTEgpqa-YBsmbCmmNU1y56AtfFGEceZ2A0,19
37
- hestia_earth_utils-0.15.8.dist-info/RECORD,,
34
+ hestia_earth_utils-0.15.10.dist-info/METADATA,sha256=y43_AOXPLSv8hoMf0UoZ-yXgHEi40ALUPSG874eFWIo,1758
35
+ hestia_earth_utils-0.15.10.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
36
+ hestia_earth_utils-0.15.10.dist-info/top_level.txt,sha256=1dqA9TqpOLTEgpqa-YBsmbCmmNU1y56AtfFGEceZ2A0,19
37
+ hestia_earth_utils-0.15.10.dist-info/RECORD,,