diff --git a/data/Makefile b/data/Makefile index 533dd8a6b..28da0561d 100644 --- a/data/Makefile +++ b/data/Makefile @@ -17,7 +17,7 @@ endef all: import export import : image import_food import_ecoinvent import_method sync_datapackages -export: export_food format +export: export_food export_textile format image: docker build -t $(NAME) docker @@ -43,8 +43,14 @@ delete_method: export_food: @$(call DOCKER,bash -c "python3 food/export.py") +export_textile: + @$(call DOCKER,bash -c "python3 textile/export.py") + compare_food: - @$(call DOCKER,python3 export.py compare) + @$(call DOCKER,bash -c "python3 food/export.py compare") + +compare_textile: + @$(call DOCKER,bash -c "python3 textile/export.py compare") format: npm run fix:all diff --git a/data/common/__init__.py b/data/common/__init__.py index 792d60054..2410106ba 100644 --- a/data/common/__init__.py +++ b/data/common/__init__.py @@ -1 +1,213 @@ -# +# Please only pure functions here + +from copy import deepcopy + +from frozendict import frozendict + + +def normalization_factors(impact_defs): + normalization_factors = {} + for k, v in impact_defs.items(): + if v.get("ecoscore"): + normalization_factors[k] = ( + v["ecoscore"]["weighting"] / v["ecoscore"]["normalization"] + ) + else: + normalization_factors[k] = 0 + return normalization_factors + + +def spproject(activity): + """return the current simapro project for an activity""" + match activity.get("database"): + case "Ginko": + return "Ginko w/o azadirachtin" + case "Ecobalyse": + # return a non existing project to force looking at brightway + return "EcobalyseIsNotASimaProProject" + case "Ecoinvent 3.9.1": + return "ADEME UPR" + case _: + return "AGB3.1.1 2023-03-06" + + +def remove_detailed_impacts(processes): + result = list() + for process in processes: + new_process = deepcopy(process) + for k in new_process["impacts"].keys(): + if k not in ("pef", "ecs"): + new_process["impacts"][k] = 0 + result.append(new_process) + return result + + +def order_json(data): + """ + Export data to a JSON file, with added newline at the end. + Make sure to sort impacts in the json file + """ + if isinstance(data, list): + sorted_data = [ + ( + {**item, "impacts": sort_impacts(item["impacts"])} + if "impacts" in item + else item + ) + for item in data + ] + elif isinstance(data, dict): + sorted_data = { + key: ( + {**value, "impacts": sort_impacts(value["impacts"])} + if "impacts" in value + else value + ) + for key, value in data.items() + } + else: + sorted_data = data + return sorted_data + + +def sort_impacts(impacts): + # Define the desired order of impact keys + impact_order = [ + "acd", + "cch", + "etf", + "etf-c", + "fru", + "fwe", + "htc", + "htc-c", + "htn", + "htn-c", + "ior", + "ldu", + "mru", + "ozd", + "pco", + "pma", + "swe", + "tre", + "wtu", + "ecs", + "pef", + ] + return {key: impacts[key] for key in impact_order if key in impacts} + + +def with_subimpacts(impacts): + """compute subimpacts""" + if not impacts: + return impacts + # etf-o = etf-o1 + etf-o2 + impacts["etf-o"] = impacts["etf-o1"] + impacts["etf-o2"] + del impacts["etf-o1"] + del impacts["etf-o2"] + # etf = etf1 + etf2 + impacts["etf"] = impacts["etf1"] + impacts["etf2"] + del impacts["etf1"] + del impacts["etf2"] + return impacts + + +def with_corrected_impacts(impact_defs, frozen_processes, impacts="impacts"): + """Add corrected impacts to the processes""" + corrections = { + k: v["correction"] for (k, v) in impact_defs.items() if "correction" in v + } + processes = dict(frozen_processes) + processes_updated = {} + for key, process in processes.items(): + # compute corrected impacts + for impact_to_correct, correction in corrections.items(): + # only correct if the impact is not already computed + dimpacts = process.get(impacts, {}) + if impact_to_correct not in dimpacts: + corrected_impact = 0 + for ( + correction_item + ) in correction: # For each sub-impact and its weighting + sub_impact_name = correction_item["sub-impact"] + if sub_impact_name in dimpacts: + sub_impact = dimpacts.get(sub_impact_name, 1) + corrected_impact += sub_impact * correction_item["weighting"] + del dimpacts[sub_impact_name] + dimpacts[impact_to_correct] = corrected_impact + processes_updated[key] = process + return frozendict(processes_updated) + + +def calculate_aggregate(process_impacts, normalization_factors): + # We multiply by 10**6 to get the result in µPts + return sum( + 10**6 * process_impacts.get(impact, 0) * normalization_factors.get(impact, 0) + for impact in normalization_factors + ) + + +def bytrigram(definitions, bynames): + """takes the impact definitions and some impacts by name, return the impacts by trigram""" + trigramsByName = {method[1]: trigram for trigram, method in definitions.items()} + return { + trigramsByName.get(name): amount["amount"] + for name, amount in bynames.items() + if trigramsByName.get(name) + } + + +def with_aggregated_impacts(impact_defs, frozen_processes, impacts="impacts"): + """Add aggregated impacts to the processes""" + + # Pre-compute normalization factors + normalization_factors = { + "ecs": { + k: v["ecoscore"]["weighting"] / v["ecoscore"]["normalization"] + for k, v in impact_defs.items() + if v["ecoscore"] is not None + }, + "pef": { + k: v["pef"]["weighting"] / v["pef"]["normalization"] + for k, v in impact_defs.items() + if v["pef"] is not None + }, + } + + processes_updated = {} + for key, process in frozen_processes.items(): + updated_process = dict(process) + updated_impacts = updated_process[impacts].copy() + + updated_impacts["pef"] = calculate_aggregate( + updated_impacts, normalization_factors["pef"] + ) + updated_impacts["ecs"] = calculate_aggregate( + updated_impacts, normalization_factors["ecs"] + ) + + updated_process[impacts] = updated_impacts + processes_updated[key] = updated_process + + return frozendict(processes_updated) + + +def fix_unit(unit): + match unit: + case "cubic meter": + return "m³" + case "kilogram": + return "kg" + case "kilometer": + return "km" + case "kilowatt hour": + return "kWh" + case "litre": + return "L" + case "megajoule": + return "MJ" + case "ton kilometer": + return "t⋅km" + case _: + return unit diff --git a/data/common/export.py b/data/common/export.py index 51e39ad85..0e3b4e359 100644 --- a/data/common/export.py +++ b/data/common/export.py @@ -1,201 +1,62 @@ -# Only pure functions here import functools import json import logging -from copy import deepcopy +import urllib.parse +from os.path import dirname +import bw2calc import bw2data +import matplotlib.pyplot +import numpy +import pandas as pd +import requests from bw2io.utils import activity_hash from frozendict import frozendict -logging.basicConfig(level=logging.ERROR) - - -def spproject(activity): - """return the current simapro project for an activity""" - match activity.get("database"): - case "Ginko": - return "Ginko w/o azadirachtin" - case "Ecobalyse": - # return a non existing project to force looking at brightway - return "EcobalyseIsNotASimaProProject" - case _: - return "AGB3.1.1 2023-03-06" +from . import ( + bytrigram, + normalization_factors, + spproject, + with_corrected_impacts, + with_subimpacts, +) +from .impacts import main_method +logging.basicConfig(level=logging.ERROR) -def remove_detailed_impacts(processes): - result = list() - for process in processes: - new_process = deepcopy(process) - for k in new_process["impacts"].keys(): - if k not in ("pef", "ecs"): - new_process["impacts"][k] = 0 - result.append(new_process) - return result +PROJECT_ROOT_DIR = dirname(dirname(dirname(__file__))) +COMPARED_IMPACTS_FILE = "compared_impacts.csv" +with open(f"{PROJECT_ROOT_DIR}/public/data/impacts.json") as f: + IMPACTS_JSON = json.load(f) -def export_json_ordered(data, filename): - """ - Export data to a JSON file, with added newline at the end. - Make sure to sort impacts in the json file - """ - print(f"Exporting {filename}") - if isinstance(data, list): - sorted_data = [ - {**item, "impacts": sort_impacts(item["impacts"])} - if "impacts" in item - else item - for item in data - ] - elif isinstance(data, dict): - sorted_data = { - key: {**value, "impacts": sort_impacts(value["impacts"])} - if "impacts" in value - else value - for key, value in data.items() - } - else: - sorted_data = data - - with open(filename, "w", encoding="utf-8") as file: - json.dump(sorted_data, file, indent=2, ensure_ascii=False) - file.write("\n") # Add a newline at the end of the file - print(f"\nExported {len(data)} elements to {filename}") - - -def sort_impacts(impacts): - # Define the desired order of impact keys - impact_order = [ - "acd", - "cch", - "etf", - "etf-c", - "fru", - "fwe", - "htc", - "htc-c", - "htn", - "htn-c", - "ior", - "ldu", - "mru", - "ozd", - "pco", - "pma", - "swe", - "tre", - "wtu", - "pef", - "ecs", - ] - return {key: impacts[key] for key in impact_order if key in impacts} - -def load_json(filename): - """ - Load JSON data from a file. - """ - with open(filename, "r") as file: - return json.load(file) +def check_ids(ingredients): + # Check the id is lowercase and does not contain space + for ingredient in ingredients: + if ( + ingredient["id"].lower() != ingredient["id"] + or ingredient["id"].replace(" ", "") != ingredient["id"] + ): + raise ValueError( + f"This identifier is not lowercase or contains spaces: {ingredient['id']}" + ) def progress_bar(index, total): print(f"Export in progress: {str(index)}/{total}", end="\r") -def with_subimpacts(impacts): - """compute subimpacts""" - if not impacts: - return impacts - # etf-o = etf-o1 + etf-o2 - impacts["etf-o"] = impacts["etf-o1"] + impacts["etf-o2"] - del impacts["etf-o1"] - del impacts["etf-o2"] - # etf = etf1 + etf2 - impacts["etf"] = impacts["etf1"] + impacts["etf2"] - del impacts["etf1"] - del impacts["etf2"] - return impacts - - -@functools.cache -def cached_search(dbname, name, excluded_term=None): - return search(dbname, name, excluded_term) - - def search(dbname, name, excluded_term=None): results = bw2data.Database(dbname).search(name) if excluded_term: results = [res for res in results if excluded_term not in res["name"]] - assert len(results) >= 1, f"'{name}' was not found in Brightway" + if not results: + print(f"Not found in brightway : '{name}'") + return None return results[0] -def with_corrected_impacts(impacts_ecobalyse, processes_fd, impacts_key="impacts"): - """Add corrected impacts to the processes""" - corrections = { - k: v["correction"] for (k, v) in impacts_ecobalyse.items() if "correction" in v - } - processes = dict(processes_fd) - processes_updated = {} - for key, process in processes.items(): - # compute corrected impacts - for impact_to_correct, correction in corrections.items(): - corrected_impact = 0 - for correction_item in correction: # For each sub-impact and its weighting - sub_impact_name = correction_item["sub-impact"] - if sub_impact_name in process[impacts_key]: - sub_impact = process[impacts_key].get(sub_impact_name, 1) - corrected_impact += sub_impact * correction_item["weighting"] - del process[impacts_key][sub_impact_name] - process[impacts_key][impact_to_correct] = corrected_impact - processes_updated[key] = process - return frozendict(processes_updated) - - -def with_aggregated_impacts(impacts_ecobalyse, processes_fd, impacts_key="impacts"): - """Add aggregated impacts to the processes""" - - # Pre-compute normalization factors - normalization_factors = { - "ecs": { - k: v["ecoscore"]["weighting"] / v["ecoscore"]["normalization"] - for k, v in impacts_ecobalyse.items() - if v["ecoscore"] is not None - }, - "pef": { - k: v["pef"]["weighting"] / v["pef"]["normalization"] - for k, v in impacts_ecobalyse.items() - if v["pef"] is not None - }, - } - - processes_updated = {} - for key, process in processes_fd.items(): - updated_process = dict(process) - updated_impacts = updated_process[impacts_key].copy() - - updated_impacts["pef"] = calculate_aggregate( - updated_impacts, normalization_factors["pef"] - ) - updated_impacts["ecs"] = calculate_aggregate( - updated_impacts, normalization_factors["ecs"] - ) - - updated_process[impacts_key] = updated_impacts - processes_updated[key] = updated_process - - return frozendict(processes_updated) - - -def calculate_aggregate(process_impacts, normalization_factors): - # We multiply by 10**6 to get the result in µPts - return sum( - 10**6 * process_impacts.get(impact, 0) * normalization_factors.get(impact, 0) - for impact in normalization_factors - ) - - def display_changes(key, oldprocesses, processes): """Display a nice sorted table of impact changes to review key is the field to display (id for food, uuid for textile)""" @@ -319,3 +180,222 @@ def new_exchange(activity, new_activity, new_amount=None, activity_to_copy_from= ) new_exchange.save() logging.info(f"Exchange {new_activity} added with amount: {new_amount}") + + +def compute_impacts(frozen_processes, default_db, impacts_py): + """Add impacts to processes dictionary + + Args: + frozen_processes (frozendict): dictionary of processes of which we want to compute the impacts + Returns: + dictionary of processes with impacts. Example : + + {"sunflower-oil-organic": { + "id": "sunflower-oil-organic", + name": "...", + "impacts": { + "acd": 3.14, + ... + "ecs": 34.3, + }, + "unit": ... + }, + "tomato":{ + ... + } + """ + processes = dict(frozen_processes) + print("Computing impacts:") + for index, (_, process) in enumerate(processes.items()): + progress_bar(index, len(processes)) + # Don't compute impacts if its a hardcoded activity + if process["impacts"]: + print(f"This process has hardcoded impacts: {process['displayName']}") + continue + # simapro + activity = cached_search(process.get("source", default_db), process["search"]) + if not activity: + raise Exception(f"This process was not found in brightway: {process}") + + results = compute_simapro_impacts(activity, main_method, impacts_py) + # WARNING assume remote is in m3 or MJ (couldn't find unit from COM intf) + if process["unit"] == "kWh" and isinstance(results, dict): + results = {k: v * 3.6 for k, v in results.items()} + if process["unit"] == "L" and isinstance(results, dict): + results = {k: v / 1000 for k, v in results.items()} + + process["impacts"] = results + + if isinstance(results, dict) and results: + # simapro succeeded + process["impacts"] = results + print(f"got impacts from simapro for: {process['name']}") + else: + # simapro failed (unexisting Ecobalyse project or some other reason) + # brightway + process["impacts"] = compute_brightway_impacts( + activity, main_method, impacts_py + ) + print(f"got impacts from brightway for: {process['name']}") + + # compute subimpacts + process["impacts"] = with_subimpacts(process["impacts"]) + + # remove unneeded attributes + for attribute in ["search"]: + if attribute in process: + del process[attribute] + + return frozendict({k: frozendict(v) for k, v in processes.items()}) + + +def compare_impacts(frozen_processes, default_db, impacts_py, impacts_json): + """This is compute_impacts slightly modified to store impacts from both bw and sp""" + processes = dict(frozen_processes) + print("Computing impacts:") + for index, (key, process) in enumerate(processes.items()): + progress_bar(index, len(processes)) + # simapro + activity = cached_search( + process.get("source", default_db), + process.get("search", process["name"]), + ) + if not activity: + print(f"{process['name']} does not exist in brightway") + continue + results = compute_simapro_impacts(activity, main_method, impacts_py) + print(f"got impacts from SimaPro for: {process['name']}") + + # WARNING assume remote is in m3 or MJ (couldn't find unit from COM intf) + if process["unit"] == "kWh" and isinstance(results, dict): + results = {k: v * 3.6 for k, v in results.items()} + if process["unit"] == "L" and isinstance(results, dict): + results = {k: v / 1000 for k, v in results.items()} + + process["simapro_impacts"] = results + + # brightway + process["brightway_impacts"] = compute_brightway_impacts( + activity, main_method, impacts_py + ) + print(f"got impacts from Brightway for: {process['name']}") + + # compute subimpacts + process["simapro_impacts"] = with_subimpacts(process["simapro_impacts"]) + process["brightway_impacts"] = with_subimpacts(process["brightway_impacts"]) + + processes_corrected_simapro = with_corrected_impacts( + impacts_json, processes, "simapro_impacts" + ) + processes_corrected_smp_bw = with_corrected_impacts( + impacts_json, processes_corrected_simapro, "brightway_impacts" + ) + + return frozendict({k: frozendict(v) for k, v in processes_corrected_smp_bw.items()}) + + +def plot_impacts(process_name, impacts_smp, impacts_bw, folder, impacts_py): + trigrams = [ + t + for t in impacts_py.keys() + if t in impacts_smp.keys() and t in impacts_bw.keys() + ] + nf = normalization_factors(impacts_py) + + simapro_values = [impacts_smp[label] * nf[label] for label in trigrams] + brightway_values = [impacts_bw[label] * nf[label] for label in trigrams] + + x = numpy.arange(len(trigrams)) + width = 0.35 + + fig, ax = matplotlib.pyplot.subplots(figsize=(12, 8)) + + ax.bar(x - width / 2, simapro_values, width, label="SimaPro") + ax.bar(x + width / 2, brightway_values, width, label="Brightway") + + ax.set_xlabel("Impact Categories") + ax.set_ylabel("Impact Values") + ax.set_title(f"Environmental Impacts for {process_name}") + ax.set_xticks(x) + ax.set_xticklabels(trigrams, rotation=90) + ax.legend() + + matplotlib.pyplot.tight_layout() + matplotlib.pyplot.savefig(f'{folder}/{process_name.replace("/", "_")}.png') + matplotlib.pyplot.close() + + +def csv_export_impact_comparison(compared_impacts, folder): + rows = [] + for product_id, process in compared_impacts.items(): + simapro_impacts = process.get("simapro_impacts", {}) + brightway_impacts = process.get("brightway_impacts", {}) + for impact in simapro_impacts: + row = { + "id": product_id, + "name": process["name"], + "impact": impact, + "simapro": simapro_impacts.get(impact), + "brightway": brightway_impacts.get(impact), + } + row["diff_abs"] = abs(row["simapro"] - row["brightway"]) + row["diff_rel"] = ( + row["diff_abs"] / abs(row["simapro"]) if row["simapro"] != 0 else None + ) + + rows.append(row) + + df = pd.DataFrame(rows) + df.to_csv(f"{PROJECT_ROOT_DIR}/data/{folder}/{COMPARED_IMPACTS_FILE}", index=False) + + +def export_json(json_data, filename): + print(f"Exporting {filename}") + with open(filename, "w", encoding="utf-8") as file: + json.dump(json_data, file, indent=2, ensure_ascii=False) + file.write("\n") # Add a newline at the end of the file + print(f"\nExported {len(json_data)} elements to {filename}") + + +def load_json(filename): + """ + Load JSON data from a file. + """ + with open(filename, "r") as file: + return json.load(file) + + +@functools.cache +def cached_search(dbname, name, excluded_term=None): + return search(dbname, name, excluded_term) + + +def find_id(dbname, activity): + return cached_search(dbname, activity["search"]).get( + "Process identifier", activity["id"] + ) + + +def compute_simapro_impacts(activity, method, impacts_py): + strprocess = urllib.parse.quote(activity["name"], encoding=None, errors=None) + project = urllib.parse.quote(spproject(activity), encoding=None, errors=None) + method = urllib.parse.quote(main_method, encoding=None, errors=None) + return bytrigram( + impacts_py, + json.loads( + requests.get( + f"http://simapro.ecobalyse.fr:8000/impact?process={strprocess}&project={project}&method={method}" + ).content + ), + ) + + +def compute_brightway_impacts(activity, method, impacts_py): + results = dict() + lca = bw2calc.LCA({activity: 1}) + lca.lci() + for key, method in impacts_py.items(): + lca.switch_method(method) + lca.lcia() + results[key] = float("{:.10g}".format(lca.score)) + return results diff --git a/data/common/impacts.py b/data/common/impacts.py index 891723191..434b5e1ca 100644 --- a/data/common/impacts.py +++ b/data/common/impacts.py @@ -85,16 +85,3 @@ "Human toxicity, non-cancer - inorganics", ), } - - -def bytrigram(definitions, bynames): - """takes the definitions above and some impacts by name, return the impacts by trigram""" - trigramsByName = {method[1]: trigram for trigram, method in definitions.items()} - try: - return { - trigramsByName.get(name): amount["amount"] - for name, amount in bynames.items() - if trigramsByName.get(name) - } - except Exception as e: - return str(e) diff --git a/data/docker/simapro-biosphere.json b/data/docker/simapro-biosphere.json index f48dae067..197e7d9c7 100644 --- a/data/docker/simapro-biosphere.json +++ b/data/docker/simapro-biosphere.json @@ -1,25 +1,49 @@ [ + ["water", "Vanadium", "Vanadium V"], + ["air", "Vanadium", "Vanadium V"], + ["soil", "Vanadium", "Vanadium V"], ["water", "Vanadium (V)", "Vanadium V"], ["air", "Vanadium (V)", "Vanadium V"], ["soil", "Vanadium (V)", "Vanadium V"], + ["water", "Molybdenum", "Molybdenum VI"], + ["air", "Molybdenum", "Molybdenum VI"], + ["soil", "Molybdenum", "Molybdenum VI"], ["water", "Molybdenum (VI)", "Molybdenum VI"], ["air", "Molybdenum (VI)", "Molybdenum VI"], ["soil", "Molybdenum (VI)", "Molybdenum VI"], + ["water", "Zinc", "Zinc II"], + ["air", "Zinc", "Zinc II"], + ["soil", "Zinc", "Zinc II"], ["water", "Zinc (II)", "Zinc II"], ["air", "Zinc (II)", "Zinc II"], ["soil", "Zinc (II)", "Zinc II"], + ["water", "Tin", "Tin ion"], + ["air", "Tin", "Tin ion"], + ["soil", "Tin", "Tin ion"], ["water", "Tin (II)", "Tin ion"], ["air", "Tin (II)", "Tin ion"], ["soil", "Tin (II)", "Tin ion"], + ["water", "Thallium", "Thallium I"], + ["air", "Thallium", "Thallium I"], + ["soil", "Thallium", "Thallium I"], ["water", "Thallium (I)", "Thallium I"], ["air", "Thallium (I)", "Thallium I"], ["soil", "Thallium (I)", "Thallium I"], + ["water", "Silver", "Silver I"], + ["air", "Silver", "Silver I"], + ["soil", "Silver", "Silver I"], ["water", "Silver (I)", "Silver I"], ["air", "Silver (I)", "Silver I"], ["soil", "Silver (I)", "Silver I"], + ["water", "Selenium", "Selenium IV"], + ["air", "Selenium", "Selenium IV"], + ["soil", "Selenium", "Selenium IV"], ["water", "Selenium (IV)", "Selenium IV"], ["air", "Selenium (IV)", "Selenium IV"], ["soil", "Selenium (IV)", "Selenium IV"], + ["water", "Manganese", "Manganese II"], + ["air", "Manganese", "Manganese II"], + ["soil", "Manganese", "Manganese II"], ["water", "Manganese (II)", "Manganese II"], ["air", "Manganese (II)", "Manganese II"], ["soil", "Manganese (II)", "Manganese II"], @@ -41,30 +65,54 @@ ["water", "Cobalt (II)", "Cobalt II"], ["air", "Cobalt (II)", "Cobalt II"], ["soil", "Cobalt (II)", "Cobalt II"], + ["water", "Cesium", "Cesium I"], + ["air", "Cesium", "Cesium I"], + ["soil", "Cesium", "Cesium I"], ["water", "Cesium (I)", "Cesium I"], ["air", "Cesium (I)", "Cesium I"], ["soil", "Cesium (I)", "Cesium I"], + ["water", "Beryllium", "Beryllium III"], + ["air", "Beryllium", "Beryllium III"], + ["soil", "Beryllium", "Beryllium III"], ["water", "Beryllium (III)", "Beryllium III"], ["air", "Beryllium (III)", "Beryllium III"], ["soil", "Beryllium (III)", "Beryllium III"], + ["water", "Arsenic", "Arsenic ion"], + ["air", "Arsenic", "Arsenic ion"], + ["soil", "Arsenic", "Arsenic ion"], ["water", "Arsenic (III)", "Arsenic ion"], ["air", "Arsenic (III)", "Arsenic ion"], ["soil", "Arsenic (III)", "Arsenic ion"], + ["water", "Antimony", "Antimony ion"], + ["air", "Antimony", "Antimony ion"], + ["soil", "Antimony", "Antimony ion"], ["water", "Antimony (III)", "Antimony ion"], ["air", "Antimony (III)", "Antimony ion"], ["soil", "Antimony (III)", "Antimony ion"], ["water", "Aluminium (III)", "Aluminium III"], ["air", "Aluminium (III)", "Aluminium III"], ["soil", "Aluminium (III)", "Aluminium III"], + ["water", "Cadmium", "Cadmium II"], + ["air", "Cadmium", "Cadmium II"], + ["soil", "Cadmium", "Cadmium II"], ["water", "Cadmium (II)", "Cadmium II"], ["air", "Cadmium (II)", "Cadmium II"], ["soil", "Cadmium (II)", "Cadmium II"], + ["water", "Lead", "Lead II"], + ["air", "Lead", "Lead II"], + ["soil", "Lead", "Lead II"], ["water", "Lead (II)", "Lead II"], ["air", "Lead (II)", "Lead II"], ["soil", "Lead (II)", "Lead II"], + ["water", "Mercury", "Mercury II"], + ["air", "Mercury", "Mercury II"], + ["soil", "Mercury", "Mercury II"], ["water", "Mercury (II)", "Mercury II"], ["air", "Mercury (II)", "Mercury II"], ["soil", "Mercury (II)", "Mercury II"], + ["water", "Nickel", "Nickel II"], + ["air", "Nickel", "Nickel II"], + ["soil", "Nickel", "Nickel II"], ["water", "Nickel (II)", "Nickel II"], ["air", "Nickel (II)", "Nickel II"], ["soil", "Nickel (II)", "Nickel II"], @@ -80,7 +128,18 @@ ["air", "Particulates, < 2.5 um", "Particulate Matter, < 2.5 um"], ["air", "Particulates, > 2.5 um and < 10um", "Particulate Matter, > 2.5 um and < 10um"], ["air", "Particulates, > 10 um", "Particulate Matter, > 10 um"], + ["water", "Strontium", "Strontium II"], + ["air", "Strontium", "Strontium II"], + ["soil", "Strontium", "Strontium II"], + ["water", "Strontium (II)", "Strontium II"], + ["air", "Strontium (II)", "Strontium II"], + ["soil", "Strontium (II)", "Strontium II"], + ["water", "Barium", "Barium II"], + ["air", "Barium", "Barium II"], + ["soil", "Barium", "Barium II"], + ["water", "Barium (II)", "Barium II"], ["air", "Barium (II)", "Barium II"], + ["soil", "Barium (II)", "Barium II"], ["air", "1-Butanol", "Butanol"], ["air", "1-Propanol", "Propanol"], ["air", "2-Butene, 2-methyl-", "2-Methyl-2-butene"], @@ -796,11 +855,13 @@ ["water", "Carbon", "Elemental carbon"], ["water", "Chromium", "Chromium, ion"], ["water", "Copper", "Copper, ion"], + ["soil", "Copper", "Copper, ion"], ["water", "Ethane, chloro-", "Monochloroethane"], ["water", "Ethanol, 2-ethoxy-", "Ethylene glycol monoethyl ether"], ["water", "Formic acid, thallium(1+) salt", "Formate"], ["water", "Hydrogen chloride", "Hydrochloric acid"], ["water", "Iron", "Iron, ion"], + ["soil", "Iron", "Iron, ion"], ["water", "Lithium", "Lithium, ion"], ["water", "Methylamine", "Methyl amine"], ["water", "Naphthalene", "Naphtalene"], @@ -816,5 +877,10 @@ ["water", "Titanium", "Titanium, ion"], ["water", "Toluene, 2-chloro-", "Toluene, 2-chloro"], ["water", "Vanadium", "Vanadium, ion"], - ["water", "Zinc", "Zinc, ion"] + ["water", "Zinc", "Zinc, ion"], + [ + "air", + "NMVOC, non-methane volatile organic compounds, unspecified origin", + "NMVOC, non-methane volatile organic compounds" + ] ] diff --git a/data/food/export.py b/data/food/export.py index 3b65ff108..0ba68b669 100644 --- a/data/food/export.py +++ b/data/food/export.py @@ -1,37 +1,36 @@ #!/usr/bin/env python -"""Export des ingrédients et des processes de l'alimentaire""" +"""Ingredients and processes export for food""" -import json import os import sys -from os.path import abspath, dirname - -sys.path.append(dirname(dirname(abspath(__file__)))) -import urllib.parse -from collections import OrderedDict +from os.path import dirname import bw2calc import bw2data -import matplotlib -import numpy -import pandas as pd -import requests from bw2data.project import projects +from common import ( + fix_unit, + order_json, + remove_detailed_impacts, + with_aggregated_impacts, + with_corrected_impacts, +) from common.export import ( + IMPACTS_JSON, cached_search, + check_ids, + compare_impacts, + compute_impacts, + csv_export_impact_comparison, display_changes, - export_json_ordered, + export_json, + find_id, load_json, + plot_impacts, progress_bar, - remove_detailed_impacts, - spproject, - with_aggregated_impacts, - with_corrected_impacts, - with_subimpacts, ) -from common.impacts import bytrigram, main_method -from common.impacts import impacts as definitions +from common.impacts import impacts as impacts_py from frozendict import frozendict from food.ecosystemic_services.ecosystemic_services import ( @@ -50,65 +49,39 @@ sys.exit(1) # Configuration -CONFIG = { - "PROJECT": "default", - "AGRIBALYSE": "Agribalyse 3.1.1", - "BIOSPHERE": "Agribalyse 3.1.1 biosphere", - "ACTIVITIES_FILE": f"{PROJECT_ROOT_DIR}/data/food/activities.json", - "COMPARED_IMPACTS_FILE": f"{PROJECT_ROOT_DIR}/data/food/compared_impacts.csv", - "IMPACTS_FILE": f"{PROJECT_ROOT_DIR}/public/data/impacts.json", - "ECOSYSTEMIC_FACTORS_FILE": f"{PROJECT_ROOT_DIR}/data/food/ecosystemic_services/ecosystemic_factors.csv", - "FEED_FILE": f"{PROJECT_ROOT_DIR}/data/food/ecosystemic_services/feed.json", - "UGB_FILE": f"{PROJECT_ROOT_DIR}/data/food/ecosystemic_services/ugb.csv", - "INGREDIENTS_FILE": f"{PROJECT_ROOT_DIR}/public/data/food/ingredients.json", - "PROCESSES_IMPACTS": f"{ECOBALYSE_DATA_DIR}/data/food/processes_impacts.json", - "PROCESSES_AGGREGATED": f"{PROJECT_ROOT_DIR}/public/data/food/processes.json", - "LAND_OCCUPATION_METHOD": ("selected LCI results", "resource", "land occupation"), - "GRAPH_FOLDER": f"{PROJECT_ROOT_DIR}/data/food/impact_comparison", -} -with open(CONFIG["IMPACTS_FILE"]) as f: - IMPACTS_DEF_ECOBALYSE = json.load(f) - - -def find_id(dbname, activity): - return cached_search(dbname, activity["search"]).get( - "Process identifier", activity["id"] - ) +PROJECT = "default" +DEFAULT_DB = "Agribalyse 3.1.1" +ACTIVITIES_FILE = f"{PROJECT_ROOT_DIR}/data/food/activities.json" +ECOSYSTEMIC_FACTORS_FILE = ( + f"{PROJECT_ROOT_DIR}/data/food/ecosystemic_services/ecosystemic_factors.csv" +) +FEED_FILE = f"{PROJECT_ROOT_DIR}/data/food/ecosystemic_services/feed.json" +UGB_FILE = f"{PROJECT_ROOT_DIR}/data/food/ecosystemic_services/ugb.csv" +INGREDIENTS_FILE = f"{PROJECT_ROOT_DIR}/public/data/food/ingredients.json" +PROCESSES_IMPACTS = f"{ECOBALYSE_DATA_DIR}/data/food/processes_impacts.json" +PROCESSES_AGGREGATED = f"{PROJECT_ROOT_DIR}/public/data/food/processes.json" +LAND_OCCUPATION_METHOD = ("selected LCI results", "resource", "land occupation") +GRAPH_FOLDER = f"{PROJECT_ROOT_DIR}/data/food/impact_comparison" def create_ingredient_list(activities_tuple): print("Creating ingredient list...") - activities = list(activities_tuple) return tuple( [ - process_activity_for_ingredient(activity) - for activity in activities - if "ingredient" in activity["process_categories"] + to_ingredient(activity) + for activity in list(activities_tuple) + if "ingredient" in activity.get("process_categories", []) ] ) -def compute_normalization_factors(): - normalization_factors = {} - for k, v in IMPACTS_DEF_ECOBALYSE.items(): - if v["ecoscore"]: - normalization_factors[k] = ( - v["ecoscore"]["weighting"] / v["ecoscore"]["normalization"] - ) - else: - normalization_factors[k] = 0 - return normalization_factors - - -def process_activity_for_ingredient(activity): +def to_ingredient(activity): return { "id": activity["id"], "name": activity["name"], - "categories": [ - c for c in activity["ingredient_categories"] if c != "ingredient" - ], + "categories": activity.get("ingredient_categories", []), "search": activity["search"], - "default": find_id(activity.get("database", CONFIG["AGRIBALYSE"]), activity), + "default": find_id(activity.get("database", DEFAULT_DB), activity), "default_origin": activity["default_origin"], "raw_to_cooked_ratio": activity["raw_to_cooked_ratio"], "density": activity["density"], @@ -137,312 +110,130 @@ def compute_land_occupation(activities_tuple): lca = bw2calc.LCA( { cached_search( - activity.get("database", CONFIG["AGRIBALYSE"]), + activity.get("database", DEFAULT_DB), activity["search"], ): 1 } ) lca.lci() - lca.switch_method(CONFIG["LAND_OCCUPATION_METHOD"]) + lca.switch_method(LAND_OCCUPATION_METHOD) lca.lcia() activity["land_occupation"] = float("{:.10g}".format(lca.score)) updated_activities.append(frozendict(activity)) return tuple(updated_activities) -def check_ids(ingredients): - # Check the id is lowercase and does not contain space - for ingredient in ingredients: - if ( - ingredient["id"].lower() != ingredient["id"] - or ingredient["id"].replace(" ", "") != ingredient["id"] - ): - raise ValueError( - f"This identifier is not lowercase or contains spaces: {ingredient['id']}" - ) - - def create_process_list(activities): print("Creating process list...") - return frozendict( - { - activity["id"]: process_activity_for_processes(activity) - for activity in activities - } - ) + return frozendict({activity["id"]: to_process(activity) for activity in activities}) -def process_activity_for_processes(activity): - AGRIBALYSE = CONFIG["AGRIBALYSE"] - return OrderedDict( - { - "id": activity["id"], - "name": cached_search( - activity.get("database", AGRIBALYSE), activity["search"] - )["name"], - "displayName": activity["name"], - "unit": cached_search( - activity.get("database", AGRIBALYSE), activity["search"] - )["unit"], - "identifier": find_id(activity.get("database", AGRIBALYSE), activity), - "system_description": cached_search( - activity.get("database", AGRIBALYSE), activity["search"] - )["System description"], - "categories": activity.get("process_categories"), - "comment": ( - prod[0]["comment"] - if ( - prod := list( - cached_search( - activity.get("database", AGRIBALYSE), activity["search"] - ).production() - ) +def to_process(activity): + return { + "categories": activity.get("process_categories"), + "comment": ( + prod[0]["comment"] + if ( + prod := list( + cached_search( + activity.get("database", DEFAULT_DB), activity["search"] + ).production() ) - else activity.get("comment", "") - ), - "source": activity.get("database", AGRIBALYSE), - # those are removed at the end: - "search": activity["search"], - } - ) - - -def compute_simapro_impacts(activity, method): - strprocess = urllib.parse.quote(activity["name"], encoding=None, errors=None) - project = urllib.parse.quote(spproject(activity), encoding=None, errors=None) - method = urllib.parse.quote(main_method, encoding=None, errors=None) - return bytrigram( - definitions, - json.loads( - requests.get( - f"http://simapro.ecobalyse.fr:8000/impact?process={strprocess}&project={project}&method={method}" - ).content + ) + else activity.get("comment", "") ), - ) - - -def compute_brightway_impacts(activity, method): - results = dict() - lca = bw2calc.LCA({activity: 1}) - lca.lci() - for key, method in definitions.items(): - lca.switch_method(method) - lca.lcia() - results[key] = float("{:.10g}".format(lca.score)) - return results - - -def compare_impacts(processes_fd): - """This is compute_impacts slightly modified to store impacts from both bw and wp""" - processes = dict(processes_fd) - print("Computing impacts:") - for index, (key, process) in enumerate(processes.items()): - progress_bar(index, len(processes)) - # simapro - activity = cached_search( - process.get("source", CONFIG["AGRIBALYSE"]), process["search"] - ) - results = compute_simapro_impacts(activity, main_method) - print(f"got impacts from SimaPro for: {process['name']}") - # WARNING assume remote is in m3 or MJ (couldn't find unit from COM intf) - if process["unit"] == "kilowatt hour" and isinstance(results, dict): - results = {k: v * 3.6 for k, v in results.items()} - if process["unit"] == "litre" and isinstance(results, dict): - results = {k: v / 1000 for k, v in results.items()} - - process["simapro_impacts"] = results - - # brightway - process["brightway_impacts"] = compute_brightway_impacts(activity, main_method) - print(f"got impacts from Brightway for: {process['name']}") - - # compute subimpacts - process["simapro_impacts"] = with_subimpacts(process["simapro_impacts"]) - process["brightway_impacts"] = with_subimpacts(process["brightway_impacts"]) - - processes_corrected_simapro = with_corrected_impacts( - IMPACTS_DEF_ECOBALYSE, processes, "simapro_impacts" - ) - processes_corrected_smp_bw = with_corrected_impacts( - IMPACTS_DEF_ECOBALYSE, processes_corrected_simapro, "brightway_impacts" - ) - - return frozendict({k: frozendict(v) for k, v in processes_corrected_smp_bw.items()}) - - -def compute_impacts(processes_fd): - """Add impacts to processes dictionary - - Args: - processes_fd (frozendict): dictionary of processes of which we want to compute the impacts - Returns: - dictionary of processes with impacts. Example : - - {"sunflower-oil-organic": { - "id": "sunflower-oil-organic", - name": "...", - "impacts": { - "acd": 3.14, - ... - "ecs": 34.3, - }, - "unit": ... - }, - "tomato":{ - ... + "displayName": activity["name"], + "id": activity["id"], + "identifier": find_id(activity.get("database", DEFAULT_DB), activity), + "impacts": {}, + "name": cached_search(activity.get("database", DEFAULT_DB), activity["search"])[ + "name" + ], + "source": activity.get("database", DEFAULT_DB), + "system_description": cached_search( + activity.get("database", DEFAULT_DB), activity["search"] + )["System description"], + "unit": fix_unit( + cached_search(activity.get("database", DEFAULT_DB), activity["search"])[ + "unit" + ] + ), + # those are removed at the end: + "search": activity["search"], } - """ - processes = dict(processes_fd) - print("Computing impacts:") - for index, (_, process) in enumerate(processes.items()): - progress_bar(index, len(processes)) - # simapro - activity = cached_search( - process.get("source", CONFIG["AGRIBALYSE"]), process["search"] - ) - results = compute_simapro_impacts(activity, main_method) - # WARNING assume remote is in m3 or MJ (couldn't find unit from COM intf) - if process["unit"] == "kilowatt hour" and isinstance(results, dict): - results = {k: v * 3.6 for k, v in results.items()} - if process["unit"] == "litre" and isinstance(results, dict): - results = {k: v / 1000 for k, v in results.items()} - - process["impacts"] = results - - if isinstance(results, dict) and results: - # simapro succeeded - process["impacts"] = results - print(f"got impacts from simapro for: {process['name']}") - else: - # simapro failed (unexisting Ecobalyse project or some other reason) - # brightway - process["impacts"] = compute_brightway_impacts(activity, main_method) - print(f"got impacts from brightway for: {process['name']}") - - # compute subimpacts - process["impacts"] = with_subimpacts(process["impacts"]) - - # remove unneeded attributes - for attribute in ["search"]: - if attribute in process: - del process[attribute] - - return frozendict({k: frozendict(v) for k, v in processes.items()}) - - -def plot_impacts(ingredient_name, impacts_smp, impacts_bw): - impact_labels = impacts_smp.keys() - normalization_factors = compute_normalization_factors() - - simapro_values = [ - impacts_smp[label] * normalization_factors[label] for label in impact_labels - ] - brightway_values = [ - impacts_bw[label] * normalization_factors[label] for label in impact_labels - ] - - x = numpy.arange(len(impact_labels)) - width = 0.35 - - fig, ax = matplotlib.pyplot.subplots(figsize=(12, 8)) - - ax.bar(x - width / 2, simapro_values, width, label="SimaPro") - ax.bar(x + width / 2, brightway_values, width, label="Brightway") - - ax.set_xlabel("Impact Categories") - ax.set_ylabel("Impact Values") - ax.set_title(f"Environmental Impacts for {ingredient_name}") - ax.set_xticks(x) - ax.set_xticklabels(impact_labels, rotation=90) - ax.legend() - - matplotlib.pyplot.tight_layout() - matplotlib.pyplot.savefig(f"{CONFIG['GRAPH_FOLDER']}/{ingredient_name}.png") - matplotlib.pyplot.close() - - -def csv_export_impact_comparison(compared_impacts): - rows = [] - for product_id, process in compared_impacts.items(): - simapro_impacts = process.get("simapro_impacts", {}) - brightway_impacts = process.get("brightway_impacts", {}) - for impact in simapro_impacts: - row = { - "id": product_id, - "name": process["name"], - "impact": impact, - "simapro": simapro_impacts.get(impact), - "brightway": brightway_impacts.get(impact), - } - row["diff_abs"] = abs(row["simapro"] - row["brightway"]) - row["diff_rel"] = ( - row["diff_abs"] / abs(row["simapro"]) if row["simapro"] != 0 else None - ) - - rows.append(row) - - df = pd.DataFrame(rows) - df.to_csv(CONFIG["COMPARED_IMPACTS_FILE"], index=False) if __name__ == "__main__": - projects.set_current(CONFIG["PROJECT"]) - bw2data.config.p["biosphere_database"] = CONFIG["BIOSPHERE"] + projects.set_current(PROJECT) + bw2data.config.p["biosphere_database"] = "biosphere3" # keep the previous processes with old impacts - oldprocesses = load_json(CONFIG["PROCESSES_IMPACTS"]) - activities = tuple(load_json(CONFIG["ACTIVITIES_FILE"])) + oldprocesses = load_json(PROCESSES_IMPACTS) + activities = tuple(load_json(ACTIVITIES_FILE)) activities_land_occ = compute_land_occupation(activities) ingredients = create_ingredient_list(activities_land_occ) + check_ids(ingredients) + + processes = create_process_list(activities_land_occ) - ecosystemic_factors = load_ecosystemic_dic(CONFIG["ECOSYSTEMIC_FACTORS_FILE"]) + # ecosystemic factors + ecosystemic_factors = load_ecosystemic_dic(ECOSYSTEMIC_FACTORS_FILE) ingredients_veg_es = compute_vegetal_ecosystemic_services( ingredients, ecosystemic_factors ) - feed_file = load_json(CONFIG["FEED_FILE"]) - ugb = load_ugb_dic(CONFIG["UGB_FILE"]) + feed_file = load_json(FEED_FILE) + ugb = load_ugb_dic(UGB_FILE) ingredients_animal_es = compute_animal_ecosystemic_services( ingredients_veg_es, activities_land_occ, ecosystemic_factors, feed_file, ugb ) - check_ids(ingredients_animal_es) - processes = create_process_list(activities_land_occ) - if len(sys.argv) == 1: # just export.py - processes_impacts = compute_impacts(processes) + processes_impacts = compute_impacts(processes, DEFAULT_DB, impacts_py) elif len(sys.argv) > 1 and sys.argv[1] == "compare": # export.py compare - impacts_compared_dic = compare_impacts(processes) - csv_export_impact_comparison(impacts_compared_dic) - for ingredient_name, values in impacts_compared_dic.items(): - print(f"Plotting {ingredient_name}") + impacts_compared_dic = compare_impacts( + processes, DEFAULT_DB, impacts_py, IMPACTS_JSON + ) + csv_export_impact_comparison(impacts_compared_dic, "food") + for process_name, values in impacts_compared_dic.items(): + name = processes[process_name]["name"] + print(f"Plotting {name}") simapro_impacts = values["simapro_impacts"] brightway_impacts = values["brightway_impacts"] - os.makedirs(CONFIG["GRAPH_FOLDER"], exist_ok=True) - plot_impacts(ingredient_name, simapro_impacts, brightway_impacts) - print("Charts have been generated and saved as PNG files.") + os.makedirs(GRAPH_FOLDER, exist_ok=True) + plot_impacts( + name, + simapro_impacts, + brightway_impacts, + GRAPH_FOLDER, + IMPACTS_JSON, + ) + print("Charts have been generated and saved as PNG files.") sys.exit(0) else: print("Wrong argument: either no args or 'compare'") sys.exit(1) processes_corrected_impacts = with_corrected_impacts( - IMPACTS_DEF_ECOBALYSE, processes_impacts + IMPACTS_JSON, processes_impacts ) processes_aggregated_impacts = with_aggregated_impacts( - IMPACTS_DEF_ECOBALYSE, processes_corrected_impacts + IMPACTS_JSON, processes_corrected_impacts ) # Export - export_json_ordered(activities_land_occ, CONFIG["ACTIVITIES_FILE"]) - export_json_ordered(ingredients_animal_es, CONFIG["INGREDIENTS_FILE"]) + export_json(order_json(activities_land_occ), ACTIVITIES_FILE) + export_json(order_json(ingredients_animal_es), INGREDIENTS_FILE) display_changes("id", oldprocesses, processes_corrected_impacts) - export_json_ordered( - list(processes_aggregated_impacts.values()), CONFIG["PROCESSES_IMPACTS"] + export_json( + order_json(list(processes_aggregated_impacts.values())), PROCESSES_IMPACTS ) - export_json_ordered( - remove_detailed_impacts(list(processes_aggregated_impacts.values())), - CONFIG["PROCESSES_AGGREGATED"], + + export_json( + order_json( + remove_detailed_impacts(list(processes_aggregated_impacts.values())) + ), + PROCESSES_AGGREGATED, ) diff --git a/data/import_ecoinvent.py b/data/import_ecoinvent.py index df70ba327..357402cd1 100755 --- a/data/import_ecoinvent.py +++ b/data/import_ecoinvent.py @@ -13,6 +13,10 @@ EI310 = "./Ecoinvent3.10.CSV.zip" BIOSPHERE = "biosphere3" PROJECT = "default" +EXCLUDED = [ + "fix_localized_water_flows", # both agb and ef31 adapted have localized wf + "simapro-water", +] def main(): @@ -23,12 +27,20 @@ def main(): add_missing_substances(PROJECT, BIOSPHERE) if (db := "Ecoinvent 3.9.1") not in bw2data.databases: - import_simapro_csv(join("..", "..", "dbfiles", EI391), db) + import_simapro_csv( + join("..", "..", "dbfiles", EI391), + db, + excluded_strategies=EXCLUDED, + ) else: print(f"{db} already imported") if (db := "Ecoinvent 3.10") not in bw2data.databases: - import_simapro_csv(join("..", "..", "dbfiles", EI310), db) + import_simapro_csv( + join("..", "..", "dbfiles", EI310), + db, + excluded_strategies=EXCLUDED, + ) else: print(f"{db} already imported") diff --git a/data/import_food.py b/data/import_food.py index 55cb32781..7763ee358 100755 --- a/data/import_food.py +++ b/data/import_food.py @@ -38,7 +38,6 @@ # excluded strategies and migrations EXCLUDED = [ - "normalize_simapro_biosphere_names", "normalize_biosphere_names", "fix_localized_water_flows", # both agb and ef31 adapted have localized wf "simapro-water", diff --git a/data/import_method.py b/data/import_method.py index c17b13b94..aa631b1ff 100755 --- a/data/import_method.py +++ b/data/import_method.py @@ -1,5 +1,4 @@ #!/usr/bin/env python3 -import functools import os from os.path import dirname, join from zipfile import ZipFile @@ -7,19 +6,7 @@ import bw2data import bw2io from bw2data.project import projects -from bw2io.strategies import ( - drop_unspecified_subcategories, - # fix_localized_water_flows, - link_iterable_by_fields, - match_subcategories, - # migrate_exchanges, - # normalize_biosphere_categories, - normalize_biosphere_names, - normalize_simapro_biosphere_categories, - normalize_simapro_biosphere_names, - normalize_units, - set_biosphere_type, -) +from frozendict import frozendict PROJECT = "default" # Agribalyse @@ -28,11 +15,9 @@ METHODPATH = join("..", "..", "dbfiles", METHODNAME + ".CSV.zip") # excluded strategies and migrations -EXCLUDED_FOOD = [ - "normalize_simapro_biosphere_names", - "normalize_biosphere_names", +EXCLUDED = [ "fix_localized_water_flows", - # "simapro-water", + "simapro-water", ] @@ -54,46 +39,26 @@ def import_method(project, datapath=METHODPATH, biosphere=BIOSPHERE): unzipped, biosphere=biosphere, normalize_biosphere=True, - # normalize_biosphere=False if project == "textile" else True, # normalize_biosphere to align the categories between LCI and LCIA ) os.unlink(unzipped) ef.statistics() # exclude strategies/migrations in EXCLUDED - if project == "default": - ef.strategies = [ - s for s in ef.strategies if not any([e in repr(s) for e in EXCLUDED_FOOD]) - ] - if project == "textile": - ef.strategies = [ - normalize_units, - set_biosphere_type, - # fix_localized_water_flows, # adding it leads to 60m3 - drop_unspecified_subcategories, - # functools.partial(normalize_biosphere_categories, lcia=True), - functools.partial(normalize_simapro_biosphere_names), - functools.partial(normalize_biosphere_names), - # functools.partial(migrate_exchanges, migration="simapro-water"), - normalize_simapro_biosphere_categories, - # normalize_simapro_biosphere_names, # removing avoid multiple CFs - functools.partial( - link_iterable_by_fields, - other=( - obj - for obj in bw2data.Database(ef.biosphere_name) - if obj.get("type") == "emission" - ), - # fields=("name", "unit", "categories"), - kind="biosphere", - ), - functools.partial(match_subcategories, biosphere_db_name=ef.biosphere_name), - ] + ef.strategies = [ + s for s in ef.strategies if not any([e in repr(s) for e in EXCLUDED]) + ] ef.apply_strategies() # ef.write_excel(METHODNAME) # drop CFs which are not linked to a biosphere substance ef.drop_unlinked() + # remove duplicates in exchanges + for m in ef.data: + m["exchanges"] = [ + dict(f) for f in list(set([frozendict(d) for d in m["exchanges"]])) + ] + ef.write_methods() print(f"### Finished importing {METHODNAME}\n") diff --git a/data/textile/activities.json b/data/textile/activities.json index 37309d19e..ec5ec2215 100644 --- a/data/textile/activities.json +++ b/data/textile/activities.json @@ -1,9190 +1,1447 @@ [ { - "name": "(EI) Mix électrique réseau, CN", + "displayName": "Électricité moyenne tension, Asie", "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", "source": "Ecoinvent 3.9.1", - "uuid": "8f923f3d-0bd2-4326-99e2-f984b4454226", - "impacts": { - "acd": 0.0015271008, - "bvi": 0.0, - "cch": 0.28407856, - "etf": 0.711914855, - "etf-c": 0.71663734332, - "fru": 2.5963146, - "fwe": 5.2966609e-5, - "htc": 8.19e-12, - "htc-c": 1.63813654e-11, - "htn": 8.39e-11, - "htn-c": 1.5516067e-10, - "ior": 0.0048357578, - "ldu": 0.5567515, - "mru": 2.63e-7, - "ozd": 1.54e-9, - "pco": 0.00090117771, - "pma": 2.16e-8, - "swe": 0.00032668138, - "tre": 0.0034795272, - "wtu": 0.030280276 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, + "search": "medium voltage RAS market", + "correctif": "", + "step_usage": "Energie", + "uuid": "elec-medium-region-asia", + "heat_MJ": 0, + "elec_pppm": 0, + "elec_MJ": 0, + "waste": 0, "alias": null, + "category": "process", + "unit": "kWh" + }, + { + "displayName": "Électricité moyenne tension, Afrique", + "info": "Energie > Electricité > Mix moyen", + "source": "Ecoinvent 3.9.1", + "search": "medium voltage RAF market", + "correctif": "", "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" + "uuid": "elec-medium-region-africa", + "heat_MJ": 0, + "elec_pppm": 0, + "elec_MJ": 0, + "waste": 0, + "alias": null, + "category": "process", + "unit": "kWh" }, { - "name": "Mix électrique réseau, ES", + "displayName": "Électricité moyenne tension, Moyen-Orient", "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "37301c44-c4cf-4214-a4ac-eee5785ccdc5", - "impacts": { - "acd": 0.000229486, - "bvi": 0.0, - "cch": 0.467803, - "etf": 0.0, - "etf-c": 0.0, - "fru": 7.48386, - "fwe": 2.28166e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.158984, - "ldu": 0.0, - "mru": 5.18326e-8, - "ozd": 8.0058e-11, - "pco": 0.00119734, - "pma": 3.00833e-8, - "swe": 0.000364584, - "tre": 0.000822659, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, + "source": "Ecoinvent 3.9.1", + "search": "medium voltage RME market", + "correctif": "", + "step_usage": "Energie", + "uuid": "elec-medium-region-middle-east", + "heat_MJ": 0, + "elec_pppm": 0, + "elec_MJ": 0, + "waste": 0, "alias": null, + "category": "process", + "unit": "kWh" + }, + { + "displayName": "Électricité moyenne tension, Amérique latine", + "info": "Energie > Electricité > Mix moyen", + "source": "Ecoinvent 3.9.1", + "search": "medium voltage RLA market", + "correctif": "", "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" + "uuid": "elec-medium-region-latin-america", + "heat_MJ": 0, + "elec_pppm": 0, + "elec_MJ": 0, + "waste": 0, + "alias": null, + "category": "process", + "unit": "kWh" }, { - "name": "(EI) Mix électrique réseau, FR", + "displayName": "Électricité moyenne tension, Amérique du nord", "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", "source": "Ecoinvent 3.9.1", - "uuid": "05585055-9742-4fff-81ff-ad2e30e1b791", - "impacts": { - "acd": 9.2167346e-5, - "bvi": 0.0, - "cch": 0.021581196, - "etf": 0.09126594, - "etf-c": 0.1256067558, - "fru": 3.2188003, - "fwe": 4.2592527e-6, - "htc": 6.4e-12, - "htc-c": 1.27903874e-11, - "htn": 1.19e-11, - "htn-c": 2.320931e-11, - "ior": 0.14628567, - "ldu": 0.096699359, - "mru": 1.75e-7, - "ozd": 8.72e-10, - "pco": 5.051977e-5, - "pma": 1.25e-9, - "swe": 2.7334921e-5, - "tre": 0.0002017688, - "wtu": 0.0060828454 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, + "search": "medium voltage RNA market", + "correctif": "", + "step_usage": "Energie", + "uuid": "elec-medium-region-north-america", + "heat_MJ": 0, + "elec_pppm": 0, + "elec_MJ": 0, + "waste": 0, "alias": null, + "category": "process", + "unit": "kWh" + }, + { + "displayName": "Électricité moyenne tension, Australie", + "info": "Energie > Electricité > Mix moyen", + "source": "Ecoinvent 3.9.1", + "search": "medium voltage AU market", + "correctif": "", "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" + "uuid": "53c7378e585cf74cea4837819be6e631", + "heat_MJ": 0, + "elec_pppm": 0, + "elec_MJ": 0, + "waste": 0, + "alias": null, + "category": "process", + "unit": "kWh" }, { - "name": "Mix électrique réseau, IN", + "displayName": "Électricité moyenne tension, Chine", "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "1b470f5c-6ae6-404d-bd71-8546d33dbc17", - "impacts": { - "acd": 0.0162766, - "bvi": 0.0, - "cch": 1.58299, - "etf": 0.0, - "etf-c": 0.0, - "fru": 16.6775, - "fwe": 4.63076e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.0237427, - "ldu": 0.0, - "mru": 1.00099e-7, - "ozd": 1.20132e-11, - "pco": 0.00710474, - "pma": 5.78956e-7, - "swe": 0.00242939, - "tre": 0.0266197, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, + "source": "Ecoinvent 3.9.1", + "search": "medium voltage CN market group", + "correctif": "", + "step_usage": "Energie", + "uuid": "8bbc2475141687462993329f9b7c2ddf", + "heat_MJ": 0, + "elec_pppm": 0, + "elec_MJ": 0, + "waste": 0, "alias": null, + "category": "process", + "unit": "kWh" + }, + { + "displayName": "Électricité moyenne tension, Albanie", + "info": "Energie > Electricité > Mix moyen", + "source": "Ecoinvent 3.9.1", + "search": "medium voltage AL market", + "correctif": "", "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" + "uuid": "d33cefdc558e3fe890174e6f1e205015", + "heat_MJ": 0, + "elec_pppm": 0, + "elec_MJ": 0, + "waste": 0, + "alias": null, + "category": "process", + "unit": "kWh" }, { - "name": "Mix électrique réseau, PT", + "displayName": "Électricité moyenne tension, Pérou", "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "a1d83202-0052-4d10-b9d2-938564be6a0b", - "impacts": { - "acd": 0.00013267, - "bvi": 0.0, - "cch": 0.571172, - "etf": 0.0, - "etf-c": 0.0, - "fru": 6.58133, - "fwe": 2.54454e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.000844822, - "ldu": 0.0, - "mru": 3.41863e-8, - "ozd": 1.18088e-11, - "pco": 0.00182535, - "pma": 3.43976e-8, - "swe": 0.000570782, - "tre": 0.000822385, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, + "source": "Ecoinvent 3.9.1", + "search": "medium voltage PE market", + "correctif": "", + "step_usage": "Energie", + "uuid": "debdaaba938a58ac1ab0131e47186092", + "heat_MJ": 0, + "elec_pppm": 0, + "elec_MJ": 0, + "waste": 0, "alias": null, + "category": "process", + "unit": "kWh" + }, + { + "displayName": "Électricité moyenne tension, Nouvelle-Zélande", + "info": "Energie > Electricité > Mix moyen", + "source": "Ecoinvent 3.9.1", + "search": "medium voltage NZ market", + "correctif": "", "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" + "uuid": "609797e4710a81c9903bc72c141ff191", + "heat_MJ": 0, + "elec_pppm": 0, + "elec_MJ": 0, + "waste": 0, + "alias": null, + "category": "process", + "unit": "kWh" }, { - "name": "Plume de canard, inventaire agrégé", - "info": "Textile > Matières > Matières naturelles", - "unit": "kg", - "source": "Base Impacts 2.01", - "uuid": "d1f06ea5-d63f-453a-8f98-55ce78ae7579", - "impacts": { - "acd": 0.223509, - "bvi": 0.0, - "cch": 16.238, - "etf": 0.0, - "etf-c": 0.0, - "fru": 174.944, - "fwe": 0.00170385, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 2.02503, - "ldu": 402.462, - "mru": 1.63213e-5, - "ozd": 1.50538e-6, - "pco": 0.0585537, - "pma": 3.81494e-6, - "swe": 0.0900067, - "tre": 0.787872, - "wtu": 0.379011 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, + "displayName": "Électricité moyenne tension, Maroc", + "info": "Energie > Electricité > Mix moyen", + "source": "Ecoinvent 3.9.1", + "search": "medium voltage MA market", + "correctif": "", + "step_usage": "Energie", + "uuid": "d3287580187139b11ce76f80013510d0", + "heat_MJ": 0, + "elec_pppm": 0, + "elec_MJ": 0, + "waste": 0, "alias": null, - "step_usage": "Matières, Filature", - "correctif": "Ajout données \"EP&L Kering\" pour la consommation d'eau" + "category": "process", + "unit": "kWh" }, { - "name": "Fil de soie", - "info": "Textile > Matières > Matières naturelles", - "unit": "kg", - "source": "Base Impacts 2.01", - "uuid": "94b4b0e1-61e4-4f4d-b9b2-efe7623b0e68", - "impacts": { - "acd": 0.48183, - "bvi": 0.0, - "cch": 18.5727, - "etf": 0.0, - "etf-c": 0.0, - "fru": 85.1754, - "fwe": 0.000899851, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.217894, - "ldu": 4716.32, - "mru": 1.88195e-5, - "ozd": 8.73107e-7, - "pco": 0.058398, - "pma": 1.54333e-5, - "swe": 0.214701, - "tre": 2.08908, - "wtu": 36.6807 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 7.79322, + "displayName": "Électricité moyenne tension, Kenya", + "info": "Energie > Electricité > Mix moyen", + "source": "Ecoinvent 3.9.1", + "search": "medium voltage KE market", + "correctif": "", + "step_usage": "Energie", + "uuid": "e5f92d33532b4e649da2541b264fa363", + "heat_MJ": 0, + "elec_pppm": 0, + "elec_MJ": 0, + "waste": 0, "alias": null, - "step_usage": "Matières, Filature", - "correctif": "Ajout données \"EP&L Kering\" pour la consommation d'eau", - "id": "soie", - "materialAndSpinningProcessUuid": "94b4b0e1-61e4-4f4d-b9b2-efe7623b0e68", - "materialProcessUuid": "e3e70682-c209-4cac-629f-6fbed82c07cd", - "recycledProcessUuid": null, - "recycledFrom": null, - "shortName": "Soie", - "origin": "NaturalFromAnimal", + "category": "process", + "unit": "kWh" + }, + { + "displayName": "Électricité moyenne tension, Italie", + "info": "Energie > Electricité > Mix moyen", + "source": "Ecoinvent 3.9.1", + "search": "medium voltage IT market", + "correctif": "", + "step_usage": "Energie", + "uuid": "ae9240745e54987338d2228c3be2a5ec", + "heat_MJ": 0, + "elec_pppm": 0, + "elec_MJ": 0, + "waste": 0, + "alias": null, + "category": "process", + "unit": "kWh" + }, + { + "displayName": "Électricité moyenne tension, Europe", + "info": "Energie > Electricité > Mix moyen", + "source": "Ecoinvent 3.9.1", + "search": "medium voltage RER market group", + "correctif": "", + "step_usage": "Energie", + "uuid": "region-elec-west-europe", + "heat_MJ": 0, + "elec_pppm": 0, + "elec_MJ": 0, + "waste": 0, + "alias": null, + "category": "process", + "unit": "kWh" + }, + { + "displayName": "Électricité moyenne tension, Espagne", + "info": "Energie > Electricité > Mix moyen", + "source": "Ecoinvent 3.9.1", + "search": "medium voltage ES market", + "correctif": "", + "step_usage": "Energie", + "uuid": "80ff4bc21a0e197ea3f69d809fd8d4f1", + "heat_MJ": 0, + "elec_pppm": 0, + "elec_MJ": 0, + "waste": 0, + "alias": null, + "category": "process", + "unit": "kWh" + }, + { + "displayName": "Électricité moyenne tension, France", + "info": "Energie > Electricité > Mix moyen", + "source": "Ecoinvent 3.9.1", + "search": "medium voltage FR market", + "correctif": "", + "step_usage": "Energie", + "uuid": "3c131d87f8dd997d14d2ffc3477f83e6", + "heat_MJ": 0, + "elec_pppm": 0, + "elec_MJ": 0, + "waste": 0, + "alias": null, + "category": "process", + "unit": "kWh" + }, + { + "displayName": "Électricité moyenne tension, Myanmar", + "info": "Energie > Electricité > Mix moyen", + "source": "Ecoinvent 3.9.1", + "search": "medium voltage MM market", + "correctif": "", + "step_usage": "Energie", + "uuid": "4968e9f8cf72cb72700d94b242048db0", + "heat_MJ": 0, + "elec_pppm": 0, + "elec_MJ": 0, + "waste": 0, + "alias": null, + "category": "process", + "unit": "kWh" + }, + { + "displayName": "Électricité moyenne tension, Inde", + "info": "Energie > Electricité > Mix moyen", + "source": "Ecoinvent 3.9.1", + "search": "medium voltage IN market group", + "correctif": "", + "step_usage": "Energie", + "uuid": "4ee8150b0cbf3603e03345d780ba7a61", + "heat_MJ": 0, + "elec_pppm": 0, + "elec_MJ": 0, + "waste": 0, + "alias": null, + "category": "process", + "unit": "kWh" + }, + { + "displayName": "Elasthane (Lycra)", + "info": "Textile > Matières > Matières synthétiques", + "source": "Custom", + "correctif": "", + "step_usage": "Matières", + "uuid": "elasthane-lycra", + "unit": "kg", + "heat_MJ": 0, + "elec_pppm": 0, + "elec_MJ": 0, + "waste": 0.21292, + "alias": null, + "category": "material", + "material_id": "elasthane", + "shortName": "Elasthane (Lycra)", + "origin": "Synthetic", "primary": false, "geographicOrigin": "Asie - Pacifique", "defaultCountry": "CN", - "priority": 0, - "cff": null - }, - { - "name": "Fil de lin (filasse)", - "info": "Textile > Matières > Matières naturelles", - "unit": "kg", - "source": "Base Impacts 2.01", - "uuid": "e5a6d538-f932-4242-98b4-3a0c6439629c", "impacts": { - "acd": 0.112007, - "bvi": 0.0, - "cch": 16.7281, - "etf": 0.0, - "etf-c": 0.0, - "fru": 222.954, - "fwe": 0.00125111, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 6.18463, - "ldu": 10.4125, - "mru": 2.36122e-5, - "ozd": 9.19125e-7, - "pco": 0.0574054, - "pma": 2.9546e-6, - "swe": 0.028925, - "tre": 0.225852, - "wtu": 0.00450116 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.170215, - "alias": null, - "step_usage": "Matières, Filature", - "correctif": "Ajout données \"EP&L Kering\" pour la consommation d'eau", - "id": "lin-filasse", - "materialAndSpinningProcessUuid": "e5a6d538-f932-4242-98b4-3a0c6439629c", - "materialProcessUuid": "cd613e30-d8f1-6adf-91b7-584a2265b1f5", - "recycledProcessUuid": null, - "recycledFrom": null, - "shortName": "Lin (filasse)", - "origin": "NaturalFromVegetal", - "primary": true, + "acd": 0.0275292, + "cch": 5.23468, + "etf": 252.947, + "etf-c": 269.015, + "fru": 96.2984, + "fwe": 0.00119992, + "htc": 9.50992e-9, + "htc-c": 1.36043e-8, + "htn": 7.51072e-8, + "htn-c": 1.52798e-8, + "ior": 0.153048, + "ldu": 9.61444, + "mru": 4.68847e-5, + "ozd": 1.65834e-7, + "pco": 0.0188027, + "pma": 5.89458e-7, + "swe": 0.00652228, + "tre": 0.0551337, + "wtu": 5.02984, + "ecs": 1042.5934373602631, + "pef": 656.9997972762473 + } + }, + { + "displayName": "Production de plexiglas (Polyméthacrylate de méthyle)", + "info": "Textile > Matières > Matières synthétiques", + "source": "Ecoinvent 3.9.1", + "search": "polymethyl methacrylate beads ROW", + "correctif": "", + "step_usage": "Matières", + "uuid": "75b27555d86fe1c66686cdf4339efc89", + "heat_MJ": 0, + "elec_pppm": 0, + "elec_MJ": 0, + "waste": 0.21292, + "alias": null, + "category": "material", + "material_id": "ei-acrylique", + "shortName": "Acrylique", + "origin": "Synthetic", + "primary": false, "geographicOrigin": "Asie - Pacifique", "defaultCountry": "CN", - "priority": 0, - "cff": null + "unit": "kg" }, { - "name": "Fil de lin (étoupe)", + "displayName": "Production de jute, rouissage", "info": "Textile > Matières > Matières naturelles", - "unit": "kg", - "source": "Base Impacts 2.01", - "uuid": "fcef1a31-bb18-49e4-bdb6-e53dfe015ba0", - "impacts": { - "acd": 0.101654, - "bvi": 0.0, - "cch": 15.1829, - "etf": 0.0, - "etf-c": 0.0, - "fru": 208.085, - "fwe": 0.000716424, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 5.96535, - "ldu": 7.58111, - "mru": 1.42677e-5, - "ozd": 7.42863e-7, - "pco": 0.0547921, - "pma": 2.80418e-6, - "swe": 0.0234715, - "tre": 0.206896, - "wtu": 0.00450116 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.288932, - "alias": null, - "step_usage": "Matières, Filature", - "correctif": "Ajout données \"EP&L Kering\" pour la consommation d'eau", - "id": "lin-etoupe", - "materialAndSpinningProcessUuid": "fcef1a31-bb18-49e4-bdb6-e53dfe015ba0", - "materialProcessUuid": "d95bafc8-f2a4-d27b-dcf4-bb99f4bea973", - "recycledProcessUuid": null, - "recycledFrom": null, - "shortName": "Lin (étoupe)", + "source": "Ecoinvent 3.9.1", + "search": "fibre jute retting RoW", + "correctif": "", + "step_usage": "Matières", + "uuid": "4d81aa5f76872e1e4c0e1bb14b01e93b", + "heat_MJ": 0, + "elec_pppm": 0, + "elec_MJ": 0, + "waste": 0.21292, + "alias": null, + "category": "material", + "material_id": "ei-jute-kenaf", + "shortName": "Jute", "origin": "NaturalFromVegetal", - "primary": true, + "primary": false, "geographicOrigin": "Asie - Pacifique", "defaultCountry": "CN", - "priority": 0, - "cff": null + "unit": "kg" }, { - "name": "Fil de laine de mouton Mérinos, inventaire partiellement agrégé", - "info": "Textile > Matières > Matières naturelles", + "displayName": "Production de polypropylène, granulés", + "info": "Textile > Matières > Matières synthétiques", + "source": "Ecoinvent 3.9.1", + "search": "polypropylene granulate RoW", + "correctif": "", + "step_usage": "Matières", + "uuid": "6e442b958af0d26f85ecacce2eeb23d0", + "heat_MJ": 0, + "elec_pppm": 0, + "elec_MJ": 0, + "waste": 0.03097, + "alias": null, + "category": "material", + "material_id": "ei-pp", + "shortName": "Polypropylène", + "origin": "Synthetic", + "geographicOrigin": "Europe", + "defaultCountry": "FR", "unit": "kg", - "source": "Base Impacts 2.01", - "uuid": "4e035dbf-f48b-4b5a-94ea-0006c713958b", - "impacts": { - "acd": 0.2585, - "bvi": 0.0, - "cch": 73.8467, - "etf": 0.0, - "etf-c": 0.0, - "fru": 439.124, - "fwe": 0.00303343, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 6.23913, - "ldu": 1465.27, - "mru": 0.000193353, - "ozd": 3.53466e-6, - "pco": 0.0938408, - "pma": 4.68642e-6, - "swe": 0.0749463, - "tre": 0.471136, - "wtu": 0.351234 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.08696, - "alias": null, - "step_usage": "Matières, Filature", - "correctif": "Ajout données \"EP&L Kering\" pour la consommation d'eau", - "id": "laine-merinos", - "materialAndSpinningProcessUuid": "4e035dbf-f48b-4b5a-94ea-0006c713958b", - "materialProcessUuid": "21636369-8b52-9b4a-97b7-50923ceb3ffd", - "recycledProcessUuid": null, - "recycledFrom": null, - "shortName": "Laine de mouton Mérinos", - "origin": "NaturalFromAnimal", - "primary": false, + "primary": false + }, + { + "displayName": "Production de PET, granulés, amorphe", + "info": "Textile > Matières > Matières synthétiques", + "source": "Ecoinvent 3.9.1", + "search": "polyethylene terephthalate amorphous RoW", + "correctif": "", + "step_usage": "Matières", + "uuid": "f32024fc5e736e01fa14321363900581", + "heat_MJ": 0, + "elec_pppm": 0, + "elec_MJ": 0, + "waste": 0.03097, + "alias": null, + "category": "material", + "material_id": "ei-pet", + "recycledProcessUuid": "087896096b5bede914ef3ec1062b1c02", + "shortName": "Polyester", + "origin": "Synthetic", + "primary": true, "geographicOrigin": "Asie - Pacifique", "defaultCountry": "CN", - "priority": 0, - "cff": null + "priority": 80, + "unit": "kg" }, { - "name": "Fil de laine de mouton", - "info": "Textile > Matières > Matières naturelles", - "unit": "kg", - "source": "Base Impacts 2.01", - "uuid": "376bd165-d354-41aa-a6e3-fd3228413bb2", - "impacts": { - "acd": 1.6899, - "bvi": 0.0, - "cch": 80.2769, - "etf": 0.0, - "etf-c": 0.0, - "fru": 328.16, - "fwe": 0.00796636, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 1.38297, - "ldu": 7712.22, - "mru": 6.35123e-5, - "ozd": 2.67242e-6, - "pco": 0.0633881, - "pma": 1.36075e-5, - "swe": 0.321943, - "tre": 7.20749, - "wtu": 0.351234 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.672241, - "alias": null, - "step_usage": "Matières, Filature", - "correctif": "Ajout données \"EP&L Kering\" pour la consommation d'eau", - "id": "laine-mouton", - "materialAndSpinningProcessUuid": "376bd165-d354-41aa-a6e3-fd3228413bb2", - "materialProcessUuid": "b8a1abcd-1a69-16c7-4da4-f9fc3c6da5d7", - "recycledProcessUuid": "8bb01460-217f-871c-be0a-e8fa1ceac2cc", - "recycledFrom": null, - "shortName": "Laine de mouton", - "origin": "NaturalFromAnimal", + "displayName": "Production de PET recyclé, granulés, amorphe", + "info": "Textile > Matières > Matières synthétiques", + "source": "Ecoinvent 3.9.1", + "search": "polyethylene terephthalate amorphous recycled RoW", + "correctif": "", + "step_usage": "Matières", + "uuid": "087896096b5bede914ef3ec1062b1c02", + "heat_MJ": 0, + "elec_pppm": 0, + "elec_MJ": 0, + "waste": 0.03097, + "alias": null, + "category": "material", + "material_id": "ei-pet-r", + "recycledFrom": "ei-pet", + "shortName": "Polyester recyclé", + "origin": "Synthetic", "primary": true, "geographicOrigin": "Asie - Pacifique", "defaultCountry": "CN", - "priority": 0, - "cff": null + "priority": 80, + "cff": { + "manufacturerAllocation": 0.5, + "recycledQualityRatio": 1 + }, + "unit": "kg" }, { - "name": "Fil de laine de chameau", - "info": "Textile > Matières > Matières naturelles", - "unit": "kg", - "source": "Base Impacts 2.01", - "uuid": "c191a4dd-5080-4eb6-9c59-b13c943327bc", - "impacts": { - "acd": 1.72489, - "bvi": 0.0, - "cch": 175.102, - "etf": 0.0, - "etf-c": 0.0, - "fru": 256.363, - "fwe": 0.000297625, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": -0.133703, - "ldu": 232501.0, - "mru": 2.22221e-5, - "ozd": 8.42207e-7, - "pco": 0.114578, - "pma": 1.4739e-5, - "swe": 0.0731482, - "tre": 6.39218, - "wtu": 0.351234 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 3.17851, - "alias": null, - "step_usage": "Matières, Filature", - "correctif": "Ajout données \"EP&L Kering\" pour la consommation d'eau" + "displayName": "Production de nylon 6-6", + "info": "Textile > Matières > Matières synthétiques", + "source": "Ecoinvent 3.9.1", + "search": "nylon \"6-6\" production row", + "correctif": "", + "step_usage": "Matières", + "uuid": "88a1395a1c61be31b0bc692e977dd10b", + "heat_MJ": 0, + "elec_pppm": 0, + "elec_MJ": 0, + "waste": 0.03097, + "alias": null, + "category": "material", + "material_id": "ei-pa", + "shortName": "Nylon", + "origin": "Synthetic", + "primary": true, + "geographicOrigin": "Europe", + "defaultCountry": "FR", + "unit": "kg" }, { - "name": "Fil de jute / kenaf", + "displayName": "Production de fibres de lin, rouissage", "info": "Textile > Matières > Matières naturelles", - "unit": "kg", - "source": "Base Impacts 2.01", - "uuid": "72010874-4d26-4c7a-95de-c6987dfdedeb", - "impacts": { - "acd": 0.0914814, - "bvi": 0.0, - "cch": 12.9611, - "etf": 0.0, - "etf-c": 0.0, - "fru": 161.387, - "fwe": 0.000874196, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.412757, - "ldu": 22.9254, - "mru": 1.42838e-5, - "ozd": 8.03167e-7, - "pco": 0.0401706, - "pma": 2.13649e-6, - "swe": 0.0239917, - "tre": 0.24293, - "wtu": 5.02892 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.270519, - "alias": null, - "step_usage": "Matières, Filature", - "correctif": "Ajout données \"EP&L Kering\" pour la consommation d'eau", - "id": "jute-kenaf", - "materialAndSpinningProcessUuid": "72010874-4d26-4c7a-95de-c6987dfdedeb", - "materialProcessUuid": "5bc8fbbc-bde5-c099-4164-d8399f767c45", - "recycledProcessUuid": null, - "recycledFrom": null, - "shortName": "Jute / kenaf", + "source": "Ecoinvent 3.9.1", + "search": "flax, fibre retting RoW", + "correctif": "", + "step_usage": "Matières", + "uuid": "cf76c9e1872effbd04d49aec742e7952", + "heat_MJ": 0, + "elec_pppm": 0, + "elec_MJ": 0, + "waste": 0.07115, + "alias": null, + "category": "material", + "material_id": "ei-lin", + "shortName": "Lin", "origin": "NaturalFromVegetal", - "primary": false, - "geographicOrigin": "Asie - Pacifique", - "defaultCountry": "CN", - "priority": 0, - "cff": null + "primary": true, + "geographicOrigin": "Europe", + "defaultCountry": "FR", + "unit": "kg" }, { - "name": "(EI) Fil de coton conventionnel", + "displayName": "Laine par défaut", "info": "Textile > Matières > Matières naturelles", + "source": "Custom", + "correctif": "", + "step_usage": "Matières", + "uuid": "wool-default", + "heat_MJ": 0, + "elec_pppm": 0, + "elec_MJ": 0, + "waste": 0.35, + "alias": null, + "category": "material", + "material_id": "ei-laine-par-defaut", + "shortName": "Laine par défaut", + "origin": "NaturalFromAnimal", + "geographicOrigin": "Asie - Pacifique", + "defaultCountry": "CN", "unit": "kg", - "source": "Ecoinvent 3.9.1", - "uuid": "ei-fil-coton", "impacts": { - "acd": 0.050004554, - "bvi": 0.0, - "cch": 2.758903, - "etf": 296.78549, - "etf-c": 580.72593, - "fru": 21.091752, - "fwe": 0.0020965554, - "htc": 1.07e-9, - "htc-c": 2.1392048e-9, - "htn": 3.79e-8, - "htn-c": 7.5609412e-8, - "ior": 0.11439048, - "ldu": 206.8445, - "mru": 2.45e-5, - "ozd": 2.1e-7, - "pco": 0.013716303, - "pma": 3.35e-7, - "swe": 0.046469433, - "tre": 0.21154201, - "wtu": 32.330333 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.201201, - "alias": null, - "step_usage": "Matières, Filature", - "correctif": "Ajout données \"EP&L Kering\" pour la consommation d'eau", - "id": "ei-fil-coton", - "materialAndSpinningProcessUuid": "ei-fil-coton", - "materialProcessUuid": "14a03569-d26b-9496-92e5-dfe8cb1855fe", - "recycledProcessUuid": "9c6ab710-4a08-c720-cede-24428a013fda", - "recycledFrom": null, - "shortName": "(EI) Coton", - "origin": "NaturalFromVegetal", + "acd": 0.949051, + "cch": 30.5996, + "etf": 125.562, + "etf-c": 170.543, + "fru": 34.1905, + "fwe": 0.00923991, + "htc": -7.09764e-10, + "htc-c": 3.31229e-9, + "htn": -6.25711e-7, + "htn-c": 8.57317e-8, + "ior": 0.0862947, + "ldu": 2335.33, + "mru": 5.16897e-5, + "ozd": 4.86254e-8, + "pco": 0.0305717, + "pma": 6.7068e-6, + "swe": 0.158058, + "tre": 4.21086, + "wtu": 16.2801, + "ecs": 4263.098561863456, + "pef": 4646.846238265963 + }, + "primary": false + }, + { + "displayName": "Laine nouvelle filière", + "info": "Textile > Matières > Matières naturelles uuid_bi=376bd165-d354-41aa-a6e3-fd3228413bb2", + "source": "Custom", + "correctif": "", + "step_usage": "Matières", + "uuid": "wool-new", + "heat_MJ": 0, + "elec_pppm": 0, + "elec_MJ": 0, + "waste": 0.35, + "alias": null, + "category": "material", + "material_id": "ei-laine-nouvelle-filiere", + "shortName": "Laine nouvelle filière", + "origin": "NaturalFromAnimal", "primary": true, "geographicOrigin": "Asie - Pacifique", "defaultCountry": "CN", - "priority": 100, - "cff": null - }, - { - "name": "Fil de coton conventionnel, inventaire partiellement agrégé", - "info": "Textile > Matières > Matières naturelles", "unit": "kg", - "source": "Base Impacts 2.01", - "uuid": "f211bbdb-415c-46fd-be4d-ddf199575b44", "impacts": { - "acd": 0.153118, - "bvi": 0.0, - "cch": 16.3699, - "etf": 0.0, - "etf-c": 0.0, - "fru": 209.536, - "fwe": 0.00158826, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 2.51078, - "ldu": 703.366, - "mru": 3.81526e-5, - "ozd": 1.07152e-6, - "pco": 0.0477582, - "pma": 3.041e-6, - "swe": 0.103968, - "tre": 0.352476, - "wtu": 5.02892 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.201201, - "alias": null, - "step_usage": "Matières, Filature", - "correctif": "Ajout données \"EP&L Kering\" pour la consommation d'eau", - "id": "coton", - "materialAndSpinningProcessUuid": "f211bbdb-415c-46fd-be4d-ddf199575b44", - "materialProcessUuid": "14a03569-d26b-9496-92e5-dfe8cb1855fe", + "acd": 0.1026, + "cch": 3.30806, + "etf": 13.5743, + "etf-c": 18.4371, + "fru": 3.69627, + "fwe": 0.000998909, + "htc": -7.67313e-11, + "htc-c": 3.58085e-10, + "htn": -6.76444e-8, + "htn-c": 9.2683e-9, + "ior": 0.00932916, + "ldu": 252.468, + "mru": 5.58807e-6, + "ozd": 5.2568e-9, + "pco": 0.00330505, + "pma": 7.25059e-7, + "swe": 0.0170874, + "tre": 0.455229, + "wtu": 1.76002, + "ecs": 460.875520458031, + "pef": 502.36175453936755 + } + }, + { + "displayName": "Production de fibres de coton", + "info": "Textile > Matières > Matières naturelles", + "source": "Ecoinvent 3.9.1", + "search": "fibre cotton ginning row", + "correctif": "", + "step_usage": "Matières", + "uuid": "a211822aabe83653a6079b9d5677daed", + "heat_MJ": 0, + "elec_pppm": 0, + "elec_MJ": 0, + "waste": 0.1675, + "alias": null, + "category": "material", + "material_id": "ei-coton", "recycledProcessUuid": "9c6ab710-4a08-c720-cede-24428a013fda", - "recycledFrom": null, "shortName": "Coton", "origin": "NaturalFromVegetal", "primary": true, "geographicOrigin": "Asie - Pacifique", "defaultCountry": "CN", "priority": 100, - "cff": null + "unit": "kg" }, { - "name": "Fil de chanvre", + "displayName": "Production de fibres de coton bio", "info": "Textile > Matières > Matières naturelles", + "source": "Custom", + "correctif": "", + "step_usage": "Matières", + "uuid": "coton-bio", + "heat_MJ": 0, + "elec_pppm": 0, + "elec_MJ": 0, + "waste": 0.09511, + "alias": null, + "category": "material", + "material_id": "ei-coton-organic", + "shortName": "Coton biologique", + "origin": "NaturalFromVegetal", + "primary": true, + "geographicOrigin": "Asie - Pacifique", + "defaultCountry": "CN", + "priority": 100, "unit": "kg", - "source": "Base Impacts 2.01", - "uuid": "08601439-f338-4f94-ac8c-538061b65d16", "impacts": { - "acd": 0.148329, - "bvi": 0.0, - "cch": 19.5483, - "etf": 0.0, - "etf-c": 0.0, - "fru": 224.78, - "fwe": 0.00110588, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 1.40834, - "ldu": 11.2154, - "mru": 2.06849e-5, - "ozd": 9.67422e-7, - "pco": 0.0700225, - "pma": 3.82709e-6, - "swe": 0.0736843, - "tre": 0.318022, - "wtu": 0.0222062 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.221094, - "alias": null, - "step_usage": "Matières, Filature", - "correctif": "Ajout données \"EP&L Kering\" pour la consommation d'eau", - "id": "chanvre", - "materialAndSpinningProcessUuid": "08601439-f338-4f94-ac8c-538061b65d16", - "materialProcessUuid": "6513270e-269e-0d37-f2a7-4de452e6b438", - "recycledProcessUuid": null, - "recycledFrom": null, + "acd": 0.0306797, + "cch": 0.680164, + "etf": 5.1314, + "etf-c": 5.2637, + "fru": 1.65306, + "fwe": 0.0121382, + "htc": 5.32889e-9, + "htc-c": 6.73849e-11, + "htn": -2.36397e-7, + "htn-c": 3.03781e-10, + "ior": 0.0037548, + "ldu": 696.27, + "mru": 9.15075e-7, + "ozd": 1.15859e-9, + "pco": 0.0042632, + "pma": 1.97418e-7, + "swe": 0.0813382, + "tre": 0.1392, + "wtu": 32.2334, + "ecs": 618.962439739018, + "pef": 736.2192841211813 + } + }, + { + "displayName": "Production de chanvre", + "info": "Textile > Matières > Matières naturelles", + "source": "Ecoinvent 3.9.1", + "search": "sunn RoW", + "correctif": "", + "step_usage": "Matières", + "uuid": "fa590941e8bbf72c8956b5c3ba793eb7", + "heat_MJ": 0, + "elec_pppm": 0, + "elec_MJ": 0, + "waste": 0.18106, + "alias": null, + "category": "material", + "material_id": "ei-chanvre", "shortName": "Chanvre", "origin": "NaturalFromVegetal", "primary": true, "geographicOrigin": "Asie - Pacifique", "defaultCountry": "CN", - "priority": 0, - "cff": null + "unit": "kg" }, { - "name": "Fil de cachemire", - "info": "Textile > Matières > Matières naturelles", - "unit": "kg", - "source": "Base Impacts 2.01", - "uuid": "380c0d9c-2840-4390-bd3f-5c960f26f5ed", - "impacts": { - "acd": 6.70835, - "bvi": 0.0, - "cch": 385.476, - "etf": 0.0, - "etf-c": 0.0, - "fru": 278.089, - "fwe": 0.000965391, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.536425, - "ldu": 1623150.0, - "mru": 4.06024e-5, - "ozd": 1.91427e-6, - "pco": 0.165203, - "pma": 4.9137e-5, - "swe": 0.221925, - "tre": 29.4712, - "wtu": 105.787 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 3.17851, - "alias": null, - "step_usage": "Matières, Filature", - "correctif": "Ajout données \"EP&L Kering\" pour la consommation d'eau", - "id": "cachemire", - "materialAndSpinningProcessUuid": "380c0d9c-2840-4390-bd3f-5c960f26f5ed", - "materialProcessUuid": "6018366c-f658-f7a7-5ed3-4fe53a096533", - "recycledProcessUuid": null, - "recycledFrom": null, - "shortName": "Cachemire", - "origin": "NaturalFromAnimal", - "primary": false, + "displayName": "Fibre de viscose", + "info": "Textile > Matières > Matières synthétiques", + "source": "Ecoinvent 3.9.1", + "search": "viscose market GLO", + "correctif": "", + "step_usage": "Matières", + "uuid": "f89bba0c170190e003fa3f643591cca5", + "heat_MJ": 0, + "elec_pppm": 0, + "elec_MJ": 0, + "waste": 0.055, + "alias": null, + "category": "material", + "material_id": "ei-viscose", + "recycledProcessUuid": "7e2fdd1e285fd01e8852977a584a9ae3", + "shortName": "Viscose", + "origin": "ArtificialFromOrganic", + "primary": true, "geographicOrigin": "Asie - Pacifique", "defaultCountry": "CN", - "priority": 0, - "cff": null + "unit": "kg" }, { - "name": "Fil d'angora / mohair", - "info": "Textile > Matières > Matières naturelles", + "displayName": "Production de coton recyclé (déchets post-consommation)", + "info": "Textile > Matières > Matières recyclées uuid_bi=4d23093d-1346-4018-8c0f-7aae33c67bcd", + "source": "Custom", + "correctif": "corr1: Données Base Impacts 2.01 uuid_bi=d23093d-1346-4018-8c0f-7aae33c67bcd auquel a été retranché l'impact de la filature", + "step_usage": "Matières", + "uuid": "993955be-5888-6f39-137c-56af8c5187c1", + "heat_MJ": 0, + "elec_pppm": 0, + "elec_MJ": 0, + "waste": 0.38696, + "alias": null, + "category": "material", + "material_id": "coton-rdpc", + "recycledFrom": "ei-coton", + "shortName": "Coton recyclé (déchets post-consommation)", + "origin": "NaturalFromVegetal", + "primary": true, + "geographicOrigin": "France", + "defaultCountry": "FR", + "cff": { + "manufacturerAllocation": 0.8, + "recycledQualityRatio": 0.5 + }, "unit": "kg", - "source": "Base Impacts 2.01", - "uuid": "29bddef1-d753-45af-9ca6-aec05e2d02b9", "impacts": { - "acd": 2.67922, - "bvi": 0.0, - "cch": 45.1782, - "etf": 0.0, - "etf-c": 0.0, - "fru": 394.075, - "fwe": 0.00323338, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 2.4474, - "ldu": 4088.91, - "mru": 6.51926e-5, - "ozd": 3.28002e-6, - "pco": 0.100685, - "pma": 2.10314e-5, - "swe": 0.402182, - "tre": 11.6477, - "wtu": 0.675034 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.672241, - "alias": null, - "step_usage": "Matières, Filature", - "correctif": "Ajout données \"EP&L Kering\" pour la consommation d'eau", - "id": "angora-mohair", - "materialAndSpinningProcessUuid": "29bddef1-d753-45af-9ca6-aec05e2d02b9", - "materialProcessUuid": "4462ebfc-5f91-5ef0-9cfb-ac6e7687a66e", - "recycledProcessUuid": null, - "recycledFrom": null, - "shortName": "Angora / mohair", - "origin": "NaturalFromAnimal", - "primary": false, - "geographicOrigin": "Asie - Pacifique", - "defaultCountry": "CN", - "priority": 0, - "cff": null - }, - { - "name": "Fibres de kapok, inventaire agrégé", - "info": "Textile > Matières > Matières naturelles", - "unit": "kg", - "source": "Base Impacts 2.01", - "uuid": "36cdbfc4-3f48-47b0-8ae0-294bb6017df1", - "impacts": { - "acd": 0.0006616, - "bvi": 0.0, - "cch": -0.0280245, - "etf": 0.0, - "etf-c": 0.0, - "fru": 5.93901, - "fwe": -0.000510209, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.116285, - "ldu": -31.7719, - "mru": 5.27283e-6, - "ozd": 7.02024e-8, - "pco": 0.00162426, - "pma": 7.27537e-8, - "swe": -0.000514053, - "tre": -0.00456534, - "wtu": 5.02892 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Matières, Filature", - "correctif": "Ajout données \"EP&L Kering\" pour la consommation d'eau" - }, - { - "name": "Filament de viscose", - "info": "Textile > Matières > Matières synthétiques", - "unit": "kg", - "source": "Base Impacts 2.01", - "uuid": "81a67d97-3cd9-44ef-9ee2-159364364c0f", - "impacts": { - "acd": 0.0777808, - "bvi": 0.0, - "cch": 7.99002, - "etf": 0.0, - "etf-c": 0.0, - "fru": 97.6965, - "fwe": 0.000861022, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.395013, - "ldu": 497.076, - "mru": 1.30682e-5, - "ozd": 5.13299e-7, - "pco": 0.0264538, - "pma": 1.88459e-6, - "swe": 0.0107847, - "tre": 0.0842916, - "wtu": 0.0295386 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0582011, - "alias": null, - "step_usage": "Matières, Filature", - "correctif": "Ajout données \"EP&L Kering\" pour la consommation d'eau", - "id": "viscose", - "materialAndSpinningProcessUuid": "81a67d97-3cd9-44ef-9ee2-159364364c0f", - "materialProcessUuid": "7b89296c-6dcb-ac50-0857-7eb1924770d3", - "recycledProcessUuid": "a8d42934-33e7-98a0-e81f-9b0cbf4e7af6", - "recycledFrom": null, - "shortName": "Viscose", - "origin": "ArtificialFromOrganic", - "primary": true, - "geographicOrigin": "Asie - Pacifique", - "defaultCountry": "CN", - "priority": 0, - "cff": null - }, - { - "name": "Filament de polyuréthane", - "info": "Textile > Matières > Matières synthétiques", - "unit": "kg", - "source": "Base Impacts 2.01", - "uuid": "c3738500-0a62-4b95-b4a2-b7beb12a9e1a", - "impacts": { - "acd": 0.130114, - "bvi": 0.0, - "cch": 20.6809, - "etf": 0.0, - "etf-c": 0.0, - "fru": 276.145, - "fwe": 0.000386296, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 6.04044, - "ldu": 3.6287, - "mru": 7.68645e-6, - "ozd": 2.95942e-7, - "pco": 0.0810339, - "pma": 4.31241e-6, - "swe": 0.0326394, - "tre": 0.294416, - "wtu": 0.0295386 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.00796392, - "alias": null, - "step_usage": "Matières, Filature", - "correctif": "Ajout données \"EP&L Kering\" pour la consommation d'eau" - }, - { - "name": "Filament de polytriméthylène téréphtalate (PTT), inventaire partiellement agrégé", - "info": "Textile > Matières > Matières synthétiques", - "unit": "kg", - "source": "Base Impacts 2.01", - "uuid": "eca33573-0d09-4d79-9b28-da42bfcc7a4b", - "impacts": { - "acd": 0.0738927, - "bvi": 0.0, - "cch": 12.0842, - "etf": 0.0, - "etf-c": 0.0, - "fru": 223.15, - "fwe": 0.000826427, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 6.04855, - "ldu": 86.4794, - "mru": 2.29856e-5, - "ozd": 1.22071e-6, - "pco": 0.0352412, - "pma": 1.27029e-6, - "swe": 0.0183514, - "tre": 0.104997, - "wtu": 0.0295386 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0319569, - "alias": null, - "step_usage": "Matières, Filature", - "correctif": "Ajout données \"EP&L Kering\" pour la consommation d'eau", - "id": "ptt", - "materialAndSpinningProcessUuid": "eca33573-0d09-4d79-9b28-da42bfcc7a4b", - "materialProcessUuid": "87751d4c-a850-1e2c-44dc-da6a797d76de", - "recycledProcessUuid": null, - "recycledFrom": null, - "shortName": "Polytriméthylène téréphtalate (PTT)", - "origin": "Synthetic", - "primary": false, - "geographicOrigin": "Asie - Pacifique", - "defaultCountry": "CN", - "priority": 0, - "cff": null - }, - { - "name": "Filament de polytéréphtalate de butylène (PBT), inventaire agrégé", - "info": "Textile > Matières > Matières synthétiques", - "unit": "kg", - "source": "Base Impacts 2.01", - "uuid": "7f8bbfdc-fb65-4e3a-ac81-eda197ef17fc", - "impacts": { - "acd": 0.0747791, - "bvi": 0.0, - "cch": 10.1195, - "etf": 0.0, - "etf-c": 0.0, - "fru": 157.248, - "fwe": 0.000763859, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 3.515, - "ldu": 26.1942, - "mru": 2.05044e-5, - "ozd": 4.35996e-7, - "pco": 0.0346983, - "pma": 1.61925e-6, - "swe": 0.01316, - "tre": 0.109655, - "wtu": 0.0295386 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Matières, Filature", - "correctif": "Ajout données \"EP&L Kering\" pour la consommation d'eau", - "id": "pbt", - "materialAndSpinningProcessUuid": "7f8bbfdc-fb65-4e3a-ac81-eda197ef17fc", - "materialProcessUuid": "e8d79f49-af6d-114c-4a6f-188a424e617b", - "recycledProcessUuid": null, - "recycledFrom": null, - "shortName": "Polytéréphtalate de butylène (PBT)", - "origin": "Synthetic", - "primary": false, - "geographicOrigin": "Asie - Pacifique", - "defaultCountry": "CN", - "priority": 0, - "cff": null - }, - { - "name": "Filament de polypropylène", - "info": "Textile > Matières > Matières synthétiques", - "unit": "kg", - "source": "Base Impacts 2.01", - "uuid": "a30cfbde-393a-40db-9263-ea00bfced0b7", - "impacts": { - "acd": 0.0286206, - "bvi": 0.0, - "cch": 6.91894, - "etf": 0.0, - "etf-c": 0.0, - "fru": 149.611, - "fwe": 0.000262079, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 4.20667, - "ldu": 3.58197, - "mru": 2.4338e-6, - "ozd": 3.08043e-7, - "pco": 0.0149108, - "pma": 3.46971e-7, - "swe": 0.00526731, - "tre": 0.0273836, - "wtu": 0.0295386 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0319569, - "alias": null, - "step_usage": "Matières, Filature", - "correctif": "Ajout données \"EP&L Kering\" pour la consommation d'eau", - "id": "pp", - "materialAndSpinningProcessUuid": "a30cfbde-393a-40db-9263-ea00bfced0b7", - "materialProcessUuid": "c15521b1-b3dc-a50a-9daa-37e51b591d75", - "recycledProcessUuid": null, - "recycledFrom": null, - "shortName": "Polypropylène", - "origin": "Synthetic", - "primary": false, - "geographicOrigin": "Europe", - "defaultCountry": "FR", - "priority": 0, - "cff": null - }, - { - "name": "Filament de polylactide", - "info": "Textile > Matières > Matières synthétiques", - "unit": "kg", - "source": "Base Impacts 2.01", - "uuid": "f2dd799d-1b69-4e7a-99bd-696bbbd5a978", - "impacts": { - "acd": 0.047873, - "bvi": 0.0, - "cch": 9.35683, - "etf": 0.0, - "etf-c": 0.0, - "fru": 128.14, - "fwe": 0.000456785, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 4.08581, - "ldu": 10.5955, - "mru": 7.30883e-6, - "ozd": 6.09401e-7, - "pco": 0.0245282, - "pma": 9.01373e-7, - "swe": 0.0200355, - "tre": 0.0939001, - "wtu": 0.0295386 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0319569, - "alias": null, - "step_usage": "Matières, Filature", - "correctif": "Ajout données \"EP&L Kering\" pour la consommation d'eau", - "id": "pla", - "materialAndSpinningProcessUuid": "f2dd799d-1b69-4e7a-99bd-696bbbd5a978", - "materialProcessUuid": "85750621-02fb-cd4f-357f-bc5af71a1bfc", - "recycledProcessUuid": null, - "recycledFrom": null, - "shortName": "Polylactide", - "origin": "Synthetic", - "primary": false, - "geographicOrigin": "Asie - Pacifique", - "defaultCountry": "CN", - "priority": 0, - "cff": null - }, - { - "name": "Filament de polyéthylène", - "info": "Textile > Matières > Matières synthétiques", - "unit": "kg", - "source": "Base Impacts 2.01", - "uuid": "088ed617-67fa-4d42-b3af-ee6cf39cf36f", - "impacts": { - "acd": 0.0291494, - "bvi": 0.0, - "cch": 6.91078, - "etf": 0.0, - "etf-c": 0.0, - "fru": 151.324, - "fwe": 0.000266425, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 4.20627, - "ldu": 3.57873, - "mru": 2.3884e-6, - "ozd": 3.07569e-7, - "pco": 0.0160151, - "pma": 3.51994e-7, - "swe": 0.00523998, - "tre": 0.0273944, - "wtu": 0.0295386 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0319569, - "alias": null, - "step_usage": "Matières, Filature", - "correctif": "Ajout données \"EP&L Kering\" pour la consommation d'eau", - "id": "pe", - "materialAndSpinningProcessUuid": "088ed617-67fa-4d42-b3af-ee6cf39cf36f", - "materialProcessUuid": "48f165d5-7b00-c7f4-781e-f86f5c8cc1ab", - "recycledProcessUuid": null, - "recycledFrom": null, - "shortName": "Polyéthylène", - "origin": "Synthetic", - "primary": false, - "geographicOrigin": "Europe", - "defaultCountry": "FR", - "priority": 0, - "cff": null - }, - { - "name": "(EI) Filament de polyester", - "info": "Textile > Matières > Matières synthétiques", - "unit": "kg", - "source": "Ecoinvent 3.9.1", - "uuid": "", - "impacts": { - "acd": 0.0186312, - "bvi": 0.0, - "cch": 4.1593321, - "etf": 12.67545, - "etf-c": 13.777083034, - "fru": 86.374758, - "fwe": 0.0010940637, - "htc": 5.23e-10, - "htc-c": 1.0454992e-9, - "htn": 5.04e-9, - "htn-c": 9.956801e-9, - "ior": 0.28591251, - "ldu": 9.6837138, - "mru": 3.88e-5, - "ozd": 1.55e-5, - "pco": 0.018726196, - "pma": 1.92e-7, - "swe": 0.0040132771, - "tre": 0.036363971, - "wtu": 2.1062805 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0319569, - "alias": null, - "step_usage": "Matières, Filature", - "correctif": "Ajout données \"EP&L Kering\" pour la consommation d'eau", - "id": "ei-pet", - "materialAndSpinningProcessUuid": "4d57c51d-7d56-46e1-acde-02fbcdc943e4", - "materialProcessUuid": "4dad2986-ce83-4960-6a06-e9ab85a0bcc1", - "recycledProcessUuid": "3e1c26d3-23ef-323e-e848-f808f54d35bf", - "recycledFrom": null, - "shortName": "(EI) Polyester", - "origin": "Synthetic", - "primary": true, - "geographicOrigin": "Asie - Pacifique", - "defaultCountry": "CN", - "priority": 80, - "cff": null - }, - { - "name": "Filament de polyester, inventaire partiellement agrégé", - "info": "Textile > Matières > Matières synthétiques", - "unit": "kg", - "source": "Base Impacts 2.01", - "uuid": "4d57c51d-7d56-46e1-acde-02fbcdc943e4", - "impacts": { - "acd": 0.0688135, - "bvi": 0.0, - "cch": 10.2505, - "etf": 0.0, - "etf-c": 0.0, - "fru": 159.217, - "fwe": 0.000767668, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 1.50994, - "ldu": 23.5316, - "mru": 2.05077e-5, - "ozd": 3.06394e-7, - "pco": 0.043633, - "pma": 1.93075e-6, - "swe": 0.0149349, - "tre": 0.128688, - "wtu": 0.767274 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0319569, - "alias": null, - "step_usage": "Matières, Filature", - "correctif": "Ajout données \"EP&L Kering\" pour la consommation d'eau", - "id": "pet", - "materialAndSpinningProcessUuid": "4d57c51d-7d56-46e1-acde-02fbcdc943e4", - "materialProcessUuid": "4dad2986-ce83-4960-6a06-e9ab85a0bcc1", - "recycledProcessUuid": "3e1c26d3-23ef-323e-e848-f808f54d35bf", - "recycledFrom": null, - "shortName": "Polyester", - "origin": "Synthetic", - "primary": true, - "geographicOrigin": "Asie - Pacifique", - "defaultCountry": "CN", - "priority": 80, - "cff": null - }, - { - "name": "Filament de polyamide 66", - "info": "Textile > Matières > Matières synthétiques", - "unit": "kg", - "source": "Base Impacts 2.01", - "uuid": "182fa424-1f49-4728-b0f1-cb4e4ab36392", - "impacts": { - "acd": 0.0500436, - "bvi": 0.0, - "cch": 13.6468, - "etf": 0.0, - "etf-c": 0.0, - "fru": 210.02, - "fwe": 0.000343227, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 4.31511, - "ldu": 3.61651, - "mru": 5.26757e-6, - "ozd": 3.07202e-7, - "pco": 0.0177015, - "pma": 5.71268e-7, - "swe": 0.0138544, - "tre": 0.0374048, - "wtu": 0.0295386 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0319569, - "alias": null, - "step_usage": "Matières, Filature", - "correctif": "Ajout données \"EP&L Kering\" pour la consommation d'eau", - "id": "pa", - "materialAndSpinningProcessUuid": "182fa424-1f49-4728-b0f1-cb4e4ab36392", - "materialProcessUuid": "72e63ac7-a953-8322-1f70-d5dc2e675fc7", - "recycledProcessUuid": "46f7c9ea-b38c-f45a-7ad9-8a70a603e9e1", - "recycledFrom": null, - "shortName": "Polyamide", - "origin": "Synthetic", - "primary": true, - "geographicOrigin": "Europe", - "defaultCountry": "FR", - "priority": 0, - "cff": null - }, - { - "name": "Filament d'aramide", - "info": "Textile > Matières > Matières synthétiques", - "unit": "kg", - "source": "Base Impacts 2.01", - "uuid": "7a1ccc4a-2ea7-48dc-9ef0-d57066ea8fa5", - "impacts": { - "acd": 0.0790202, - "bvi": 0.0, - "cch": 22.3103, - "etf": 0.0, - "etf-c": 0.0, - "fru": 266.297, - "fwe": 0.000311432, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 16.137, - "ldu": 4.05646, - "mru": 8.62709e-7, - "ozd": 0.000280342, - "pco": 0.0216061, - "pma": 1.23932e-6, - "swe": 0.00658183, - "tre": 0.0614476, - "wtu": 0.0295386 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Matières, Filature", - "correctif": "Ajout données \"EP&L Kering\" pour la consommation d'eau", - "id": "aramide", - "materialAndSpinningProcessUuid": "7a1ccc4a-2ea7-48dc-9ef0-d57066ea8fa5", - "materialProcessUuid": "e539a78b-c8ef-f346-0b12-ae6ead581e57", - "recycledProcessUuid": null, - "recycledFrom": null, - "shortName": "Aramide", - "origin": "Synthetic", - "primary": false, - "geographicOrigin": "Asie - Pacifique", - "defaultCountry": "CN", - "priority": 0, - "cff": null - }, - { - "name": "Filament d'acrylique", - "info": "Textile > Matières > Matières synthétiques", - "unit": "kg", - "source": "Base Impacts 2.01", - "uuid": "aee6709f-0864-4fc5-8760-68cb644a0021", - "impacts": { - "acd": 0.143457, - "bvi": 0.0, - "cch": 18.4288, - "etf": 0.0, - "etf-c": 0.0, - "fru": 270.853, - "fwe": 0.000341635, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 7.10451, - "ldu": 5.41896, - "mru": 9.72208e-6, - "ozd": 5.25589e-7, - "pco": 0.0717722, - "pma": 3.65297e-6, - "swe": 0.0356034, - "tre": 0.292909, - "wtu": 0.07195 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.00796392, - "alias": null, - "step_usage": "Matières, Filature", - "correctif": "Ajout données \"EP&L Kering\" pour la consommation d'eau", - "id": "acrylique", - "materialAndSpinningProcessUuid": "aee6709f-0864-4fc5-8760-68cb644a0021", - "materialProcessUuid": "c963cfe0-afae-5a3b-b909-6a04e7d80068", - "recycledProcessUuid": "c393fd0e-1cc6-2be5-7836-46bf0324aac3", - "recycledFrom": null, - "shortName": "Acrylique", - "origin": "Synthetic", + "acd": 0.002, + "cch": 0.71422, + "etf": 0, + "etf-c": 0, + "fru": 14.62378, + "fwe": 0.0003, + "htc": 0, + "htc-c": 0, + "htn": 0, + "htn-c": 0, + "ior": 12.38989, + "ldu": 22.66973, + "mru": 9.166e-6, + "ozd": 2.77e-7, + "pco": 0.003297585, + "pma": 6.3e-8, + "swe": 0.000785367, + "tre": 0.000746769, + "wtu": 0, + "ecs": 179.4597612653979, + "pef": 221.26277508920256 + } + }, + { + "displayName": "Production de coton recyclé (déchets de production)", + "info": "Textile > Matières > Matières recyclées uuid_bi=2b24abb0-c1ec-4298-9b58-350904a26104", + "source": "Custom", + "correctif": "corr1: Données Base Impacts 2.01 uuid_bi=2b24abb0-c1ec-4298-9b58-350904a26104 auquel a été retranché l'impact de la filature", + "step_usage": "Matières", + "uuid": "9c6ab710-4a08-c720-cede-24428a013fda", + "heat_MJ": 0, + "elec_pppm": 0, + "elec_MJ": 0, + "waste": 0.17842, + "alias": null, + "category": "material", + "material_id": "coton-rdp", + "recycledFrom": "ei-coton", + "shortName": "Coton recyclé (déchets de production)", + "origin": "NaturalFromVegetal", "primary": true, - "geographicOrigin": "Asie - Pacifique", - "defaultCountry": "CN", - "priority": 0, - "cff": null - }, - { - "name": "Filament bi-composant polypropylène/polyamide", - "info": "Textile > Matières > Matières synthétiques", - "unit": "kg", - "source": "Base Impacts 2.01", - "uuid": "37396ac4-13a2-484c-9cc6-5b5a93ff6e6e", - "impacts": { - "acd": 0.0328683, - "bvi": 0.0, - "cch": 8.26356, - "etf": 0.0, - "etf-c": 0.0, - "fru": 161.714, - "fwe": 0.000278646, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 4.20696, - "ldu": 3.61447, - "mru": 3.01832e-6, - "ozd": 3.09893e-7, - "pco": 0.0154543, - "pma": 3.91327e-7, - "swe": 0.00697581, - "tre": 0.0292923, - "wtu": 0.0295386 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0319569, - "alias": null, - "step_usage": "Matières, Filature", - "correctif": "Ajout données \"EP&L Kering\" pour la consommation d'eau", - "id": "pp-pa", - "materialAndSpinningProcessUuid": "37396ac4-13a2-484c-9cc6-5b5a93ff6e6e", - "materialProcessUuid": "6b0404f2-b094-90b8-6b01-a1c12a3a2107", - "recycledProcessUuid": null, - "recycledFrom": null, - "shortName": "Polypropylène/polyamide", - "origin": "Synthetic", - "primary": false, - "geographicOrigin": "Europe", + "geographicOrigin": "Espagne & France", "defaultCountry": "FR", - "priority": 0, - "cff": null - }, - { - "name": "Feuille de néoprène, inventaire agrégé", - "info": "Textile > Matières > Matières synthétiques", - "unit": "kg", - "source": "Base Impacts 2.01", - "uuid": "76fefff3-3781-49a2-8deb-c12945a6b71f", - "impacts": { - "acd": 0.0259965, - "bvi": 0.0, - "cch": 9.87734, - "etf": 0.0, - "etf-c": 0.0, - "fru": 113.8, - "fwe": 0.000243907, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 3.08841, - "ldu": 10.2618, - "mru": 8.81388e-6, - "ozd": 1.1716e-6, - "pco": 0.0133511, - "pma": 6.30576e-7, - "swe": 0.00399181, - "tre": 0.0409916, - "wtu": 0.0295386 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Matières, Filature", - "correctif": "Ajout données \"EP&L Kering\" pour la consommation d'eau", - "id": "neoprene", - "materialAndSpinningProcessUuid": "76fefff3-3781-49a2-8deb-c12945a6b71f", - "materialProcessUuid": "76fefff3-3781-49a2-8deb-c12945a6b71f", - "recycledProcessUuid": null, - "recycledFrom": null, - "shortName": "Néoprène", - "origin": "Synthetic", - "primary": false, - "geographicOrigin": "Asie - Pacifique", - "defaultCountry": "CN", - "priority": 0, - "cff": null - }, - { - "name": "Production de filament de polyester recyclé (recyclage mécanique), traitement de bouteilles post-consommation, inventaire partiellement agrégé", - "info": "Textile > Matières > Matières recyclées", - "unit": "kg", - "source": "Base Impacts 2.01", - "uuid": "4072bfa2-1948-4d12-8de9-bbeb6cc628e1", - "impacts": { - "acd": 0.0482881, - "bvi": 0.0, - "cch": 6.58922, - "etf": 0.0, - "etf-c": 0.0, - "fru": 85.6038, - "fwe": 0.000625874, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.620714, - "ldu": 25.0698, - "mru": 1.45517e-5, - "ozd": 4.1313e-7, - "pco": 0.0321404, - "pma": 1.31439e-6, - "swe": 0.0107371, - "tre": 0.09158, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.031957, - "alias": null, - "step_usage": "Matières, Filature", - "correctif": "Ajout données \"EP&L Kering\" pour la consommation d'eau", - "id": "pet-rm", - "materialAndSpinningProcessUuid": "4072bfa2-1948-4d12-8de9-bbeb6cc628e1", - "materialProcessUuid": "3e1c26d3-23ef-323e-e848-f808f54d35bf", - "recycledProcessUuid": null, - "recycledFrom": "pet", - "shortName": "Polyester recyclé (recyclage mécanique)", - "origin": "Synthetic", - "primary": true, - "geographicOrigin": "Asie - Pacifique", - "defaultCountry": "CN", - "priority": 0, - "cff": { "manufacturerAllocation": 0.5, "recycledQualityRatio": 0.7 } - }, - { - "name": "Production de filament de polyester recyclé (recyclage chimique partiel), traitement de bouteilles post-consommation, inventaire partiellement agrégé", - "info": "Textile > Matières > Matières recyclées", - "unit": "kg", - "source": "Base Impacts 2.01", - "uuid": "e65e8157-9bd1-4711-9571-8e4a22c2d2b5", - "impacts": { - "acd": 0.143765, - "bvi": 0.0, - "cch": 22.3377, - "etf": 0.0, - "etf-c": 0.0, - "fru": 393.632, - "fwe": 0.00155739, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 3.90501, - "ldu": 35.1259, - "mru": 5.53081e-5, - "ozd": 5.37531e-7, - "pco": 0.0924308, - "pma": 4.02144e-6, - "swe": 0.0288718, - "tre": 0.285928, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.032, - "alias": null, - "step_usage": "Matières, Filature", - "correctif": "Ajout données \"EP&L Kering\" pour la consommation d'eau", - "id": "pet-rcp", - "materialAndSpinningProcessUuid": "e65e8157-9bd1-4711-9571-8e4a22c2d2b5", - "materialProcessUuid": "4a37fa2d-f2d7-d40f-c785-9faeecc3f80c", - "recycledProcessUuid": null, - "recycledFrom": "pet", - "shortName": "Polyester recyclé (recyclage chimique partiel)", - "origin": "Synthetic", - "primary": true, - "geographicOrigin": "Asie - Pacifique", - "defaultCountry": "CN", - "priority": 0, - "cff": { "manufacturerAllocation": 0.5, "recycledQualityRatio": 0.7 } - }, - { - "name": "Production de filament de polyester recyclé (recyclage chimique complet), traitement de bouteilles post-consommation, inventaire partiellement agrégé", - "info": "Textile > Matières > Matières recyclées", - "unit": "kg", - "source": "Base Impacts 2.01", - "uuid": "221067ba-5c2f-4dad-b09a-dd5af0a9ae31", - "impacts": { - "acd": 0.0548083, - "bvi": 0.0, - "cch": 6.99213, - "etf": 0.0, - "etf-c": 0.0, - "fru": 122.686, - "fwe": 0.000653595, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.793348, - "ldu": 26.0, - "mru": 1.45795e-5, - "ozd": 8.49849e-7, - "pco": 0.033851, - "pma": 1.34056e-6, - "swe": 0.0107768, - "tre": 0.0933317, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.032, - "alias": null, - "step_usage": "Matières, Filature", - "correctif": "Ajout données \"EP&L Kering\" pour la consommation d'eau", - "id": "pet-rcc", - "materialAndSpinningProcessUuid": "221067ba-5c2f-4dad-b09a-dd5af0a9ae31", - "materialProcessUuid": "9530fcd9-d6fd-1d9b-6203-2801b65c1c28", - "recycledProcessUuid": null, - "recycledFrom": "pet", - "shortName": "Polyester recyclé (recyclage chimique complet)", - "origin": "Synthetic", - "primary": true, - "geographicOrigin": "Asie - Pacifique", - "defaultCountry": "CN", - "priority": 0, - "cff": { "manufacturerAllocation": 0.5, "recycledQualityRatio": 0.7 } - }, - { - "name": "Production de filament de polyamide recyclé (recyclage chimique), traitement de déchets issus de filets de pêche, de tapis et de déchets de production, inventaire partiellement agrégé", - "info": "Textile > Matières > Matières recyclées", - "unit": "kg", - "source": "Base Impacts 2.01", - "uuid": "41ee61c2-9a98-4eec-8949-9d9b54289bd0", - "impacts": { - "acd": 0.0645523, - "bvi": 0.0, - "cch": 8.55458, - "etf": 0.0, - "etf-c": 0.0, - "fru": 107.846, - "fwe": 0.000632213, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 2.01067, - "ldu": 25.101, - "mru": 1.48745e-5, - "ozd": 3.67059e-7, - "pco": 0.0403677, - "pma": 1.80654e-6, - "swe": 0.01437, - "tre": 0.123957, - "wtu": 0.0 + "cff": { + "manufacturerAllocation": 0.8, + "recycledQualityRatio": 0.5 }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0319681, - "alias": null, - "step_usage": "Matières, Filature", - "correctif": "Ajout données \"EP&L Kering\" pour la consommation d'eau", - "id": "pa-rc", - "materialAndSpinningProcessUuid": "41ee61c2-9a98-4eec-8949-9d9b54289bd0", - "materialProcessUuid": "d7f20e07-ed42-02ed-c4bb-895c608099f6", - "recycledProcessUuid": null, - "recycledFrom": "pa", - "shortName": "Polyamide recyclé (recyclage chimique)", - "origin": "Synthetic", - "primary": true, - "geographicOrigin": "Europe puis Asie", - "defaultCountry": "CN", - "priority": 0, - "cff": { "manufacturerAllocation": 0.8, "recycledQualityRatio": 1 } - }, - { - "name": "Production de fil de viscose recyclé (recyclage mécanique), traitement de déchets de production textiles, inventaire partiellement agrégé", - "info": "Textile > Matières > Matières recyclées", "unit": "kg", - "source": "Base Impacts 2.01", - "uuid": "9671ae26-d772-4bb1-aad5-6b826555d0cd", "impacts": { - "acd": 0.0504579, - "bvi": 0.0, - "cch": 6.46416, - "etf": 0.0, - "etf-c": 0.0, - "fru": 81.1015, - "fwe": 0.000576042, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.612437, - "ldu": 23.9223, - "mru": 1.41903e-5, - "ozd": 2.61489e-7, - "pco": 0.0244383, - "pma": 1.39435e-6, - "swe": 0.0103902, - "tre": 0.0869738, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.137851, - "alias": null, - "step_usage": "Matières, Filature", - "correctif": "Ajout données \"EP&L Kering\" pour la consommation d'eau", - "id": "viscose-r", - "materialAndSpinningProcessUuid": "9671ae26-d772-4bb1-aad5-6b826555d0cd", - "materialProcessUuid": "a8d42934-33e7-98a0-e81f-9b0cbf4e7af6", - "recycledProcessUuid": null, - "recycledFrom": "viscose", - "shortName": "Viscose recyclé", - "origin": "ArtificialFromOrganic", - "primary": true, - "geographicOrigin": "Asie - Pacifique", - "defaultCountry": "CN", - "priority": 0, - "cff": { "manufacturerAllocation": 0.8, "recycledQualityRatio": 1 } + "acd": 0, + "cch": 0.01986, + "etf": 0, + "etf-c": 0, + "fru": 25.71, + "fwe": 0, + "htc": 0, + "htc-c": 0, + "htn": 0, + "htn-c": 0, + "ior": 10.17, + "ldu": 24.11, + "mru": 9.604e-6, + "ozd": 3.286e-7, + "pco": 0.00116, + "pma": 1.045e-7, + "swe": 5.067e-5, + "tre": 0, + "wtu": 0, + "ecs": 147.07224315665147, + "pef": 185.4743814674453 + } }, { - "name": "Production de fil de polyamide recyclé (recyclage mécanique), traitement de déchets de production textiles, inventaire partiellement agrégé", - "info": "Textile > Matières > Matières recyclées", + "displayName": "Tricotage moyen (mix de métiers circulaire & rectiligne)", + "info": "Textile > Mise en forme > Tricotage", + "source": "Custom", + "correctif": "non applicable", + "step_usage": "Tissage / Tricotage", + "uuid": "9c478d79-ff6b-45e1-9396-c3bd897faa1d", + "heat_MJ": 0, + "elec_pppm": 0, + "elec_MJ": 8.64, + "waste": 0.05446, + "alias": "knitting-mix", + "category": "process", "unit": "kg", - "source": "Base Impacts 2.01", - "uuid": "af5d130d-f18b-438c-9f19-d1ee49756960", "impacts": { - "acd": 0.0410623, - "bvi": 0.0, - "cch": 5.22649, - "etf": 0.0, - "etf-c": 0.0, - "fru": 73.5361, - "fwe": 0.000566081, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 1.8377, - "ldu": 20.8575, - "mru": 1.35588e-5, - "ozd": 2.13528e-7, - "pco": 0.0158555, - "pma": 7.95042e-7, - "swe": 0.00718195, - "tre": 0.0520093, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.137851, - "alias": null, - "step_usage": "Matières, Filature", - "correctif": "Ajout données \"EP&L Kering\" pour la consommation d'eau", - "id": "pa-rm", - "materialAndSpinningProcessUuid": "af5d130d-f18b-438c-9f19-d1ee49756960", - "materialProcessUuid": "46f7c9ea-b38c-f45a-7ad9-8a70a603e9e1", - "recycledProcessUuid": null, - "recycledFrom": "pa", - "shortName": "Polyamide recyclé", - "origin": "Synthetic", - "primary": true, - "geographicOrigin": "Europe", - "defaultCountry": "FR", - "priority": 0, - "cff": { "manufacturerAllocation": 0.8, "recycledQualityRatio": 1 } - }, - { - "name": "Production de fil de laine recyclé (recyclage mécanique), traitement de déchets de production textiles, inventaire partiellement agrégé", - "info": "Textile > Matières > Matières recyclées", - "unit": "kg", - "source": "Base Impacts 2.01", - "uuid": "92dfabc7-9441-463e-bda8-7bc5943c0e9d", - "impacts": { - "acd": 0.00204209, - "bvi": 0.0, - "cch": 0.495013, - "etf": 0.0, - "etf-c": 0.0, - "fru": 35.2618, - "fwe": 0.000328764, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 10.7524, - "ldu": 12.002, - "mru": 1.00942e-5, - "ozd": 5.78225e-8, - "pco": 0.00145941, - "pma": 3.63424e-8, - "swe": 0.000526683, - "tre": 0.00251755, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.1688, - "alias": null, - "step_usage": "Matières, Filature", - "correctif": "Ajout données \"EP&L Kering\" pour la consommation d'eau", - "id": "laine-r", - "materialAndSpinningProcessUuid": "92dfabc7-9441-463e-bda8-7bc5943c0e9d", - "materialProcessUuid": "8bb01460-217f-871c-be0a-e8fa1ceac2cc", - "recycledProcessUuid": null, - "recycledFrom": "laine-mouton", - "shortName": "Laine recyclée", - "origin": "NaturalFromVegetal", - "primary": true, - "geographicOrigin": "France", - "defaultCountry": "FR", - "priority": 0, - "cff": { "manufacturerAllocation": 0.8, "recycledQualityRatio": 0.5 } - }, - { - "name": "Production de fil de coton recyclé (recyclage mécanique), traitement de déchets textiles post-consommation, inventaire partiellement agrégé", - "info": "Textile > Matières > Matières recyclées", - "unit": "kg", - "source": "Base Impacts 2.01", - "uuid": "4d23093d-1346-4018-8c0f-7aae33c67bcd", - "impacts": { - "acd": 0.0033238, - "bvi": 0.0, - "cch": 1.02499, - "etf": 0.0, - "etf-c": 0.0, - "fru": 60.9745, - "fwe": 0.000359982, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 14.4964, - "ldu": 24.0622, - "mru": 1.16873e-5, - "ozd": 2.90048e-7, - "pco": 0.00402507, - "pma": 8.13448e-8, - "swe": 0.00117899, - "tre": 0.00365224, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.77305, - "alias": null, - "step_usage": "Matières, Filature", - "correctif": "Ajout données \"EP&L Kering\" pour la consommation d'eau", - "id": "coton-rdpc", - "materialAndSpinningProcessUuid": "4d23093d-1346-4018-8c0f-7aae33c67bcd", - "materialProcessUuid": "993955be-5888-6f39-137c-56af8c5187c1", - "recycledProcessUuid": null, - "recycledFrom": "coton", - "shortName": "Coton recyclé (déchets post-consommation)", - "origin": "NaturalFromVegetal", - "primary": true, - "geographicOrigin": "France", - "defaultCountry": "FR", - "priority": 0, - "cff": { "manufacturerAllocation": 0.8, "recycledQualityRatio": 0.5 } - }, - { - "name": "Production de fil de coton recyclé (recyclage mécanique), traitement de déchets de production textiles, inventaire partiellement agrégé", - "info": "Textile > Matières > Matières recyclées", - "unit": "kg", - "source": "Base Impacts 2.01", - "uuid": "2b24abb0-c1ec-4298-9b58-350904a26104", - "impacts": { - "acd": 0.004112, - "bvi": 0.0, - "cch": 1.42207, - "etf": 0.0, - "etf-c": 0.0, - "fru": 57.7404, - "fwe": 0.000370702, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 11.0846, - "ldu": 28.9386, - "mru": 1.23725e-5, - "ozd": 3.53564e-7, - "pco": 0.00469048, - "pma": 1.28197e-7, - "swe": 0.00129263, - "tre": 0.00443397, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.323, - "alias": null, - "step_usage": "Matières, Filature", - "correctif": "Ajout données \"EP&L Kering\" pour la consommation d'eau", - "id": "coton-rdp", - "materialAndSpinningProcessUuid": "2b24abb0-c1ec-4298-9b58-350904a26104", - "materialProcessUuid": "9c6ab710-4a08-c720-cede-24428a013fda", - "recycledProcessUuid": null, - "recycledFrom": "coton", - "shortName": "Coton recyclé (déchets de production)", - "origin": "NaturalFromVegetal", - "primary": true, - "geographicOrigin": "Espagne & France", - "defaultCountry": "FR", - "priority": 0, - "cff": { "manufacturerAllocation": 0.8, "recycledQualityRatio": 0.5 } - }, - { - "name": "Production de fil d'acrylique recyclé (recyclage mécanique), traitement de déchets de production textiles, inventaire partiellement agrégé", - "info": "Textile > Matières > Matières recyclées", - "unit": "kg", - "source": "Base Impacts 2.01", - "uuid": "7603beaa-c555-4283-b9f8-4d5d231b8490", - "impacts": { - "acd": 0.0513796, - "bvi": 0.0, - "cch": 6.56515, - "etf": 0.0, - "etf-c": 0.0, - "fru": 83.9213, - "fwe": 0.000579953, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.640211, - "ldu": 24.2332, - "mru": 1.43209e-5, - "ozd": 2.98967e-7, - "pco": 0.0250282, - "pma": 1.4073e-6, - "swe": 0.0104644, - "tre": 0.0878088, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.137851, - "alias": null, - "step_usage": "Matières, Filature", - "correctif": "Ajout données \"EP&L Kering\" pour la consommation d'eau", - "id": "acrylique-r", - "materialAndSpinningProcessUuid": "7603beaa-c555-4283-b9f8-4d5d231b8490", - "materialProcessUuid": "c393fd0e-1cc6-2be5-7836-46bf0324aac3", - "recycledProcessUuid": null, - "recycledFrom": "acrylique", - "shortName": "Acrylique recyclé", - "origin": "Synthetic", - "primary": true, - "geographicOrigin": "Asie - Pacifique", - "defaultCountry": "CN", - "priority": 0, - "cff": { "manufacturerAllocation": 0.8, "recycledQualityRatio": 1 } - }, - { - "name": "Soie", - "info": "Textile > Matières > Matières naturelles uuid_bi=94b4b0e1-61e4-4f4d-b9b2-efe7623b0e68", - "unit": "kg", - "source": "Base Impacts 2.01", - "uuid": "e3e70682-c209-4cac-629f-6fbed82c07cd", - "impacts": { - "acd": 0.416821, - "bvi": 0.0, - "cch": 13.9642, - "etf": 0.0, - "etf-c": 0.0, - "fru": 46.8401, - "fwe": 0.000827798, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.157837, - "ldu": 4339.01, - "mru": 1.70625e-5, - "ozd": 8.03257e-7, - "pco": 0.0345564, - "pma": 1.3218e-5, - "swe": 0.190572, - "tre": 1.84608, - "wtu": 33.7462 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 7.08976, - "alias": null, - "step_usage": "Matières, Filature", - "correctif": "Ajout données \"EP&L Kering\" pour la consommation d'eau" - }, - { - "name": "Lin (filasse)", - "info": "Textile > Matières > Matières naturelles uuid_bi=e5a6d538-f932-4242-98b4-3a0c6439629c", - "unit": "kg", - "source": "Base Impacts 2.01", - "uuid": "cd613e30-d8f1-6adf-91b7-584a2265b1f5", - "impacts": { - "acd": 0.0765837, - "bvi": 0.0, - "cch": 12.2672, - "etf": 0.0, - "etf-c": 0.0, - "fru": 173.596, - "fwe": 0.00115096, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 5.64723, - "ldu": 9.5795, - "mru": 2.14717e-5, - "ozd": 8.45593e-7, - "pco": 0.0336432, - "pma": 1.7376e-6, - "swe": 0.0196583, - "tre": 0.131909, - "wtu": 0.00414107 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0765978, - "alias": null, - "step_usage": "Matières, Filature", - "correctif": "Ajout données \"EP&L Kering\" pour la consommation d'eau" - }, - { - "name": "Lin (étoupe)", - "info": "Textile > Matières > Matières naturelles uuid_bi=fcef1a31-bb18-49e4-bdb6-e53dfe015ba0", - "unit": "kg", - "source": "Base Impacts 2.01", - "uuid": "d95bafc8-f2a4-d27b-dcf4-bb99f4bea973", - "impacts": { - "acd": 0.067059, - "bvi": 0.0, - "cch": 10.8456, - "etf": 0.0, - "etf-c": 0.0, - "fru": 159.917, - "fwe": 0.000659045, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 5.4455, - "ldu": 6.97462, - "mru": 1.28748e-5, - "ozd": 6.83432e-7, - "pco": 0.031239, - "pma": 1.59921e-6, - "swe": 0.0146411, - "tre": 0.11447, - "wtu": 0.00414107 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.185817, - "alias": null, - "step_usage": "Matières, Filature", - "correctif": "Ajout données \"EP&L Kering\" pour la consommation d'eau" - }, - { - "name": "Laine de mouton Mérinos", - "info": "Textile > Matières > Matières naturelles uuid_bi=4e035dbf-f48b-4b5a-94ea-0006c713958b", - "unit": "kg", - "source": "Base Impacts 2.01", - "uuid": "21636369-8b52-9b4a-97b7-50923ceb3ffd", - "impacts": { - "acd": 0.211357, - "bvi": 0.0, - "cch": 64.8163, - "etf": 0.0, - "etf-c": 0.0, - "fru": 372.473, - "fwe": 0.00279069, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 5.69737, - "ldu": 1348.05, - "mru": 0.000177633, - "ozd": 3.25189e-6, - "pco": 0.0671638, - "pma": 3.33088e-6, - "swe": 0.0619979, - "tre": 0.35757, - "wtu": 0.323135 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 3.2e-6, - "alias": null, - "step_usage": "Matières, Filature", - "correctif": "Ajout données \"EP&L Kering\" pour la consommation d'eau" - }, - { - "name": "Laine de mouton", - "info": "Textile > Matières > Matières naturelles uuid_bi=376bd165-d354-41aa-a6e3-fd3228413bb2", - "unit": "kg", - "source": "Base Impacts 2.01", - "uuid": "b8a1abcd-1a69-16c7-4da4-f9fc3c6da5d7", - "impacts": { - "acd": 1.52825, - "bvi": 0.0, - "cch": 70.7321, - "etf": 0.0, - "etf-c": 0.0, - "fru": 270.386, - "fwe": 0.00732899, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 1.22971, - "ldu": 7095.24, - "mru": 5.81798e-5, - "ozd": 2.45862e-6, - "pco": 0.0391473, - "pma": 1.15383e-5, - "swe": 0.289235, - "tre": 6.55502, - "wtu": 0.323135 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.538462, - "alias": null, - "step_usage": "Matières, Filature", - "correctif": "Ajout données \"EP&L Kering\" pour la consommation d'eau" - }, - { - "name": "Jute", - "info": "Textile > Matières > Matières naturelles uuid_bi=72010874-4d26-4c7a-95de-c6987dfdedeb", - "unit": "kg", - "source": "Base Impacts 2.01", - "uuid": "5bc8fbbc-bde5-c099-4164-d8399f767c45", - "impacts": { - "acd": 0.0577002, - "bvi": 0.0, - "cch": 8.80156, - "etf": 0.0, - "etf-c": 0.0, - "fru": 116.955, - "fwe": 0.000804195, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.337111, - "ldu": 21.0914, - "mru": 1.28896e-5, - "ozd": 7.38912e-7, - "pco": 0.0177872, - "pma": 9.8494e-7, - "swe": 0.0151197, - "tre": 0.147621, - "wtu": 4.62661 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.168877, - "alias": null, - "step_usage": "Matières, Filature", - "correctif": "Ajout données \"EP&L Kering\" pour la consommation d'eau" - }, - { - "name": "(EI) Coton", - "info": "Textile > Matières > Matières naturelles uuid_bi=f211bbdb-415c-46fd-be4d-ddf199575b44", - "unit": "kg", - "source": "Base Impacts 2.01", - "uuid": "ei-coton", - "impacts": { - "acd": 0.114406, - "bvi": 0.0, - "cch": 11.9377, - "etf": 0.0, - "etf-c": 0.0, - "fru": 161.252, - "fwe": 0.00146113, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 2.26729, - "ldu": 647.097, - "mru": 3.48489e-5, - "ozd": 9.85797e-7, - "pco": 0.0247678, - "pma": 1.81709e-6, - "swe": 0.0886979, - "tre": 0.248403, - "wtu": 4.62661 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.105105, - "alias": null, - "step_usage": "Matières, Filature", - "correctif": "Ajout données \"EP&L Kering\" pour la consommation d'eau" - }, - { - "name": "Coton", - "info": "Textile > Matières > Matières naturelles uuid_bi=f211bbdb-415c-46fd-be4d-ddf199575b44", - "unit": "kg", - "source": "Base Impacts 2.01", - "uuid": "14a03569-d26b-9496-92e5-dfe8cb1855fe", - "impacts": { - "acd": 0.114406, - "bvi": 0.0, - "cch": 11.9377, - "etf": 0.0, - "etf-c": 0.0, - "fru": 161.252, - "fwe": 0.00146113, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 2.26729, - "ldu": 647.097, - "mru": 3.48489e-5, - "ozd": 9.85797e-7, - "pco": 0.0247678, - "pma": 1.81709e-6, - "swe": 0.0886979, - "tre": 0.248403, - "wtu": 4.62661 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.105105, - "alias": null, - "step_usage": "Matières, Filature", - "correctif": "Ajout données \"EP&L Kering\" pour la consommation d'eau" - }, - { - "name": "Chanvre", - "info": "Textile > Matières > Matières naturelles uuid_bi=08601439-f338-4f94-ac8c-538061b65d16", - "unit": "kg", - "source": "Base Impacts 2.01", - "uuid": "6513270e-269e-0d37-f2a7-4de452e6b438", - "impacts": { - "acd": 0.11, - "bvi": 0.0, - "cch": 14.8618, - "etf": 0.0, - "etf-c": 0.0, - "fru": 175.276, - "fwe": 0.00101734, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 1.25305, - "ldu": 10.3182, - "mru": 1.87786e-5, - "ozd": 8.90026e-7, - "pco": 0.045251, - "pma": 2.54029e-6, - "swe": 0.0608369, - "tre": 0.216705, - "wtu": 0.0204297 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.123406, - "alias": null, - "step_usage": "Matières, Filature", - "correctif": "Ajout données \"EP&L Kering\" pour la consommation d'eau" - }, - { - "name": "Cachemire", - "info": "Textile > Matières > Matières naturelles uuid_bi=380c0d9c-2840-4390-bd3f-5c960f26f5ed", - "unit": "kg", - "source": "Base Impacts 2.01", - "uuid": "6018366c-f658-f7a7-5ed3-4fe53a096533", - "impacts": { - "acd": 6.14522, - "bvi": 0.0, - "cch": 351.515, - "etf": 0.0, - "etf-c": 0.0, - "fru": 224.321, - "fwe": 0.000888094, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.450886, - "ldu": 1493300.0, - "mru": 3.71027e-5, - "ozd": 1.76113e-6, - "pco": 0.132817, - "pma": 4.42254e-5, - "swe": 0.197218, - "tre": 27.0376, - "wtu": 97.324 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 2.84423, - "alias": null, - "step_usage": "Matières, Filature", - "correctif": "Ajout données \"EP&L Kering\" pour la consommation d'eau" - }, - { - "name": "Angora", - "info": "Textile > Matières > Matières naturelles uuid_bi=29bddef1-d753-45af-9ca6-aec05e2d02b9", - "unit": "kg", - "source": "Base Impacts 2.01", - "uuid": "4462ebfc-5f91-5ef0-9cfb-ac6e7687a66e", - "impacts": { - "acd": 2.43842, - "bvi": 0.0, - "cch": 38.4413, - "etf": 0.0, - "etf-c": 0.0, - "fru": 331.028, - "fwe": 0.00297464, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 2.20898, - "ldu": 3761.8, - "mru": 5.97257e-5, - "ozd": 3.01762e-6, - "pco": 0.0734605, - "pma": 1.83683e-5, - "swe": 0.363055, - "tre": 10.64, - "wtu": 0.621031 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.538462, - "alias": null, - "step_usage": "Matières, Filature", - "correctif": "Ajout données \"EP&L Kering\" pour la consommation d'eau" - }, - { - "name": "Viscose", - "info": "Textile > Matières > Matières synthétiques uuid_bi=81a67d97-3cd9-44ef-9ee2-159364364c0f", - "unit": "kg", - "source": "Base Impacts 2.01", - "uuid": "7b89296c-6dcb-ac50-0857-7eb1924770d3", - "impacts": { - "acd": 0.0480366, - "bvi": 0.0, - "cch": 4.50391, - "etf": 0.0, - "etf-c": 0.0, - "fru": 62.1656, - "fwe": 0.000843732, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.341708, - "ldu": 487.134, - "mru": 1.2539e-5, - "ozd": 5.03031e-7, - "pco": 0.0055048, - "pma": 8.02313e-7, - "swe": 0.00316288, - "tre": 0.00178262, - "wtu": 0.0289478 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0370371, - "alias": null, - "step_usage": "Matières, Filature", - "correctif": "Ajout données \"EP&L Kering\" pour la consommation d'eau" - }, - { - "name": "Filament de polyuréthane / Élasthanne", - "info": "Textile > Matières > Matières synthétiques uuid_bi=c3738500-0a62-4b95-b4a2-b7beb12a9e1a", - "unit": "kg", - "source": "Base Impacts 2.01", - "uuid": "db5b5fab-8f4d-3e27-dda1-494c73cf256d", - "impacts": { - "acd": 0.0993232, - "bvi": 0.0, - "cch": 16.941, - "etf": 0.0, - "etf-c": 0.0, - "fru": 237.045, - "fwe": 0.0003785, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 5.87423, - "ldu": 3.55613, - "mru": 7.26484e-6, - "ozd": 2.90021e-7, - "pco": 0.0589933, - "pma": 3.18158e-6, - "swe": 0.0245805, - "tre": 0.207705, - "wtu": 0.0289478 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0, - "alias": null, - "step_usage": "Matières, Filature", - "correctif": "Ajout données \"EP&L Kering\" pour la consommation d'eau", - "id": "pu", - "materialAndSpinningProcessUuid": "c3738500-0a62-4b95-b4a2-b7beb12a9e1a", - "materialProcessUuid": "db5b5fab-8f4d-3e27-dda1-494c73cf256d", - "recycledProcessUuid": null, - "recycledFrom": null, - "shortName": "Polyuréthane/Élasthanne", - "origin": "Synthetic", - "primary": false, - "geographicOrigin": "Asie - Pacifique", - "defaultCountry": "CN", - "priority": 60, - "cff": null - }, - { - "name": "Polytriméthylène téréphtalate (PTT)", - "info": "Textile > Matières > Matières synthétiques uuid_bi=eca33573-0d09-4d79-9b28-da42bfcc7a4b", - "unit": "kg", - "source": "Base Impacts 2.01", - "uuid": "87751d4c-a850-1e2c-44dc-da6a797d76de", - "impacts": { - "acd": 0.0442263, - "bvi": 0.0, - "cch": 8.51621, - "etf": 0.0, - "etf-c": 0.0, - "fru": 185.11, - "fwe": 0.000809829, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 5.88217, - "ldu": 84.7498, - "mru": 2.2258e-5, - "ozd": 1.19629e-6, - "pco": 0.0141165, - "pma": 2.00299e-7, - "swe": 0.0105782, - "tre": 0.0220739, - "wtu": 0.0289478 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0113178, - "alias": null, - "step_usage": "Matières, Filature", - "correctif": "Ajout données \"EP&L Kering\" pour la consommation d'eau" - }, - { - "name": "Polytéréphtalate de butylène (PBT)", - "info": "Textile > Matières > Matières synthétiques uuid_bi=7f8bbfdc-fb65-4e3a-ac81-eda197ef17fc", - "unit": "kg", - "source": "Base Impacts 2.01", - "uuid": "e8d79f49-af6d-114c-4a6f-188a424e617b", - "impacts": { - "acd": 0.045095, - "bvi": 0.0, - "cch": 6.5908, - "etf": 0.0, - "etf-c": 0.0, - "fru": 120.526, - "fwe": 0.000748512, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 3.39929, - "ldu": 25.6703, - "mru": 1.98264e-5, - "ozd": 4.27274e-7, - "pco": 0.0135844, - "pma": 5.4228e-7, - "swe": 0.00549067, - "tre": 0.0266387, - "wtu": 0.0289478 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0, - "alias": null, - "step_usage": "Matières, Filature", - "correctif": "Ajout données \"EP&L Kering\" pour la consommation d'eau" - }, - { - "name": "Polypropylène", - "info": "Textile > Matières > Matières synthétiques uuid_bi=a30cfbde-393a-40db-9263-ea00bfced0b7", - "unit": "kg", - "source": "Base Impacts 2.01", - "uuid": "c15521b1-b3dc-a50a-9daa-37e51b591d75", - "impacts": { - "acd": 0.0273882, - "bvi": 0.0, - "cch": 6.52474, - "etf": 0.0, - "etf-c": 0.0, - "fru": 117.32, - "fwe": 0.000256735, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 1.86146, - "ldu": 3.51033, - "mru": 2.2323e-6, - "ozd": 2.99123e-7, - "pco": 0.0139493, - "pma": 3.2695e-7, - "swe": 0.00492249, - "tre": 0.0252705, - "wtu": 0.0289478 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0113178, - "alias": null, - "step_usage": "Matières, Filature", - "correctif": "Ajout données \"EP&L Kering\" pour la consommation d'eau" - }, - { - "name": "Polylactide", - "info": "Textile > Matières > Matières synthétiques uuid_bi=f2dd799d-1b69-4e7a-99bd-696bbbd5a978", - "unit": "kg", - "source": "Base Impacts 2.01", - "uuid": "85750621-02fb-cd4f-357f-bc5af71a1bfc", - "impacts": { - "acd": 0.018727, - "bvi": 0.0, - "cch": 5.84339, - "etf": 0.0, - "etf-c": 0.0, - "fru": 92.0002, - "fwe": 0.00044758, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 3.95869, - "ldu": 10.3836, - "mru": 6.89477e-6, - "ozd": 5.97211e-7, - "pco": 0.00361771, + "acd": 0, + "cch": 0, + "etf": 0, + "etf-c": 0, + "fru": 0, + "fwe": 0, + "htc": 0, + "htc-c": 0, + "htn": 0, + "htn-c": 0, + "ior": 0, + "ldu": 0, + "mru": 0, + "ozd": 0, + "pco": 0, "pma": 0, - "swe": 0.0122287, - "tre": 0.0111989, - "wtu": 0.0289478 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0113178, - "alias": null, - "step_usage": "Matières, Filature", - "correctif": "Ajout données \"EP&L Kering\" pour la consommation d'eau" - }, - { - "name": "Polyéthylène", - "info": "Textile > Matières > Matières synthétiques uuid_bi=088ed617-67fa-4d42-b3af-ee6cf39cf36f", - "unit": "kg", - "source": "Base Impacts 2.01", - "uuid": "48f165d5-7b00-c7f4-781e-f86f5c8cc1ab", - "impacts": { - "acd": 0.0279064, - "bvi": 0.0, - "cch": 6.51674, - "etf": 0.0, - "etf-c": 0.0, - "fru": 118.999, - "fwe": 0.000260994, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 1.86106, - "ldu": 3.50716, - "mru": 2.18781e-6, - "ozd": 2.98658e-7, - "pco": 0.0150315, - "pma": 3.31872e-7, - "swe": 0.00489571, - "tre": 0.0252811, - "wtu": 0.0289478 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0113178, - "alias": null, - "step_usage": "Matières, Filature", - "correctif": "Ajout données \"EP&L Kering\" pour la consommation d'eau" - }, - { - "name": "Polyester", - "info": "Textile > Matières > Matières synthétiques uuid_bi=4d57c51d-7d56-46e1-acde-02fbcdc943e4", - "unit": "kg", - "source": "Base Impacts 2.01", - "uuid": "4dad2986-ce83-4960-6a06-e9ab85a0bcc1", - "impacts": { - "acd": 0.0392487, - "bvi": 0.0, - "cch": 6.71918, - "etf": 0.0, - "etf-c": 0.0, - "fru": 122.456, - "fwe": 0.000752245, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 1.43434, - "ldu": 23.061, - "mru": 1.98297e-5, - "ozd": 3.00264e-7, - "pco": 0.0223404, - "pma": 8.4755e-7, - "swe": 0.00723008, - "tre": 0.0452911, - "wtu": 0.751929 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0113178, - "alias": null, - "step_usage": "Matières, Filature", - "correctif": "Ajout données \"EP&L Kering\" pour la consommation d'eau" - }, - { - "name": "Polyamide", - "info": "Textile > Matières > Matières synthétiques uuid_bi=182fa424-1f49-4728-b0f1-cb4e4ab36392", - "unit": "kg", - "source": "Base Impacts 2.01", - "uuid": "72e63ac7-a953-8322-1f70-d5dc2e675fc7", - "impacts": { - "acd": 0.0483827, - "bvi": 0.0, - "cch": 13.118, - "etf": 0.0, - "etf-c": 0.0, - "fru": 176.521, - "fwe": 0.00033626, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 1.96773, - "ldu": 3.54418, - "mru": 5.0094e-6, - "ozd": 2.98299e-7, - "pco": 0.0166842, - "pma": 5.46761e-7, - "swe": 0.0133378, - "tre": 0.0350913, - "wtu": 0.0289478 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0113178, - "alias": null, - "step_usage": "Matières, Filature", - "correctif": "Ajout données \"EP&L Kering\" pour la consommation d'eau" - }, - { - "name": "Aramide", - "info": "Textile > Matières > Matières synthétiques uuid_bi=7a1ccc4a-2ea7-48dc-9ef0-d57066ea8fa5", - "unit": "kg", - "source": "Base Impacts 2.01", - "uuid": "e539a78b-c8ef-f346-0b12-ae6ead581e57", - "impacts": { - "acd": 0.0492513, - "bvi": 0.0, - "cch": 18.5378, - "etf": 0.0, - "etf-c": 0.0, - "fru": 227.394, - "fwe": 0.000305134, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 15.7689, - "ldu": 3.97533, - "mru": 5.77574e-7, - "ozd": 0.000274735, - "pco": 0.000754055, - "pma": 1.69949e-7, "swe": 0, - "tre": 0, - "wtu": 0.0289478 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0, - "alias": null, - "step_usage": "Matières, Filature", - "correctif": "Ajout données \"EP&L Kering\" pour la consommation d'eau" - }, - { - "name": "Acrylique", - "info": "Textile > Matières > Matières synthétiques uuid_bi=aee6709f-0864-4fc5-8760-68cb644a0021", - "unit": "kg", - "source": "Base Impacts 2.01", - "uuid": "c963cfe0-afae-5a3b-b909-6a04e7d80068", - "impacts": { - "acd": 0.112399, - "bvi": 0.0, - "cch": 14.7339, - "etf": 0.0, - "etf-c": 0.0, - "fru": 231.859, - "fwe": 0.000334733, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 6.91701, - "ldu": 5.31058, - "mru": 9.25976e-6, - "ozd": 5.15075e-7, - "pco": 0.0499168, - "pma": 2.53533e-6, - "swe": 0.0274852, - "tre": 0.206228, - "wtu": 0.070511 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0, - "alias": null, - "step_usage": "Matières, Filature", - "correctif": "Ajout données \"EP&L Kering\" pour la consommation d'eau" - }, - { - "name": "Polypropylène/polyamide", - "info": "Textile > Matières > Matières synthétiques uuid_bi=37396ac4-13a2-484c-9cc6-5b5a93ff6e6e", - "unit": "kg", - "source": "Base Impacts 2.01", - "uuid": "6b0404f2-b094-90b8-6b01-a1c12a3a2107", - "impacts": { - "acd": 0.0315509, - "bvi": 0.0, - "cch": 7.84246, - "etf": 0.0, - "etf-c": 0.0, - "fru": 129.181, - "fwe": 0.00027297, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 1.86174, - "ldu": 3.54218, - "mru": 2.80513e-6, - "ozd": 3.00936e-7, - "pco": 0.0144819, - "pma": 3.70419e-7, - "swe": 0.00659682, - "tre": 0.0271411, - "wtu": 0.0289478 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0113178, - "alias": null, - "step_usage": "Matières, Filature", - "correctif": "Ajout données \"EP&L Kering\" pour la consommation d'eau" - }, - { - "name": "Polyester recyclé (recyclage mécanique)", - "info": "Textile > Matières > Matières recyclées uuid_bi=4072bfa2-1948-4d12-8de9-bbeb6cc628e1", - "unit": "kg", - "source": "Base Impacts 2.01", - "uuid": "3e1c26d3-23ef-323e-e848-f808f54d35bf", - "impacts": { - "acd": 0.0191338, - "bvi": 0.0, - "cch": 3.13113, - "etf": 0.0, - "etf-c": 0.0, - "fru": 50.3147, - "fwe": 0.000613287, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.562895, - "ldu": 24.5684, - "mru": 1.39928e-5, - "ozd": 4.04865e-7, - "pco": 0.0110777, - "pma": 2.43517e-7, - "swe": 0.00311623, - "tre": 0.00892525, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0113179, - "alias": null, - "step_usage": "Matières, Filature", - "correctif": "Ajout données \"EP&L Kering\" pour la consommation d'eau" - }, - { - "name": "Polyester recyclé (recyclage chimique partiel)", - "info": "Textile > Matières > Matières recyclées uuid_bi=e65e8157-9bd1-4711-9571-8e4a22c2d2b5", - "unit": "kg", - "source": "Base Impacts 2.01", - "uuid": "4a37fa2d-f2d7-d40f-c785-9faeecc3f80c", - "impacts": { - "acd": 0.112701, - "bvi": 0.0, - "cch": 18.5646, - "etf": 0.0, - "etf-c": 0.0, - "fru": 352.182, - "fwe": 0.00152617, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 3.7815, - "ldu": 34.4234, - "mru": 5.39341e-5, - "ozd": 5.26778e-7, - "pco": 0.0701623, - "pma": 2.89643e-6, - "swe": 0.0208882, - "tre": 0.199386, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.01136, - "alias": null, - "step_usage": "Matières, Filature", - "correctif": "Ajout données \"EP&L Kering\" pour la consommation d'eau" - }, - { - "name": "Polyester recyclé (recyclage chimique complet)", - "info": "Textile > Matières > Matières recyclées uuid_bi=221067ba-5c2f-4dad-b09a-dd5af0a9ae31", - "unit": "kg", - "source": "Base Impacts 2.01", - "uuid": "9530fcd9-d6fd-1d9b-6203-2801b65c1c28", - "impacts": { - "acd": 0.0255236, - "bvi": 0.0, - "cch": 3.52598, - "etf": 0.0, - "etf-c": 0.0, - "fru": 86.6553, - "fwe": 0.000640453, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.732076, - "ldu": 25.48, - "mru": 1.402e-5, - "ozd": 8.3285e-7, - "pco": 0.0127541, - "pma": 2.69164e-7, - "swe": 0.00315514, - "tre": 0.0106419, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.01136, - "alias": null, - "step_usage": "Matières, Filature", - "correctif": "Ajout données \"EP&L Kering\" pour la consommation d'eau" - }, - { - "name": "Polyamide recyclé (recyclage chimique)", - "info": "Textile > Matières > Matières recyclées uuid_bi=41ee61c2-9a98-4eec-8949-9d9b54289bd0", - "unit": "kg", - "source": "Base Impacts 2.01", - "uuid": "d7f20e07-ed42-02ed-c4bb-895c608099f6", - "impacts": { - "acd": 0.0350727, - "bvi": 0.0, - "cch": 5.05718, - "etf": 0.0, - "etf-c": 0.0, - "fru": 72.1121, - "fwe": 0.000619499, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 1.92505, - "ldu": 24.599, - "mru": 1.43091e-5, - "ozd": 3.59716e-7, - "pco": 0.0191404, - "pma": 7.25824e-7, - "swe": 0.00667647, - "tre": 0.0406547, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0113287, - "alias": null, - "step_usage": "Matières, Filature", - "correctif": "Ajout données \"EP&L Kering\" pour la consommation d'eau" - }, - { - "name": "Viscose recyclé", - "info": "Textile > Matières > Matières recyclées uuid_bi=9671ae26-d772-4bb1-aad5-6b826555d0cd", - "unit": "kg", - "source": "Base Impacts 2.01", - "uuid": "a8d42934-33e7-98a0-e81f-9b0cbf4e7af6", - "impacts": { - "acd": 0.0212602, - "bvi": 0.0, - "cch": 3.00857, - "etf": 0.0, - "etf-c": 0.0, - "fru": 45.9025, - "fwe": 0.000564452, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.554783, - "ldu": 23.4439, - "mru": 1.36386e-5, - "ozd": 2.56257e-7, - "pco": 0.00352961, - "pma": 3.21878e-7, - "swe": 0.00277627, - "tre": 0.00441117, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.115094, - "alias": null, - "step_usage": "Matières, Filature", - "correctif": "Ajout données \"EP&L Kering\" pour la consommation d'eau" - }, - { - "name": "Polyamide recyclé", - "info": "Textile > Matières > Matières recyclées uuid_bi=af5d130d-f18b-438c-9f19-d1ee49756960", - "unit": "kg", - "source": "Base Impacts 2.01", - "uuid": "46f7c9ea-b38c-f45a-7ad9-8a70a603e9e1", - "impacts": { - "acd": 0.039581, - "bvi": 0.0, - "cch": 4.86614, - "etf": 0.0, - "etf-c": 0.0, - "fru": 42.7669, - "fwe": 0.000554657, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0, - "ldu": 20.4404, - "mru": 1.31348e-5, - "ozd": 2.06498e-7, - "pco": 0.0148751, - "pma": 7.6606e-7, - "swe": 0.00679884, - "tre": 0.0494037, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.115094, - "alias": null, - "step_usage": "Matières, Filature", - "correctif": "Ajout données \"EP&L Kering\" pour la consommation d'eau" - }, - { - "name": "Laine recyclée", - "info": "Textile > Matières > Matières recyclées uuid_bi=92dfabc7-9441-463e-bda8-7bc5943c0e9d", - "unit": "kg", - "source": "Base Impacts 2.01", - "uuid": "8bb01460-217f-871c-be0a-e8fa1ceac2cc", - "impacts": { - "acd": 0.00125911, - "bvi": 0.0, - "cch": 0.21525, - "etf": 0.0, - "etf-c": 0.0, - "fru": 4.93614, - "fwe": 0.000302366, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 7.76956, - "ldu": 11.0418, - "mru": 9.1432e-6, - "ozd": 5.06064e-8, - "pco": 0.000719987, - "pma": 2.11543e-8, - "swe": 0.000259736, - "tre": 0.000846604, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.075296, - "alias": null, - "step_usage": "Matières, Filature", - "correctif": "Ajout données \"EP&L Kering\" pour la consommation d'eau" - }, - { - "name": "Coton recyclé (déchets post-consommation)", - "info": "Textile > Matières > Matières recyclées uuid_bi=4d23093d-1346-4018-8c0f-7aae33c67bcd", - "unit": "kg", - "source": "Base Impacts 2.01", - "uuid": "993955be-5888-6f39-137c-56af8c5187c1", - "impacts": { - "acd": 0.00243829, - "bvi": 0.0, - "cch": 0.702829, - "etf": 0.0, - "etf-c": 0.0, - "fru": 28.5918, - "fwe": 0.000331087, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 11.214, - "ldu": 22.1372, - "mru": 1.06089e-5, - "ozd": 2.64254e-7, - "pco": 0.00308039, - "pma": 6.25565e-8, - "swe": 0.000859858, - "tre": 0.00189052, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.631206, - "alias": null, - "step_usage": "Matières, Filature", - "correctif": "Ajout données \"EP&L Kering\" pour la consommation d'eau" - }, - { - "name": "Coton recyclé (déchets de production)", - "info": "Textile > Matières > Matières recyclées uuid_bi=2b24abb0-c1ec-4298-9b58-350904a26104", - "unit": "kg", - "source": "Base Impacts 2.01", - "uuid": "9c6ab710-4a08-c720-cede-24428a013fda", - "impacts": { - "acd": 0.00316343, - "bvi": 0.0, - "cch": 1.06814, - "etf": 0.0, - "etf-c": 0.0, - "fru": 25.6165, - "fwe": 0.000340949, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 8.07518, - "ldu": 26.6235, - "mru": 1.12392e-5, - "ozd": 3.22689e-7, - "pco": 0.00369257, - "pma": 1.05661e-7, - "swe": 0.000964407, - "tre": 0.00260971, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.21716, - "alias": null, - "step_usage": "Matières, Filature", - "correctif": "Ajout données \"EP&L Kering\" pour la consommation d'eau" - }, - { - "name": "Acrylique recyclé", - "info": "Textile > Matières > Matières recyclées uuid_bi=7603beaa-c555-4283-b9f8-4d5d231b8490", - "unit": "kg", - "source": "Base Impacts 2.01", - "uuid": "c393fd0e-1cc6-2be5-7836-46bf0324aac3", - "impacts": { - "acd": 0.0221635, - "bvi": 0.0, - "cch": 3.10754, - "etf": 0.0, - "etf-c": 0.0, - "fru": 48.6659, - "fwe": 0.000568284, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.582002, - "ldu": 23.7485, - "mru": 1.37666e-5, - "ozd": 2.92986e-7, - "pco": 0.00410771, - "pma": 3.34569e-7, - "swe": 0.00284899, - "tre": 0.00522947, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.115094, - "alias": null, - "step_usage": "Matières, Filature", - "correctif": "Ajout données \"EP&L Kering\" pour la consommation d'eau" - }, - { - "name": "Production de fibres recyclées, traitement de déchets textiles post-consommation (recyclage mécanique), inventaire partiellement agrégé", - "info": "Textile > Matières > Matières recyclées", - "unit": "kg", - "source": "Base Impacts 2.01", - "uuid": "ca5dc5b3-7fa2-4779-af0b-aa6f31cd457f", - "impacts": { - "acd": 0.000819605, - "bvi": 0.0, - "cch": 0.250572, - "etf": 0.0, - "etf-c": 0.0, - "fru": 6.8379, - "fwe": 0.000168832, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 1.39498, - "ldu": 7.67968, - "mru": 5.37362e-6, - "ozd": 3.92493e-8, - "pco": 0.000416466, - "pma": 2.55443e-8, - "swe": 0.000175056, - "tre": 0.000650187, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.21, - "alias": null, - "step_usage": "Matières, Filature", - "correctif": "Ajout données \"EP&L Kering\" pour la consommation d'eau" - }, - { - "name": "Tricotage moyen (mix de métiers circulaire & rectiligne)", - "info": "Textile > Mise en forme > Tricotage", - "unit": "kg", - "source": "Base Impacts 2.01", - "uuid": "9c478d79-ff6b-45e1-9396-c3bd897faa1d", - "impacts": { - "acd": 0.0, - "bvi": 0.0, - "cch": 0.0, - "etf": 0.0, - "etf-c": 0.0, - "fru": 0.0, - "fwe": 0.0, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.0, - "ldu": 0.0, - "mru": 0.0, - "ozd": 0.0, - "pco": 0.0, - "pma": 0.0, - "swe": 0.0, - "tre": 0.0, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 8.64, - "waste": 0.0576, - "alias": "knitting-mix", - "step_usage": "Tissage / Tricotage", - "correctif": "non applicable" - }, - { - "name": "Tricotage fully-fashioned", - "info": "Textile > Mise en forme > Tricotage", - "unit": "kg", - "source": "Base Impacts 2.01", - "uuid": "6524ac1e-cc95-4b5a-b462-2fccad7a0bce", - "impacts": { - "acd": 0.0, - "bvi": 0.0, - "cch": 0.0, - "etf": 0.0, - "etf-c": 0.0, - "fru": 0.0, - "fwe": 0.0, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.0, - "ldu": 0.0, - "mru": 0.0, - "ozd": 0.0, - "pco": 0.0, - "pma": 0.0, - "swe": 0.0, - "tre": 0.0, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 6.06443, - "waste": 0.00502513, - "alias": "knitting-fully-fashioned", - "step_usage": "Tissage / Tricotage", - "correctif": "non applicable" - }, - { - "name": "Tricotage seamless", - "info": "Textile > Mise en forme > Tricotage", - "unit": "kg", - "source": "Base Impacts 2.01", - "uuid": "11648b33-f117-4eca-bb09-233c0ad0757f", - "impacts": { - "acd": 0.0, - "bvi": 0.0, - "cch": 0.0, - "etf": 0.0, - "etf-c": 0.0, - "fru": 0.0, - "fwe": 0.0, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.0, - "ldu": 0.0, - "mru": 0.0, - "ozd": 0.0, - "pco": 0.0, - "pma": 0.0, - "swe": 0.0, - "tre": 0.0, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 13.2112, - "waste": 0.00502513, - "alias": "knitting-seamless", - "step_usage": "Tissage / Tricotage", - "correctif": "non applicable" - }, - { - "name": "Tissage (habillement)", - "info": "Textile > Mise en forme > Tissage", - "unit": "kg", - "source": "Base Impacts 2.01", - "uuid": "f9686809-f55e-4b96-b1f0-3298959de7d0", - "impacts": { - "acd": 0.0, - "bvi": 0.0, - "cch": 0.0, - "etf": 0.0, - "etf-c": 0.0, - "fru": 0.0, - "fwe": 0.0, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.0, - "ldu": 0.0, - "mru": 0.0, - "ozd": 0.0, - "pco": 0.0, - "pma": 0.0, - "swe": 0.0, - "tre": 0.0, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0003145, - "elec_MJ": 0.0, - "waste": 0.0667, - "alias": "weaving", - "step_usage": "Tissage / Tricotage", - "correctif": "non applicable" - }, - { - "name": "Teinture sur étoffe", - "info": "Textile > Ennoblissement > Teinture", - "unit": "kg", - "source": "Base Impacts 2.01", - "uuid": "03c769d5-46b6-4cf9-80f8-f2712692a6ab", - "impacts": { - "acd": 0.0088468, - "bvi": 0.0, - "cch": 0.397712, - "etf": 0.0, - "etf-c": 0.0, - "fru": 8.08713, - "fwe": 0.000200245, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.0148535, - "ldu": 1.02655, - "mru": 4.77854e-6, - "ozd": 7.34809e-7, - "pco": 0.00137811, - "pma": 6.49641e-8, - "swe": 0.00458661, - "tre": 0.00115881, - "wtu": 0.0 - }, - "heat_MJ": 25.87, - "elec_pppm": 0.0, - "elec_MJ": 7.17, - "waste": 0.0, - "alias": "dyeing-fabric", - "step_usage": "Ennoblissement", - "correctif": "non applicable" - }, - { - "name": "Teinture sur pièce", - "info": "Textile > Ennoblissement > Teinture", - "unit": "kg", - "source": "Base Impacts 2.01", - "uuid": "af54556c-5f74-4f2c-8531-d002eda9d793", - "impacts": { - "acd": 0.0114956, - "bvi": 0.0, - "cch": 0.700333, - "etf": 0.0, - "etf-c": 0.0, - "fru": 14.4929, - "fwe": 0.000287319, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.0250611, - "ldu": 1.78086, - "mru": 6.76817e-6, - "ozd": 7.86588e-7, - "pco": 0.00191568, - "pma": 9.21259e-8, - "swe": 0.0080911, - "tre": 0.00289027, - "wtu": 0.0 - }, - "heat_MJ": 30.06, - "elec_pppm": 0.0, - "elec_MJ": 9.22, - "waste": 0.0, - "alias": "dyeing-article", - "step_usage": "Ennoblissement", - "correctif": "non applicable" - }, - { - "name": "Teinture sur fil", - "info": "Textile > Ennoblissement > Teinture", - "unit": "kg", - "source": "Base Impacts 2.01", - "uuid": "b15afd1b-e7c0-4fbf-9f7b-b2a8b7e74bc7", - "impacts": { - "acd": 0.00849995, - "bvi": 0.0, - "cch": 0.525949, - "etf": 0.0, - "etf-c": 0.0, - "fru": 10.8093, - "fwe": 0.000266081, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.0186994, - "ldu": 1.31679, - "mru": 5.08255e-6, - "ozd": 7.56778e-7, - "pco": 0.00150931, - "pma": 6.93262e-8, - "swe": 0.00654367, - "tre": 0.00220525, - "wtu": 0.0 - }, - "heat_MJ": 33.42, - "elec_pppm": 0.0, - "elec_MJ": 10.15, - "waste": 0.0, - "alias": "dyeing-yarn", - "step_usage": "Ennoblissement", - "correctif": "non applicable" - }, - { - "name": "Transport maritime de conteneurs 27,500 t (dont flotte, utilisation et infrastructure) [tkm], GLO", - "info": "Transport > Maritime > Flotte moyenne", - "unit": "t*km", - "source": "Base Impacts 2.01", - "uuid": "8dc4ce62-ff0f-4680-897f-867c3b31a923", - "impacts": { - "acd": 0.000766767, - "bvi": 0.0, - "cch": 0.0483042, - "etf": 0.0, - "etf-c": 0.0, - "fru": 0.255129, - "fwe": 4.33885e-9, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.000481343, - "ldu": 0.0, - "mru": 1.47513e-9, - "ozd": 4.90964e-11, - "pco": 0.000526131, - "pma": 5.99782e-9, - "swe": 0.000186192, - "tre": 0.00203843, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": "sea-transport", - "step_usage": "Transport", - "correctif": "non applicable" - }, - { - "name": "Transport aérien long-courrier (dont flotte, utilisation et infrastructure) [tkm], GLO", - "info": "Transport > Aérien > Flotte moyenne", - "unit": "t*km", - "source": "Base Impacts 2.01", - "uuid": "839b263d-5111-4318-9275-7026937e88b2", - "impacts": { - "acd": 0.00518438, - "bvi": 0.0, - "cch": 1.20941, - "etf": 0.0, - "etf-c": 0.0, - "fru": 16.6229, - "fwe": 1.52e-7, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.0400805, - "ldu": 0.0, - "mru": 6.13605e-8, - "ozd": 1.11302e-11, - "pco": 0.00600068, - "pma": 2.01468e-8, - "swe": 0.00215675, - "tre": 0.0236048, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": "air-transport", - "step_usage": "Transport", - "correctif": "non applicable" - }, - { - "name": "Transport en camion (dont parc, utilisation et infrastructure) (50%) [tkm], GLO", - "info": "Transport > Routier > Flotte moyenne continentale", - "unit": "t*km", - "source": "Base Impacts 2.01", - "uuid": "cf6e9d81-358c-4f44-5ab7-0e7a89440576", - "impacts": { - "acd": 0.00208954, - "bvi": 0.0, - "cch": 0.204544, - "etf": 0.0, - "etf-c": 0.0, - "fru": 2.87171, - "fwe": 3.80014e-7, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.0128564, - "ldu": 0.0, - "mru": 6.17779e-7, - "ozd": 5.30757e-11, - "pco": 0.00181528, - "pma": 2.35709e-8, - "swe": 0.000926191, - "tre": 0.0100967, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": "road-transport-pre-making", - "step_usage": "Transport", - "correctif": "non applicable" - }, - { - "name": "Transport en camion (dont parc, utilisation et infrastructure) (50%) [tkm], RER", - "info": "Transport > Routier > Flotte moyenne continentale", - "unit": "t*km", - "source": "Base Impacts 2.01", - "uuid": "c0397088-6a57-eea7-8950-1d6db2e6bfdb", - "impacts": { - "acd": 0.00128435, - "bvi": 0.0, - "cch": 0.156105, - "etf": 0.0, - "etf-c": 0.0, - "fru": 2.26004, - "fwe": 1.79964e-7, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.0113717, - "ldu": 0.0, - "mru": 4.6569e-7, - "ozd": 3.95377e-11, - "pco": 0.00111635, - "pma": 1.26451e-8, - "swe": 0.000580492, - "tre": 0.00647978, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": "road-transport-post-making", - "step_usage": "Transport", - "correctif": "non applicable" - }, - { - "name": "Transport en camion non spécifié France (dont parc, utilisation et infrastructure) (50%) [tkm], FR", - "info": "Transport > Routier > Flotte moyenne française", - "unit": "t*km", - "source": "Base Impacts 2.01", - "uuid": "f49b27fa-f22e-c6e1-ab4b-e9f873e2e648", - "impacts": { - "acd": 0.0016869, - "bvi": 0.0, - "cch": 0.269575, - "etf": 0.0, - "etf-c": 0.0, - "fru": 4.00542, - "fwe": 9.94279e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.0327635, - "ldu": 0.0, - "mru": 8.96321e-7, - "ozd": 5.37976e-10, - "pco": 0.00167797, - "pma": 1.94827e-8, - "swe": 0.000851857, - "tre": 0.00889829, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": "distribution", - "step_usage": "Transport", - "correctif": "non applicable" - }, - { - "name": "Mix électrique réseau, GR", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "2de25500-c6a5-4723-be3d-9fc674bce785", - "impacts": { - "acd": 9.21877e-5, - "bvi": 0.0, - "cch": 1.13127, - "etf": 0.0, - "etf-c": 0.0, - "fru": 10.5179, - "fwe": 3.60452e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.00065226, - "ldu": 0.0, - "mru": 6.91645e-8, - "ozd": 1.20421e-12, - "pco": 0.00225902, - "pma": 1.73939e-7, - "swe": 0.000629205, - "tre": 0.000487113, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, TN", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "f0eb64cd-468d-4f3c-a9a3-3b3661625955", - "impacts": { - "acd": 0.00582212, - "bvi": 0.0, - "cch": 0.80722, - "etf": 0.0, - "etf-c": 0.0, - "fru": 12.5148, - "fwe": 1.35556e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 2.82991e-5, - "ldu": 0.0, - "mru": 1.77021e-8, - "ozd": 6.51875e-14, - "pco": 0.0024774, - "pma": 4.5518e-8, - "swe": 0.000776526, - "tre": 0.00848673, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, TR", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "6fad8643-de3e-49dd-a48b-8e17b4175c23", - "impacts": { - "acd": 0.0117462, - "bvi": 0.0, - "cch": 0.706988, - "etf": 0.0, - "etf-c": 0.0, - "fru": 8.78547, - "fwe": 1.13407e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.0004345, - "ldu": 0.0, - "mru": 7.49765e-8, - "ozd": 7.67181e-13, - "pco": 0.00282244, - "pma": 1.31728e-7, - "swe": 0.000811605, - "tre": 0.00888797, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, AE", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "c7e85736-75e5-4abf-bee3-1c80f46d7579", - "impacts": { - "acd": 0.00330672, - "bvi": 0.0, - "cch": 1.09088, - "etf": 0.0, - "etf-c": 0.0, - "fru": 18.9746, - "fwe": 6.5055e-9, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 3.48651e-5, - "ldu": 0.0, - "mru": 1.41548e-8, - "ozd": 4.29058e-14, - "pco": 0.00305836, - "pma": 2.23351e-8, - "swe": 0.00112156, - "tre": 0.0122824, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, AL", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "945f8fc8-a7cb-4cbd-98aa-7ab364b482a0", - "impacts": { - "acd": 3.1651e-6, - "bvi": 0.0, - "cch": 0.0207635, - "etf": 0.0, - "etf-c": 0.0, - "fru": 0.2005, - "fwe": 5.52942e-9, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.000325867, - "ldu": 0.0, - "mru": 2.29556e-7, - "ozd": 1.50083e-13, - "pco": 4.78961e-5, - "pma": 1.61553e-9, - "swe": 1.50747e-5, - "tre": 3.87635e-5, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, AM", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "3db02940-b3ac-4c6f-bd80-848ef8c34689", - "impacts": { - "acd": 0.000726222, - "bvi": 0.0, - "cch": 0.252002, - "etf": 0.0, - "etf-c": 0.0, - "fru": 9.07189, - "fwe": 2.09957e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.347882, - "ldu": 0.0, - "mru": 8.54245e-8, - "ozd": 2.70959e-12, - "pco": 0.000698162, - "pma": 5.4582e-9, - "swe": 0.000250116, - "tre": 0.00270589, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, AN", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "e6e86c36-24c1-459b-b5cb-ead34792f884", - "impacts": { - "acd": 0.0107951, - "bvi": 0.0, - "cch": 1.13161, - "etf": 0.0, - "etf-c": 0.0, - "fru": 14.1087, - "fwe": 2.04045e-7, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.00194228, - "ldu": 0.0, - "mru": 4.49103e-8, - "ozd": 1.35251e-12, - "pco": 0.0037372, - "pma": 9.61629e-8, - "swe": 0.00116425, - "tre": 0.0127287, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, AO", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "2f02c7ed-624a-45ef-910c-6a7a7ccde5ad", - "impacts": { - "acd": 0.0113371, - "bvi": 0.0, - "cch": 0.412014, - "etf": 0.0, - "etf-c": 0.0, - "fru": 5.04069, - "fwe": 3.46081e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.00042268, - "ldu": 0.0, - "mru": 1.24074e-7, - "ozd": 2.97775e-13, - "pco": 0.00201738, - "pma": 9.53959e-8, - "swe": 0.000484351, - "tre": 0.00530032, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, AR", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "8acb140b-8038-4d68-9087-aaf08bd4ae73", - "impacts": { - "acd": 0.00327536, - "bvi": 0.0, - "cch": 0.476811, - "etf": 0.0, - "etf-c": 0.0, - "fru": 7.88884, - "fwe": 1.81342e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.0536764, - "ldu": 0.0, - "mru": 7.68612e-8, - "ozd": 3.36205e-11, - "pco": 0.00113118, - "pma": 3.0122e-8, - "swe": 0.00033377, - "tre": 0.00365349, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, AT", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "05b80a56-6be6-44bf-af87-d486822c7ae4", - "impacts": { - "acd": 0.000185756, - "bvi": 0.0, - "cch": 0.245573, - "etf": 0.0, - "etf-c": 0.0, - "fru": 2.83632, - "fwe": 1.28754e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.000854309, - "ldu": 0.0, - "mru": 1.41124e-7, - "ozd": 1.09408e-11, - "pco": 0.000336152, - "pma": 3.18657e-9, - "swe": 0.000109517, - "tre": 0.000641618, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, AU", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "df14f763-d397-4cbe-9278-c0c4c8ce5145", - "impacts": { - "acd": 0.00631493, - "bvi": 0.0, - "cch": 1.12326, - "etf": 0.0, - "etf-c": 0.0, - "fru": 12.2247, - "fwe": 1.27617e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.000229351, - "ldu": 0.0, - "mru": 7.90846e-8, - "ozd": 1.35985e-12, - "pco": 0.0035306, - "pma": 1.11701e-7, - "swe": 0.0012538, - "tre": 0.0137287, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, AZ", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "685ee114-1663-4324-adaf-44bfebedd38f", - "impacts": { - "acd": 0.00262851, - "bvi": 0.0, - "cch": 0.726126, - "etf": 0.0, - "etf-c": 0.0, - "fru": 11.7022, - "fwe": 1.79234e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.000373522, - "ldu": 0.0, - "mru": 9.2567e-8, - "ozd": 1.16052e-13, - "pco": 0.0020899, - "pma": 2.23105e-8, - "swe": 0.000731823, - "tre": 0.00801466, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, BA", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "2388a87f-e9ab-47ba-9ae5-4839445723ae", - "impacts": { - "acd": 0.0019801, - "bvi": 0.0, - "cch": 1.56025, - "etf": 0.0, - "etf-c": 0.0, - "fru": 14.868, - "fwe": 1.33548e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.00097392, - "ldu": 0.0, - "mru": 1.48007e-7, - "ozd": 1.99448e-12, - "pco": 0.00706082, - "pma": 4.189e-7, - "swe": 0.00219132, - "tre": 0.00579339, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, BD", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "1ee6061e-8e15-4558-9338-94ad87abf932", - "impacts": { - "acd": 0.00324881, - "bvi": 0.0, - "cch": 0.795168, - "etf": 0.0, - "etf-c": 0.0, - "fru": 12.702, - "fwe": 1.3234e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.000912191, - "ldu": 0.0, - "mru": 3.94158e-8, - "ozd": 7.04363e-13, - "pco": 0.00239822, - "pma": 4.65504e-8, - "swe": 0.000808687, - "tre": 0.00884755, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, BE", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "082fe936-dd69-4735-9a38-3dd218e9c128", - "impacts": { - "acd": 0.000786419, - "bvi": 0.0, - "cch": 0.256537, - "etf": 0.0, - "etf-c": 0.0, - "fru": 8.98759, - "fwe": 3.03808e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.389244, - "ldu": 0.0, - "mru": 3.37201e-8, - "ozd": 5.92112e-10, - "pco": 0.000481893, - "pma": 6.15068e-9, - "swe": 0.000164853, - "tre": 0.0011414, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, BG", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "c8fe6120-0280-4f47-a538-2c3155841691", - "impacts": { - "acd": 0.000850411, - "bvi": 0.0, - "cch": 0.827087, - "etf": 0.0, - "etf-c": 0.0, - "fru": 12.118, - "fwe": 2.84254e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.293707, - "ldu": 0.0, - "mru": 8.23611e-8, - "ozd": 2.99311e-12, - "pco": 0.00315384, - "pma": 2.8812e-7, - "swe": 0.000581099, - "tre": 0.000680296, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, BH", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "8ddf6980-9d1a-486a-aa1a-aa66aa8afd1c", - "impacts": { - "acd": 0.00213309, - "bvi": 0.0, - "cch": 0.804567, - "etf": 0.0, - "etf-c": 0.0, - "fru": 14.0361, - "fwe": 3.4878e-9, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 3.27898e-5, - "ldu": 0.0, - "mru": 1.35014e-8, - "ozd": 3.84078e-14, - "pco": 0.00223211, - "pma": 1.38262e-8, - "swe": 0.000825013, - "tre": 0.00903507, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, BJ", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "cb300b29-989b-4bd1-a23b-67f87de5cf62", - "impacts": { - "acd": 0.0298067, - "bvi": 0.0, - "cch": 1.19128, - "etf": 0.0, - "etf-c": 0.0, - "fru": 13.8784, - "fwe": 8.35947e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 4.40807e-5, - "ldu": 0.0, - "mru": 2.39702e-8, - "ozd": 5.69352e-14, - "pco": 0.00539005, - "pma": 2.50341e-7, - "swe": 0.00115612, - "tre": 0.0126502, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, BN", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "81b11380-a558-48ae-b9a8-bbcc24f8ff9d", - "impacts": { - "acd": 0.0018839, - "bvi": 0.0, - "cch": 0.997577, - "etf": 0.0, - "etf-c": 0.0, - "fru": 15.6889, - "fwe": 3.69545e-9, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 4.24064e-5, - "ldu": 0.0, - "mru": 1.85641e-8, - "ozd": 1.27746e-13, - "pco": 0.00183318, - "pma": 1.9879e-8, - "swe": 0.000612467, - "tre": 0.00670817, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, BO", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "4903d969-55a4-43ee-b13d-529911789d59", - "impacts": { - "acd": 0.00164035, - "bvi": 0.0, - "cch": 0.585131, - "etf": 0.0, - "etf-c": 0.0, - "fru": 9.2001, - "fwe": 1.03461e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.00297267, - "ldu": 0.0, - "mru": 9.69793e-8, - "ozd": 1.98607e-12, - "pco": 0.0011009, - "pma": 1.36781e-8, - "swe": 0.000356727, - "tre": 0.00390836, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, BR", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "5f95d446-59c1-4456-a0c3-e90a84c4f2d3", - "impacts": { - "acd": 0.00166165, - "bvi": 0.0, - "cch": 0.278647, - "etf": 0.0, - "etf-c": 0.0, - "fru": 1.7701, - "fwe": 9.21589e-9, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.0238513, - "ldu": 0.0, - "mru": 1.0962e-7, - "ozd": 1.48919e-11, - "pco": 0.000554689, - "pma": 1.69312e-8, - "swe": 0.00015293, - "tre": 0.00167224, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, BW", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "9fa3fd7a-0768-4a2b-8178-2b6241e5f2fd", - "impacts": { - "acd": 0.0273757, - "bvi": 0.0, - "cch": 2.12572, - "etf": 0.0, - "etf-c": 0.0, - "fru": 19.6029, - "fwe": 3.37534e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.000885573, - "ldu": 0.0, - "mru": 8.66014e-8, - "ozd": 9.57392e-13, - "pco": 0.00996513, - "pma": 2.32579e-7, - "swe": 0.00330841, - "tre": 0.0362649, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, BY", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "059a4c75-dc6b-4263-aadb-7a9b2759d72d", - "impacts": { - "acd": 0.000986305, - "bvi": 0.0, - "cch": 0.795697, - "etf": 0.0, - "etf-c": 0.0, - "fru": 13.0352, - "fwe": 1.53448e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.000440722, - "ldu": 0.0, - "mru": 8.40478e-8, - "ozd": 7.98433e-13, - "pco": 0.00223522, - "pma": 1.88692e-8, - "swe": 0.000789831, - "tre": 0.00297584, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, CA", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "4264dd00-58df-4c19-9db2-62de23f1a8e5", - "impacts": { - "acd": 0.00144613, - "bvi": 0.0, - "cch": 0.238191, - "etf": 0.0, - "etf-c": 0.0, - "fru": 4.19546, - "fwe": 1.38913e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.14049, - "ldu": 0.0, - "mru": 9.93179e-8, - "ozd": 6.9548e-11, - "pco": 0.000624265, - "pma": 2.33512e-8, - "swe": 0.000203951, - "tre": 0.00222366, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, CD", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "e74d577b-561b-4c73-8b7c-ff95bb719726", - "impacts": { - "acd": 5.86592e-5, - "bvi": 0.0, - "cch": 0.0613102, - "etf": 0.0, - "etf-c": 0.0, - "fru": 0.0969636, - "fwe": 3.34038e-9, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.00023488, - "ldu": 0.0, - "mru": 1.74647e-7, - "ozd": 9.50907e-14, - "pco": 2.58907e-5, - "pma": 5.27255e-10, - "swe": 7.75047e-6, - "tre": 8.47642e-5, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, CG", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "e899a63c-3e17-4998-8c7d-53866c73fa9f", - "impacts": { - "acd": 0.00241418, - "bvi": 0.0, - "cch": 0.904053, - "etf": 0.0, - "etf-c": 0.0, - "fru": 11.4735, - "fwe": 5.79099e-9, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.000360998, - "ldu": 0.0, - "mru": 2.65575e-7, - "ozd": 1.62491e-13, - "pco": 0.00205, - "pma": 1.51924e-8, - "swe": 0.000616224, - "tre": 0.00674865, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, CH", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "8ff8fa00-8358-482c-a78e-11050ea1dc74", - "impacts": { - "acd": 4.04326e-5, - "bvi": 0.0, - "cch": 0.0448568, - "etf": 0.0, - "etf-c": 0.0, - "fru": 4.73617, - "fwe": 2.90967e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.395489, - "ldu": 0.0, - "mru": 1.00467e-7, - "ozd": 2.16922e-10, - "pco": 8.51181e-5, - "pma": 8.79124e-10, - "swe": 2.93411e-5, - "tre": 0.000255719, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, CI", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "ef83a82c-43fa-4e85-8653-39c2683406ba", - "impacts": { - "acd": 0.00280879, - "bvi": 0.0, - "cch": 0.928583, - "etf": 0.0, - "etf-c": 0.0, - "fru": 12.5653, - "fwe": 3.19861e-9, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.000137002, - "ldu": 0.0, - "mru": 9.49004e-8, - "ozd": 8.17237e-14, - "pco": 0.00234125, - "pma": 1.75649e-8, - "swe": 0.000703228, - "tre": 0.00770167, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, CL", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "da84677c-03ab-4e27-aca2-1425d9ec56ae", - "impacts": { - "acd": 0.00986434, - "bvi": 0.0, - "cch": 0.574415, - "etf": 0.0, - "etf-c": 0.0, - "fru": 6.43404, - "fwe": 3.55991e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.000208658, - "ldu": 0.0, - "mru": 1.05851e-7, - "ozd": 2.17819e-13, - "pco": 0.00220968, - "pma": 1.29844e-7, - "swe": 0.000572603, - "tre": 0.0062813, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, CM", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "cb89897e-4291-428e-ae57-d698621d82cb", - "impacts": { - "acd": 0.00713268, - "bvi": 0.0, - "cch": 0.456622, - "etf": 0.0, - "etf-c": 0.0, - "fru": 5.14394, - "fwe": 2.15453e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.000199558, - "ldu": 0.0, - "mru": 1.46313e-7, - "ozd": 9.17706e-14, - "pco": 0.00158489, - "pma": 5.90049e-8, - "swe": 0.000372621, - "tre": 0.00407826, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, CO", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "7dda3b94-b470-4aa9-a327-bac0d9673272", - "impacts": { - "acd": 0.00190121, - "bvi": 0.0, - "cch": 0.214014, - "etf": 0.0, - "etf-c": 0.0, - "fru": 2.71273, - "fwe": 5.40976e-9, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.000734589, - "ldu": 0.0, - "mru": 1.22031e-7, - "ozd": 4.90352e-13, - "pco": 0.000614095, - "pma": 2.91407e-8, - "swe": 0.000181783, - "tre": 0.00199395, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, CR", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "52d21862-8e61-4f1a-9c7b-d785a95ea968", - "impacts": { - "acd": 0.00227557, - "bvi": 0.0, - "cch": 0.224471, - "etf": 0.0, - "etf-c": 0.0, - "fru": 1.05791, - "fwe": 1.08704e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.000232349, - "ldu": 0.0, - "mru": 8.63908e-8, - "ozd": 1.56866e-13, - "pco": 0.000310596, - "pma": 1.97129e-8, - "swe": 5.72226e-5, - "tre": 0.000628934, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, CU", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "860a9da4-1810-46c9-bece-022795aae698", - "impacts": { - "acd": 0.0329449, - "bvi": 0.0, - "cch": 1.28325, - "etf": 0.0, - "etf-c": 0.0, - "fru": 16.5378, - "fwe": 1.38206e-7, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.00194358, - "ldu": 0.0, - "mru": 2.99542e-8, - "ozd": 1.1074e-12, - "pco": 0.00436554, - "pma": 2.86374e-7, - "swe": 0.00078931, - "tre": 0.00867472, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, CY", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "c3333775-6d00-4405-84af-e8517fc43f04", - "impacts": { - "acd": 0.00918807, - "bvi": 0.0, - "cch": 0.978041, - "etf": 0.0, - "etf-c": 0.0, - "fru": 11.9763, - "fwe": 1.73637e-7, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.000672802, - "ldu": 0.0, - "mru": 4.48771e-8, - "ozd": 8.73502e-13, - "pco": 0.00254338, - "pma": 7.69551e-8, - "swe": 0.000741503, - "tre": 0.00812853, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, CZ", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "3a453d41-341d-4f00-b23e-1c0326fdda50", - "impacts": { - "acd": 8.37957, - "bvi": 0.0, - "cch": 0.799077, - "etf": 0.0, - "etf-c": 0.0, - "fru": 11.103, - "fwe": 1.96767e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.232222, - "ldu": 0.0, - "mru": 8.17565e-8, - "ozd": 2.91083e-12, - "pco": 0.00223275, - "pma": 7.08615e-8, - "swe": 0.000722665, - "tre": 0.00462839, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, DE", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "2f4ccc4d-d96d-4f9b-a462-487c914f88d5", - "impacts": { - "acd": 0.00176241, - "bvi": 0.0, - "cch": 0.657374, - "etf": 0.0, - "etf-c": 0.0, - "fru": 8.74769, - "fwe": 3.07766e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.212955, - "ldu": 0.0, - "mru": 8.78733e-8, - "ozd": 1.46705e-11, - "pco": 0.000753465, - "pma": 1.02637e-8, - "swe": 0.000265063, - "tre": 0.00195809, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, DK", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "5f3af148-c79f-4317-99ea-6fcd6f88f76a", - "impacts": { - "acd": 0.00187003, - "bvi": 0.0, - "cch": 0.633534, - "etf": 0.0, - "etf-c": 0.0, - "fru": 6.64536, - "fwe": 3.83109e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.00317407, - "ldu": 0.0, - "mru": 1.57411e-8, - "ozd": 3.94303e-11, - "pco": 0.00122064, - "pma": 1.04691e-8, - "swe": 0.000439988, - "tre": 0.00187685, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, DO", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "2e422560-35f7-40c7-994b-bc9ed7b325bf", - "impacts": { - "acd": 0.0202354, - "bvi": 0.0, - "cch": 0.909252, - "etf": 0.0, - "etf-c": 0.0, - "fru": 11.121, - "fwe": 7.715e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.00129731, - "ldu": 0.0, - "mru": 4.29285e-8, - "ozd": 6.41742e-13, - "pco": 0.00316202, - "pma": 1.97705e-7, - "swe": 0.000685957, - "tre": 0.0075307, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, DZ", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "99927484-5fb1-460b-b155-73c3f989a54c", - "impacts": { - "acd": 0.00320257, - "bvi": 0.0, - "cch": 1.02318, - "etf": 0.0, - "etf-c": 0.0, - "fru": 16.2778, - "fwe": 4.20252e-9, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 2.38567e-5, - "ldu": 0.0, - "mru": 2.16438e-8, - "ozd": 6.96729e-14, - "pco": 0.00279331, - "pma": 2.15502e-8, - "swe": 0.000943291, - "tre": 0.0103064, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, EC", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "ea6aa75f-afbb-44d7-bda1-be2dcb300c11", - "impacts": { - "acd": 0.015548, - "bvi": 0.0, - "cch": 0.627714, - "etf": 0.0, - "etf-c": 0.0, - "fru": 8.32126, - "fwe": 6.96359e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.000874584, - "ldu": 0.0, - "mru": 1.27168e-7, - "ozd": 5.86911e-13, - "pco": 0.00250741, - "pma": 1.33196e-7, - "swe": 0.000542785, - "tre": 0.00595156, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, EE", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "93bbe2ad-1ce7-4a5a-b1dd-7cda0ac8df9b", - "impacts": { - "acd": 0.00291674, - "bvi": 0.0, - "cch": 1.51492, - "etf": 0.0, - "etf-c": 0.0, - "fru": 14.2926, - "fwe": 3.43629e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.00702582, - "ldu": 0.0, - "mru": 9.90171e-8, - "ozd": 8.4443e-13, - "pco": 0.00211295, - "pma": 2.02854e-7, - "swe": 0.000588297, - "tre": 0.00220604, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, EG", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "92df3ca1-8f77-495f-83d1-0d1970585cea", - "impacts": { - "acd": 0.00574836, - "bvi": 0.0, - "cch": 0.587775, - "etf": 0.0, - "etf-c": 0.0, - "fru": 9.35887, - "fwe": 1.57497e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 5.9116e-5, - "ldu": 0.0, - "mru": 3.3925e-8, - "ozd": 6.61329e-14, - "pco": 0.0019501, - "pma": 4.63868e-8, - "swe": 0.000616218, - "tre": 0.00674719, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, ER", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "61b0ce81-b3c3-4b4e-930d-65010af45f28", - "impacts": { - "acd": 0.0283053, - "bvi": 0.0, - "cch": 1.13153, - "etf": 0.0, - "etf-c": 0.0, - "fru": 13.1822, - "fwe": 7.95677e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 4.96433e-5, - "ldu": 0.0, - "mru": 5.12406e-8, - "ozd": 6.61222e-12, - "pco": 0.00511906, - "pma": 2.37731e-7, - "swe": 0.00109802, - "tre": 0.0120145, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, ET", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "65ec9860-bfb4-4c3a-bd72-e0e8bbcefea1", - "impacts": { - "acd": 0.0049108, - "bvi": 0.0, - "cch": 0.251299, - "etf": 0.0, - "etf-c": 0.0, - "fru": 2.31252, - "fwe": 1.68782e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.000235204, - "ldu": 0.0, - "mru": 1.74161e-7, - "ozd": 1.00196e-13, - "pco": 0.000896467, - "pma": 4.12989e-8, - "swe": 0.000193722, - "tre": 0.00211964, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, FI", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "a1eacc5b-82b5-43ea-b94e-dc59684c09c4", - "impacts": { - "acd": 0.000301427, - "bvi": 0.0, - "cch": 0.322068, - "etf": 0.0, - "etf-c": 0.0, - "fru": 6.2915, - "fwe": 2.15864e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.335916, - "ldu": 0.0, - "mru": 8.05114e-8, - "ozd": 6.85072e-12, - "pco": 0.000680254, - "pma": 9.05851e-9, - "swe": 0.000231787, - "tre": 0.000850318, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, GA", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "e0f7d67f-0e2e-4eb1-a816-60b67d96d715", - "impacts": { - "acd": 0.00983877, - "bvi": 0.0, - "cch": 0.732511, - "etf": 0.0, - "etf-c": 0.0, - "fru": 8.95565, - "fwe": 2.70648e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.000159198, - "ldu": 0.0, - "mru": 1.13843e-7, - "ozd": 8.44339e-14, - "pco": 0.00248083, - "pma": 8.03832e-8, - "swe": 0.000609116, - "tre": 0.00666756, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, GB", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "17c53aa0-ee44-4d2e-8923-5410a6fb1bba", - "impacts": { - "acd": 0.00216912, - "bvi": 0.0, - "cch": 0.602137, - "etf": 0.0, - "etf-c": 0.0, - "fru": 9.09764, - "fwe": 3.99035e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.158207, - "ldu": 0.0, - "mru": 3.70973e-8, - "ozd": 7.71557e-12, - "pco": 0.00143383, - "pma": 1.98593e-8, - "swe": 0.000509739, - "tre": 0.00141506, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, GE", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "9e1420d5-8fe0-4493-bd4f-43fccf0ecaef", - "impacts": { - "acd": 0.000293755, - "bvi": 0.0, - "cch": 0.132046, - "etf": 0.0, - "etf-c": 0.0, - "fru": 2.01194, - "fwe": 3.20319e-9, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.000186881, - "ldu": 0.0, - "mru": 1.37999e-7, - "ozd": 7.68212e-14, - "pco": 0.000330773, - "pma": 1.93803e-9, - "swe": 0.000118222, - "tre": 0.00129489, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, GH", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "29c6e4af-f482-43a1-8cb8-2821fe5eb4c9", - "impacts": { - "acd": 0.0123342, - "bvi": 0.0, - "cch": 0.540126, - "etf": 0.0, - "etf-c": 0.0, - "fru": 5.76524, - "fwe": 3.7253e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.00021355, - "ldu": 0.0, - "mru": 1.56003e-7, - "ozd": 1.01053e-13, - "pco": 0.00223767, - "pma": 1.03639e-7, - "swe": 0.000481192, - "tre": 0.00526515, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, GI", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "af6575cb-f188-4ba8-a634-69991b8da288", - "impacts": { - "acd": 0.00509549, - "bvi": 0.0, - "cch": 0.977477, - "etf": 0.0, - "etf-c": 0.0, - "fru": 11.9066, - "fwe": 1.6885e-7, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.00308727, - "ldu": 0.0, - "mru": 2.86211e-8, - "ozd": 1.99058e-12, - "pco": 0.00220936, - "pma": 3.82928e-8, - "swe": 0.000656225, - "tre": 0.00716418, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, GT", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "9245342a-3227-46a7-ad12-a90cab6e1c8f", - "impacts": { - "acd": 0.0148761, - "bvi": 0.0, - "cch": 0.645801, - "etf": 0.0, - "etf-c": 0.0, - "fru": 6.92612, - "fwe": 5.30424e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.000723364, - "ldu": 0.0, - "mru": 8.03251e-8, - "ozd": 4.08236e-13, - "pco": 0.00332919, - "pma": 1.45705e-7, - "swe": 0.000843136, - "tre": 0.00924567, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, HK", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "7e18ffdc-dab7-4b0a-9e45-bf1982211b20", - "impacts": { - "acd": 0.00659989, - "bvi": 0.0, - "cch": 0.95888, - "etf": 0.0, - "etf-c": 0.0, - "fru": 10.8916, - "fwe": 1.6039e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.000426431, - "ldu": 0.0, - "mru": 8.16213e-8, - "ozd": 3.07779e-13, - "pco": 0.00491845, - "pma": 2.39124e-7, - "swe": 0.00177535, - "tre": 0.0193819, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, HN", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "b8290e73-098b-4933-a5fd-0ae1ff1aacd4", - "impacts": { - "acd": 0.0171573, - "bvi": 0.0, - "cch": 0.692837, - "etf": 0.0, - "etf-c": 0.0, - "fru": 7.86534, - "fwe": 7.26321e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.000902542, - "ldu": 0.0, - "mru": 6.49373e-8, - "ozd": 4.25988e-13, - "pco": 0.00225655, - "pma": 1.48881e-7, - "swe": 0.000401997, - "tre": 0.00441835, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, HR", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "8ae6ae20-b2b8-4f64-9220-e4161cec0cac", - "impacts": { - "acd": 0.000455381, - "bvi": 0.0, - "cch": 0.535759, - "etf": 0.0, - "etf-c": 0.0, - "fru": 6.45485, - "fwe": 3.82281e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.00269978, - "ldu": 0.0, - "mru": 1.53989e-7, - "ozd": 5.54414e-13, - "pco": 0.00130626, - "pma": 3.28419e-8, - "swe": 0.000424361, - "tre": 0.00136138, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, HT", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "9657780a-9160-4afd-9933-54cd2c57824c", - "impacts": { - "acd": 0.0353956, - "bvi": 0.0, - "cch": 1.3858, - "etf": 0.0, - "etf-c": 0.0, - "fru": 16.2948, - "fwe": 1.49927e-7, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.00182626, - "ldu": 0.0, - "mru": 9.37057e-8, - "ozd": 8.51403e-13, - "pco": 0.00436862, - "pma": 3.08614e-7, - "swe": 0.000733893, - "tre": 0.00807043, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, HU", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "ec323bac-9705-4d67-a12c-9d240b5a68c2", - "impacts": { - "acd": 0.000351881, - "bvi": 0.0, - "cch": 0.541558, - "etf": 0.0, - "etf-c": 0.0, - "fru": 10.5942, - "fwe": 2.75721e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.288553, - "ldu": 0.0, - "mru": 6.44587e-8, - "ozd": 7.10658e-12, - "pco": 0.000818511, - "pma": 6.85479e-9, - "swe": 0.000273159, - "tre": 0.00115603, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, ID", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "99b2c503-f32f-4228-95ba-eb30a503d0b3", - "impacts": { - "acd": 0.0101653, - "bvi": 0.0, - "cch": 0.875394, - "etf": 0.0, - "etf-c": 0.0, - "fru": 9.7582, - "fwe": 4.45003e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.000153914, - "ldu": 0.0, - "mru": 6.10451e-8, - "ozd": 1.76869e-13, - "pco": 0.00369369, - "pma": 2.40609e-7, - "swe": 0.00120889, - "tre": 0.013241, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, IE", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "ba818146-fade-4095-9e8d-578dc97fae13", - "impacts": { - "acd": 0.00116532, - "bvi": 0.0, - "cch": 0.648118, - "etf": 0.0, - "etf-c": 0.0, - "fru": 8.06139, - "fwe": 1.61848e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.00027134, - "ldu": 0.0, - "mru": 2.19257e-8, - "ozd": 3.86546e-13, - "pco": 0.00128994, - "pma": 2.32502e-8, - "swe": 0.000450332, - "tre": 0.00072014, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, IL", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "a8209f1a-8822-45a4-a136-2ccb0e8c20cb", - "impacts": { - "acd": 0.004751, - "bvi": 0.0, - "cch": 0.901842, - "etf": 0.0, - "etf-c": 0.0, - "fru": 9.77261, - "fwe": 2.40216e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.000622013, - "ldu": 0.0, - "mru": 6.10194e-8, - "ozd": 5.03068e-13, - "pco": 0.00278252, - "pma": 4.12128e-8, - "swe": 0.000978758, - "tre": 0.0106971, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, IQ", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "10691eca-a2f3-4309-bc59-830111504d0b", - "impacts": { - "acd": 0.0412593, - "bvi": 0.0, - "cch": 1.48728, - "etf": 0.0, - "etf-c": 0.0, - "fru": 19.0682, - "fwe": 1.74953e-7, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 6.37609e-5, - "ldu": 0.0, - "mru": 4.04306e-8, - "ozd": 5.03391e-14, - "pco": 0.00707176, - "pma": 3.47918e-7, - "swe": 0.00163103, - "tre": 0.0178403, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, IR", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "59fe07e3-cc97-4489-b49c-3dd4d6a1aac5", - "impacts": { - "acd": 0.0137834, - "bvi": 0.0, - "cch": 0.930385, - "etf": 0.0, - "etf-c": 0.0, - "fru": 14.1505, - "fwe": 5.51715e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 4.30238e-5, - "ldu": 0.0, - "mru": 2.20304e-8, - "ozd": 4.31406e-14, - "pco": 0.00347319, - "pma": 1.13757e-7, - "swe": 0.000984958, - "tre": 0.0107801, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, IS", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "ca0beee4-e330-4135-8e06-63a091cd863c", - "impacts": { - "acd": 5.20141e-6, - "bvi": 0.0, - "cch": 0.0194609, - "etf": 0.0, - "etf-c": 0.0, - "fru": 0.0127787, - "fwe": 1.11006e-9, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 7.99302e-5, - "ldu": 0.0, - "mru": 7.81905e-8, - "ozd": 3.39682e-14, - "pco": 4.94368e-6, - "pma": 3.83931e-11, - "swe": 1.59081e-6, - "tre": 1.76483e-5, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, IT", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "f23b9dd6-9400-4451-a7c4-ad44834b8400", - "impacts": { - "acd": 0.000133352, - "bvi": 0.0, - "cch": 0.621329, - "etf": 0.0, - "etf-c": 0.0, - "fru": 7.93507, - "fwe": 2.96479e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.00129469, - "ldu": 0.0, - "mru": 5.439e-8, - "ozd": 1.11292e-11, - "pco": 0.000905097, - "pma": 1.23206e-8, - "swe": 0.000281486, - "tre": 0.00108983, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, JM", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "ef6056f3-0a1a-433d-9f2b-d99efa978ca0", - "impacts": { - "acd": 0.0295359, - "bvi": 0.0, - "cch": 1.07345, - "etf": 0.0, - "etf-c": 0.0, - "fru": 13.5858, - "fwe": 1.24283e-7, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.00147197, - "ldu": 0.0, - "mru": 1.96047e-8, - "ozd": 7.06386e-13, - "pco": 0.00366674, - "pma": 2.57389e-7, - "swe": 0.000619377, - "tre": 0.00681084, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, JO", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "646e00c9-a5cb-4b57-8731-5cfed5bea9f9", - "impacts": { - "acd": 0.00647612, - "bvi": 0.0, - "cch": 0.781372, - "etf": 0.0, - "etf-c": 0.0, - "fru": 13.0065, - "fwe": 2.37425e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 3.49473e-5, - "ldu": 0.0, - "mru": 1.47031e-8, - "ozd": 3.93217e-14, - "pco": 0.00251761, - "pma": 5.16003e-8, - "swe": 0.000831663, - "tre": 0.00910536, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, JP", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "c0c628fb-302c-45c6-9f83-cf77d85040b8", - "impacts": { - "acd": 0.00118065, - "bvi": 0.0, - "cch": 0.540891, - "etf": 0.0, - "etf-c": 0.0, - "fru": 9.11048, - "fwe": 3.51441e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.294798, - "ldu": 0.0, - "mru": 5.96578e-8, - "ozd": 1.19499e-10, - "pco": 0.000812144, - "pma": 9.72218e-9, - "swe": 0.00025964, - "tre": 0.00283596, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, KE", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "eac80c30-22c6-4445-b574-32d21e3be8d3", - "impacts": { - "acd": 0.0138865, - "bvi": 0.0, - "cch": 0.589603, - "etf": 0.0, - "etf-c": 0.0, - "fru": 6.41661, - "fwe": 4.02956e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.000140819, - "ldu": 0.0, - "mru": 9.58533e-8, - "ozd": 7.8027e-14, - "pco": 0.00272822, - "pma": 1.15563e-7, - "swe": 0.000612007, - "tre": 0.00669775, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, KG", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "1a3ee749-ac23-4965-8f8e-61c602eeaee3", - "impacts": { - "acd": 0.000866085, - "bvi": 0.0, - "cch": 0.156039, - "etf": 0.0, - "etf-c": 0.0, - "fru": 2.04559, - "fwe": 4.54515e-9, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.000425384, - "ldu": 0.0, - "mru": 1.81827e-7, - "ozd": 1.22058e-13, - "pco": 0.000501901, - "pma": 1.26775e-8, - "swe": 0.000173793, - "tre": 0.00190427, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, KH", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "89039edc-900f-49dd-82cc-6a27f7cad4ad", - "impacts": { - "acd": 0.0423186, - "bvi": 0.0, - "cch": 1.41054, - "etf": 0.0, - "etf-c": 0.0, - "fru": 18.2978, - "fwe": 1.32092e-7, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 9.91707e-5, - "ldu": 0.0, - "mru": 3.19202e-8, - "ozd": 2.02707e-13, - "pco": 0.00726782, - "pma": 3.57167e-7, - "swe": 0.00180372, - "tre": 0.0197402, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, KP", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "6291670d-4fc4-450f-98b8-b709117a1dd2", - "impacts": { - "acd": 0.0100174, - "bvi": 0.0, - "cch": 0.797361, - "etf": 0.0, - "etf-c": 0.0, - "fru": 7.96882, - "fwe": 1.92238e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.000430053, - "ldu": 0.0, - "mru": 1.17457e-7, - "ozd": 2.90987e-13, - "pco": 0.00482042, - "pma": 2.50606e-7, - "swe": 0.00166439, - "tre": 0.01817, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, KR", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "37f91862-d812-46b5-a028-6f570c38f28e", - "impacts": { - "acd": 0.00119496, - "bvi": 0.0, - "cch": 0.599585, - "etf": 0.0, - "etf-c": 0.0, - "fru": 9.91356, - "fwe": 2.5523e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.236896, - "ldu": 0.0, - "mru": 5.18017e-8, - "ozd": 1.46386e-10, - "pco": 0.000812525, - "pma": 1.16396e-8, - "swe": 0.00027197, - "tre": 0.00296136, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, KW", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "7c70c227-3d7b-4ac5-9320-976cea319acc", - "impacts": { - "acd": 0.020822, - "bvi": 0.0, - "cch": 0.885084, - "etf": 0.0, - "etf-c": 0.0, - "fru": 12.7407, - "fwe": 8.84134e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 3.26673e-5, - "ldu": 0.0, - "mru": 1.41168e-8, - "ozd": 3.28381e-14, - "pco": 0.00392089, - "pma": 1.75208e-7, - "swe": 0.0010237, - "tre": 0.0112001, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, KZ", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "687e2ab6-2147-49d5-8b96-d353d5d914d5", - "impacts": { - "acd": 0.015495, - "bvi": 0.0, - "cch": 1.128, - "etf": 0.0, - "etf-c": 0.0, - "fru": 11.7616, - "fwe": 3.2311e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.00469351, - "ldu": 0.0, - "mru": 1.35386e-7, - "ozd": 6.43607e-13, - "pco": 0.00582676, - "pma": 2.64738e-7, - "swe": 0.00194164, - "tre": 0.0212819, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, LB", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "9e192c24-3d05-470f-9339-74ce6db5af0b", - "impacts": { - "acd": 0.0265856, - "bvi": 0.0, - "cch": 0.883627, - "etf": 0.0, - "etf-c": 0.0, - "fru": 11.995, - "fwe": 1.157e-7, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 3.68051e-5, - "ldu": 0.0, - "mru": 1.82134e-8, - "ozd": 3.52528e-14, - "pco": 0.00437452, - "pma": 2.25332e-7, - "swe": 0.00107283, - "tre": 0.011735, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, LK", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "a422bb06-6d07-436b-be71-9e2034272a2b", - "impacts": { - "acd": 0.0106068, - "bvi": 0.0, - "cch": 0.709185, - "etf": 0.0, - "etf-c": 0.0, - "fru": 8.75993, - "fwe": 8.80426e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.000506047, - "ldu": 0.0, - "mru": 9.86932e-8, - "ozd": 2.21842e-12, - "pco": 0.00280876, - "pma": 9.87462e-8, - "swe": 0.000816111, - "tre": 0.00884707, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, LT", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "a077ab04-0ddc-4ec7-8f4d-55a352be4a3f", - "impacts": { - "acd": 0.000196951, - "bvi": 0.0, - "cch": 0.154229, - "etf": 0.0, - "etf-c": 0.0, - "fru": 10.6476, - "fwe": 3.37025e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.728376, - "ldu": 0.0, - "mru": 2.94596e-8, - "ozd": 4.44371e-12, - "pco": 0.000240109, - "pma": 4.10786e-9, - "swe": 7.93731e-5, - "tre": 0.000305755, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, LU", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "e4976da2-8029-49ec-ae14-b598e5fc72f6", - "impacts": { - "acd": 0.000455209, - "bvi": 0.0, - "cch": 0.490016, - "etf": 0.0, - "etf-c": 0.0, - "fru": 8.0213, - "fwe": 1.30753e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.00120335, - "ldu": 0.0, - "mru": 1.05692e-7, - "ozd": 3.09396e-11, - "pco": 0.000525301, - "pma": 2.39846e-9, - "swe": 0.000181982, - "tre": 0.00169039, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, LV", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "440c2957-1d86-455f-8528-c4ddf0a46d40", - "impacts": { - "acd": 0.00011583, - "bvi": 0.0, - "cch": 0.234273, - "etf": 0.0, - "etf-c": 0.0, - "fru": 3.7781, - "fwe": 5.26384e-9, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.00113544, - "ldu": 0.0, - "mru": 1.53757e-7, - "ozd": 2.78437e-13, - "pco": 0.000361534, - "pma": 1.96874e-9, - "swe": 0.000123813, - "tre": 0.000462168, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, LY", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "f41dcd87-8d1e-43d4-9976-74e78cb3c21a", - "impacts": { - "acd": 0.0286137, - "bvi": 0.0, - "cch": 1.35361, - "etf": 0.0, - "etf-c": 0.0, - "fru": 19.116, - "fwe": 8.06024e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 3.43633e-5, - "ldu": 0.0, - "mru": 2.06592e-8, - "ozd": 6.27855e-14, - "pco": 0.00571993, - "pma": 2.3943e-7, - "swe": 0.0014872, - "tre": 0.0162669, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, MA", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "7f879b58-013e-472c-8637-67d2d536f4e2", - "impacts": { - "acd": 0.0136214, - "bvi": 0.0, - "cch": 0.933694, - "etf": 0.0, - "etf-c": 0.0, - "fru": 9.96974, - "fwe": 3.06414e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.000411616, - "ldu": 0.0, - "mru": 6.41089e-8, - "ozd": 6.34753e-12, - "pco": 0.00483222, - "pma": 2.10405e-7, - "swe": 0.00156748, - "tre": 0.0171738, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, MD", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "5b60dc0f-9e91-4c08-8b3c-3bedb0e08aef", - "impacts": { - "acd": 0.000269757, - "bvi": 0.0, - "cch": 1.04213, - "etf": 0.0, - "etf-c": 0.0, - "fru": 17.4518, - "fwe": 1.02375e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.000346878, - "ldu": 0.0, - "mru": 1.10674e-7, - "ozd": 1.47954e-13, - "pco": 0.00283877, - "pma": 1.60832e-8, - "swe": 0.00101507, - "tre": 0.00195514, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, MK", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "8965de1d-c700-43b2-bd9c-c69f3f9431ff", - "impacts": { - "acd": 0.000984843, - "bvi": 0.0, - "cch": 1.24074, - "etf": 0.0, - "etf-c": 0.0, - "fru": 12.1032, - "fwe": 1.8559e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.00172336, - "ldu": 0.0, - "mru": 1.19873e-7, - "ozd": 5.33378e-12, - "pco": 0.00449498, - "pma": 4.11094e-7, - "swe": 0.000867563, - "tre": 0.00223784, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, MM", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "11fbcf50-22e3-4db0-b19f-c841bf7f8692", - "impacts": { - "acd": 0.00458418, - "bvi": 0.0, - "cch": 0.48193, - "etf": 0.0, - "etf-c": 0.0, - "fru": 6.67008, - "fwe": 1.59112e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.000207408, - "ldu": 0.0, - "mru": 1.52699e-7, - "ozd": 1.66059e-13, - "pco": 0.00147337, - "pma": 3.74975e-8, - "swe": 0.000461888, - "tre": 0.00505727, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, MN", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "c9fbe09f-17c7-4f21-a5cc-73233e3d2508", - "impacts": { - "acd": 0.0497006, - "bvi": 0.0, - "cch": 1.47192, - "etf": 0.0, - "etf-c": 0.0, - "fru": 14.5244, - "fwe": 2.32598e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.000307633, - "ldu": 0.0, - "mru": 1.76361e-7, - "ozd": 8.13976e-13, - "pco": 0.00687614, - "pma": 4.94626e-7, - "swe": 0.00149777, - "tre": 0.0164106, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, moyenne, RER", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "a7a4ad1e-0107-4153-cfdc-257ab9d8491f", - "impacts": { - "acd": 0.223813, - "bvi": 0.0, - "cch": 0.509427, - "etf": 0.0, - "etf-c": 0.0, - "fru": 8.54775, - "fwe": 2.89737e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.259656, - "ldu": 0.0, - "mru": 6.42317e-8, - "ozd": 1.81674e-10, - "pco": 0.00101639, - "pma": 2.86019e-8, - "swe": 0.000326757, - "tre": 0.00141835, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, MT", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "33d35cac-2f8a-4fbd-b0cd-01e4a948b4f9", - "impacts": { - "acd": 0.0125114, - "bvi": 0.0, - "cch": 1.31149, - "etf": 0.0, - "etf-c": 0.0, - "fru": 16.3514, - "fwe": 2.36404e-7, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.00224518, - "ldu": 0.0, - "mru": 4.9475e-8, - "ozd": 1.56192e-12, - "pco": 0.00433132, - "pma": 1.11449e-7, - "swe": 0.00134933, - "tre": 0.0147522, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, MX", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "62fcb814-f4cd-4b85-a309-7844930c93b3", - "impacts": { - "acd": 0.00942221, - "bvi": 0.0, - "cch": 0.739214, - "etf": 0.0, - "etf-c": 0.0, - "fru": 9.97318, - "fwe": 3.25177e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.04002, - "ldu": 0.0, - "mru": 5.78358e-8, - "ozd": 1.97071e-11, - "pco": 0.00260024, - "pma": 9.92326e-8, - "swe": 0.0007494, - "tre": 0.00821199, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, MY", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "7c9c7dbc-d77c-46f9-8a51-f807b064a317", - "impacts": { - "acd": 0.0056805, - "bvi": 0.0, - "cch": 0.832206, - "etf": 0.0, - "etf-c": 0.0, - "fru": 10.5875, - "fwe": 1.00137e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.00014301, - "ldu": 0.0, - "mru": 4.4938e-8, - "ozd": 2.50373e-13, - "pco": 0.00284716, - "pma": 1.76359e-7, - "swe": 0.000968849, - "tre": 0.0106159, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, MZ", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "0c2270d9-d90e-4439-9498-b56fa3c119e8", - "impacts": { - "acd": 1.38435e-5, - "bvi": 0.0, - "cch": 0.00880732, - "etf": 0.0, - "etf-c": 0.0, - "fru": 0.0336206, - "fwe": 2.40462e-9, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.000174398, - "ldu": 0.0, - "mru": 1.48382e-7, - "ozd": 6.94978e-14, - "pco": 9.94086e-6, - "pma": 1.50938e-10, - "swe": 3.41326e-6, - "tre": 3.72896e-5, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, NA", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "fe81e4db-e027-4c73-bb29-cad340963101", - "impacts": { - "acd": 0.00462983, - "bvi": 0.0, - "cch": 0.357253, - "etf": 0.0, - "etf-c": 0.0, - "fru": 3.27705, - "fwe": 7.8745e-9, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.000283122, - "ldu": 0.0, - "mru": 1.28285e-7, - "ozd": 2.15418e-13, - "pco": 0.00165372, - "pma": 3.93471e-8, - "swe": 0.000546063, - "tre": 0.00598542, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, NG", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "c8644e9a-d3f0-4b85-a282-688da9899e9c", - "impacts": { - "acd": 0.00443329, - "bvi": 0.0, - "cch": 0.693123, - "etf": 0.0, - "etf-c": 0.0, - "fru": 9.18115, - "fwe": 9.56342e-9, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 9.16178e-5, - "ldu": 0.0, - "mru": 6.21e-8, - "ozd": 5.77218e-14, - "pco": 0.00190795, - "pma": 3.36922e-8, - "swe": 0.000529892, - "tre": 0.00580222, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, NI", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "948756fd-23f8-4a22-94be-3bfad0cc193c", - "impacts": { - "acd": 0.0253725, - "bvi": 0.0, - "cch": 0.941626, - "etf": 0.0, - "etf-c": 0.0, - "fru": 11.5328, - "fwe": 1.05866e-7, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.00128594, - "ldu": 0.0, - "mru": 4.14983e-8, - "ozd": 6.5015e-13, - "pco": 0.00370987, - "pma": 2.18209e-7, - "swe": 0.00071837, - "tre": 0.00789033, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, NL", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "e06b4e70-a9a6-4d9f-ad94-6fe3ff797da8", - "impacts": { - "acd": 0.00105822, - "bvi": 0.0, - "cch": 0.544803, - "etf": 0.0, - "etf-c": 0.0, - "fru": 7.48147, - "fwe": 2.19265e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.0351604, - "ldu": 0.0, - "mru": 3.29318e-8, - "ozd": 2.25678e-11, - "pco": 0.00072543, - "pma": 7.0921e-9, - "swe": 0.000257177, - "tre": 0.00140544, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, NO", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "ce912f39-9ffa-42c7-b0dc-d106be7a52c9", - "impacts": { - "acd": 4.31434e-5, - "bvi": 0.0, - "cch": 0.023754, - "etf": 0.0, - "etf-c": 0.0, - "fru": 0.138646, - "fwe": 2.42092e-9, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.000185452, - "ldu": 0.0, - "mru": 1.27486e-7, - "ozd": 8.23133e-13, - "pco": 1.83031e-5, - "pma": 1.82201e-10, - "swe": 6.26955e-6, - "tre": 1.09154e-5, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, non spécifié", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "0048ee22-f0cd-ad5e-6b84-a1373f37aa82", - "impacts": { - "acd": 2.32766, - "bvi": 0.0, - "cch": 0.590478, - "etf": 0.0, - "etf-c": 0.0, - "fru": 6.47232, - "fwe": 6.56679e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.202327, - "ldu": 0.0, - "mru": 7.37708e-8, - "ozd": 2.43647e-10, - "pco": 0.00276809, - "pma": 1.60821e-7, - "swe": 0.000919002, - "tre": 0.0100736, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, NP", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "8df8dd5b-1d89-4338-ad4f-597bedfd6055", - "impacts": { - "acd": 0.000128768, - "bvi": 0.0, - "cch": 0.0841323, - "etf": 0.0, - "etf-c": 0.0, - "fru": 0.136678, - "fwe": 5.32704e-9, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.00032448, - "ldu": 0.0, - "mru": 2.38273e-7, - "ozd": 1.32818e-13, - "pco": 4.43897e-5, - "pma": 1.26138e-9, - "swe": 1.37777e-5, - "tre": 0.000149787, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, NZ", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "b0ccaaaa-d72c-4d83-ad9d-3e414c494d58", - "impacts": { - "acd": 0.00151872, - "bvi": 0.0, - "cch": 0.293397, - "etf": 0.0, - "etf-c": 0.0, - "fru": 3.98174, - "fwe": 4.25483e-9, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.000113639, - "ldu": 0.0, - "mru": 7.20474e-8, - "ozd": 2.73546e-13, - "pco": 0.00103555, - "pma": 1.21104e-8, - "swe": 0.000367632, - "tre": 0.00402799, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, OM", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "11e6d6e8-105d-40a7-9afb-b2f6b238371e", - "impacts": { - "acd": 0.0118503, - "bvi": 0.0, - "cch": 1.41292, - "etf": 0.0, - "etf-c": 0.0, - "fru": 22.3058, - "fwe": 4.36186e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 6.18253e-5, - "ldu": 0.0, - "mru": 3.74073e-8, - "ozd": 9.04018e-14, - "pco": 0.00448549, - "pma": 9.41317e-8, - "swe": 0.00141432, - "tre": 0.0154852, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, PA", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "7393f0a8-66e9-4f47-86db-34a8dea3890b", - "impacts": { - "acd": 0.0118683, - "bvi": 0.0, - "cch": 0.53403, - "etf": 0.0, - "etf-c": 0.0, - "fru": 5.46562, - "fwe": 5.0891e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.000660153, - "ldu": 0.0, - "mru": 7.90553e-8, - "ozd": 3.04803e-13, - "pco": 0.00147958, - "pma": 1.0342e-7, - "swe": 0.000251079, - "tre": 0.00276077, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, PE", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "eb99f3b1-d1d0-4b8c-9573-ad558ade66e7", - "impacts": { - "acd": 0.00213338, - "bvi": 0.0, - "cch": 0.284364, - "etf": 0.0, - "etf-c": 0.0, - "fru": 4.09731, - "fwe": 9.30194e-9, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.00117458, - "ldu": 0.0, - "mru": 9.52688e-8, - "ozd": 7.82581e-13, - "pco": 0.000722177, - "pma": 2.35305e-8, - "swe": 0.000209555, - "tre": 0.00229703, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, PH", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "cdfec7ba-7e0f-49e8-af0d-40900e0aa91a", - "impacts": { - "acd": 0.00761762, - "bvi": 0.0, - "cch": 0.761317, - "etf": 0.0, - "etf-c": 0.0, - "fru": 8.41763, - "fwe": 1.40684e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.000173014, - "ldu": 0.0, - "mru": 5.95304e-8, - "ozd": 1.93494e-13, - "pco": 0.00316428, - "pma": 2.12811e-7, - "swe": 0.00106279, - "tre": 0.0116431, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, PK", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "5235ba76-4f83-473c-9521-8f3e1c084a37", - "impacts": { - "acd": 0.00740151, - "bvi": 0.0, - "cch": 0.748727, - "etf": 0.0, - "etf-c": 0.0, - "fru": 10.886, - "fwe": 5.72261e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.0302271, - "ldu": 0.0, - "mru": 8.42952e-8, - "ozd": 1.48304e-11, - "pco": 0.00262641, - "pma": 7.36086e-8, - "swe": 0.000810736, - "tre": 0.00882112, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, PL", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "280eb6f6-2c6b-49a4-9c11-cbe1a373bc28", - "impacts": { - "acd": 0.00949766, - "bvi": 0.0, - "cch": 1.15075, - "etf": 0.0, - "etf-c": 0.0, - "fru": 11.1352, - "fwe": 1.91034e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.00106079, - "ldu": 0.0, - "mru": 1.01946e-7, - "ozd": 2.18447e-12, - "pco": 0.0027977, - "pma": 9.15555e-8, - "swe": 0.000906413, - "tre": 0.00488169, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, PY", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "6b5a00df-9543-41e2-ab2f-eb9010603c7d", - "impacts": { - "acd": 7.57481e-6, - "bvi": 0.0, - "cch": 0.241601, - "etf": 0.0, - "etf-c": 0.0, - "fru": 0.0195104, - "fwe": 1.97263e-9, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.000144987, - "ldu": 0.0, - "mru": 1.49181e-7, - "ozd": 5.40659e-14, - "pco": 6.65502e-6, - "pma": 9.17768e-11, - "swe": 2.34256e-6, - "tre": 2.5543e-5, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, QA", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "dbe5a642-6f81-4842-95cc-1248be86b1f3", - "impacts": { - "acd": 0.00160631, - "bvi": 0.0, - "cch": 0.722125, - "etf": 0.0, - "etf-c": 0.0, - "fru": 11.8805, - "fwe": 1.33782e-9, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 3.28062e-5, - "ldu": 0.0, - "mru": 1.324e-8, - "ozd": 3.70852e-14, - "pco": 0.0019073, - "pma": 9.60493e-9, - "swe": 0.000682384, - "tre": 0.00747355, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, RO", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "9dadf1cf-d142-42c7-a269-da69c7bd0016", - "impacts": { - "acd": 0.00166774, - "bvi": 0.0, - "cch": 0.664245, - "etf": 0.0, - "etf-c": 0.0, - "fru": 9.13293, - "fwe": 1.31775e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.17362, - "ldu": 0.0, - "mru": 9.81761e-8, - "ozd": 8.41838e-11, - "pco": 0.00226436, - "pma": 1.40503e-7, - "swe": 0.000619031, - "tre": 0.0015191, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, RS", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "7c2df8c0-7c85-4dd1-b8d3-a316aac9e784", - "impacts": { - "acd": 0.041515, - "bvi": 0.0, - "cch": 1.07808, - "etf": 0.0, - "etf-c": 0.0, - "fru": 10.311, - "fwe": 5.06103e-9, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.00161217, - "ldu": 0.0, - "mru": 1.32772e-7, - "ozd": 1.09207e-11, - "pco": 0.00446052, - "pma": 4.19833e-7, - "swe": 0.000740669, - "tre": 0.00816298, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, RU", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "09149fe5-5055-4d49-9e84-a285d5c418d4", - "impacts": { - "acd": 0.000142687, - "bvi": 0.0, - "cch": 0.66131, - "etf": 0.0, - "etf-c": 0.0, - "fru": 10.9691, - "fwe": 1.68588e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.124624, - "ldu": 0.0, - "mru": 9.60312e-8, - "ozd": 1.88358e-12, - "pco": 0.00229249, - "pma": 6.71207e-8, - "swe": 0.000767913, - "tre": 0.00125227, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, SA", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "bf81e73f-c7e0-4fc7-810e-a3995548e810", - "impacts": { - "acd": 0.0157798, - "bvi": 0.0, - "cch": 0.913677, - "etf": 0.0, - "etf-c": 0.0, - "fru": 14.0581, - "fwe": 6.55251e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 3.2416e-5, - "ldu": 0.0, - "mru": 1.34206e-8, - "ozd": 3.6415e-14, - "pco": 0.00359476, - "pma": 1.31486e-7, - "swe": 0.00102892, - "tre": 0.0112604, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, SD", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "7966130c-45a6-4960-8dc8-258267af5f45", - "impacts": { - "acd": 0.0275295, - "bvi": 0.0, - "cch": 1.12472, - "etf": 0.0, - "etf-c": 0.0, - "fru": 12.8292, - "fwe": 7.85106e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.000136529, - "ldu": 0.0, - "mru": 9.55701e-8, - "ozd": 8.7516e-14, - "pco": 0.00498193, - "pma": 2.31237e-7, - "swe": 0.0010692, - "tre": 0.0116992, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, SE", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "4df980bd-8034-4ad4-9686-bc98e4aab6e5", - "impacts": { - "acd": 0.000205792, - "bvi": 0.0, - "cch": 0.0464664, - "etf": 0.0, - "etf-c": 0.0, - "fru": 4.73005, - "fwe": 2.20231e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.510056, - "ldu": 0.0, - "mru": 7.77062e-8, - "ozd": 1.34175e-11, - "pco": 0.000136489, - "pma": 1.16319e-9, - "swe": 4.28489e-5, - "tre": 0.000147182, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, SG", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "f6392de9-90d7-4bd0-9caf-5fb4dd225763", - "impacts": { - "acd": 0.00617875, - "bvi": 0.0, - "cch": 0.655825, - "etf": 0.0, - "etf-c": 0.0, - "fru": 10.3089, - "fwe": 1.68319e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 7.44873e-5, - "ldu": 0.0, - "mru": 1.98459e-8, - "ozd": 2.57203e-13, - "pco": 0.00218365, - "pma": 4.93754e-8, - "swe": 0.000684381, - "tre": 0.00749474, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, SI", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "2ed648ae-5b6c-4a90-a9a9-ebfad55b8e54", - "impacts": { - "acd": 0.000317265, - "bvi": 0.0, - "cch": 0.498523, - "etf": 0.0, - "etf-c": 0.0, - "fru": 8.42927, - "fwe": 2.12957e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.26976, - "ldu": 0.0, - "mru": 9.92283e-8, - "ozd": 2.77911e-12, - "pco": 0.00107077, - "pma": 1.3724e-8, - "swe": 0.000380012, - "tre": 0.00171459, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, SK", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "438da214-9b93-4a0e-bffe-40e20dc58dd9", - "impacts": { - "acd": 0.00158928, - "bvi": 0.0, - "cch": 0.309341, - "etf": 0.0, - "etf-c": 0.0, - "fru": 8.81838, - "fwe": 2.76725e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.402782, - "ldu": 0.0, - "mru": 6.06109e-8, - "ozd": 4.4248e-12, - "pco": 0.000748539, - "pma": 5.55128e-8, - "swe": 0.000220548, - "tre": 0.00102718, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, SN", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "e9332938-4e34-4cb6-ae16-9913c23089ea", - "impacts": { - "acd": 0.0275064, - "bvi": 0.0, - "cch": 1.1195, - "etf": 0.0, - "etf-c": 0.0, - "fru": 13.0059, - "fwe": 7.73497e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 7.04218e-5, - "ldu": 0.0, - "mru": 4.70662e-8, - "ozd": 9.62914e-13, - "pco": 0.00507728, - "pma": 2.30567e-7, - "swe": 0.0011013, - "tre": 0.0120508, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, SV", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "d80c4039-432e-4c05-9ee7-bcf7a42318a4", - "impacts": { - "acd": 0.0111793, - "bvi": 0.0, - "cch": 0.473128, - "etf": 0.0, - "etf-c": 0.0, - "fru": 5.11384, - "fwe": 4.73146e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.000597504, - "ldu": 0.0, - "mru": 4.72135e-8, - "ozd": 2.79395e-13, - "pco": 0.00153242, - "pma": 9.66868e-8, - "swe": 0.000282541, - "tre": 0.00310472, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, SY", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "2b8ab4df-294c-4e43-b0be-535f2f4fd485", - "impacts": { - "acd": 0.0233106, - "bvi": 0.0, - "cch": 1.08778, - "etf": 0.0, - "etf-c": 0.0, - "fru": 16.0882, - "fwe": 9.9046e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 5.01229e-5, - "ldu": 0.0, - "mru": 2.68396e-8, - "ozd": 4.71968e-14, - "pco": 0.00463733, - "pma": 1.95761e-7, - "swe": 0.00125559, - "tre": 0.0137387, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, TG", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "2b0ff1d0-1f93-4382-9173-6534df5b2c2c", - "impacts": { - "acd": 0.0127167, - "bvi": 0.0, - "cch": 0.545455, - "etf": 0.0, - "etf-c": 0.0, - "fru": 5.91196, - "fwe": 3.78257e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.000185643, - "ldu": 0.0, - "mru": 1.34255e-7, - "ozd": 9.3803e-14, - "pco": 0.00239681, - "pma": 1.06376e-7, - "swe": 0.000526342, - "tre": 0.00575964, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, TH", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "15f545fb-2cbc-4a75-8217-c31526f8d07a", - "impacts": { - "acd": 0.00709655, - "bvi": 0.0, - "cch": 0.646174, - "etf": 0.0, - "etf-c": 0.0, - "fru": 9.04947, - "fwe": 5.26191e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.000120738, - "ldu": 0.0, - "mru": 5.69593e-8, - "ozd": 2.40149e-13, - "pco": 0.00238699, - "pma": 9.60206e-8, - "swe": 0.000755223, - "tre": 0.00829332, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, TJ", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "098ba960-3e74-4684-88ca-1df4e718752d", - "impacts": { - "acd": 6.84273e-5, - "bvi": 0.0, - "cch": 0.0426743, - "etf": 0.0, - "etf-c": 0.0, - "fru": 0.47913, - "fwe": 2.61761e-9, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.000183827, - "ldu": 0.0, - "mru": 1.52621e-7, - "ozd": 7.49255e-14, - "pco": 8.08297e-5, - "pma": 4.61141e-10, - "swe": 2.89468e-5, - "tre": 0.000316994, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, TM", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "e4844a0e-68c8-4506-bc9a-9e4b2ac8b607", - "impacts": { - "acd": 0.00304619, - "bvi": 0.0, - "cch": 1.38296, - "etf": 0.0, - "etf-c": 0.0, - "fru": 23.3003, - "fwe": 9.90033e-9, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.000394607, - "ldu": 0.0, - "mru": 1.31822e-7, - "ozd": 1.67852e-13, - "pco": 0.00373251, - "pma": 1.79016e-8, - "swe": 0.00133943, - "tre": 0.014672, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, TT", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "4d4de2d0-3cbd-4c67-95c7-5b9a9a832116", - "impacts": { - "acd": 0.00245014, - "bvi": 0.0, - "cch": 0.933059, - "etf": 0.0, - "etf-c": 0.0, - "fru": 14.289, - "fwe": 8.09717e-9, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.00307687, - "ldu": 0.0, - "mru": 6.4552e-8, - "ozd": 1.45471e-12, - "pco": 0.00240094, - "pma": 1.71268e-8, - "swe": 0.000812541, - "tre": 0.00889856, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, TW", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "b1fda481-0247-4b08-a86f-09847e695e9d", - "impacts": { - "acd": 0.00861254, - "bvi": 0.0, - "cch": 0.845351, - "etf": 0.0, - "etf-c": 0.0, - "fru": 10.9587, - "fwe": 3.50426e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.197955, - "ldu": 0.0, - "mru": 5.78088e-8, - "ozd": 8.9731e-11, - "pco": 0.00372411, - "pma": 2.39765e-7, - "swe": 0.00123681, - "tre": 0.0135506, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, TZ", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "205d1157-f5e0-47ba-bffc-e5d2169a412a", - "impacts": { - "acd": 0.00155966, - "bvi": 0.0, - "cch": 0.475635, - "etf": 0.0, - "etf-c": 0.0, - "fru": 5.85267, - "fwe": 4.88341e-9, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.000203182, - "ldu": 0.0, - "mru": 1.32261e-7, - "ozd": 1.09067e-13, - "pco": 0.00105159, - "pma": 1.0929e-8, - "swe": 0.000312165, - "tre": 0.00341813, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, UA", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "c122dc36-0df3-4d91-8aae-b91a1199509b", - "impacts": { - "acd": 0.000894734, - "bvi": 0.0, - "cch": 0.646745, - "etf": 0.0, - "etf-c": 0.0, - "fru": 12.2117, - "fwe": 3.25119e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.375353, - "ldu": 0.0, - "mru": 6.47907e-8, - "ozd": 3.15206e-12, - "pco": 0.00327696, - "pma": 1.38074e-7, - "swe": 0.00110678, - "tre": 0.00220667, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, US", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "09c094a1-2ba7-4177-9258-4ec1e0c12cb8", - "impacts": { - "acd": 0.0036712, - "bvi": 0.0, - "cch": 0.67978, - "etf": 0.0, - "etf-c": 0.0, - "fru": 9.68839, - "fwe": 2.60248e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.182286, - "ldu": 0.0, - "mru": 9.85548e-8, - "ozd": 1.29244e-10, - "pco": 0.00123536, - "pma": 2.77652e-8, - "swe": 0.000395213, - "tre": 0.0042979, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, UY", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "ae328b49-10da-4e3d-80d3-62154515906c", - "impacts": { - "acd": 0.00834624, - "bvi": 0.0, - "cch": 0.296953, - "etf": 0.0, - "etf-c": 0.0, - "fru": 3.76496, - "fwe": 3.80918e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.000277862, - "ldu": 0.0, - "mru": 1.04586e-7, - "ozd": 1.81987e-13, - "pco": 0.00136604, - "pma": 7.1165e-8, - "swe": 0.000290653, - "tre": 0.00318659, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, UZ", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "fc173956-47e6-40df-8145-16353207c965", - "impacts": { - "acd": 0.00348012, - "bvi": 0.0, - "cch": 0.81178, - "etf": 0.0, - "etf-c": 0.0, - "fru": 12.9214, - "fwe": 9.44821e-9, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.000642618, - "ldu": 0.0, - "mru": 1.03681e-7, - "ozd": 1.34273e-13, - "pco": 0.00229461, - "pma": 3.27611e-8, - "swe": 0.000789202, - "tre": 0.00864454, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, VE", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "d48e579d-1ecc-4d22-be24-81f0b6893f6b", - "impacts": { - "acd": 0.00558046, - "bvi": 0.0, - "cch": 0.497373, - "etf": 0.0, - "etf-c": 0.0, - "fru": 4.91294, - "fwe": 2.24598e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.000116019, - "ldu": 0.0, - "mru": 1.12811e-7, - "ozd": 5.6939e-14, - "pco": 0.00129861, - "pma": 4.6252e-8, - "swe": 0.000354236, - "tre": 0.00387694, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, VN", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "0007ed7f-ef14-47a0-859c-d8ca92309f66", - "impacts": { - "acd": 0.00452596, - "bvi": 0.0, - "cch": 0.555572, - "etf": 0.0, - "etf-c": 0.0, - "fru": 6.90029, - "fwe": 1.07741e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.000177378, - "ldu": 0.0, - "mru": 9.45573e-8, - "ozd": 1.84509e-13, - "pco": 0.00207021, - "pma": 1.14378e-7, - "swe": 0.000707446, - "tre": 0.00775004, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" - }, - { - "name": "Mix électrique réseau, YE", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "0e3d40d6-894e-459c-8360-f8d4560f8387", - "impacts": { - "acd": 0.0322861, - "bvi": 0.0, - "cch": 1.06777, - "etf": 0.0, - "etf-c": 0.0, - "fru": 14.4784, - "fwe": 1.40475e-7, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 3.90911e-5, - "ldu": 0.0, - "mru": 1.63908e-8, - "ozd": 4.09709e-14, - "pco": 0.00529964, - "pma": 2.73675e-7, - "swe": 0.00129782, - "tre": 0.0141959, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" + "tre": 0, + "wtu": 0, + "ecs": 0, + "pef": 0 + } }, { - "name": "Mix électrique réseau, ZA", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "226df310-a28b-4ee8-a30d-f526539d6a67", + "displayName": "Tricotage fully-fashioned", + "info": "Textile > Mise en forme > Tricotage", + "source": "Custom", + "correctif": "non applicable", + "step_usage": "Tissage / Tricotage", + "uuid": "6524ac1e-cc95-4b5a-b462-2fccad7a0bce", + "heat_MJ": 0, + "elec_pppm": 0, + "elec_MJ": 6.06443, + "waste": 0.005, + "alias": "knitting-fully-fashioned", + "category": "process", + "unit": "kg", "impacts": { - "acd": 0.0151197, - "bvi": 0.0, - "cch": 1.17562, - "etf": 0.0, - "etf-c": 0.0, - "fru": 11.357, - "fwe": 2.12354e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.0374604, - "ldu": 0.0, - "mru": 8.62445e-8, - "ozd": 2.33204e-11, - "pco": 0.00551237, - "pma": 1.28452e-7, - "swe": 0.00183076, - "tre": 0.0200646, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" + "acd": 0, + "cch": 0, + "etf": 0, + "etf-c": 0, + "fru": 0, + "fwe": 0, + "htc": 0, + "htc-c": 0, + "htn": 0, + "htn-c": 0, + "ior": 0, + "ldu": 0, + "mru": 0, + "ozd": 0, + "pco": 0, + "pma": 0, + "swe": 0, + "tre": 0, + "wtu": 0, + "ecs": 0, + "pef": 0 + } }, { - "name": "Mix électrique réseau, ZM", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "bf146eaa-b363-4c87-b961-7739850d2ebf", + "displayName": "Tricotage seamless", + "info": "Textile > Mise en forme > Tricotage", + "source": "Custom", + "correctif": "non applicable", + "step_usage": "Tissage / Tricotage", + "uuid": "11648b33-f117-4eca-bb09-233c0ad0757f", + "heat_MJ": 0, + "elec_pppm": 0, + "elec_MJ": 13.2112, + "waste": 0.005, + "alias": "knitting-seamless", + "category": "process", + "unit": "kg", "impacts": { - "acd": 0.000153449, - "bvi": 0.0, - "cch": 0.0141304, - "etf": 0.0, - "etf-c": 0.0, - "fru": 0.0899182, - "fwe": 3.0261e-9, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.00019397, - "ldu": 0.0, - "mru": 1.62193e-7, - "ozd": 7.88613e-14, - "pco": 3.44894e-5, - "pma": 1.33189e-9, - "swe": 9.29379e-6, - "tre": 0.000101635, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" + "acd": 0, + "cch": 0, + "etf": 0, + "etf-c": 0, + "fru": 0, + "fwe": 0, + "htc": 0, + "htc-c": 0, + "htn": 0, + "htn-c": 0, + "ior": 0, + "ldu": 0, + "mru": 0, + "ozd": 0, + "pco": 0, + "pma": 0, + "swe": 0, + "tre": 0, + "wtu": 0, + "ecs": 0, + "pef": 0 + } }, { - "name": "Mix électrique réseau, ZW", - "info": "Energie > Electricité > Mix moyen", - "unit": "kWh", - "source": "Base Impacts 2.01", - "uuid": "2c39bba1-6bd3-4ff0-8a18-9f386b3f05c8", + "displayName": "Tissage (habillement)", + "info": "Textile > Mise en forme > Tissage", + "source": "Custom", + "correctif": "non applicable", + "step_usage": "Tissage / Tricotage", + "uuid": "f9686809-f55e-4b96-b1f0-3298959de7d0", + "heat_MJ": 0, + "elec_pppm": 0.0003145, + "elec_MJ": 0, + "waste": 0.06253, + "alias": "weaving", + "category": "process", + "unit": "kg", "impacts": { - "acd": 0.0108432, - "bvi": 0.0, - "cch": 0.842811, - "etf": 0.0, - "etf-c": 0.0, - "fru": 7.75488, - "fwe": 1.47186e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.000439773, - "ldu": 0.0, - "mru": 1.09502e-7, - "ozd": 4.1716e-13, - "pco": 0.00393688, - "pma": 9.21358e-8, - "swe": 0.00130601, - "tre": 0.0143157, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "Correction de l'indicateur radiations ionisantes" + "acd": 0, + "cch": 0, + "etf": 0, + "etf-c": 0, + "fru": 0, + "fwe": 0, + "htc": 0, + "htc-c": 0, + "htn": 0, + "htn-c": 0, + "ior": 0, + "ldu": 0, + "mru": 0, + "ozd": 0, + "pco": 0, + "pma": 0, + "swe": 0, + "tre": 0, + "wtu": 0, + "ecs": 0, + "pef": 0 + } }, { - "name": "Mix Vapeur (mix technologique|mix de production, en sortie de chaudière), FR", - "info": "Energie > Chaleur > Mix moyen", - "unit": "MJ", + "name": "Teinture sur étoffe", + "displayName": "Teinture sur étoffe", + "info": "Textile > Ennoblissement > Teinture", + "unit": "kg", "source": "Base Impacts 2.01", - "uuid": "12fc43f2-a007-423b-a619-619d725793ea", + "correctif": "non applicable", + "step_usage": "Ennoblissement", + "uuid": "03c769d5-46b6-4cf9-80f8-f2712692a6ab", "impacts": { - "acd": 0.000396607, - "bvi": 0.0, - "cch": 0.0854514, - "etf": 0.0, - "etf-c": 0.0, - "fru": 1.19991, - "fwe": 4.15341e-9, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.00426352, - "ldu": 0.0, - "mru": 7.62846e-9, - "ozd": 1.16221e-12, - "pco": 0.000291788, - "pma": 3.04128e-9, - "swe": 0.000156865, - "tre": 0.00171914, - "wtu": 0.0 + "acd": 0.0088468, + "cch": 0.397712, + "etf": 0, + "etf-c": 0, + "fru": 8.08713, + "fwe": 0.000200245, + "htc": 0, + "htc-c": 0, + "htn": 0, + "htn-c": 0, + "ior": 0.0148535, + "ldu": 1.02655, + "mru": 4.77854e-6, + "ozd": 7.34809e-7, + "pco": 0.00137811, + "pma": 6.49641e-8, + "swe": 0.00458661, + "tre": 0.00115881, + "wtu": 0, + "ecs": 49.99898649279352, + "pef": 60.189078724645206 }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "non applicable" + "heat_MJ": 25.87, + "elec_pppm": 0, + "elec_MJ": 7.17, + "waste": 0, + "alias": "dyeing-fabric", + "category": "process" }, { - "name": "Mix Vapeur (mix technologique|mix de production, en sortie de chaudière), RSA", - "info": "Energie > Chaleur > Mix moyen", - "unit": "MJ", + "name": "Teinture sur pièce", + "displayName": "Teinture sur pièce", + "info": "Textile > Ennoblissement > Teinture", + "unit": "kg", "source": "Base Impacts 2.01", - "uuid": "2e8de6f6-0ea1-455b-adce-ea74d307d222", + "correctif": "non applicable", + "step_usage": "Ennoblissement", + "uuid": "af54556c-5f74-4f2c-8531-d002eda9d793", "impacts": { - "acd": 0.00116505, - "bvi": 0.0, - "cch": 0.106827, - "etf": 0.0, - "etf-c": 0.0, - "fru": 1.20524, - "fwe": 2.61878e-9, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.000264249, - "ldu": 0.0, - "mru": 1.67089e-8, - "ozd": 4.54303e-14, - "pco": 0.000728049, - "pma": 2.00299e-8, - "swe": 0.000414214, - "tre": 0.0045326, - "wtu": 0.0 + "acd": 0.0114956, + "cch": 0.700333, + "etf": 0, + "etf-c": 0, + "fru": 14.4929, + "fwe": 0.000287319, + "htc": 0, + "htc-c": 0, + "htn": 0, + "htn-c": 0, + "ior": 0.0250611, + "ldu": 1.78086, + "mru": 6.76817e-6, + "ozd": 7.86588e-7, + "pco": 0.00191568, + "pma": 9.21259e-8, + "swe": 0.0080911, + "tre": 0.00289027, + "wtu": 0, + "ecs": 78.78597840930105, + "pef": 94.30202340574053 }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "non applicable" + "heat_MJ": 30.06, + "elec_pppm": 0, + "elec_MJ": 9.22, + "waste": 0, + "alias": "dyeing-article", + "category": "process" }, { - "name": "Vapeur à partir de gaz naturel (mix de technologies de combustion et d'épuration des effluents gazeux|en sortie de chaudière|Puissance non spécifiée), RER", - "info": "Energie > Chaleur > Vapeur par énergie primaire", - "unit": "MJ", + "name": "Teinture sur fil", + "displayName": "Teinture sur fil", + "info": "Textile > Ennoblissement > Teinture", + "unit": "kg", "source": "Base Impacts 2.01", - "uuid": "59c4c64c-0916-868a-5dd6-a42c4c42222f", + "correctif": "non applicable", + "step_usage": "Ennoblissement", + "uuid": "b15afd1b-e7c0-4fbf-9f7b-b2a8b7e74bc7", "impacts": { - "acd": 0.000247951, - "bvi": 0.0, - "cch": 0.0744719, - "etf": 0.0, - "etf-c": 0.0, - "fru": 1.18249, - "fwe": 2.13861e-9, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.00467433, - "ldu": 0.0, - "mru": 5.92788e-9, - "ozd": 9.049e-13, - "pco": 0.000205231, - "pma": 7.32868e-10, - "swe": 0.000112183, - "tre": 0.0012301, - "wtu": 0.0 + "acd": 0.00849995, + "cch": 0.525949, + "etf": 0, + "etf-c": 0, + "fru": 10.8093, + "fwe": 0.000266081, + "htc": 0, + "htc-c": 0, + "htn": 0, + "htn-c": 0, + "ior": 0.0186994, + "ldu": 1.31679, + "mru": 5.08255e-6, + "ozd": 7.56778e-7, + "pco": 0.00150931, + "pma": 6.93262e-8, + "swe": 0.00654367, + "tre": 0.00220525, + "wtu": 0, + "ecs": 60.47104887932729, + "pef": 72.46288021314759 }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": "steam-gas-rer", - "step_usage": "Energie", - "correctif": "non applicable" + "heat_MJ": 33.42, + "elec_pppm": 0, + "elec_MJ": 10.15, + "waste": 0, + "alias": "dyeing-yarn", + "category": "process" }, { - "name": "Utilisation : Repassage - Ironing (Cape)", - "info": "Utilisation > Electricité > Repassage", - "unit": "Item(s)", - "source": "Base Impacts 2.01", - "uuid": "b877ae15-96e0-43aa-bafa-a6abcfedbca3", - "impacts": { - "acd": 0.0, - "bvi": 0.0, - "cch": 0.0, - "etf": 0.0, - "etf-c": 0.0, - "fru": 0.0, - "fwe": 0.0, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.0, - "ldu": 0.0, - "mru": 0.0, - "ozd": 0.0, - "pco": 0.0, - "pma": 0.0, - "swe": 0.0, - "tre": 0.0, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.018, - "waste": 0.0, - "alias": null, - "step_usage": "Utilisation", - "correctif": "non applicable" + "displayName": "transport maritime", + "info": "Transport > Maritime > Flotte moyenne", + "source": "Ecoinvent 3.9.1", + "search": "sea container market GLO", + "correctif": "non applicable", + "step_usage": "Transport", + "uuid": "86ac591e1e5c1d96a0d004ac830563d9", + "heat_MJ": 0, + "elec_pppm": 0, + "elec_MJ": 0, + "waste": 0, + "alias": "sea-transport", + "category": "process", + "unit": "t*km" }, { - "name": "Utilisation : Repassage - Ironing (Châle)", - "info": "Utilisation > Electricité > Repassage", - "unit": "Item(s)", - "source": "Base Impacts 2.01", - "uuid": "70067861-aa8d-4ddb-9921-c045012b7c76", - "impacts": { - "acd": 0.0, - "bvi": 0.0, - "cch": 0.0, - "etf": 0.0, - "etf-c": 0.0, - "fru": 0.0, - "fwe": 0.0, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.0, - "ldu": 0.0, - "mru": 0.0, - "ozd": 0.0, - "pco": 0.0, - "pma": 0.0, - "swe": 0.0, - "tre": 0.0, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.045, - "waste": 0.0, - "alias": null, - "step_usage": "Utilisation", - "correctif": "non applicable" + "displayName": "transport aérien long-courrier", + "info": "Transport > Aérien > Flotte moyenne", + "source": "Ecoinvent 3.9.1", + "search": "transport freight aircraft long haul market GLO", + "correctif": "non applicable", + "step_usage": "Transport", + "uuid": "d3130e7ed9686fcc4bbe980e0375ad88", + "heat_MJ": 0, + "elec_pppm": 0, + "elec_MJ": 0, + "waste": 0, + "alias": "air-transport", + "category": "process", + "unit": "t*km" }, { - "name": "Utilisation : Repassage - Ironing (Chemisier)", - "info": "Utilisation > Electricité > Repassage", - "unit": "Item(s)", - "source": "Base Impacts 2.01", - "uuid": "33773966-2704-4420-8663-ea4231a12040", - "impacts": { - "acd": 0.0, - "bvi": 0.0, - "cch": 0.0, - "etf": 0.0, - "etf-c": 0.0, - "fru": 0.0, - "fwe": 0.0, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.0, - "ldu": 0.0, - "mru": 0.0, - "ozd": 0.0, - "pco": 0.0, - "pma": 0.0, - "swe": 0.0, - "tre": 0.0, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.1638, - "waste": 0.0, - "alias": null, - "step_usage": "Utilisation", - "correctif": "non applicable" + "displayName": "transport ferroviaire", + "info": "Transport > Train > Flotte moyenne", + "source": "Ecoinvent 3.9.1", + "search": "freight train GLO", + "correctif": "non applicable", + "step_usage": "Transport", + "uuid": "7037ea59d8d644fd35f80fd1982f9fe9", + "heat_MJ": 0, + "elec_pppm": 0, + "elec_MJ": 0, + "waste": 0, + "alias": "train-transport", + "category": "process", + "unit": "t*km" }, { - "name": "Utilisation : Repassage - Ironing (Débardeur)", - "info": "Utilisation > Electricité > Repassage", - "unit": "Item(s)", - "source": "Base Impacts 2.01", - "uuid": "fcb8c240-1c4e-4413-925f-0b6a7465e5dd", - "impacts": { - "acd": 0.0, - "bvi": 0.0, - "cch": 0.0, - "etf": 0.0, - "etf-c": 0.0, - "fru": 0.0, - "fwe": 0.0, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.0, - "ldu": 0.0, - "mru": 0.0, - "ozd": 0.0, - "pco": 0.0, - "pma": 0.0, - "swe": 0.0, - "tre": 0.0, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0936, - "waste": 0.0, - "alias": null, - "step_usage": "Utilisation", - "correctif": "non applicable" + "displayName": "transport routier", + "info": "Transport > Routier > Flotte moyenne continentale", + "source": "Ecoinvent 3.9.1", + "search": "freight lorry unspecified GLO", + "correctif": "non applicable", + "step_usage": "Transport", + "uuid": "f37aba954435f9f158c19a9449d373b2", + "heat_MJ": 0, + "elec_pppm": 0, + "elec_MJ": 0, + "waste": 0, + "alias": "road-transport", + "category": "process", + "unit": "t*km" }, { - "name": "Utilisation : Repassage - Ironing (Echarpe)", - "info": "Utilisation > Electricité > Repassage", - "unit": "Item(s)", + "name": "Transport en camion non spécifié France (dont parc, utilisation et infrastructure) (50%) [tkm], FR", + "displayName": "Transport en camion non spécifié France", + "info": "Transport > Routier > Flotte moyenne française", + "unit": "t*km", "source": "Base Impacts 2.01", - "uuid": "6efbbe3c-2ad2-47d4-9d8d-2bcbf5b19ada", + "correctif": "non applicable", + "step_usage": "Transport", + "uuid": "f49b27fa-f22e-c6e1-ab4b-e9f873e2e648", "impacts": { - "acd": 0.0, - "bvi": 0.0, - "cch": 0.0, - "etf": 0.0, - "etf-c": 0.0, - "fru": 0.0, - "fwe": 0.0, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.0, - "ldu": 0.0, - "mru": 0.0, - "ozd": 0.0, - "pco": 0.0, - "pma": 0.0, - "swe": 0.0, - "tre": 0.0, - "wtu": 0.0 + "acd": 0.0016869, + "cch": 0.269575, + "etf": 0, + "etf-c": 0, + "fru": 4.00542, + "fwe": 9.94279e-8, + "htc": 0, + "htc-c": 0, + "htn": 0, + "htn-c": 0, + "ior": 0.0327635, + "ldu": 0, + "mru": 8.96321e-7, + "ozd": 5.37976e-10, + "pco": 0.00167797, + "pma": 1.94827e-8, + "swe": 0.000851857, + "tre": 0.00889829, + "wtu": 0, + "ecs": 20.6042751673443, + "pef": 24.033004439288675 }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.045, - "waste": 0.0, + "heat_MJ": 0, + "elec_pppm": 0, + "elec_MJ": 0, + "waste": 0, + "alias": "distribution", + "category": "process" + }, + { + "displayName": "Électricité moyenne tension, Tunisie", + "info": "Energie > Electricité > Mix moyen", + "source": "Ecoinvent 3.9.1", + "search": "medium voltage TN market", + "correctif": "", + "step_usage": "Energie", + "uuid": "b42506cbed4b459815c78d741b453e8e", + "heat_MJ": 0, + "elec_pppm": 0, + "elec_MJ": 0, + "waste": 0, "alias": null, - "step_usage": "Utilisation", - "correctif": "non applicable" + "category": "process", + "unit": "kWh" }, { - "name": "Utilisation : Repassage - Ironing (Gilet)", - "info": "Utilisation > Electricité > Repassage", - "unit": "Item(s)", - "source": "Base Impacts 2.01", - "uuid": "c47a19ae-3d49-41aa-b38d-b8eef6ee8d8e", - "impacts": { - "acd": 0.0, - "bvi": 0.0, - "cch": 0.0, - "etf": 0.0, - "etf-c": 0.0, - "fru": 0.0, - "fwe": 0.0, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.0, - "ldu": 0.0, - "mru": 0.0, - "ozd": 0.0, - "pco": 0.0, - "pma": 0.0, - "swe": 0.0, - "tre": 0.0, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, + "displayName": "Électricité moyenne tension, Turquie", + "info": "Energie > Electricité > Mix moyen", + "source": "Ecoinvent 3.9.1", + "search": "medium voltage TR market", + "correctif": "", + "step_usage": "Energie", + "uuid": "32644303e316aebb9ffa31e9856c8f6b", + "heat_MJ": 0, + "elec_pppm": 0, + "elec_MJ": 0, + "waste": 0, "alias": null, - "step_usage": "Utilisation", - "correctif": "non applicable" + "category": "process", + "unit": "kWh" }, { - "name": "Utilisation : Repassage - Ironing (Jean)", - "info": "Utilisation > Electricité > Repassage", - "unit": "Item(s)", - "source": "Base Impacts 2.01", - "uuid": "6d71fdef-b7a8-4a67-81e9-dc0e3f01a007", - "impacts": { - "acd": 0.0, - "bvi": 0.0, - "cch": 0.0, - "etf": 0.0, - "etf-c": 0.0, - "fru": 0.0, - "fwe": 0.0, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.0, - "ldu": 0.0, - "mru": 0.0, - "ozd": 0.0, - "pco": 0.0, - "pma": 0.0, - "swe": 0.0, - "tre": 0.0, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.24381, - "waste": 0.0, + "displayName": "Électricité moyenne tension, Bangladesh", + "info": "Energie > Electricité > Mix moyen", + "source": "Ecoinvent 3.9.1", + "search": "medium voltage BD market", + "correctif": "", + "step_usage": "Energie", + "uuid": "0b69950358f3e8f0d3fb049d71481186", + "heat_MJ": 0, + "elec_pppm": 0, + "elec_MJ": 0, + "waste": 0, "alias": null, - "step_usage": "Utilisation", - "correctif": "non applicable" + "category": "process", + "unit": "kWh" }, { - "name": "Utilisation : Repassage - Ironing (Jupe)", - "info": "Utilisation > Electricité > Repassage", - "unit": "Item(s)", - "source": "Base Impacts 2.01", - "uuid": "2de2f5e5-79fb-4a4a-8399-a722012e82dc", - "impacts": { - "acd": 0.0, - "bvi": 0.0, - "cch": 0.0, - "etf": 0.0, - "etf-c": 0.0, - "fru": 0.0, - "fwe": 0.0, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.0, - "ldu": 0.0, - "mru": 0.0, - "ozd": 0.0, - "pco": 0.0, - "pma": 0.0, - "swe": 0.0, - "tre": 0.0, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0729, - "waste": 0.0, + "displayName": "Électricité moyenne tension, Brésil", + "info": "Energie > Electricité > Mix moyen", + "source": "Ecoinvent 3.9.1", + "search": "medium voltage BR market group", + "correctif": "", + "step_usage": "Energie", + "uuid": "825dae104f028cb558dac151f7c45f03", + "heat_MJ": 0, + "elec_pppm": 0, + "elec_MJ": 0, + "waste": 0, "alias": null, - "step_usage": "Utilisation", - "correctif": "non applicable" + "category": "process", + "unit": "kWh" }, { - "name": "Utilisation : Repassage - Ironing (Manteau)", - "info": "Utilisation > Electricité > Repassage", - "unit": "Item(s)", - "source": "Base Impacts 2.01", - "uuid": "60147175-ca20-49aa-8991-9ed6f172c47b", - "impacts": { - "acd": 0.0, - "bvi": 0.0, - "cch": 0.0, - "etf": 0.0, - "etf-c": 0.0, - "fru": 0.0, - "fwe": 0.0, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.0, - "ldu": 0.0, - "mru": 0.0, - "ozd": 0.0, - "pco": 0.0, - "pma": 0.0, - "swe": 0.0, - "tre": 0.0, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.018, - "waste": 0.0, + "displayName": "Électricité moyenne tension, République Tchèque", + "info": "Energie > Electricité > Mix moyen", + "source": "Ecoinvent 3.9.1", + "search": "medium voltage CZ market", + "correctif": "", + "step_usage": "Energie", + "uuid": "2764d908c1a6fe88976d6eabf16295da", + "heat_MJ": 0, + "elec_pppm": 0, + "elec_MJ": 0, + "waste": 0, "alias": null, - "step_usage": "Utilisation", - "correctif": "non applicable" + "category": "process", + "unit": "kWh" }, { - "name": "Utilisation : Repassage - Ironing (Pantalon)", - "info": "Utilisation > Electricité > Repassage", - "unit": "Item(s)", - "source": "Base Impacts 2.01", - "uuid": "f6b685ed-d5bd-40a0-af16-7c30838f3627", - "impacts": { - "acd": 0.0, - "bvi": 0.0, - "cch": 0.0, - "etf": 0.0, - "etf-c": 0.0, - "fru": 0.0, - "fwe": 0.0, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.0, - "ldu": 0.0, - "mru": 0.0, - "ozd": 0.0, - "pco": 0.0, - "pma": 0.0, - "swe": 0.0, - "tre": 0.0, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.24381, - "waste": 0.0, + "displayName": "Électricité moyenne tension, Éthiopie", + "info": "Energie > Electricité > Mix moyen", + "source": "Ecoinvent 3.9.1", + "search": "medium voltage ET market", + "correctif": "", + "step_usage": "Energie", + "uuid": "2c27aa8ba10e717c63b8508b487909bd", + "heat_MJ": 0, + "elec_pppm": 0, + "elec_MJ": 0, + "waste": 0, "alias": null, - "step_usage": "Utilisation", - "correctif": "non applicable" + "category": "process", + "unit": "kWh" }, { - "name": "Utilisation : Repassage - Ironing (Pull)", - "info": "Utilisation > Electricité > Repassage", - "unit": "Item(s)", - "source": "Base Impacts 2.01", - "uuid": "4a94e796-cc40-4d74-b5ad-72ef0192a391", - "impacts": { - "acd": 0.0, - "bvi": 0.0, - "cch": 0.0, - "etf": 0.0, - "etf-c": 0.0, - "fru": 0.0, - "fwe": 0.0, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.0, - "ldu": 0.0, - "mru": 0.0, - "ozd": 0.0, - "pco": 0.0, - "pma": 0.0, - "swe": 0.0, - "tre": 0.0, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, + "displayName": "Électricité moyenne tension, Cambodge", + "info": "Energie > Electricité > Mix moyen", + "source": "Ecoinvent 3.9.1", + "search": "medium voltage KH market", + "correctif": "", + "step_usage": "Energie", + "uuid": "de2cd7848f853b1c9b8a5d7b0f255144", + "heat_MJ": 0, + "elec_pppm": 0, + "elec_MJ": 0, + "waste": 0, "alias": null, - "step_usage": "Utilisation", - "correctif": "non applicable" + "category": "process", + "unit": "kWh" }, { - "name": "Utilisation : Repassage - Ironing (Robe)", - "info": "Utilisation > Electricité > Repassage", - "unit": "Item(s)", - "source": "Base Impacts 2.01", - "uuid": "ce224ffa-3d46-4eb9-b624-2e34d4b5a419", - "impacts": { - "acd": 0.0, - "bvi": 0.0, - "cch": 0.0, - "etf": 0.0, - "etf-c": 0.0, - "fru": 0.0, - "fwe": 0.0, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.0, - "ldu": 0.0, - "mru": 0.0, - "ozd": 0.0, - "pco": 0.0, - "pma": 0.0, - "swe": 0.0, - "tre": 0.0, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0729, - "waste": 0.0, + "displayName": "Électricité moyenne tension, Sri Lanka", + "info": "Energie > Electricité > Mix moyen", + "source": "Ecoinvent 3.9.1", + "search": "medium voltage SK market", + "correctif": "", + "step_usage": "Energie", + "uuid": "e0f11b283ad36b3da097649bee199149", + "heat_MJ": 0, + "elec_pppm": 0, + "elec_MJ": 0, + "waste": 0, "alias": null, - "step_usage": "Utilisation", - "correctif": "non applicable" + "category": "process", + "unit": "kWh" }, { - "name": "Utilisation : Repassage - Ironing (T-shirt)", - "info": "Utilisation > Electricité > Repassage", - "unit": "Item(s)", - "source": "Base Impacts 2.01", - "uuid": "974659b8-4635-43ba-86c5-73a186ea6f21", - "impacts": { - "acd": 0.0, - "bvi": 0.0, - "cch": 0.0, - "etf": 0.0, - "etf-c": 0.0, - "fru": 0.0, - "fwe": 0.0, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.0, - "ldu": 0.0, - "mru": 0.0, - "ozd": 0.0, - "pco": 0.0, - "pma": 0.0, - "swe": 0.0, - "tre": 0.0, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0936, - "waste": 0.0, + "displayName": "Électricité moyenne tension, Pakistan", + "info": "Energie > Electricité > Mix moyen", + "source": "Ecoinvent 3.9.1", + "search": "medium voltage PK market", + "correctif": "", + "step_usage": "Energie", + "uuid": "028c9bf863a1ab77a0e636029afc5839", + "heat_MJ": 0, + "elec_pppm": 0, + "elec_MJ": 0, + "waste": 0, "alias": null, - "step_usage": "Utilisation", - "correctif": "non applicable" + "category": "process", + "unit": "kWh" }, { - "name": "Utilisation : Repassage - Ironing (Veste)", - "info": "Utilisation > Electricité > Repassage", - "unit": "Item(s)", - "source": "Base Impacts 2.01", - "uuid": "12a83d8f-24e4-414f-9087-a7d37fefce91", - "impacts": { - "acd": 0.0, - "bvi": 0.0, - "cch": 0.0, - "etf": 0.0, - "etf-c": 0.0, - "fru": 0.0, - "fwe": 0.0, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.0, - "ldu": 0.0, - "mru": 0.0, - "ozd": 0.0, - "pco": 0.0, - "pma": 0.0, - "swe": 0.0, - "tre": 0.0, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.018, - "waste": 0.0, + "displayName": "Électricité moyenne tension, USA", + "info": "Energie > Electricité > Mix moyen", + "source": "Ecoinvent 3.9.1", + "search": "medium voltage US market group", + "correctif": "", + "step_usage": "Energie", + "uuid": "99b549d4ba7a0f5f4ab6050d6a6689ad", + "heat_MJ": 0, + "elec_pppm": 0, + "elec_MJ": 0, + "waste": 0, "alias": null, - "step_usage": "Utilisation", - "correctif": "non applicable" + "category": "process", + "unit": "kWh" }, { - "name": "Utilisation : Impact hors repassage (électricité (lave-linge, sèche-linge), lessive liquide et traitement des eaux usées) (Cape) - Non ironing impact", - "info": "Utilisation > Aggrégation multi-impacts > Electricité (lave-linge, sèche-linge), lessive liquide et traitement des eaux usées", - "unit": "kg", - "source": "Ecobalyse", - "uuid": "86db560b-d31f-4745-a01e-ec74be00f865", - "impacts": { - "acd": 9.39401e-5, - "bvi": 0.0, - "cch": 0.0340193, - "etf": 0.0, - "etf-c": 0.0, - "fru": 0.717395, - "fwe": 1.10861e-5, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 1.34883, - "ldu": 1.05972, - "mru": 1.25858e-7, - "ozd": 8.43237e-9, - "pco": 5.66588e-5, - "pma": 1.93206e-9, - "swe": 2.00761e-5, - "tre": 0.000109398, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.9663, - "waste": 0.0, + "displayName": "Électricité moyenne tension, Viet Nam", + "info": "Energie > Electricité > Mix moyen", + "source": "Ecoinvent 3.9.1", + "search": "medium voltage VN market", + "correctif": "", + "step_usage": "Energie", + "uuid": "3f90d52cc1dfe32119bf53db2713c407", + "heat_MJ": 0, + "elec_pppm": 0, + "elec_MJ": 0, + "waste": 0, "alias": null, - "step_usage": "Utilisation", - "correctif": "Précalcul Ecobalyse à partir de Base Impacts" + "category": "process", + "unit": "kWh" }, { - "name": "Utilisation : Impact hors repassage (électricité (lave-linge, sèche-linge), lessive liquide et traitement des eaux usées) (Châle) - Non ironing impact", - "info": "Utilisation > Aggrégation multi-impacts > Electricité (lave-linge, sèche-linge), lessive liquide et traitement des eaux usées", - "unit": "kg", - "source": "Ecobalyse", - "uuid": "81264b4c-dfb5-4cb1-b9e7-51b04a6f47d6", + "displayName": "Mix chaleur (Europe)", + "info": "Energie > Chaleur > Vapeur par énergie primaire", + "source": "Custom", + "correctif": "Reconstitution du mix depuis Ecoinvent 3.9.1", + "step_usage": "Energie", + "uuid": "heat-europe", + "heat_MJ": 0, + "elec_pppm": 0, + "elec_MJ": 0, + "waste": 0, + "alias": "heat-europe", + "category": "process", + "unit": "MJ", "impacts": { - "acd": 9.39401e-5, - "bvi": 0.0, - "cch": 0.0340193, - "etf": 0.0, - "etf-c": 0.0, - "fru": 0.717395, - "fwe": 1.10861e-5, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 1.34883, - "ldu": 1.05972, - "mru": 1.25858e-7, - "ozd": 8.43237e-9, - "pco": 5.66588e-5, - "pma": 1.93206e-9, - "swe": 2.00761e-5, - "tre": 0.000109398, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.80952, - "waste": 0.0, - "alias": null, - "step_usage": "Utilisation", - "correctif": "Précalcul Ecobalyse à partir de Base Impacts" - }, - { - "name": "Utilisation : Impact hors repassage (électricité (lave-linge, sèche-linge), lessive liquide et traitement des eaux usées) (Chemisier) - Non ironing impact", + "acd": 0.000322, + "cch": 0.06361097712, + "etf": 0.1292908013, + "etf-c": 0.1326450947, + "fru": 0.7438844108, + "fwe": 1.67e-5, + "htc": 1.53e-11, + "htc-c": 1.48e-11, + "htn": 3.59e-10, + "htn-c": 2.12e-11, + "ior": 0.000638865368, + "ldu": 0.2967023465, + "mru": 1.62e-8, + "ozd": 1.4e-9, + "pco": 0.0001728696296, + "pma": 3.38e-9, + "swe": 4.57e-5, + "tre": 0.0004876404948, + "wtu": 0.001886512187, + "ecs": 4.083605241745064, + "pef": 4.443660504016496 + } + }, + { + "displayName": "Mix chaleur (Monde)", + "info": "Energie > Chaleur > Vapeur par énergie primaire", + "source": "Custom", + "correctif": "Reconstitution du mix depuis Ecoinvent 3.9.1", + "step_usage": "Energie", + "uuid": "heat-row", + "heat_MJ": 0, + "elec_pppm": 0, + "elec_MJ": 0, + "waste": 0, + "alias": "heat-row", + "category": "process", + "unit": "MJ", + "impacts": { + "acd": 0.00070501444827913, + "cch": 0.0932968401023615, + "etf": 0.219549602051125, + "etf-c": 0.238243035935154, + "fru": 0.842111952376359, + "fwe": 2.42659334763169e-5, + "htc": 3.02724952156766e-11, + "htc-c": 3.44138972151141e-11, + "htn": 7.26941297821406e-10, + "htn-c": 4.17693285519197e-11, + "ior": 0.00050713308668143, + "ldu": 0.581963754085644, + "mru": 2.35465198569959e-8, + "ozd": 4.52611629318977e-10, + "pco": 0.00029990152307772, + "pma": 1.28413227896674e-8, + "swe": 9.17228259927689e-5, + "tre": 0.000968230176779089, + "wtu": 0.000906321955087608, + "ecs": 7.082834566329015, + "pef": 7.82738331952437 + } + }, + { + "displayName": "Utilisation : Impact hors repassage (Chemisier)", "info": "Utilisation > Aggrégation multi-impacts > Electricité (lave-linge, sèche-linge), lessive liquide et traitement des eaux usées", - "unit": "kg", - "source": "Ecobalyse", + "source": "Custom", + "correctif": "", + "step_usage": "Utilisation", "uuid": "406d1f98-1052-458d-8f50-1901853d896d", - "impacts": { - "acd": 9.39401e-5, - "bvi": 0.0, - "cch": 0.0340193, - "etf": 0.0, - "etf-c": 0.0, - "fru": 0.717395, - "fwe": 1.10861e-5, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 1.34883, - "ldu": 1.05972, - "mru": 1.25858e-7, - "ozd": 8.43237e-9, - "pco": 5.66588e-5, - "pma": 1.93206e-9, - "swe": 2.00761e-5, - "tre": 0.000109398, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, + "heat_MJ": 0, + "elec_pppm": 0, "elec_MJ": 0.80952, - "waste": 0.0, + "waste": 0, "alias": null, - "step_usage": "Utilisation", - "correctif": "Précalcul Ecobalyse à partir de Base Impacts" - }, - { - "name": "Utilisation : Impact hors repassage (électricité (lave-linge, sèche-linge), lessive liquide et traitement des eaux usées) (Débardeur) - Non ironing impact", - "info": "Utilisation > Aggrégation multi-impacts > Electricité (lave-linge, sèche-linge), lessive liquide et traitement des eaux usées", + "category": "process", "unit": "kg", - "source": "Ecobalyse", - "uuid": "24e2ff0a-75c6-471f-a375-d3f075ffad44", "impacts": { "acd": 9.39401e-5, - "bvi": 0.0, "cch": 0.0340193, - "etf": 0.0, - "etf-c": 0.0, + "etf": 0, + "etf-c": 0, "fru": 0.717395, "fwe": 1.10861e-5, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, + "htc": 0, + "htc-c": 0, + "htn": 0, + "htn-c": 0, "ior": 1.34883, "ldu": 1.05972, "mru": 1.25858e-7, @@ -9193,106 +1450,36 @@ "pma": 1.93206e-9, "swe": 2.00761e-5, "tre": 0.000109398, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 1.0266, - "waste": 0.0, - "alias": null, - "step_usage": "Utilisation", - "correctif": "Précalcul Ecobalyse à partir de Base Impacts" + "wtu": 0, + "ecs": 15.133534579300136, + "pef": 18.849860331795774 + } }, { - "name": "Utilisation : Impact hors repassage (électricité (lave-linge, sèche-linge), lessive liquide et traitement des eaux usées) (Echarpe) - Non ironing impact", + "displayName": "Utilisation : Impact hors repassage (Jean)", "info": "Utilisation > Aggrégation multi-impacts > Electricité (lave-linge, sèche-linge), lessive liquide et traitement des eaux usées", - "unit": "kg", - "source": "Ecobalyse", - "uuid": "d88c97c6-6f9a-477e-a61c-01fc5aed0a3b", - "impacts": { - "acd": 9.39401e-5, - "bvi": 0.0, - "cch": 0.0340193, - "etf": 0.0, - "etf-c": 0.0, - "fru": 0.717395, - "fwe": 1.10861e-5, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 1.34883, - "ldu": 1.05972, - "mru": 1.25858e-7, - "ozd": 8.43237e-9, - "pco": 5.66588e-5, - "pma": 1.93206e-9, - "swe": 2.00761e-5, - "tre": 0.000109398, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.80952, - "waste": 0.0, - "alias": null, + "source": "Custom", + "correctif": "", "step_usage": "Utilisation", - "correctif": "Précalcul Ecobalyse à partir de Base Impacts" - }, - { - "name": "Utilisation : Impact hors repassage (électricité (lave-linge, sèche-linge), lessive liquide et traitement des eaux usées) (Gilet) - Non ironing impact", - "info": "Utilisation > Aggrégation multi-impacts > Electricité (lave-linge, sèche-linge), lessive liquide et traitement des eaux usées", - "unit": "kg", - "source": "Ecobalyse", - "uuid": "1ecbfc31-9e9c-45de-9ed2-718b1c64357b", - "impacts": { - "acd": 9.39401e-5, - "bvi": 0.0, - "cch": 0.0340193, - "etf": 0.0, - "etf-c": 0.0, - "fru": 0.717395, - "fwe": 1.10861e-5, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 1.34883, - "ldu": 1.05972, - "mru": 1.25858e-7, - "ozd": 8.43237e-9, - "pco": 5.66588e-5, - "pma": 1.93206e-9, - "swe": 2.00761e-5, - "tre": 0.000109398, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, + "uuid": "4964273a-cdbd-43cf-8cf8-4b017aee4f03", + "heat_MJ": 0, + "elec_pppm": 0, "elec_MJ": 1.0266, - "waste": 0.0, + "waste": 0, "alias": null, - "step_usage": "Utilisation", - "correctif": "Précalcul Ecobalyse à partir de Base Impacts" - }, - { - "name": "Utilisation : Impact hors repassage (électricité (lave-linge, sèche-linge), lessive liquide et traitement des eaux usées) (Jean) - Non ironing impact", - "info": "Utilisation > Aggrégation multi-impacts > Electricité (lave-linge, sèche-linge), lessive liquide et traitement des eaux usées", + "category": "process", "unit": "kg", - "source": "Ecobalyse", - "uuid": "4964273a-cdbd-43cf-8cf8-4b017aee4f03", "impacts": { "acd": 9.39401e-5, - "bvi": 0.0, "cch": 0.0340193, - "etf": 0.0, - "etf-c": 0.0, + "etf": 0, + "etf-c": 0, "fru": 0.717395, "fwe": 1.10861e-5, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, + "htc": 0, + "htc-c": 0, + "htn": 0, + "htn-c": 0, "ior": 1.34883, "ldu": 1.05972, "mru": 1.25858e-7, @@ -9301,70 +1488,36 @@ "pma": 1.93206e-9, "swe": 2.00761e-5, "tre": 0.000109398, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 1.0266, - "waste": 0.0, - "alias": null, - "step_usage": "Utilisation", - "correctif": "Précalcul Ecobalyse à partir de Base Impacts" + "wtu": 0, + "ecs": 15.133534579300136, + "pef": 18.849860331795774 + } }, { - "name": "Utilisation : Impact hors repassage (électricité (lave-linge, sèche-linge), lessive liquide et traitement des eaux usées) (Jupe) - Non ironing impact", + "displayName": "Utilisation : Impact hors repassage (Jupe)", "info": "Utilisation > Aggrégation multi-impacts > Electricité (lave-linge, sèche-linge), lessive liquide et traitement des eaux usées", - "unit": "kg", - "source": "Ecobalyse", + "source": "Custom", + "correctif": "", + "step_usage": "Utilisation", "uuid": "2572015b-7320-4ce1-bc99-cc6de371a654", - "impacts": { - "acd": 9.39401e-5, - "bvi": 0.0, - "cch": 0.0340193, - "etf": 0.0, - "etf-c": 0.0, - "fru": 0.717395, - "fwe": 1.10861e-5, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 1.34883, - "ldu": 1.05972, - "mru": 1.25858e-7, - "ozd": 8.43237e-9, - "pco": 5.66588e-5, - "pma": 1.93206e-9, - "swe": 2.00761e-5, - "tre": 0.000109398, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, + "heat_MJ": 0, + "elec_pppm": 0, "elec_MJ": 0.80952, - "waste": 0.0, + "waste": 0, "alias": null, - "step_usage": "Utilisation", - "correctif": "Précalcul Ecobalyse à partir de Base Impacts" - }, - { - "name": "Utilisation : Impact hors repassage (électricité (lave-linge, sèche-linge), lessive liquide et traitement des eaux usées) (Manteau) - Non ironing impact", - "info": "Utilisation > Aggrégation multi-impacts > Electricité (lave-linge, sèche-linge), lessive liquide et traitement des eaux usées", + "category": "process", "unit": "kg", - "source": "Ecobalyse", - "uuid": "8c040f35-e137-424b-a67f-2e50b628c1bf", "impacts": { "acd": 9.39401e-5, - "bvi": 0.0, "cch": 0.0340193, - "etf": 0.0, - "etf-c": 0.0, + "etf": 0, + "etf-c": 0, "fru": 0.717395, "fwe": 1.10861e-5, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, + "htc": 0, + "htc-c": 0, + "htn": 0, + "htn-c": 0, "ior": 1.34883, "ldu": 1.05972, "mru": 1.25858e-7, @@ -9373,34 +1526,36 @@ "pma": 1.93206e-9, "swe": 2.00761e-5, "tre": 0.000109398, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.9663, - "waste": 0.0, - "alias": null, - "step_usage": "Utilisation", - "correctif": "Précalcul Ecobalyse à partir de Base Impacts" + "wtu": 0, + "ecs": 15.133534579300136, + "pef": 18.849860331795774 + } }, { - "name": "Utilisation : Impact hors repassage (électricité (lave-linge, sèche-linge), lessive liquide et traitement des eaux usées) (Pantalon) - Non ironing impact", + "displayName": "Utilisation : Impact hors repassage (Manteau)", "info": "Utilisation > Aggrégation multi-impacts > Electricité (lave-linge, sèche-linge), lessive liquide et traitement des eaux usées", + "source": "Custom", + "correctif": "", + "step_usage": "Utilisation", + "uuid": "8c040f35-e137-424b-a67f-2e50b628c1bf", + "heat_MJ": 0, + "elec_pppm": 0, + "elec_MJ": 0.9663, + "waste": 0, + "alias": null, + "category": "process", "unit": "kg", - "source": "Ecobalyse", - "uuid": "ea7afeed-c058-4dbb-be01-66704a9afb1f", "impacts": { "acd": 9.39401e-5, - "bvi": 0.0, "cch": 0.0340193, - "etf": 0.0, - "etf-c": 0.0, + "etf": 0, + "etf-c": 0, "fru": 0.717395, "fwe": 1.10861e-5, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, + "htc": 0, + "htc-c": 0, + "htn": 0, + "htn-c": 0, "ior": 1.34883, "ldu": 1.05972, "mru": 1.25858e-7, @@ -9409,34 +1564,36 @@ "pma": 1.93206e-9, "swe": 2.00761e-5, "tre": 0.000109398, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 1.0266, - "waste": 0.0, - "alias": null, - "step_usage": "Utilisation", - "correctif": "Précalcul Ecobalyse à partir de Base Impacts" + "wtu": 0, + "ecs": 15.133534579300136, + "pef": 18.849860331795774 + } }, { - "name": "Utilisation : Impact hors repassage (électricité (lave-linge, sèche-linge), lessive liquide et traitement des eaux usées) (Pull) - Non ironing impact", + "displayName": "Utilisation : Impact hors repassage (Pantalon)", "info": "Utilisation > Aggrégation multi-impacts > Electricité (lave-linge, sèche-linge), lessive liquide et traitement des eaux usées", + "source": "Custom", + "correctif": "", + "step_usage": "Utilisation", + "uuid": "ea7afeed-c058-4dbb-be01-66704a9afb1f", + "heat_MJ": 0, + "elec_pppm": 0, + "elec_MJ": 1.0266, + "waste": 0, + "alias": null, + "category": "process", "unit": "kg", - "source": "Ecobalyse", - "uuid": "2b39a7ac-38bd-435f-85a4-783023d845bf", "impacts": { "acd": 9.39401e-5, - "bvi": 0.0, "cch": 0.0340193, - "etf": 0.0, - "etf-c": 0.0, + "etf": 0, + "etf-c": 0, "fru": 0.717395, "fwe": 1.10861e-5, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, + "htc": 0, + "htc-c": 0, + "htn": 0, + "htn-c": 0, "ior": 1.34883, "ldu": 1.05972, "mru": 1.25858e-7, @@ -9445,34 +1602,36 @@ "pma": 1.93206e-9, "swe": 2.00761e-5, "tre": 0.000109398, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 1.0266, - "waste": 0.0, - "alias": null, - "step_usage": "Utilisation", - "correctif": "Précalcul Ecobalyse à partir de Base Impacts" + "wtu": 0, + "ecs": 15.133534579300136, + "pef": 18.849860331795774 + } }, { - "name": "Utilisation : Impact hors repassage (électricité (lave-linge, sèche-linge), lessive liquide et traitement des eaux usées) (Robe) - Non ironing impact", + "displayName": "Utilisation : Impact hors repassage (Pull)", "info": "Utilisation > Aggrégation multi-impacts > Electricité (lave-linge, sèche-linge), lessive liquide et traitement des eaux usées", + "source": "Custom", + "correctif": "", + "step_usage": "Utilisation", + "uuid": "2b39a7ac-38bd-435f-85a4-783023d845bf", + "heat_MJ": 0, + "elec_pppm": 0, + "elec_MJ": 1.0266, + "waste": 0, + "alias": null, + "category": "process", "unit": "kg", - "source": "Ecobalyse", - "uuid": "d3bff7b7-efc1-459b-856d-ea0801d6912f", "impacts": { "acd": 9.39401e-5, - "bvi": 0.0, "cch": 0.0340193, - "etf": 0.0, - "etf-c": 0.0, + "etf": 0, + "etf-c": 0, "fru": 0.717395, "fwe": 1.10861e-5, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, + "htc": 0, + "htc-c": 0, + "htn": 0, + "htn-c": 0, "ior": 1.34883, "ldu": 1.05972, "mru": 1.25858e-7, @@ -9481,34 +1640,36 @@ "pma": 1.93206e-9, "swe": 2.00761e-5, "tre": 0.000109398, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.80952, - "waste": 0.0, - "alias": null, - "step_usage": "Utilisation", - "correctif": "Précalcul Ecobalyse à partir de Base Impacts" + "wtu": 0, + "ecs": 15.133534579300136, + "pef": 18.849860331795774 + } }, { - "name": "Utilisation : Impact hors repassage (électricité (lave-linge, sèche-linge), lessive liquide et traitement des eaux usées) (T-shirt) - Non ironing impact", + "displayName": "Utilisation : Impact hors repassage (Robe)", "info": "Utilisation > Aggrégation multi-impacts > Electricité (lave-linge, sèche-linge), lessive liquide et traitement des eaux usées", + "source": "Custom", + "correctif": "", + "step_usage": "Utilisation", + "uuid": "d3bff7b7-efc1-459b-856d-ea0801d6912f", + "heat_MJ": 0, + "elec_pppm": 0, + "elec_MJ": 0.80952, + "waste": 0, + "alias": null, + "category": "process", "unit": "kg", - "source": "Ecobalyse", - "uuid": "7f76529e-521d-4795-bb36-ff896c4692da", "impacts": { "acd": 9.39401e-5, - "bvi": 0.0, "cch": 0.0340193, - "etf": 0.0, - "etf-c": 0.0, + "etf": 0, + "etf-c": 0, "fru": 0.717395, "fwe": 1.10861e-5, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, + "htc": 0, + "htc-c": 0, + "htn": 0, + "htn-c": 0, "ior": 1.34883, "ldu": 1.05972, "mru": 1.25858e-7, @@ -9517,34 +1678,36 @@ "pma": 1.93206e-9, "swe": 2.00761e-5, "tre": 0.000109398, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 1.0266, - "waste": 0.0, - "alias": null, - "step_usage": "Utilisation", - "correctif": "Précalcul Ecobalyse à partir de Base Impacts" + "wtu": 0, + "ecs": 15.133534579300136, + "pef": 18.849860331795774 + } }, { - "name": "Utilisation : Impact hors repassage (électricité (lave-linge, sèche-linge), lessive liquide et traitement des eaux usées) (Veste) - Non ironing impact", + "displayName": "Utilisation : Impact hors repassage (T-shirt)", "info": "Utilisation > Aggrégation multi-impacts > Electricité (lave-linge, sèche-linge), lessive liquide et traitement des eaux usées", + "source": "Custom", + "correctif": "", + "step_usage": "Utilisation", + "uuid": "7f76529e-521d-4795-bb36-ff896c4692da", + "heat_MJ": 0, + "elec_pppm": 0, + "elec_MJ": 1.0266, + "waste": 0, + "alias": null, + "category": "process", "unit": "kg", - "source": "Ecobalyse", - "uuid": "493c32d2-506d-48c1-b8d7-0646fba88571", "impacts": { "acd": 9.39401e-5, - "bvi": 0.0, "cch": 0.0340193, - "etf": 0.0, - "etf-c": 0.0, + "etf": 0, + "etf-c": 0, "fru": 0.717395, "fwe": 1.10861e-5, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, + "htc": 0, + "htc-c": 0, + "htn": 0, + "htn-c": 0, "ior": 1.34883, "ldu": 1.05972, "mru": 1.25858e-7, @@ -9553,34 +1716,31 @@ "pma": 1.93206e-9, "swe": 2.00761e-5, "tre": 0.000109398, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.9663, - "waste": 0.0, - "alias": null, - "step_usage": "Utilisation", - "correctif": "Précalcul Ecobalyse à partir de Base Impacts" + "wtu": 0, + "ecs": 15.133534579300136, + "pef": 18.849860331795774 + } }, { "name": "Transport en voiture jusqu'au point de collecte précalculé pour la fin de vie", + "displayName": "Transport en voiture jusqu'au point de collecte précalculé pour la fin de vie", "info": "Transport > Routier > Voiture individuelle", "unit": "Item(s)", "source": "Base Impacts 2.01", + "correctif": "non applicable", + "step_usage": "Transport", "uuid": "1ead35dd-fc71-4b0c-9410-7e39da95c7dc", "impacts": { "acd": 0.00011505, - "bvi": 0.0, "cch": 0.0364904, - "etf": 0.0, - "etf-c": 0.0, + "etf": 0, + "etf-c": 0, "fru": 0.471935, "fwe": 1.8876e-7, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, + "htc": 0, + "htc-c": 0, + "htn": 0, + "htn-c": 0, "ior": 7.41e-5, "ldu": 0.146289, "mru": 2.7105e-9, @@ -9589,214 +1749,151 @@ "pma": 9.945e-10, "swe": 3.705e-5, "tre": 0.0004758, - "wtu": 0.0 + "wtu": 0, + "ecs": 1.9419221655062295, + "pef": 2.184273654856301 }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, + "heat_MJ": 0, + "elec_pppm": 0, + "elec_MJ": 0, + "waste": 0, "alias": "passenger-car", - "step_usage": "Transport", - "correctif": "non applicable" - }, - { - "name": "Mise en décharge de textiles, FR", - "info": "Traitement de fin de vie > Mise en décharge > Fractions de déchets", - "unit": "kg", - "source": "Ecobalyse", - "uuid": "9adaf403-4eda-4d9c-80c3-f231754644ca", - "impacts": { - "acd": 0.000261782, - "bvi": 0.0, - "cch": 2.22265, - "etf": 0.0, - "etf-c": 0.0, - "fru": 1.10287, - "fwe": 1.94935e-5, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.0313935, - "ldu": 0.0, - "mru": 3.10063e-9, - "ozd": 1.25701e-11, - "pco": 0.00105709, - "pma": 4.76351e-9, - "swe": 0.00103294, - "tre": 0.00113587, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Utilisation", - "correctif": "Précalcul Ecobalyse à partir de Base Impacts" + "category": "process" }, { - "name": "Fin de vie hors voiture (transport en camion, incinération, mise en décharge)", + "displayName": "Fin de vie hors voiture (transport en camion, incinération, mise en décharge)", "info": "Fin de vie > Aggrégation multi-impacts > ", - "unit": "kg", - "source": "Ecobalyse", + "source": "Custom", + "correctif": "Précalcul Ecobalyse à partir de Base Impacts", + "step_usage": "Fin de vie", "uuid": "266fa378-77c0-11ec-90d6-0242ac120003", + "heat_MJ": 0, + "elec_pppm": 0, + "elec_MJ": 0, + "waste": 0, + "alias": "end-of-life", + "category": "process", + "unit": "kg", "impacts": { "acd": 0.000407082, - "bvi": 0.0, "cch": 1.1636, - "etf": 0.0, - "etf-c": 0.0, + "etf": 0, + "etf-c": 0, "fru": -1.19948, "fwe": 8.92823e-6, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, + "htc": 0, + "htc-c": 0, + "htn": 0, + "htn-c": 0, "ior": -0.140706, - "ldu": 0.0, + "ldu": 0, "mru": 5.50423e-8, "ozd": -1.59271e-10, "pco": 0.00103153, "pma": 3.88588e-9, "swe": 0.000700685, "tre": 0.00245086, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": "end-of-life", - "step_usage": "Fin de vie", - "correctif": "Précalcul Ecobalyse à partir de Base Impacts" + "wtu": 0, + "ecs": 33.10958312937074, + "pef": 33.28066255209558 + } }, { - "name": "Tricotage rectiligne, inventaire désagrégé", + "displayName": "Tricotage rectiligne", "info": "Textile > Mise en forme > Tricotage", - "unit": "kg", - "source": "Base Impacts 2.01", + "source": "Custom", + "correctif": "non applicable", + "step_usage": "Tissage / Tricotage", "uuid": "364298ad-2058-4ec4-b2d0-47f5214abffb", - "impacts": { - "acd": 0.0, - "bvi": 0.0, - "cch": 0.0, - "etf": 0.0, - "etf-c": 0.0, - "fru": 0.0, - "fwe": 0.0, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.0, - "ldu": 0.0, - "mru": 0.0, - "ozd": 0.0, - "pco": 0.0, - "pma": 0.0, - "swe": 0.0, - "tre": 0.0, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, + "heat_MJ": 0, + "elec_pppm": 0, "elec_MJ": 4.194, - "waste": 0.0417, + "waste": 0.04003, "alias": "knitting-straight", - "step_usage": "Tissage / Tricotage", - "correctif": "non applicable" + "category": "process", + "unit": "kg", + "impacts": { + "acd": 0, + "cch": 0, + "etf": 0, + "etf-c": 0, + "fru": 0, + "fwe": 0, + "htc": 0, + "htc-c": 0, + "htn": 0, + "htn-c": 0, + "ior": 0, + "ldu": 0, + "mru": 0, + "ozd": 0, + "pco": 0, + "pma": 0, + "swe": 0, + "tre": 0, + "wtu": 0, + "ecs": 0, + "pef": 0 + } }, { - "name": "Tricotage circulaire, inventaire désagrégé", + "displayName": "Tricotage circulaire", "info": "Textile > Mise en forme > Tricotage", - "unit": "kg", - "source": "Base Impacts 2.01", + "source": "Custom", + "correctif": "non applicable", + "step_usage": "Tissage / Tricotage", "uuid": "2e16787c-7a89-4883-acdf-37d3d362bdab", - "impacts": { - "acd": 0.0, - "bvi": 0.0, - "cch": 0.0, - "etf": 0.0, - "etf-c": 0.0, - "fru": 0.0, - "fwe": 0.0, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.0, - "ldu": 0.0, - "mru": 0.0, - "ozd": 0.0, - "pco": 0.0, - "pma": 0.0, - "swe": 0.0, - "tre": 0.0, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, + "heat_MJ": 0, + "elec_pppm": 0, "elec_MJ": 4.25101, - "waste": 0.0351967, + "waste": 0.034, "alias": "knitting-circular", - "step_usage": "Tissage / Tricotage", - "correctif": "non applicable" - }, - { - "name": "Mix Vapeur (mix technologique|mix de production, en sortie de chaudière), RER/Steam Mix (technology mix|production mix, at steam plant), RER", - "info": "Energie > Chaleur > Mix moyen", - "unit": "MJ", - "source": "Base Impacts 2.01", - "uuid": "63b1b03f-1f73-4791-829d-d49c06ddc8ee", + "category": "process", + "unit": "kg", "impacts": { - "acd": 0.000413488, - "bvi": 0.0, - "cch": 0.0873996, - "etf": 0.0, - "etf-c": 0.0, - "fru": 1.18461, - "fwe": 3.51786e-9, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.00363908, - "ldu": 0.0, - "mru": 9.59961e-9, - "ozd": 6.86356e-13, - "pco": 0.000255543, - "pma": 2.48288e-9, - "swe": 0.000139163, - "tre": 0.00152571, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": null, - "step_usage": "Energie", - "correctif": "non applicable" + "acd": 0, + "cch": 0, + "etf": 0, + "etf-c": 0, + "fru": 0, + "fwe": 0, + "htc": 0, + "htc-c": 0, + "htn": 0, + "htn-c": 0, + "ior": 0, + "ldu": 0, + "mru": 0, + "ozd": 0, + "pco": 0, + "pma": 0, + "swe": 0, + "tre": 0, + "wtu": 0, + "ecs": 0, + "pef": 0 + } }, { "name": "Délavage chimique, procédé majorant, traitement inefficace des eaux usées", + "displayName": "Délavage chimique, procédé majorant, traitement inefficace des eaux usées", "info": "Textile > Ennoblissement > Delavage", "unit": "kg", "source": "Base Impacts 2.01", + "correctif": "non applicable", + "step_usage": "Ennoblissement", "uuid": "49adf2a8-c74f-46af-b4c7-e1a8e1f5a6cb", "impacts": { "acd": 0.000923442, - "bvi": 0.0, "cch": 0.183115, - "etf": 0.0, - "etf-c": 0.0, + "etf": 0, + "etf-c": 0, "fru": 2.03693, "fwe": 0.000349432, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, + "htc": 0, + "htc-c": 0, + "htn": 0, + "htn-c": 0, "ior": 0.00336641, "ldu": 0.720837, "mru": 5.70479e-7, @@ -9805,34 +1902,37 @@ "pma": 9.24585e-9, "swe": 0.00337439, "tre": 0.000366822, - "wtu": 0.0 + "wtu": 0, + "ecs": 19.02626819356544, + "pef": 22.66169575467732 }, "heat_MJ": 37.81, - "elec_pppm": 0.0, + "elec_pppm": 0, "elec_MJ": 6.53, - "waste": 0.0, + "waste": 0, "alias": "fading", - "step_usage": "Ennoblissement", - "correctif": "non applicable" + "category": "process" }, { "name": "Impression pigmentaire, procédé représentatif, traitement moyen des eaux usées", + "displayName": "Impression pigmentaire, procédé représentatif, traitement moyen des eaux usées", "info": "Textile > Ennoblissement > Impression", "unit": "m2", "source": "Base Impacts 2.01", + "correctif": "non applicable", + "step_usage": "Ennoblissement", "uuid": "710987ca-f483-4f1c-9122-38b620f4062b", "impacts": { "acd": 0.000211988, - "bvi": 0.0, "cch": 0.0620522, - "etf": 0.0, - "etf-c": 0.0, + "etf": 0, + "etf-c": 0, "fru": 1.35876, "fwe": 6.81551e-5, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, + "htc": 0, + "htc-c": 0, + "htn": 0, + "htn-c": 0, "ior": 0.000938064, "ldu": 0.29734, "mru": 2.87832e-7, @@ -9841,35 +1941,38 @@ "pma": 4.09434e-9, "swe": 0.00138926, "tre": 0.000257148, - "wtu": 0.0 + "wtu": 0, + "ecs": 6.982066280639367, + "pef": 8.354115771936371 }, "heat_MJ": 7.25, - "elec_pppm": 0.0, + "elec_pppm": 0, "elec_MJ": 4.56, - "waste": 0.0, + "waste": 0, "alias": "printing-pigment", - "step_usage": "Ennoblissement", - "correctif": "non applicable" + "category": "process" }, { "name": "Impression fixé-lavé, procédé représentatif, traitement moyen des eaux usées", + "displayName": "Impression fixé-lavé, procédé représentatif, traitement moyen des eaux usées", "info": "Textile > Ennoblissement > Impression", "unit": "m2", "source": "Base Impacts 2.01", + "correctif": "non applicable", + "step_usage": "Ennoblissement", "uuid": "0810b8e5-a3d9-4607-bccc-83d112573260", "impacts": { "acd": 0.000692673, - "bvi": 0.0, "cch": 0.0377105, - "etf": 0.0, - "etf-c": 0.0, + "etf": 0, + "etf-c": 0, "fru": 0.624761, "fwe": 9.07767e-5, + "htc": 0, + "htc-c": 0, + "htn": 0, + "htn-c": 0, "ior": 0.00143026, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, "ldu": 0.234857, "mru": 5.70619e-7, "ozd": 3.79884e-9, @@ -9877,36 +1980,38 @@ "pma": 5.63363e-9, "swe": 0.00142631, "tre": 0.000133536, - "wtu": 0.0 + "wtu": 0, + "ecs": 6.703583334489573, + "pef": 8.180265537420423 }, "heat_MJ": 8.72, - "elec_pppm": 0.0, + "elec_pppm": 0, "elec_MJ": 5.22, - "waste": 0.0, + "waste": 0, "alias": "printing-substantive", - "step_usage": "Ennoblissement", - "correctif": "non applicable" + "category": "process" }, { - "search": "", "name": "Apprêt anti-tache, procédé représentatif, traitement moyen des eaux usées", + "displayName": "Apprêt anti-tache, procédé représentatif, traitement moyen des eaux usées", "info": "Textile > Ennoblissement > Appret chimique", "unit": "kg", "source": "Base Impacts 2.01", + "correctif": "non applicable", + "step_usage": "Ennoblissement", "uuid": "63baddae-e05d-404b-a73f-371044a24fe9", "impacts": { "acd": 0.00248038, - "bvi": 0.0, "cch": 4.33475, - "etf": 0.0, - "etf-c": 0.0, + "etf": 0, + "etf-c": 0, "fru": 6.79917, "fwe": 3.4782e-5, + "htc": 0, + "htc-c": 0, + "htn": 0, + "htn-c": 0, "ior": 0.00957356, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, "ldu": 1.00838, "mru": 9.57786e-5, "ozd": 8.51755e-5, @@ -9914,36 +2019,43 @@ "pma": 2.32444e-8, "swe": 0.00128288, "tre": 0.00123719, - "wtu": 0.0 + "wtu": 0, + "ecs": 305.51384409572677, + "pef": 353.9410037138773 }, "heat_MJ": 10.74, - "elec_pppm": 0.0, + "elec_pppm": 0, "elec_MJ": 1.61, - "waste": 0.0, + "waste": 0, "alias": "finishing", - "step_usage": "Ennoblissement", - "correctif": "non applicable" + "category": "process" }, { - "search": "", - "name": "Teinture fibres synthétiques", + "displayName": "Teinture fibres synthétiques", "info": "Textile > Ennoblissement > Teinture", - "unit": "kg", - "source": "Ecobalyse", + "source": "Custom", + "correctif": "Inventaires enrichis (substances chimiques)", + "step_usage": "Ennoblissement", "uuid": "ecobalyse-teinture-fibres-synthetiques", + "heat_MJ": 10.74, + "elec_pppm": 0, + "elec_MJ": 1.61, + "waste": 0, + "alias": "dyeing-synthetic-fiber", + "category": "process", + "unit": "kg", "impacts": { "acd": 0, - "bvi": 0, "cch": 0, "etf": 0, "etf-c": 104.31895810274, "fru": 0, "fwe": 0, - "ior": 0, "htc": 0, "htc-c": 2.1936995372e-11, "htn": 0, - "htn-c": 0.00000000625094526675, + "htn-c": 6.25094526675e-9, + "ior": 0, "ldu": 0, "mru": 0, "ozd": 0, @@ -9951,36 +2063,37 @@ "pma": 0, "swe": 0, "tre": 0, - "wtu": 0 - }, - "heat_MJ": 10.74, - "elec_pppm": 0.0, - "elec_MJ": 1.61, - "waste": 0.0, - "alias": "dyeing-synthetic-fiber", - "step_usage": "Ennoblissement", - "correctif": "Inventaires enrichis (substances chimiques)" + "wtu": 0, + "ecs": 223.90514244228544, + "pef": 0 + } }, { - "search": "", - "name": "Teinture fibres cellulosiques", + "displayName": "Teinture fibres cellulosiques", "info": "Textile > Ennoblissement > Teinture", - "unit": "kg", - "source": "Ecobalyse", + "source": "Custom", + "correctif": "Inventaires enrichis (substances chimiques)", + "step_usage": "Ennoblissement", "uuid": "ecobalyse-teinture-fibres-cellulosiques", + "heat_MJ": 10.74, + "elec_pppm": 0, + "elec_MJ": 1.61, + "waste": 0, + "alias": "dyeing-cellulosic-fiber", + "category": "process", + "unit": "kg", "impacts": { "acd": 0, - "bvi": 0, "cch": 0, "etf": 0, "etf-c": 272.815415091109, "fru": 0, "fwe": 0, - "ior": 0, "htc": 0, "htc-c": 5.891974316e-12, "htn": 0, - "htn-c": 0.00000000078628564143, + "htn-c": 7.8628564143e-10, + "ior": 0, "ldu": 0, "mru": 0, "ozd": 0, @@ -9988,73 +2101,53 @@ "pma": 0, "swe": 0, "tre": 0, - "wtu": 0 - }, - "heat_MJ": 10.74, - "elec_pppm": 0.0, - "elec_MJ": 1.61, - "waste": 0.0, - "alias": "dyeing-cellulosic-fiber", - "step_usage": "Ennoblissement", - "correctif": "Inventaires enrichis (substances chimiques)" + "wtu": 0, + "ecs": 585.5577498796123, + "pef": 0 + } }, { - "search": "", - "name": "Blanchiment", + "displayName": "Blanchiment", "info": "Textile > Ennoblissement > Blanchiment", - "unit": "kg", - "source": "Ecobalyse", - "uuid": "ecobalyse-blanchiment", - "impacts": { - "acd": 0, - "bvi": 0, - "cch": 0, - "etf": 0, - "etf-c": 127.23919595637, - "fru": 0, - "fwe": 0, - "ior": 0, - "htc": 0, - "htc-c": 6.03445356432e-11, - "htn": 0, - "htn-c": 0.000000001553051544382, - "ldu": 0, - "mru": 0, - "ozd": 0, - "pco": 0, - "pma": 0, - "swe": 0, - "tre": 0, - "wtu": 0 - }, + "source": "Ecoinvent 3.9.1", + "search": "bleaching RoW", + "correctif": "", + "step_usage": "Ennoblissement", + "uuid": "blanchiment", "heat_MJ": 10.74, - "elec_pppm": 0.0, + "elec_pppm": 0, "elec_MJ": 1.61, - "waste": 0.0, + "waste": 0, "alias": "bleaching", - "step_usage": "Ennoblissement", - "correctif": "Inventaires enrichis (substances chimiques)" + "category": "process", + "unit": "kg" }, { - "search": "", - "name": "Impression (pigmentaire)", + "displayName": "Impression (pigmentaire)", "info": "Textile > Ennoblissement > Impression", - "unit": "kg", - "source": "Ecobalyse", + "source": "Custom", + "correctif": "Inventaires enrichis (substances chimiques)", + "step_usage": "Ennoblissement", "uuid": "ecobalyse-impression-pigmentaire", + "heat_MJ": 10.74, + "elec_pppm": 0, + "elec_MJ": 1.61, + "waste": 0, + "alias": "printing-paste", + "category": "process", + "unit": "kg", "impacts": { "acd": 0, - "bvi": 0, "cch": 0, "etf": 0, "etf-c": 340.107561026106, "fru": 0, "fwe": 0, - "ior": 0, "htc": 0, "htc-c": 3.847432322e-12, "htn": 0, - "htn-c": 0.000000007326437877005, + "htn-c": 7.326437877005e-9, + "ior": 0, "ldu": 0, "mru": 0, "ozd": 0, @@ -10062,36 +2155,37 @@ "pma": 0, "swe": 0, "tre": 0, - "wtu": 0 - }, - "heat_MJ": 10.74, - "elec_pppm": 0.0, - "elec_MJ": 1.61, - "waste": 0.0, - "alias": "printing-paste", - "step_usage": "Ennoblissement", - "correctif": "Inventaires enrichis (substances chimiques)" + "wtu": 0, + "ecs": 729.9903419496324, + "pef": 0 + } }, { - "search": "", - "name": "Impression fixé-lavé (colorants)", + "displayName": "Impression fixé-lavé (colorants)", "info": "Textile > Ennoblissement > Impression", - "unit": "kg", - "source": "Ecobalyse", + "source": "Custom", + "correctif": "Inventaires enrichis (substances chimiques)", + "step_usage": "Ennoblissement", "uuid": "ecobalyse-impression-fixe-lave-colorants", + "heat_MJ": 10.74, + "elec_pppm": 0, + "elec_MJ": 1.61, + "waste": 0, + "alias": "printing-dyes", + "category": "process", + "unit": "kg", "impacts": { "acd": 0, - "bvi": 0, "cch": 0, "etf": 0, "etf-c": 131.926230792062, "fru": 0, "fwe": 0, - "ior": 0, "htc": 0, "htc-c": 1.30267071248e-12, "htn": 0, - "htn-c": 0.0000000011829465125544, + "htn-c": 1.1829465125544e-9, + "ior": 0, "ldu": 0, "mru": 0, "ozd": 0, @@ -10099,266 +2193,9 @@ "pma": 0, "swe": 0, "tre": 0, - "wtu": 0 - }, - "heat_MJ": 10.74, - "elec_pppm": 0.0, - "elec_MJ": 1.61, - "waste": 0.0, - "alias": "printing-dyes", - "step_usage": "Ennoblissement", - "correctif": "Inventaires enrichis (substances chimiques)" - }, - { - "name": "Vapeur à partir de gaz naturel (mix de technologies de combustion et d'épuration des effluents gazeux|en sortie de chaudière|Puissance non spécifiée), RSA", - "info": "Energie > Chaleur > Vapeur par énergie primaire", - "unit": "MJ", - "source": "Base Impacts 2.01", - "uuid": "e56446ac-cb37-0398-af3d-74eced543ad4", - "impacts": { - "acd": 0.00031065, - "bvi": 0.0, - "cch": 0.075522, - "etf": 0.0, - "etf-c": 0.0, - "fru": 1.2518, - "fwe": 7.5246e-10, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 7.0195e-5, - "ldu": 0.0, - "mru": 8.47012e-9, - "ozd": 1.43361e-14, - "pco": 0.000274777, - "pma": 8.17209e-10, - "swe": 0.000155205, - "tre": 0.0017016, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": "steam-gas-rsa", - "step_usage": "Energie", - "correctif": "non applicable" - }, - { - "name": "Vapeur à partir de fioul léger (technologie non spécifiée), RER", - "info": "Energie > Chaleur > Vapeur par énergie primaire", - "unit": "MJ", - "source": "Base Impacts 2.01", - "uuid": "19d30184-3353-8d04-cc67-70c01d5a1068", - "impacts": { - "acd": 0.00065969, - "bvi": 0.0, - "cch": 0.09308, - "etf": 0.0, - "etf-c": 0.0, - "fru": 1.2862, - "fwe": 1.5001e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.0015104, - "ldu": 0.0, - "mru": 6.02555e-9, - "ozd": 2.62383e-13, - "pco": 0.000434239, - "pma": 3.02813e-9, - "swe": 0.00024293, - "tre": 0.00266065, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": "steam-light-fuel-rer", - "step_usage": "Energie", - "correctif": "non applicable" - }, - { - "name": "Vapeur à partir de fioul léger (technologie non spécifiée), RSA", - "info": "Energie > Chaleur > Vapeur par énergie primaire", - "unit": "MJ", - "source": "Base Impacts 2.01", - "uuid": "caf1a971-dc4c-139c-820c-c18bd7fbe413", - "impacts": { - "acd": 0.00070162, - "bvi": 0.0, - "cch": 0.095839, - "etf": 0.0, - "etf-c": 0.0, - "fru": 1.2931, - "fwe": 1.8337e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.0011099, - "ldu": 0.0, - "mru": 6.78967e-9, - "ozd": 1.07054e-13, - "pco": 0.000474096, - "pma": 3.68528e-9, - "swe": 0.000266632, - "tre": 0.00291994, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": "steam-light-fuel-rsa", - "step_usage": "Energie", - "correctif": "non applicable" - }, - { - "name": "Vapeur à partir de fioul lourd (technologie non spécifiée), RER", - "info": "Energie > Chaleur > Vapeur par énergie primaire", - "unit": "MJ", - "source": "Base Impacts 2.01", - "uuid": "099a6b65-a41c-455c-63b6-af06a2f79f54", - "impacts": { - "acd": 0.0016268, - "bvi": 0.0, - "cch": 0.097001, - "etf": 0.0, - "etf-c": 0.0, - "fru": 1.1951, - "fwe": 1.8312e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.0015122, - "ldu": 0.0, - "mru": 5.82849e-9, - "ozd": 2.65444e-13, - "pco": 0.000821044, - "pma": 1.15455e-8, - "swe": 0.000449924, - "tre": 0.0049289, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": "steam-heavy-fuel-rer", - "step_usage": "Energie", - "correctif": "non applicable" - }, - { - "name": "Vapeur à partir de fioul lourd (technologie non spécifiée), RSA", - "info": "Energie > Chaleur > Vapeur par énergie primaire", - "unit": "MJ", - "source": "Base Impacts 2.01", - "uuid": "b1b664e7-014d-bc70-9634-e88cb5da0508", - "impacts": { - "acd": 0.0034327, - "bvi": 0.0, - "cch": 0.098499, - "etf": 0.0, - "etf-c": 0.0, - "fru": 1.3048, - "fwe": 1.4843e-8, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.0011103, - "ldu": 0.0, - "mru": 6.82832e-9, - "ozd": 1.10428e-13, - "pco": 0.000955279, - "pma": 2.59653e-8, - "swe": 0.000473044, - "tre": 0.00518265, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": "steam-heavy-fuel-rsa", - "step_usage": "Energie", - "correctif": "non applicable" - }, - { - "name": "Vapeur à partir de charbon/anthracite (mix de technologies de combustion et d'épuration des effluents gazeux|en sortie de chaudière|> 50MW), RER", - "info": "Energie > Chaleur > Vapeur par énergie primaire", - "unit": "MJ", - "source": "Base Impacts 2.01", - "uuid": "5c012dc3-2d97-4857-8ea5-52853d576674", - "impacts": { - "acd": 0.0010033, - "bvi": 0.0, - "cch": 0.12359, - "etf": 0.0, - "etf-c": 0.0, - "fru": 1.1883, - "fwe": 3.5597e-9, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.0011325, - "ldu": 0.0, - "mru": 2.17155e-8, - "ozd": 1.49149e-13, - "pco": 0.000569636, - "pma": 6.86853e-9, - "swe": 0.000320473, - "tre": 0.00350922, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": "steam-coal-rer", - "step_usage": "Energie", - "correctif": "non applicable" - }, - { - "name": "Vapeur à partir de charbon/anthracite (mix de technologies de combustion et d'épuration des effluents gazeux|en sortie de chaudière|> 50MW), RSA", - "info": "Energie > Chaleur > Vapeur par énergie primaire", - "unit": "MJ", - "source": "Base Impacts 2.01", - "uuid": "d9ba5f6e-8d6c-419d-9fd9-9c4eb5c09f4f", - "impacts": { - "acd": 0.001509, - "bvi": 0.0, - "cch": 0.12335, - "etf": 0.0, - "etf-c": 0.0, - "fru": 1.1789, - "fwe": 2.9958e-9, - "htc": 0.0, - "htc-c": 0.0, - "htn": 0.0, - "htn-c": 0.0, - "ior": 0.000361, - "ldu": 0.0, - "mru": 2.1681e-8, - "ozd": 6.24737e-14, - "pco": 0.000951379, - "pma": 3.01509e-8, - "swe": 0.000545, - "tre": 0.00596244, - "wtu": 0.0 - }, - "heat_MJ": 0.0, - "elec_pppm": 0.0, - "elec_MJ": 0.0, - "waste": 0.0, - "alias": "steam-coal-rsa", - "step_usage": "Energie", - "correctif": "non applicable" + "wtu": 0, + "ecs": 283.16005100701443, + "pef": 0 + } } ] diff --git a/data/textile/activities.py b/data/textile/activities.py deleted file mode 100755 index 1257c917d..000000000 --- a/data/textile/activities.py +++ /dev/null @@ -1,85 +0,0 @@ -#!/usr/bin/env python -# from pprint import pprint -import json - -import bw2data -from bw2data.project import projects - -projects.create_project("textile", activate=True, exist_ok=True) - -with open("../../public/data/textile/processes_impacts.json") as f: - processes = json.loads(f.read()) -with open("../../public/data/textile/materials.json") as f: - materials = {m["name"]: m for m in json.loads(f.read())} -with open("codes.json") as f: - codes = {c["code"]: c["name"] for c in json.loads(f.read())} - - -# check no missing process -for material in materials.keys(): - if material not in [p["name"] for p in processes]: - print(f"missing process: {material}") - -for process in processes: - name = process["name"] - if name in materials: - process.update(materials[name]) - if False: # process["step_usage"] == "Energie": - process["source"] = "Ecoinvent 3.9.1" - del process["impacts"] - # ELEC - if name.startswith("Mix électrique réseau"): - (pname, ccode) = name.split(", ", maxsplit=1) - pname = pname.replace( - "Mix électrique réseau", "Market for electricity, medium voltage" - ) - name = f"{pname} {codes[ccode]}" - # STEAM - elif name.startswith("Mix Vapeur"): - if name.endswith("FR") or name.endswith("RER"): - name = "heat from steam in chemical industry RER" - elif name.endswith("RSA"): - name = "heat from steam in chemical industry ROW" - else: - assert False - elif name.startswith("Vapeur à partir de gaz naturel"): - if name.endswith("RER"): - name = "market for heat natural gas europe" - elif name.endswith("RSA"): - name = "market for heat natural gas ROW" - else: - assert False - elif name.startswith("Vapeur à partir de fioul") or name.startswith( - "Vapeur à partir de charbon" - ): - if name.endswith("RER"): - name = "market for heat other Europe" - elif name.endswith("RSA"): - name = "market for heat other ROW" - else: - assert False - - process["name"] = name - new_process = bw2data.Database("Ecoinvent 3.9.1").search(name) - match len(new_process): - case 0: - print(f"Could not find process {name}") - case _: - process["uuid"] = new_process[0].as_dict()["activity"] - if process["source"] == "Base Impacts": - process["source"] = "Base Impacts 2.01" - if process["source"].startswith("Ecoinvent"): - process["correctif"] = "" - -processes = [ - { - p[0]: p[1].encode("utf-8") if isinstance(p, str) else p[1] - for p in process.items() - } - for process in processes -] - -open("activities.json", "w").write(json.dumps(processes, indent=2, ensure_ascii=False)) - -# Mix électrique réseau, AN (antilles néerlandaises) -# Mix électrique réseau, non spécifié diff --git a/data/textile/export.py b/data/textile/export.py index f79b2815f..21cedcb7a 100755 --- a/data/textile/export.py +++ b/data/textile/export.py @@ -1,151 +1,208 @@ #!/usr/bin/env python -# coding: utf-8 -"""Export des matières et procédés du textile""" +"""Materials and processes export for textile""" -import json +import os +import sys +from os.path import dirname -import bw2calc -from bw2data.project import projects +import bw2data +import pandas as pd +from common import ( + fix_unit, + order_json, + remove_detailed_impacts, + with_aggregated_impacts, + with_corrected_impacts, +) from common.export import ( + IMPACTS_JSON, cached_search, + check_ids, + compare_impacts, + compute_impacts, display_changes, - with_corrected_impacts, - with_subimpacts, + export_json, + load_json, + plot_impacts, ) -from common.impacts import impacts as impacts_definition +from common.impacts import impacts as impacts_py +from frozendict import frozendict + +BW_DATABASES = bw2data.databases +PROJECT_ROOT_DIR = dirname(dirname(dirname(__file__))) +ECOBALYSE_DATA_DIR = os.environ.get("ECOBALYSE_DATA_DIR") +if not ECOBALYSE_DATA_DIR: + print( + "\n🚨 ERROR: For the export to work properly, you need to specify ECOBALYSE_DATA_DIR env variable. It needs to point to the https://github.com/MTES-MCT/ecobalyse-private/ repository. Please, edit your .env file accordingly." + ) + sys.exit(1) + +# Configuration +DEFAULT_DB = "Ecoinvent 3.9.1" +ACTIVITIES_FILE = f"{PROJECT_ROOT_DIR}/data/textile/activities.json" +COMPARED_IMPACTS_FILE = f"{PROJECT_ROOT_DIR}/data/textile/compared_impacts.csv" +IMPACTS_FILE = f"{PROJECT_ROOT_DIR}/public/data/impacts.json" +MATERIALS_FILE = f"{PROJECT_ROOT_DIR}/public/data/textile/materials.json" +PROCESSES_IMPACTS = f"{ECOBALYSE_DATA_DIR}/data/textile/processes_impacts.json" +PROCESSES_AGGREGATED = f"{PROJECT_ROOT_DIR}/public/data/textile/processes.json" +GRAPH_FOLDER = f"{PROJECT_ROOT_DIR}/data/textile/impact_comparison" + + +def create_material_list(activities_tuple): + print("Creating material list...") + return tuple( + [ + to_material(activity) + for activity in list(activities_tuple) + if activity["category"] == "material" + ] + ) + + +def to_material(activity): + return { + "id": activity["material_id"], + "materialProcessUuid": activity["uuid"], + "recycledProcessUuid": activity.get("recycledProcessUuid"), + "recycledFrom": activity.get("recycledFrom"), + "name": activity["shortName"], + "shortName": activity["shortName"], + "origin": activity["origin"], + "primary": activity.get("primary"), + "geographicOrigin": activity["geographicOrigin"], + "defaultCountry": activity["defaultCountry"], + "priority": activity.get("priority"), + "cff": activity.get("cff"), + } -# Input -PROJECT = "textile" -DBNAME = "Ecoinvent 3.9.1" -ACTIVITIES = "activities.json" -IMPACTS = "../../public/data/impacts.json" -# Output -MATERIALS = "../../public/data/textile/materials.json" -PROCESSES = "../../public/data/textile/processes_impacts.json" -projects.set_current(PROJECT) -# projects.activate_project(PROJECT) +def create_process_list(activities): + print("Creating process list...") + return frozendict( + {activity["uuid"]: to_process(activity) for activity in activities} + ) + + +def to_process(activity): + return { + "name": cached_search(activity.get("source", DEFAULT_DB), activity["search"])[ + "name" + ] + if "search" in activity and activity["source"] in BW_DATABASES + else activity.get("name", activity["displayName"]), + "displayName": activity["displayName"], + "info": activity["info"], + "unit": fix_unit( + cached_search(activity.get("source", DEFAULT_DB), activity["search"])[ + "unit" + ] + if "search" in activity and activity["source"] in BW_DATABASES + else activity["unit"] + ), + "source": activity["source"], + "correctif": activity["correctif"], + "step_usage": activity["step_usage"], + "uuid": activity["uuid"], + **( + {"impacts": activity["impacts"].copy()} + if "impacts" in activity + else {"impacts": {}} + ), + "heat_MJ": activity["heat_MJ"], + "elec_pppm": activity["elec_pppm"], + "elec_MJ": activity["elec_MJ"], + "waste": activity["waste"], + "alias": activity["alias"], + # those are removed at the end: + **({"search": activity["search"]} if "search" in activity else {}), + } -def isUuid(txt): - return isinstance(txt, str) and len(txt.split("-")) == 5 +def csv_export_impact_comparison(compared_impacts): + rows = [] + for product_id, process in compared_impacts.items(): + simapro_impacts = process.get("simapro_impacts", {}) + brightway_impacts = process.get("brightway_impacts", {}) + for impact in simapro_impacts: + row = { + "id": product_id, + "name": process["name"], + "impact": impact, + "simapro": simapro_impacts.get(impact), + "brightway": brightway_impacts.get(impact), + } + row["diff_abs"] = abs(row["simapro"] - row["brightway"]) + row["diff_rel"] = ( + row["diff_abs"] / abs(row["simapro"]) if row["simapro"] != 0 else None + ) + rows.append(row) -def uuidOrSearch(txt): - return txt if isUuid(txt) or txt is None else cached_search(DBNAME, txt) + df = pd.DataFrame(rows) + df.to_csv(COMPARED_IMPACTS_FILE, index=False) if __name__ == "__main__": + # bw2data.config.p["biosphere_database"] = "biosphere3" + # keep the previous processes with old impacts - with open(PROCESSES) as f: - oldprocesses = json.load(f) - - with open(ACTIVITIES, "r") as f: - activities = json.load(f) - - print("Getting real name and uuid of activities...") - for activity in activities: - activity["name"] = ( - activity["name"] - if "name" in activity - else cached_search(DBNAME, activity["search"])["name"] - + " {" - + cached_search(DBNAME, activity["search"])["location"] - + "}" - ) - activity["uuid"] = ( - activity["uuid"] - if not activity["source"].startswith("BaseImpact") - else cached_search(DBNAME, activity["search"])["activity"] - ) + oldprocesses = load_json(PROCESSES_IMPACTS) + activities = tuple(load_json(ACTIVITIES_FILE)) - print("Creating material list...") - materials = [ - { - "id": activity["id"], - "materialProcessUuid": uuidOrSearch(activity["materialProcessUuid"]), - "recycledProcessUuid": uuidOrSearch(activity["recycledProcessUuid"]), - "recycledFrom": activity["recycledFrom"], - "name": activity["name"], - "shortName": activity["shortName"], - "origin": activity["origin"], - "primary": activity["primary"], - "geographicOrigin": activity["geographicOrigin"], - "defaultCountry": activity["defaultCountry"], - "priority": activity["priority"], - "cff": activity["cff"], - } - for activity in activities - if "id" in activity - ] + materials = create_material_list(activities) - print("Creating process list...") - processes = { - activity["name"]: { - "name": activity["name"], - "info": activity["info"], - "unit": activity["unit"], - "source": activity["source"], - "uuid": activity["uuid"], - "impacts": activity["impacts"] - if not activity["source"].startswith("BaseImpact") - else {}, - "heat_MJ": activity.get("heat_MJ", 0), - "elec_pppm": activity.get("elec_pppm", 0), - "elec_MJ": activity.get("elec_MJ", 0), - "waste": activity["waste"], - "alias": activity["alias"], - "step_usage": activity["step_usage"], - "correctif": activity["correctif"], - # "country": activity["country"], - } - for activity in activities - } + check_ids(materials) + processes = create_process_list(activities) - # compute the impacts - for index, (key, process) in enumerate(processes.items()): - print(f"Computing impacts: {str(index)}/{len(processes)}", end="\r") - match process["source"]: - case "BaseImpact": - lca = bw2calc.LCA({cached_search(DBNAME, process["search"]): 1}) - lca.lci() - for key, method in impacts_definition.items(): - lca.switch_method(method) - lca.lcia() - process.setdefault("impacts", {})[key] = float( - "{:.10g}".format(lca.score) - ) - process["impacts"]["bvi"] = 0 - - # compute subimpacts - process = with_subimpacts(process) - - case _: + if len(sys.argv) == 1: # just export.py + processes_impacts = compute_impacts(processes, DEFAULT_DB, impacts_py) + elif len(sys.argv) > 1 and sys.argv[1] == "compare": # export.py compare + impacts_compared_dic = compare_impacts( + processes, DEFAULT_DB, impacts_py, IMPACTS_JSON + ) + csv_export_impact_comparison(impacts_compared_dic) + for process_name, values in impacts_compared_dic.items(): + displayName = processes[process_name]["displayName"] + print(f"Plotting {displayName}") + if "simapro_impacts" not in values and "brightway_impacts" not in values: + print(f"This hardcopied process cannot be plot: {displayName}") continue - - # cleanup the search term - for m in materials: - if "search" in m: - del m["search"] - - print("Computing corrected impacts (etf-c, htc-c, htn-c)...") - with open(IMPACTS, "r") as f: - processes = with_corrected_impacts(json.load(f), processes) - - # export materials - with open(MATERIALS, "w") as outfile: - json.dump(materials, outfile, indent=2, ensure_ascii=False) - # avoid creating a diff with editors adding a newline - outfile.write("\n") - print(f"\nExported {len(materials)} materials to {MATERIALS}") - - # display impacts that have changed - display_changes("uuid", oldprocesses, processes) - - # export processes - with open(PROCESSES, "w") as outfile: - json.dump(list(processes.values()), outfile, indent=2, ensure_ascii=False) - # avoid creating a diff with editors adding a newline - outfile.write("\n") - print(f"Exported {len(processes)} processes to {PROCESSES}") + simapro_impacts = values["simapro_impacts"] + brightway_impacts = values["brightway_impacts"] + os.makedirs(GRAPH_FOLDER, exist_ok=True) + plot_impacts( + displayName, + simapro_impacts, + brightway_impacts, + GRAPH_FOLDER, + IMPACTS_JSON, + ) + print("Charts have been generated and saved as PNG files.") + sys.exit(0) + else: + print("Wrong argument: either no args or 'compare'") + sys.exit(1) + + processes_corrected_impacts = with_corrected_impacts( + IMPACTS_JSON, processes_impacts + ) + processes_aggregated_impacts = with_aggregated_impacts( + IMPACTS_JSON, processes_corrected_impacts + ) + + # Export + + export_json(order_json(activities), ACTIVITIES_FILE) + export_json(order_json(materials), MATERIALS_FILE) + display_changes("id", oldprocesses, processes_corrected_impacts) + export_json( + order_json(list(processes_aggregated_impacts.values())), PROCESSES_IMPACTS + ) + + export_json( + order_json( + remove_detailed_impacts(list(processes_aggregated_impacts.values())) + ), + PROCESSES_AGGREGATED, + ) diff --git a/public/data/food/processes.json b/public/data/food/processes.json index b161f3ecb..62e51d4ed 100644 --- a/public/data/food/processes.json +++ b/public/data/food/processes.json @@ -1,14 +1,10 @@ [ { - "id": "egg-bleublanccoeur", - "name": "Egg, Bleu Blanc Coeur, outdoor system, at farm gate {FR} U", - "displayName": "Oeuf Bleu-Blanc-Cœur FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003105149", - "system_description": "", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Oeuf Bleu-Blanc-Cœur FR Conv.", + "id": "egg-bleublanccoeur", + "identifier": "AGRIBALU000000003105149", "impacts": { "acd": 0, "cch": 0, @@ -29,20 +25,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 404.2689900739916, - "ecs": 482.08061634078916 - } + "ecs": 482.08061634078916, + "pef": 404.2689900739916 + }, + "name": "Egg, Bleu Blanc Coeur, outdoor system, at farm gate {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "", + "unit": "kg" }, { - "id": "milk", - "name": "Cow milk, national average, at farm gate {FR} U", - "displayName": "Lait FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003104145", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "FRANCE", - "source": "Agribalyse 3.1.1", + "displayName": "Lait FR Conv.", + "id": "milk", + "identifier": "AGRIBALU000000003104145", "impacts": { "acd": 0, "cch": 0, @@ -63,20 +59,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 100.87442345178292, - "ecs": 129.48432437479158 - } + "ecs": 129.48432437479158, + "pef": 100.87442345178292 + }, + "name": "Cow milk, national average, at farm gate {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "milk-organic", - "name": "Cow milk, organic, national average, at farm gate/FR U constructed by Ecobalyse", - "displayName": "Lait FR ou UE ou Hors UE Bio", - "unit": "kilogram", - "identifier": "843986b19b3ea959b8817afda669dead", - "system_description": "Ecobalyse", "categories": ["ingredient"], "comment": "", - "source": "Ecobalyse", + "displayName": "Lait FR ou UE ou Hors UE Bio", + "id": "milk-organic", + "identifier": "843986b19b3ea959b8817afda669dead", "impacts": { "acd": 0, "cch": 0, @@ -97,20 +93,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 85.56984419203104, - "ecs": 73.28220920830047 - } + "ecs": 73.37087081936893, + "pef": 85.63684863108533 + }, + "name": "Cow milk, organic, national average, at farm gate/FR U constructed by Ecobalyse", + "source": "Ecobalyse", + "system_description": "Ecobalyse", + "unit": "kg" }, { - "id": "carrot-organic", - "name": "Carrot, organic 2023, national average, at farm gate {FR} U", - "displayName": "Carotte FR ou UE ou Hors UE Bio", - "unit": "kilogram", - "identifier": "carrot-organic", - "system_description": "", "categories": ["ingredient"], "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "source": "Ginko", + "displayName": "Carotte FR ou UE ou Hors UE Bio", + "id": "carrot-organic", + "identifier": "carrot-organic", "impacts": { "acd": 0, "cch": 0, @@ -131,20 +127,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 15.0901846276169, - "ecs": 13.032834134308757 - } + "ecs": 13.032834134308757, + "pef": 15.0901846276169 + }, + "name": "Carrot, organic 2023, national average, at farm gate {FR} U", + "source": "Ginko", + "system_description": "", + "unit": "kg" }, { - "id": "flour", - "name": "Wheat flour, at industrial mill {FR} U", - "displayName": "Farine UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003116999", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Farine UE Conv.", + "id": "flour", + "identifier": "AGRIBALU000000003116999", "impacts": { "acd": 0, "cch": 0, @@ -165,20 +161,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 80.00147574034824, - "ecs": 105.1982028919293 - } + "ecs": 105.1982028919293, + "pef": 80.00147574034824 + }, + "name": "Wheat flour, at industrial mill {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "flour-organic", - "name": "Wheat flour, at industrial mill {FR} U [organic], constructed by Ecobalyse", - "displayName": "Farine FR ou UE ou Hors UE Bio", - "unit": "kilogram", - "identifier": "4a9ea0a29fbde60e2d1fc5c33d8a4f3a", - "system_description": "Ecobalyse", "categories": ["ingredient"], "comment": "", - "source": "Ecobalyse", + "displayName": "Farine FR ou UE ou Hors UE Bio", + "id": "flour-organic", + "identifier": "4a9ea0a29fbde60e2d1fc5c33d8a4f3a", "impacts": { "acd": 0, "cch": 0, @@ -199,20 +195,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 98.6365873674314, - "ecs": 75.09113339163017 - } + "ecs": 75.26055864681251, + "pef": 98.72849240984114 + }, + "name": "Wheat flour, at industrial mill {FR} U [organic], constructed by Ecobalyse", + "source": "Ecobalyse", + "system_description": "Ecobalyse", + "unit": "kg" }, { - "id": "sunflower-organic", - "name": "Sunflower grain, consumption mix, organic 2023 {FR} U", - "displayName": "Tournesol FR ou UE ou Hors UE Bio", - "unit": "kilogram", - "identifier": "sunflower-organic", - "system_description": "", "categories": ["ingredient"], "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "source": "Ginko", + "displayName": "Tournesol FR ou UE ou Hors UE Bio", + "id": "sunflower-organic", + "identifier": "sunflower-organic", "impacts": { "acd": 0, "cch": 0, @@ -233,20 +229,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 148.32081139883704, - "ecs": 158.66882985735518 - } + "ecs": 158.66882985735518, + "pef": 148.32081139883704 + }, + "name": "Sunflower grain, consumption mix, organic 2023 {FR} U", + "source": "Ginko", + "system_description": "", + "unit": "kg" }, { - "id": "sunflower-feed-organic", - "name": "Sunflower, organic, animal feed, at farm gate {FR} U", - "displayName": "Tournesol FR ou UE ou Hors UE Bio", - "unit": "kilogram", - "identifier": "AGRIBALU000000003115221", - "system_description": "", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Tournesol FR ou UE ou Hors UE Bio", + "id": "sunflower-feed-organic", + "identifier": "AGRIBALU000000003115221", "impacts": { "acd": 0, "cch": 0, @@ -267,20 +263,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 112.2808691171095, - "ecs": 93.45778017599187 - } + "ecs": 93.45778017599187, + "pef": 112.2808691171095 + }, + "name": "Sunflower, organic, animal feed, at farm gate {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "", + "unit": "kg" }, { - "id": "rapeseed-organic", - "name": "Winter rapeseed, organic, at farm gate {FR} U", - "displayName": "Colza FR ou UE ou Hors UE Bio", - "unit": "kilogram", - "identifier": "AGRIBALU000024985200196", - "system_description": "", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Colza FR ou UE ou Hors UE Bio", + "id": "rapeseed-organic", + "identifier": "AGRIBALU000024985200196", "impacts": { "acd": 0, "cch": 0, @@ -301,20 +297,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 149.00738961540023, - "ecs": 119.00957972053897 - } + "ecs": 119.00957972053897, + "pef": 149.00738961540023 + }, + "name": "Winter rapeseed, organic, at farm gate {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "", + "unit": "kg" }, { - "id": "ground-beef", - "name": "Ground beef, fresh, case ready, for direct consumption, at plant {FR} U", - "displayName": "Boeuf haché cru FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003107081", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Boeuf haché cru FR Conv.", + "id": "ground-beef", + "identifier": "AGRIBALU000000003107081", "impacts": { "acd": 0, "cch": 0, @@ -335,20 +331,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 3032.2538631532266, - "ecs": 3024.911189109131 - } + "ecs": 3024.911189109131, + "pef": 3032.2538631532266 + }, + "name": "Ground beef, fresh, case ready, for direct consumption, at plant {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "ground-beef-organic", - "name": "Ground beef, fresh, case ready, for direct consumption, at plant {FR} U [organic], constructed by Ecobalyse", - "displayName": "Boeuf haché cru FR ou UE ou Hors UE Bio", - "unit": "kilogram", - "identifier": "67f1a99d8093f1b2b3e4e7f8b292953c", - "system_description": "Ecobalyse", "categories": ["ingredient"], "comment": "", - "source": "Ecobalyse", + "displayName": "Boeuf haché cru FR ou UE ou Hors UE Bio", + "id": "ground-beef-organic", + "identifier": "67f1a99d8093f1b2b3e4e7f8b292953c", "impacts": { "acd": 0, "cch": 0, @@ -369,20 +365,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 2809.4160542324425, - "ecs": 2423.4656387064624 - } + "ecs": 2425.823485043942, + "pef": 2811.3582150323687 + }, + "name": "Ground beef, fresh, case ready, for direct consumption, at plant {FR} U [organic], constructed by Ecobalyse", + "source": "Ecobalyse", + "system_description": "Ecobalyse", + "unit": "kg" }, { - "id": "cull-cow-organic", - "name": "Cull cow, organic, milk system number 1, at farm gate {FR} U", - "displayName": "Vache de réforme bio", - "unit": "kilogram", - "identifier": "AGRIBALU000000003104412", - "system_description": "AGRIBALYSE", "categories": ["material"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Vache de réforme bio", + "id": "cull-cow-organic", + "identifier": "AGRIBALU000000003104412", "impacts": { "acd": 0, "cch": 0, @@ -403,20 +399,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 1365.0583752846949, - "ecs": 1171.3349689288743 - } + "ecs": 1171.3349689288743, + "pef": 1365.0583752846949 + }, + "name": "Cull cow, organic, milk system number 1, at farm gate {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "ground-beef-feedlot", - "name": "Ground beef, fresh, case ready, for direct consumption, at plant {FR} U [feedlot], constructed by Ecobalyse", - "displayName": "Boeuf haché cru Hors UE Conv.", - "unit": "kilogram", - "identifier": "6fcaacd84b90aec94cf924041ff09fc9", - "system_description": "Ecobalyse", "categories": ["ingredient"], "comment": "", - "source": "Ecobalyse", + "displayName": "Boeuf haché cru Hors UE Conv.", + "id": "ground-beef-feedlot", + "identifier": "6fcaacd84b90aec94cf924041ff09fc9", "impacts": { "acd": 0, "cch": 0, @@ -437,20 +433,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 5866.962929357459, - "ecs": 5454.768881702009 - } + "ecs": 5461.590204460072, + "pef": 5876.92060513087 + }, + "name": "Ground beef, fresh, case ready, for direct consumption, at plant {FR} U [feedlot], constructed by Ecobalyse", + "source": "Ecobalyse", + "system_description": "Ecobalyse", + "unit": "kg" }, { - "id": "ground-beef-grass-fed", - "name": "Ground beef, fresh, case ready, for direct consumption, at plant {FR} U [grass-fed], constructed by Ecobalyse", - "displayName": "Boeuf haché cru - v. de réforme 100% herbe FR Conv.", - "unit": "kilogram", - "identifier": "51c8f8e74c9ade89850e7b4b8a4efc59", - "system_description": "Ecobalyse", "categories": ["ingredient"], "comment": "", - "source": "Ecobalyse", + "displayName": "Boeuf haché cru - v. de réforme 100% herbe FR Conv.", + "id": "ground-beef-grass-fed", + "identifier": "51c8f8e74c9ade89850e7b4b8a4efc59", "impacts": { "acd": 0, "cch": 0, @@ -471,20 +467,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 1128.309912370933, - "ecs": 1022.8928544825391 - } + "ecs": 1022.9573861772992, + "pef": 1128.5107935598958 + }, + "name": "Ground beef, fresh, case ready, for direct consumption, at plant {FR} U [grass-fed], constructed by Ecobalyse", + "source": "Ecobalyse", + "system_description": "Ecobalyse", + "unit": "kg" }, { - "id": "cooked-ham", - "name": "Cooked ham, case ready, at plant {FR} U", - "displayName": "Jambon cuit FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003103910", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "Product already packed.", - "source": "Agribalyse 3.1.1", + "displayName": "Jambon cuit FR Conv.", + "id": "cooked-ham", + "identifier": "AGRIBALU000000003103910", "impacts": { "acd": 0, "cch": 0, @@ -505,20 +501,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 889.2035037022284, - "ecs": 1043.5126910351307 - } + "ecs": 1043.5126910351307, + "pef": 889.2035037022284 + }, + "name": "Cooked ham, case ready, at plant {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "cooked-ham-organic", - "name": "Cooked ham, case ready, at plant {FR} U [organic], constructed by Ecobalyse", - "displayName": "Jambon cuit FR ou UE ou Hors UE Bio", - "unit": "kilogram", - "identifier": "3fc68b77b276cfc781ed546ec32b84f5", - "system_description": "Ecobalyse", "categories": ["ingredient"], "comment": "Product already packed.", - "source": "Ecobalyse", + "displayName": "Jambon cuit FR ou UE ou Hors UE Bio", + "id": "cooked-ham-organic", + "identifier": "3fc68b77b276cfc781ed546ec32b84f5", "impacts": { "acd": 0, "cch": 0, @@ -539,20 +535,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 1332.9783574432186, - "ecs": 1146.076468809481 - } + "ecs": 1147.3723979011559, + "pef": 1334.581025512258 + }, + "name": "Cooked ham, case ready, at plant {FR} U [organic], constructed by Ecobalyse", + "source": "Ecobalyse", + "system_description": "Ecobalyse", + "unit": "kg" }, { - "id": "cooked-ham-fr", - "name": "Cooked ham, case ready, at plant {FR} U [fr], constructed by Ecobalyse", - "displayName": "Jambon cuit (alim. ani. 100%FR) FR Conv.", - "unit": "kilogram", - "identifier": "bbbce945e38218c05c671aa17bcedbe2", - "system_description": "Ecobalyse", "categories": ["ingredient"], "comment": "Product already packed.", - "source": "Ecobalyse", + "displayName": "Jambon cuit (alim. ani. 100%FR) FR Conv.", + "id": "cooked-ham-fr", + "identifier": "bbbce945e38218c05c671aa17bcedbe2", "impacts": { "acd": 0, "cch": 0, @@ -573,20 +569,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 875.6073918482263, - "ecs": 967.2093886660133 - } + "ecs": 968.0164716710459, + "pef": 876.8363268873853 + }, + "name": "Cooked ham, case ready, at plant {FR} U [fr], constructed by Ecobalyse", + "source": "Ecobalyse", + "system_description": "Ecobalyse", + "unit": "kg" }, { - "id": "chicken-breast", - "name": "Meat without bone, chicken, for direct consumption {FR} U", - "displayName": "Blanc de poulet cru FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003109221", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Blanc de poulet cru FR Conv.", + "id": "chicken-breast", + "identifier": "AGRIBALU000000003109221", "impacts": { "acd": 0, "cch": 0, @@ -607,20 +603,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 763.0764466053243, - "ecs": 1114.8106857579342 - } + "ecs": 1114.8106857579342, + "pef": 763.0764466053243 + }, + "name": "Meat without bone, chicken, for direct consumption {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "chicken-breast-organic", - "name": "Meat without bone, chicken, for direct consumption {FR} U [organic], constructed by Ecobalyse", - "displayName": "Blanc de poulet cru FR ou UE ou Hors UE Bio", - "unit": "kilogram", - "identifier": "d41682caea2d55a3b95173f276b9d903", - "system_description": "Ecobalyse", "categories": ["ingredient"], "comment": "", - "source": "Ecobalyse", + "displayName": "Blanc de poulet cru FR ou UE ou Hors UE Bio", + "id": "chicken-breast-organic", + "identifier": "d41682caea2d55a3b95173f276b9d903", "impacts": { "acd": 0, "cch": 0, @@ -641,20 +637,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 1152.630373689208, - "ecs": 1002.7966067829357 - } + "ecs": 1004.8585091973191, + "pef": 1154.2152105956693 + }, + "name": "Meat without bone, chicken, for direct consumption {FR} U [organic], constructed by Ecobalyse", + "source": "Ecobalyse", + "system_description": "Ecobalyse", + "unit": "kg" }, { - "id": "chicken-breast-fr-organic", - "name": "Meat without bone, chicken, for direct consumption {FR} U [organic], constructed by Ecobalyse [fr-organic]", - "displayName": "Blanc de poulet cru (alim. ani. 100%FR) FR ou UE ou Hors UE Bio", - "unit": "kilogram", - "identifier": "fc9b8a819a1ba51b4fbca210d0771198", - "system_description": "Ecobalyse", "categories": ["ingredient"], "comment": "", - "source": "Ecobalyse", + "displayName": "Blanc de poulet cru (alim. ani. 100%FR) FR ou UE ou Hors UE Bio", + "id": "chicken-breast-fr-organic", + "identifier": "fc9b8a819a1ba51b4fbca210d0771198", "impacts": { "acd": 0, "cch": 0, @@ -675,20 +671,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 1187.559011478903, - "ecs": 1038.2786524697924 - } + "ecs": 1040.3769070155245, + "pef": 1189.0632572471125 + }, + "name": "Meat without bone, chicken, for direct consumption {FR} U [organic], constructed by Ecobalyse [fr-organic]", + "source": "Ecobalyse", + "system_description": "Ecobalyse", + "unit": "kg" }, { - "id": "rapeseed-oil", - "name": "Rapeseed oil, at oil mill {GLO} - Adapted from WFLDB U", - "displayName": "Huile de colza Hors UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003112448", - "system_description": "", "categories": ["ingredient"], "comment": "Allocation is based on the price ratio of cake : oil = 0.29", - "source": "Agribalyse 3.1.1", + "displayName": "Huile de colza Hors UE Conv.", + "id": "rapeseed-oil", + "identifier": "AGRIBALU000000003112448", "impacts": { "acd": 0, "cch": 0, @@ -709,20 +705,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 462.5562241371983, - "ecs": 430.3338526141934 - } + "ecs": 430.3338526141934, + "pef": 462.5562241371983 + }, + "name": "Rapeseed oil, at oil mill {GLO} - Adapted from WFLDB U", + "source": "Agribalyse 3.1.1", + "system_description": "", + "unit": "kg" }, { - "id": "rapeseed-oil-organic", - "name": "Rapeseed oil, at oil mill {GLO} - Adapted from WFLDB U [organic], constructed by Ecobalyse", + "categories": ["ingredient"], + "comment": "Allocation is based on the price ratio of cake : oil = 0.29", "displayName": "Huile de colza FR ou UE ou Hors UE Bio", - "unit": "kilogram", + "id": "rapeseed-oil-organic", "identifier": "425b95709f7882fa60c6b42f3add1873", - "system_description": "Ecobalyse", - "categories": ["ingredient"], - "comment": "Allocation is based on the price ratio of cake : oil = 0.29", - "source": "Ecobalyse", "impacts": { "acd": 0, "cch": 0, @@ -743,20 +739,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 261.13204060072036, - "ecs": 210.05192070912287 - } + "ecs": 210.4036173333553, + "pef": 261.37176890654104 + }, + "name": "Rapeseed oil, at oil mill {GLO} - Adapted from WFLDB U [organic], constructed by Ecobalyse", + "source": "Ecobalyse", + "system_description": "Ecobalyse", + "unit": "kg" }, { - "id": "sunflower-oil", - "name": "Sunflower oil, at oil mill {GLO} - Adapted from WFLDB U", - "displayName": "Huile de tournesol Hors UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003115182", - "system_description": "", "categories": ["ingredient"], "comment": "Economic allocation:\nPrice for 1 kg Sunflower oil = 0.72 US $/pound = 1.58 $/kg; \nPrice for 1 kg Sunflower oil cake = 0.11 US $/pound = 0.24 $/kg. Price ratio of cake : oil = 0.15\nSunflower lecithin assumed to have the same value as soybean lecithin: 600 euro/kg = 0.700 $/kg (source: based on soybean lecithin in the Fediol report)", - "source": "Agribalyse 3.1.1", + "displayName": "Huile de tournesol Hors UE Conv.", + "id": "sunflower-oil", + "identifier": "AGRIBALU000000003115182", "impacts": { "acd": 0, "cch": 0, @@ -777,20 +773,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 505.7992914265785, - "ecs": 942.0457866166042 - } + "ecs": 942.0457866166042, + "pef": 505.7992914265785 + }, + "name": "Sunflower oil, at oil mill {GLO} - Adapted from WFLDB U", + "source": "Agribalyse 3.1.1", + "system_description": "", + "unit": "kg" }, { - "id": "sunflower-oil-organic", - "name": "Sunflower oil, at oil mill {GLO} - Adapted from WFLDB U [organic], constructed by Ecobalyse", - "displayName": "Huile de tournesol FR ou UE ou Hors UE Bio", - "unit": "kilogram", - "identifier": "2735a9eb9848c97f9e70fd94f051fb2a", - "system_description": "Ecobalyse", "categories": ["ingredient"], "comment": "Economic allocation:\nPrice for 1 kg Sunflower oil = 0.72 US $/pound = 1.58 $/kg; \nPrice for 1 kg Sunflower oil cake = 0.11 US $/pound = 0.24 $/kg. Price ratio of cake : oil = 0.15\nSunflower lecithin assumed to have the same value as soybean lecithin: 600 euro/kg = 0.700 $/kg (source: based on soybean lecithin in the Fediol report)", - "source": "Ecobalyse", + "displayName": "Huile de tournesol FR ou UE ou Hors UE Bio", + "id": "sunflower-oil-organic", + "identifier": "2735a9eb9848c97f9e70fd94f051fb2a", "impacts": { "acd": 0, "cch": 0, @@ -811,20 +807,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 360.4590660434512, - "ecs": 312.52984554113317 - } + "ecs": 314.0785985341947, + "pef": 361.7983584694989 + }, + "name": "Sunflower oil, at oil mill {GLO} - Adapted from WFLDB U [organic], constructed by Ecobalyse", + "source": "Ecobalyse", + "system_description": "Ecobalyse", + "unit": "kg" }, { - "id": "zucchini-organic", - "name": "Zucchini, springtime, under tunnel, organic, at farm gate {FR} U", - "displayName": "Courgette FR ou UE ou Hors UE Bio", - "unit": "kilogram", - "identifier": "AGRIBALU000024985200219", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Courgette FR ou UE ou Hors UE Bio", + "id": "zucchini-organic", + "identifier": "AGRIBALU000024985200219", "impacts": { "acd": 0, "cch": 0, @@ -845,20 +841,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 23.755447115550382, - "ecs": 20.61790199404379 - } + "ecs": 20.61790199404379, + "pef": 23.755447115550382 + }, + "name": "Zucchini, springtime, under tunnel, organic, at farm gate {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "peach-organic", - "name": "Peach, organic, national average, at orchard {FR} U", - "displayName": "Pêche FR ou UE ou Hors UE Bio", - "unit": "kilogram", - "identifier": "AGRIBALU000000003110947", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "FRANCE", - "source": "Agribalyse 3.1.1", + "displayName": "Pêche FR ou UE ou Hors UE Bio", + "id": "peach-organic", + "identifier": "AGRIBALU000000003110947", "impacts": { "acd": 0, "cch": 0, @@ -879,20 +875,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 69.34253333508022, - "ecs": 57.124371220502454 - } + "ecs": 57.124371220502454, + "pef": 69.34253333508022 + }, + "name": "Peach, organic, national average, at orchard {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "melon-organic", - "name": "Melon, organic, at farm gate {FR} U", - "displayName": "Melon FR ou UE ou Hors UE Bio", - "unit": "kilogram", - "identifier": "AGRIBALU000024985200102", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Melon FR ou UE ou Hors UE Bio", + "id": "melon-organic", + "identifier": "AGRIBALU000024985200102", "impacts": { "acd": 0, "cch": 0, @@ -913,20 +909,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 31.02454966019247, - "ecs": 25.66289567999664 - } + "ecs": 25.66289567999664, + "pef": 31.02454966019247 + }, + "name": "Melon, organic, at farm gate {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "butter", - "name": "Butter, 82% fat, unsalted, at dairy {FR} U", - "displayName": "Beurre FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003102321", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Beurre FR Conv.", + "id": "butter", + "identifier": "AGRIBALU000000003102321", "impacts": { "acd": 0, "cch": 0, @@ -947,20 +943,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 686.5752145660015, - "ecs": 871.4251639682516 - } + "ecs": 871.4251639682516, + "pef": 686.5752145660015 + }, + "name": "Butter, 82% fat, unsalted, at dairy {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "butter-organic", - "name": "Butter, 82% fat, unsalted, at dairy {FR} U [organic], constructed by Ecobalyse", - "displayName": "Beurre FR ou UE ou Hors UE Bio", - "unit": "kilogram", - "identifier": "4ada2b1db5db813770f5ec73a5b1c109", - "system_description": "Ecobalyse", "categories": ["ingredient"], "comment": "", - "source": "Ecobalyse", + "displayName": "Beurre FR ou UE ou Hors UE Bio", + "id": "butter-organic", + "identifier": "4ada2b1db5db813770f5ec73a5b1c109", "impacts": { "acd": 0, "cch": 0, @@ -981,20 +977,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 585.6945053650963, - "ecs": 501.4637540740909 - } + "ecs": 502.1102282218812, + "pef": 586.2879422944784 + }, + "name": "Butter, 82% fat, unsalted, at dairy {FR} U [organic], constructed by Ecobalyse", + "source": "Ecobalyse", + "system_description": "Ecobalyse", + "unit": "kg" }, { - "id": "steel", - "name": "Steel, unalloyed {RER}| steel production, converter, unalloyed | Cut-off, S - Copied from Ecoinvent U", - "displayName": "Acier", - "unit": "kilogram", - "identifier": "AGRIBALU000000003114927", - "system_description": "Ecoinvent v3 - Copied from Ecoinvent", "categories": ["packaging"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Acier", + "id": "steel", + "identifier": "AGRIBALU000000003114927", "impacts": { "acd": 0, "cch": 0, @@ -1015,20 +1011,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 143.8810228105392, - "ecs": 121.50585817435886 - } + "ecs": 121.50585817435886, + "pef": 143.8810228105392 + }, + "name": "Steel, unalloyed {RER}| steel production, converter, unalloyed | Cut-off, S - Copied from Ecoinvent U", + "source": "Agribalyse 3.1.1", + "system_description": "Ecoinvent v3 - Copied from Ecoinvent", + "unit": "kg" }, { - "id": "ldpe", - "name": "Packaging film, low density polyethylene {RER}| production | Cut-off, S - Copied from Ecoinvent U", - "displayName": "Polyéthylène basse densité", - "unit": "kilogram", - "identifier": "AGRIBALU000000003110698", - "system_description": "Ecoinvent v3 - Copied from Ecoinvent", "categories": ["packaging"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Polyéthylène basse densité", + "id": "ldpe", + "identifier": "AGRIBALU000000003110698", "impacts": { "acd": 0, "cch": 0, @@ -1049,20 +1045,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 306.3852532983293, - "ecs": 271.5375310800338 - } + "ecs": 271.5375310800338, + "pef": 306.3852532983293 + }, + "name": "Packaging film, low density polyethylene {RER}| production | Cut-off, S - Copied from Ecoinvent U", + "source": "Agribalyse 3.1.1", + "system_description": "Ecoinvent v3 - Copied from Ecoinvent", + "unit": "kg" }, { - "id": "ps", - "name": "Polystyrene, expandable {RER}| production | Cut-off, S - Copied from Ecoinvent U", - "displayName": "Polystyrène", - "unit": "kilogram", - "identifier": "AGRIBALU000000003111575", - "system_description": "Ecoinvent v3 - Copied from Ecoinvent", "categories": ["packaging"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Polystyrène", + "id": "ps", + "identifier": "AGRIBALU000000003111575", "impacts": { "acd": 0, "cch": 0, @@ -1083,20 +1079,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 284.949378734688, - "ecs": 247.86236916466407 - } + "ecs": 247.86236916466407, + "pef": 284.949378734688 + }, + "name": "Polystyrene, expandable {RER}| production | Cut-off, S - Copied from Ecoinvent U", + "source": "Agribalyse 3.1.1", + "system_description": "Ecoinvent v3 - Copied from Ecoinvent", + "unit": "kg" }, { - "id": "glass", - "name": "Packaging glass, white {RER w/o CH+DE}| production | Cut-off, S - Copied from Ecoinvent U", - "displayName": "Verre", - "unit": "kilogram", - "identifier": "AGRIBALU000000003110706", - "system_description": "Ecoinvent v3 - Copied from Ecoinvent", "categories": ["packaging"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Verre", + "id": "glass", + "identifier": "AGRIBALU000000003110706", "impacts": { "acd": 0, "cch": 0, @@ -1117,20 +1113,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 95.13497007378089, - "ecs": 88.5520083465087 - } + "ecs": 88.5520083465087, + "pef": 95.13497007378089 + }, + "name": "Packaging glass, white {RER w/o CH+DE}| production | Cut-off, S - Copied from Ecoinvent U", + "source": "Agribalyse 3.1.1", + "system_description": "Ecoinvent v3 - Copied from Ecoinvent", + "unit": "kg" }, { - "id": "pp", - "name": "Polypropylene, granulate {RER}| production | Cut-off, S - Copied from Ecoinvent U", - "displayName": "Polypropylène", - "unit": "kilogram", - "identifier": "AGRIBALU000000003111571", - "system_description": "Ecoinvent v3 - Copied from Ecoinvent", "categories": ["packaging"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Polypropylène", + "id": "pp", + "identifier": "AGRIBALU000000003111571", "impacts": { "acd": 0, "cch": 0, @@ -1151,20 +1147,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 208.34431090459947, - "ecs": 178.18145962377145 - } + "ecs": 178.18145962377145, + "pef": 208.34431090459947 + }, + "name": "Polypropylene, granulate {RER}| production | Cut-off, S - Copied from Ecoinvent U", + "source": "Agribalyse 3.1.1", + "system_description": "Ecoinvent v3 - Copied from Ecoinvent", + "unit": "kg" }, { - "id": "cardboard", - "name": "Corrugated board box {RER}| production | Cut-off, S - Copied from Ecoinvent U", - "displayName": "Carton", - "unit": "kilogram", - "identifier": "AGRIBALU000000003104019", - "system_description": "Ecoinvent v3 - Copied from Ecoinvent", "categories": ["packaging"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Carton", + "id": "cardboard", + "identifier": "AGRIBALU000000003104019", "impacts": { "acd": 0, "cch": 0, @@ -1185,20 +1181,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 91.76476355591325, - "ecs": 91.72303477509107 - } + "ecs": 91.72303477509107, + "pef": 91.76476355591325 + }, + "name": "Corrugated board box {RER}| production | Cut-off, S - Copied from Ecoinvent U", + "source": "Agribalyse 3.1.1", + "system_description": "Ecoinvent v3 - Copied from Ecoinvent", + "unit": "kg" }, { - "id": "paper", - "name": "Kraft paper {RER}| kraft paper production | Cut-off, S - Copied from Ecoinvent U", - "displayName": "Papier", - "unit": "kilogram", - "identifier": "AGRIBALU000000003108113", - "system_description": "Ecoinvent v3 - Copied from Ecoinvent", "categories": ["packaging"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Papier", + "id": "paper", + "identifier": "AGRIBALU000000003108113", "impacts": { "acd": 0, "cch": 0, @@ -1219,20 +1215,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 98.87885585685957, - "ecs": 88.25250225882226 - } + "ecs": 88.25250225882226, + "pef": 98.87885585685957 + }, + "name": "Kraft paper {RER}| kraft paper production | Cut-off, S - Copied from Ecoinvent U", + "source": "Agribalyse 3.1.1", + "system_description": "Ecoinvent v3 - Copied from Ecoinvent", + "unit": "kg" }, { - "id": "pvc", - "name": "Polyvinylchloride, suspension polymerised {RER}| polyvinylchloride production, suspension polymerisation | Cut-off, S - Copied from Ecoinvent U", - "displayName": "PVC", - "unit": "kilogram", - "identifier": "AGRIBALU000000003111586", - "system_description": "Ecoinvent v3 - Copied from Ecoinvent", "categories": ["packaging"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "PVC", + "id": "pvc", + "identifier": "AGRIBALU000000003111586", "impacts": { "acd": 0, "cch": 0, @@ -1253,20 +1249,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 245.14827023795374, - "ecs": 217.369331279305 - } + "ecs": 217.369331279305, + "pef": 245.14827023795374 + }, + "name": "Polyvinylchloride, suspension polymerised {RER}| polyvinylchloride production, suspension polymerisation | Cut-off, S - Copied from Ecoinvent U", + "source": "Agribalyse 3.1.1", + "system_description": "Ecoinvent v3 - Copied from Ecoinvent", + "unit": "kg" }, { - "id": "pet", - "name": "Polyethylene terephthalate, granulate, bottle grade {RER}| production | Cut-off, S - Copied from Ecoinvent U", - "displayName": "PET", - "unit": "kilogram", - "identifier": "AGRIBALU000000003111562", - "system_description": "Ecoinvent v3 - Copied from Ecoinvent", "categories": ["packaging"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "PET", + "id": "pet", + "identifier": "AGRIBALU000000003111562", "impacts": { "acd": 0, "cch": 0, @@ -1287,20 +1283,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 703.6186085850576, - "ecs": 584.6177614958614 - } + "ecs": 584.6177614958614, + "pef": 703.6186085850576 + }, + "name": "Polyethylene terephthalate, granulate, bottle grade {RER}| production | Cut-off, S - Copied from Ecoinvent U", + "source": "Agribalyse 3.1.1", + "system_description": "Ecoinvent v3 - Copied from Ecoinvent", + "unit": "kg" }, { - "id": "hdpe", - "name": "Polyethylene, high density, granulate {RER}| production | Cut-off, S - Copied from Ecoinvent U", - "displayName": "Polyéthylène haute densité", - "unit": "kilogram", - "identifier": "AGRIBALU000000003111564", - "system_description": "Ecoinvent v3 - Copied from Ecoinvent", "categories": ["packaging"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Polyéthylène haute densité", + "id": "hdpe", + "identifier": "AGRIBALU000000003111564", "impacts": { "acd": 0, "cch": 0, @@ -1321,20 +1317,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 211.99155599148867, - "ecs": 181.7442951500233 - } + "ecs": 181.7442951500233, + "pef": 211.99155599148867 + }, + "name": "Polyethylene, high density, granulate {RER}| production | Cut-off, S - Copied from Ecoinvent U", + "source": "Agribalyse 3.1.1", + "system_description": "Ecoinvent v3 - Copied from Ecoinvent", + "unit": "kg" }, { - "id": "aluminium", - "name": "Aluminium, primary, ingot {RoW}| production | Cut-off, S - Copied from Ecoinvent U", - "displayName": "Aluminium", - "unit": "kilogram", - "identifier": "AGRIBALU000000003100294", - "system_description": "Ecoinvent v3 - Copied from Ecoinvent", "categories": ["packaging"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Aluminium", + "id": "aluminium", + "identifier": "AGRIBALU000000003100294", "impacts": { "acd": 0, "cch": 0, @@ -1355,20 +1351,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 1778.9122405084688, - "ecs": 1581.6529964075614 - } + "ecs": 1581.6529964075614, + "pef": 1778.9122405084688 + }, + "name": "Aluminium, primary, ingot {RoW}| production | Cut-off, S - Copied from Ecoinvent U", + "source": "Agribalyse 3.1.1", + "system_description": "Ecoinvent v3 - Copied from Ecoinvent", + "unit": "kg" }, { - "id": "canning", - "name": "Canning fruits or vegetables, industrial, 1kg of canned product {FR} U", - "displayName": "Mise en conserve", - "unit": "kilogram", - "identifier": "AGRIBALU000000003102449", - "system_description": "AGRIBALYSE", "categories": ["transformation"], "comment": "\"Functional Unit\nTo obtain 1kg of canned vegetable or fruit. \nAn input of 0,626kg of food is required. Added packaging should account for the 1% loss.\n\nBoundaries\nFrom peeled fruit or vegetable to canned product: food slicing, can filling (38% water) and sterilization. 1% loss rate is applied at the end. The washing of fruit and vegetable prior to canning and the production and EoL of packaging is out of scope (because already considered upstream or downstream in Agribalyse v3.0).\nContrary to canned fruits, canned vegetables go through a blanching step prior to canning: Canned vegetables generally require more severe processing than do fruits because the vegetables have much lower acidity and contain more heat-resistant soil organisms. Many vegetables also require more cooking than fruits to develop their most desirable flavor and texture.\nwe considered 50% of canned vegetables (with a blanching step) and 50% of canned fruits (without any blanching) to model the canning process.\"", - "source": "Agribalyse 3.1.1", + "displayName": "Mise en conserve", + "id": "canning", + "identifier": "AGRIBALU000000003102449", "impacts": { "acd": 0, "cch": 0, @@ -1389,20 +1385,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 38.26902698523428, - "ecs": 31.385763381974535 - } + "ecs": 31.385763381974535, + "pef": 38.26902698523428 + }, + "name": "Canning fruits or vegetables, industrial, 1kg of canned product {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "mixing", - "name": "[Dummy] Mixing, processing, at plant {FR} U", - "displayName": "Mélange", - "unit": "kilogram", - "identifier": "AGRIBALU000000003100079", - "system_description": "AGRIBALYSE", "categories": ["transformation"], "comment": "This process is a dummy process. It is assumed that no energy or water addition is needed for this process.", - "source": "Agribalyse 3.1.1", + "displayName": "Mélange", + "id": "mixing", + "identifier": "AGRIBALU000000003100079", "impacts": { "acd": 0, "cch": 0, @@ -1423,22 +1419,22 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 0.0, - "ecs": 0.0 - } + "ecs": 0.0, + "pef": 0.0 + }, + "name": "[Dummy] Mixing, processing, at plant {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "cooking", - "name": "Cooking, industrial, 1kg of cooked product {FR} U", - "displayName": "Cuisson", - "unit": "kilogram", - "identifier": "AGRIBALU000000003103966", - "system_description": "AGRIBALYSE", "categories": ["transformation"], "comment": "", - "source": "Agribalyse 3.1.1", - "impacts": { - "acd": 0, + "displayName": "Cuisson", + "id": "cooking", + "identifier": "AGRIBALU000000003103966", + "impacts": { + "acd": 0, "cch": 0, "etf": 0, "etf-c": 0, @@ -1457,20 +1453,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 28.412511354253777, - "ecs": 24.225350669195503 - } + "ecs": 24.225350669195503, + "pef": 28.412511354253777 + }, + "name": "Cooking, industrial, 1kg of cooked product {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "lorry", - "name": "Transport, freight, lorry 16-32 metric ton, EURO5 {RER}| transport, freight, lorry 16-32 metric ton, EURO5 | Cut-off, S - Copied from Ecoinvent U", - "displayName": "Camion", - "unit": "ton kilometer", - "identifier": "AGRIBALU000000003115929", - "system_description": "Ecoinvent v3 - Copied from Ecoinvent", "categories": ["transport"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Camion", + "id": "lorry", + "identifier": "AGRIBALU000000003115929", "impacts": { "acd": 0, "cch": 0, @@ -1491,20 +1487,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 14.217243686020684, - "ecs": 13.93961232731802 - } + "ecs": 13.93961232731802, + "pef": 14.217243686020684 + }, + "name": "Transport, freight, lorry 16-32 metric ton, EURO5 {RER}| transport, freight, lorry 16-32 metric ton, EURO5 | Cut-off, S - Copied from Ecoinvent U", + "source": "Agribalyse 3.1.1", + "system_description": "Ecoinvent v3 - Copied from Ecoinvent", + "unit": "t⋅km" }, { - "id": "boat", - "name": "Transport, freight, sea, container ship {GLO}| transport, freight, sea, container ship | Cut-off, S - Copied from Ecoinvent U", - "displayName": "Bateau", - "unit": "ton kilometer", - "identifier": "AGRIBALU000000003115957", - "system_description": "Ecoinvent v3 - Copied from Ecoinvent", "categories": ["transport"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Bateau", + "id": "boat", + "identifier": "AGRIBALU000000003115957", "impacts": { "acd": 0, "cch": 0, @@ -1525,20 +1521,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 1.399297156313329, - "ecs": 1.236639905823269 - } + "ecs": 1.236639905823269, + "pef": 1.399297156313329 + }, + "name": "Transport, freight, sea, container ship {GLO}| transport, freight, sea, container ship | Cut-off, S - Copied from Ecoinvent U", + "source": "Agribalyse 3.1.1", + "system_description": "Ecoinvent v3 - Copied from Ecoinvent", + "unit": "t⋅km" }, { - "id": "plane", - "name": "Transport, freight, aircraft, unspecified {GLO}| market for transport, freight, aircraft, unspecified | Cut-off, S - Copied from Ecoinvent U", - "displayName": "Avion", - "unit": "ton kilometer", - "identifier": "AGRIBALU000000003115903", - "system_description": "Ecoinvent v3 - Copied from Ecoinvent", "categories": ["transport"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Avion", + "id": "plane", + "identifier": "AGRIBALU000000003115903", "impacts": { "acd": 0, "cch": 0, @@ -1559,20 +1555,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 54.29010065781355, - "ecs": 53.46775452152507 - } + "ecs": 53.46775452152507, + "pef": 54.29010065781355 + }, + "name": "Transport, freight, aircraft, unspecified {GLO}| market for transport, freight, aircraft, unspecified | Cut-off, S - Copied from Ecoinvent U", + "source": "Agribalyse 3.1.1", + "system_description": "Ecoinvent v3 - Copied from Ecoinvent", + "unit": "t⋅km" }, { - "id": "boat-cooling", - "name": "Transport, freight, sea, container ship with reefer, cooling {GLO}| transport, freight, sea, container ship with reefer, cooling | Cut-off, S - Copied from Ecoinvent U", - "displayName": "Bateau frigorifique", - "unit": "ton kilometer", - "identifier": "AGRIBALU000000003115959", - "system_description": "Ecoinvent v3 - Copied from Ecoinvent", "categories": ["transport"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Bateau frigorifique", + "id": "boat-cooling", + "identifier": "AGRIBALU000000003115959", "impacts": { "acd": 0, "cch": 0, @@ -1593,20 +1589,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 2.74698197398742, - "ecs": 2.4787760834132198 - } + "ecs": 2.4787760834132198, + "pef": 2.74698197398742 + }, + "name": "Transport, freight, sea, container ship with reefer, cooling {GLO}| transport, freight, sea, container ship with reefer, cooling | Cut-off, S - Copied from Ecoinvent U", + "source": "Agribalyse 3.1.1", + "system_description": "Ecoinvent v3 - Copied from Ecoinvent", + "unit": "t⋅km" }, { - "id": "lorry-cooling", - "name": "Transport, freight, lorry with refrigeration machine, 7.5-16 ton, EURO5, R134a refrigerant, cooling {GLO}| transport, freight, lorry with refrigeration machine, 7.5-16 ton, EURO5, R134a refrigerant, cooling | Cut-off, S - Copied from Ecoinvent U", - "displayName": "Camion frigorifique", - "unit": "ton kilometer", - "identifier": "AGRIBALU000000003115944", - "system_description": "Ecoinvent v3 - Copied from Ecoinvent", "categories": ["transport"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Camion frigorifique", + "id": "lorry-cooling", + "identifier": "AGRIBALU000000003115944", "impacts": { "acd": 0, "cch": 0, @@ -1627,20 +1623,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 22.63781975343938, - "ecs": 22.462078682501264 - } + "ecs": 22.462078682501264, + "pef": 22.63781975343938 + }, + "name": "Transport, freight, lorry with refrigeration machine, 7.5-16 ton, EURO5, R134a refrigerant, cooling {GLO}| transport, freight, lorry with refrigeration machine, 7.5-16 ton, EURO5, R134a refrigerant, cooling | Cut-off, S - Copied from Ecoinvent U", + "source": "Agribalyse 3.1.1", + "system_description": "Ecoinvent v3 - Copied from Ecoinvent", + "unit": "t⋅km" }, { - "id": "low-voltage-electricity", - "name": "Electricity, low voltage {FR}| market for | Cut-off, S - Copied from Ecoinvent U", - "displayName": "Electricité basse tension", - "unit": "kilowatt hour", - "identifier": "AGRIBALU000000003105270", - "system_description": "Ecoinvent v3 - Copied from Ecoinvent", "categories": ["energy"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Electricité basse tension", + "id": "low-voltage-electricity", + "identifier": "AGRIBALU000000003105270", "impacts": { "acd": 0, "cch": 0, @@ -1661,20 +1657,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 31.584083204083548, - "ecs": 25.820876635284137 - } + "ecs": 25.820876635284137, + "pef": 31.584083204083548 + }, + "name": "Electricity, low voltage {FR}| market for | Cut-off, S - Copied from Ecoinvent U", + "source": "Agribalyse 3.1.1", + "system_description": "Ecoinvent v3 - Copied from Ecoinvent", + "unit": "kWh" }, { - "id": "tap-water", - "name": "Tap water {Europe without Switzerland}| market for | Cut-off, S - Copied from Ecoinvent U", - "displayName": "Eau du robinet UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003115449", - "system_description": "Ecoinvent v3 - Copied from Ecoinvent", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Eau du robinet UE Conv.", + "id": "tap-water", + "identifier": "AGRIBALU000000003115449", "impacts": { "acd": 0, "cch": 0, @@ -1695,20 +1691,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 0.35589128361361155, - "ecs": 0.28316945990608366 - } + "ecs": 0.28316945990608366, + "pef": 0.35589128361361155 + }, + "name": "Tap water {Europe without Switzerland}| market for | Cut-off, S - Copied from Ecoinvent U", + "source": "Agribalyse 3.1.1", + "system_description": "Ecoinvent v3 - Copied from Ecoinvent", + "unit": "kg" }, { - "id": "domestic-gas-heat", - "name": "Heat, central or small-scale, natural gas {Europe without Switzerland}| market for heat, central or small-scale, natural gas | Cut-off, S - Copied from Ecoinvent U", - "displayName": "Gaz de ville", - "unit": "megajoule", - "identifier": "AGRIBALU000000003107383", - "system_description": "Ecoinvent v3 - Copied from Ecoinvent", "categories": ["energy"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Gaz de ville", + "id": "domestic-gas-heat", + "identifier": "AGRIBALU000000003107383", "impacts": { "acd": 0, "cch": 0, @@ -1729,20 +1725,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 4.2444650292017325, - "ecs": 4.505715956676105 - } + "ecs": 4.505715956676105, + "pef": 4.2444650292017325 + }, + "name": "Heat, central or small-scale, natural gas {Europe without Switzerland}| market for heat, central or small-scale, natural gas | Cut-off, S - Copied from Ecoinvent U", + "source": "Agribalyse 3.1.1", + "system_description": "Ecoinvent v3 - Copied from Ecoinvent", + "unit": "MJ" }, { - "id": "comte-aop", - "name": "Comte cheese, from cow's milk, at plant {FR} U", - "displayName": "Comté FR AOP Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003103732", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Comté FR AOP Conv.", + "id": "comte-aop", + "identifier": "AGRIBALU000000003103732", "impacts": { "acd": 0, "cch": 0, @@ -1763,20 +1759,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 501.69304798545176, - "ecs": 623.860112245248 - } + "ecs": 623.860112245248, + "pef": 501.69304798545176 + }, + "name": "Comte cheese, from cow's milk, at plant {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "emmental", - "name": "Emmental cheese, from cow's milk, at plant {FR} U", - "displayName": "Emmental FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003105529", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Emmental FR Conv.", + "id": "emmental", + "identifier": "AGRIBALU000000003105529", "impacts": { "acd": 0, "cch": 0, @@ -1797,20 +1793,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 523.4522162300182, - "ecs": 653.0420990279582 - } + "ecs": 653.0420990279582, + "pef": 523.4522162300182 + }, + "name": "Emmental cheese, from cow's milk, at plant {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "mozzarella", - "name": "Mozzarella cheese, from cow's milk, at plant {FR} U", - "displayName": "Mozzarella FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003110032", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Mozzarella FR Conv.", + "id": "mozzarella", + "identifier": "AGRIBALU000000003110032", "impacts": { "acd": 0, "cch": 0, @@ -1831,20 +1827,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 383.3898575988133, - "ecs": 477.89834792280885 - } + "ecs": 477.89834792280885, + "pef": 383.3898575988133 + }, + "name": "Mozzarella cheese, from cow's milk, at plant {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "beetroot-organic", - "name": "Carrot, organic 2023, national average, at farm gate {FR} U", - "displayName": "Betterave rouge FR ou UE ou Hors UE Bio", - "unit": "kilogram", - "identifier": "beetroot-organic", - "system_description": "", "categories": ["ingredient"], "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "source": "Ginko", + "displayName": "Betterave rouge FR ou UE ou Hors UE Bio", + "id": "beetroot-organic", + "identifier": "beetroot-organic", "impacts": { "acd": 0, "cch": 0, @@ -1865,20 +1861,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 15.0901846276169, - "ecs": 13.032834134308757 - } - }, - { - "id": "celeriac-organic", + "ecs": 13.032834134308757, + "pef": 15.0901846276169 + }, "name": "Carrot, organic 2023, national average, at farm gate {FR} U", - "displayName": "Céleri-rave FR ou UE ou Hors UE Bio", - "unit": "kilogram", - "identifier": "celeriac-organic", + "source": "Ginko", "system_description": "", + "unit": "kg" + }, + { "categories": ["ingredient"], "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "source": "Ginko", + "displayName": "Céleri-rave FR ou UE ou Hors UE Bio", + "id": "celeriac-organic", + "identifier": "celeriac-organic", "impacts": { "acd": 0, "cch": 0, @@ -1899,20 +1895,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 15.0901846276169, - "ecs": 13.032834134308757 - } + "ecs": 13.032834134308757, + "pef": 15.0901846276169 + }, + "name": "Carrot, organic 2023, national average, at farm gate {FR} U", + "source": "Ginko", + "system_description": "", + "unit": "kg" }, { - "id": "turnip-organic", - "name": "Carrot, organic, Lower Normandy, at farm gate {FR} U", - "displayName": "Navet FR ou UE ou Hors UE Bio", - "unit": "kilogram", - "identifier": "AGRIBALU000000003102611", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Navet FR ou UE ou Hors UE Bio", + "id": "turnip-organic", + "identifier": "AGRIBALU000000003102611", "impacts": { "acd": 0, "cch": 0, @@ -1933,20 +1929,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 12.591749875827201, - "ecs": 12.58861085838991 - } + "ecs": 12.58861085838991, + "pef": 12.591749875827201 + }, + "name": "Carrot, organic, Lower Normandy, at farm gate {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "chickpea-organic", - "name": "Winter pea, from intercrop, organic, system number 1, at farm gate {FR} U", - "displayName": "Pois chiche FR ou UE ou Hors UE Bio", - "unit": "kilogram", - "identifier": "AGRIBALU000024985200193", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Pois chiche FR ou UE ou Hors UE Bio", + "id": "chickpea-organic", + "identifier": "AGRIBALU000024985200193", "impacts": { "acd": 0, "cch": 0, @@ -1967,20 +1963,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 49.24712177006622, - "ecs": 40.555714265853396 - } + "ecs": 40.555714265853396, + "pef": 49.24712177006622 + }, + "name": "Winter pea, from intercrop, organic, system number 1, at farm gate {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "bellpepper-unheated-greenhouse", - "name": "Bell pepper {GLO}| bell pepper production, in unheated greenhouse | Cut-off, U - Adapted from Ecoinvent U", - "displayName": "Poivron sous serre non chauffée FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003101321", - "system_description": "Ecoinvent v3 - Copied from Ecoinvent", "categories": ["ingredient"], "comment": "Production Volume Amount: 34497462272", - "source": "Agribalyse 3.1.1", + "displayName": "Poivron sous serre non chauffée FR Conv.", + "id": "bellpepper-unheated-greenhouse", + "identifier": "AGRIBALU000000003101321", "impacts": { "acd": 0, "cch": 0, @@ -2001,20 +1997,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 56.28631578307504, - "ecs": 53.02961304851452 - } + "ecs": 53.02961304851452, + "pef": 56.28631578307504 + }, + "name": "Bell pepper {GLO}| bell pepper production, in unheated greenhouse | Cut-off, U - Adapted from Ecoinvent U", + "source": "Agribalyse 3.1.1", + "system_description": "Ecoinvent v3 - Copied from Ecoinvent", + "unit": "kg" }, { - "id": "soybean-humanconsumption", - "name": "Soybean, national average, animal feed, at farm gate {FR} U", - "displayName": "Soja FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000024985200128", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Soja FR Conv.", + "id": "soybean-humanconsumption", + "identifier": "AGRIBALU000024985200128", "impacts": { "acd": 0, "cch": 0, @@ -2035,20 +2031,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 68.29126821945296, - "ecs": 76.00444657735915 - } + "ecs": 76.00444657735915, + "pef": 68.29126821945296 + }, + "name": "Soybean, national average, animal feed, at farm gate {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "soybean-organic", - "name": "Soybean, organic, animal feed, at farm gate {FR} U", - "displayName": "Soja FR ou UE ou Hors UE Bio", - "unit": "kilogram", - "identifier": "AGRIBALU000000003114674", - "system_description": "", "categories": ["ingredient"], "comment": "Rdt mean = 2,25 t/ha", - "source": "Agribalyse 3.1.1", + "displayName": "Soja FR ou UE ou Hors UE Bio", + "id": "soybean-organic", + "identifier": "AGRIBALU000000003114674", "impacts": { "acd": 0, "cch": 0, @@ -2069,20 +2065,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 136.43216223167863, - "ecs": 115.33712697697423 - } + "ecs": 115.33712697697423, + "pef": 136.43216223167863 + }, + "name": "Soybean, organic, animal feed, at farm gate {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "", + "unit": "kg" }, { - "id": "soybean-br-no-deforestation", - "name": "Soybean, not associated to deforestation {BR}| market for soybean | Cut-off, U - Adapted from Ecoinvent", - "displayName": "Soja (non déforestant) Hors UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000024985200001", - "system_description": "Ecoinvent v3 - Copied from Ecoinvent", "categories": ["ingredient"], "comment": "Production Volume Amount: 76692414464", - "source": "Agribalyse 3.1.1", + "displayName": "Soja (non déforestant) Hors UE Conv.", + "id": "soybean-br-no-deforestation", + "identifier": "AGRIBALU000024985200001", "impacts": { "acd": 0, "cch": 0, @@ -2103,20 +2099,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 122.85469020017466, - "ecs": 427.21566044739865 - } + "ecs": 427.21566044739865, + "pef": 122.85469020017466 + }, + "name": "Soybean, not associated to deforestation {BR}| market for soybean | Cut-off, U - Adapted from Ecoinvent", + "source": "Agribalyse 3.1.1", + "system_description": "Ecoinvent v3 - Copied from Ecoinvent", + "unit": "kg" }, { - "id": "soybean-br-deforestation", - "name": "Soybean {BR}| market for soybean | Cut-off, U - Copied from Ecoinvent U", - "displayName": "Soja déforestant Hors UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000024985200302", - "system_description": "Ecoinvent v3 - Copied from Ecoinvent", "categories": ["ingredient"], "comment": "Production Volume Amount: 76692414464", - "source": "Agribalyse 3.1.1", + "displayName": "Soja déforestant Hors UE Conv.", + "id": "soybean-br-deforestation", + "identifier": "AGRIBALU000024985200302", "impacts": { "acd": 0, "cch": 0, @@ -2137,20 +2133,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 194.46230182615702, - "ecs": 489.4070683537393 - } + "ecs": 489.4070683537393, + "pef": 194.46230182615702 + }, + "name": "Soybean {BR}| market for soybean | Cut-off, U - Copied from Ecoinvent U", + "source": "Agribalyse 3.1.1", + "system_description": "Ecoinvent v3 - Copied from Ecoinvent", + "unit": "kg" }, { - "id": "soybean-feed", - "name": "Soybean grain dried, stored and transported, processing {FR} U", - "displayName": "Soja feed Hors UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003114580", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Soja feed Hors UE Conv.", + "id": "soybean-feed", + "identifier": "AGRIBALU000000003114580", "impacts": { "acd": 0, "cch": 0, @@ -2171,20 +2167,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 69.51737699966563, - "ecs": 77.15577351297308 - } + "ecs": 77.15577351297308, + "pef": 69.51737699966563 + }, + "name": "Soybean grain dried, stored and transported, processing {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "sausage-meat", - "name": "Sausage meat, raw, at plant {FR} U", - "displayName": "Chair à saucisse crue FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003113461", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "None", - "source": "Agribalyse 3.1.1", + "displayName": "Chair à saucisse crue FR Conv.", + "id": "sausage-meat", + "identifier": "AGRIBALU000000003113461", "impacts": { "acd": 0, "cch": 0, @@ -2205,20 +2201,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 1131.0975385390955, - "ecs": 1321.8702289111702 - } + "ecs": 1321.8702289111702, + "pef": 1131.0975385390955 + }, + "name": "Sausage meat, raw, at plant {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "sausage-toulouse", - "name": "Toulouse sausage, raw, at plant {FR} U", - "displayName": "Saucisse de Toulouse (crue) FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003115859", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "The CIQUAL food item 'Toulouse sausage, raw' matches with a recipe from ANSES.", - "source": "Agribalyse 3.1.1", + "displayName": "Saucisse de Toulouse (crue) FR Conv.", + "id": "sausage-toulouse", + "identifier": "AGRIBALU000000003115859", "impacts": { "acd": 0, "cch": 0, @@ -2239,20 +2235,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 1857.6721986102464, - "ecs": 2099.3512657815277 - } + "ecs": 2099.3512657815277, + "pef": 1857.6721986102464 + }, + "name": "Toulouse sausage, raw, at plant {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "sausage-toulouse-cooked", - "name": "Toulouse sausage, cooked, at plant {FR} U", - "displayName": "Saucisse de Toulouse (cuite) FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003115854", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "The CIQUAL food item 'Toulouse sausage, cooked' matches with a recipe from ANSES.", - "source": "Agribalyse 3.1.1", + "displayName": "Saucisse de Toulouse (cuite) FR Conv.", + "id": "sausage-toulouse-cooked", + "identifier": "AGRIBALU000000003115854", "impacts": { "acd": 0, "cch": 0, @@ -2273,20 +2269,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 1886.0847087530826, - "ecs": 2123.5766156604486 - } + "ecs": 2123.5766156604486, + "pef": 1886.0847087530826 + }, + "name": "Toulouse sausage, cooked, at plant {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "sausage-tofu", - "name": "Plant-based sausage with tofu (vegan), at plant {FR} U", - "displayName": "Saucisse végétale tofu FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003111467", - "system_description": "", "categories": ["ingredient"], "comment": "\"This dataset represents plant-based sausage production from Tofu. The recipe was determined with OpenFoodFact, 2021 based on 2 industrial recipes and assumptions. \"", - "source": "Agribalyse 3.1.1", + "displayName": "Saucisse végétale tofu FR Conv.", + "id": "sausage-tofu", + "identifier": "AGRIBALU000000003111467", "impacts": { "acd": 0, "cch": 0, @@ -2307,20 +2303,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 99.18069025582145, - "ecs": 118.25141452057227 - } + "ecs": 118.25141452057227, + "pef": 99.18069025582145 + }, + "name": "Plant-based sausage with tofu (vegan), at plant {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "", + "unit": "kg" }, { - "id": "tomato-paste", - "name": "Tomato paste, 30 degrees Brix, at plant {GLO} - Adapted from WFLDB U", - "displayName": "Purée de tomates Hors UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003115655", - "system_description": "", "categories": ["ingredient"], "comment": "1 kg output from plant (tomato paste) excluding packaging\n6.18 kg of fresh whole tomatoes (with a content of 3% skin and skin) at 5° Brix necessary for 1 kg of tomato paste at 30° Brix", - "source": "Agribalyse 3.1.1", + "displayName": "Purée de tomates Hors UE Conv.", + "id": "tomato-paste", + "identifier": "AGRIBALU000000003115655", "impacts": { "acd": 0, "cch": 0, @@ -2341,20 +2337,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 293.0029435780502, - "ecs": 265.0904671642133 - } + "ecs": 265.0904671642133, + "pef": 293.0029435780502 + }, + "name": "Tomato paste, 30 degrees Brix, at plant {GLO} - Adapted from WFLDB U", + "source": "Agribalyse 3.1.1", + "system_description": "", + "unit": "kg" }, { - "id": "tomato-concentrated", - "name": "Tomato paste, 30 degrees Brix, for double concentrate, at plant {GLO} - Adapted from WFLDB U", - "displayName": "Concentré de tomates Hors UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003115656", - "system_description": "", "categories": ["ingredient"], "comment": "1 kg output from plant (tomato paste) excluding packaging\n6.18 kg of fresh whole tomatoes (with a content of 3% skin and skin) at 5° Brix necessary for 1 kg of tomato paste at 30° Brix", - "source": "Agribalyse 3.1.1", + "displayName": "Concentré de tomates Hors UE Conv.", + "id": "tomato-concentrated", + "identifier": "AGRIBALU000000003115656", "impacts": { "acd": 0, "cch": 0, @@ -2375,20 +2371,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 452.3148770874482, - "ecs": 411.45133158605597 - } + "ecs": 411.45133158605597, + "pef": 452.3148770874482 + }, + "name": "Tomato paste, 30 degrees Brix, for double concentrate, at plant {GLO} - Adapted from WFLDB U", + "source": "Agribalyse 3.1.1", + "system_description": "", + "unit": "kg" }, { - "id": "beef-with-bone", - "name": "Meat with bone, beef, for direct consumption {FR} U", - "displayName": "Viande de boeuf avec os (crue) FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003109214", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Viande de boeuf avec os (crue) FR Conv.", + "id": "beef-with-bone", + "identifier": "AGRIBALU000000003109214", "impacts": { "acd": 0, "cch": 0, @@ -2409,20 +2405,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 1955.2669596997257, - "ecs": 1953.7986977698022 - } + "ecs": 1953.7986977698022, + "pef": 1955.2669596997257 + }, + "name": "Meat with bone, beef, for direct consumption {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "beef-without-bone", - "name": "Meat without bone, beef, for direct consumption {FR} U", - "displayName": "Viande de boeuf sans os (crue) FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003109219", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "This dataset includes packaging", - "source": "Agribalyse 3.1.1", + "displayName": "Viande de boeuf sans os (crue) FR Conv.", + "id": "beef-without-bone", + "identifier": "AGRIBALU000000003109219", "impacts": { "acd": 0, "cch": 0, @@ -2443,20 +2439,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 2447.1062686309256, - "ecs": 2446.8756165102686 - } + "ecs": 2446.8756165102686, + "pef": 2447.1062686309256 + }, + "name": "Meat without bone, beef, for direct consumption {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "beef-without-bone-organic", - "name": "Meat without bone, beef, for direct consumption {FR} U [organic], constructed by Ecobalyse", - "displayName": "Viande de boeuf sans os FR ou UE ou Hors UE Bio (crue)", - "unit": "kilogram", - "identifier": "f66ba18359adc61e5988ed8a7cf24b3e", - "system_description": "Ecobalyse", "categories": ["ingredient"], "comment": "This dataset includes packaging", - "source": "Ecobalyse", + "displayName": "Viande de boeuf sans os FR ou UE ou Hors UE Bio (crue)", + "id": "beef-without-bone-organic", + "identifier": "f66ba18359adc61e5988ed8a7cf24b3e", "impacts": { "acd": 0, "cch": 0, @@ -2477,20 +2473,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 2265.5258244151064, - "ecs": 1956.6522284266962 - } + "ecs": 1958.5526334520916, + "pef": 2267.051735599336 + }, + "name": "Meat without bone, beef, for direct consumption {FR} U [organic], constructed by Ecobalyse", + "source": "Ecobalyse", + "system_description": "Ecobalyse", + "unit": "kg" }, { - "id": "durum-wheat-semolina", - "name": "Durum wheat, semolina, at plant {FR} U", - "displayName": "Semoule de blé dur FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003105079", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Semoule de blé dur FR Conv.", + "id": "durum-wheat-semolina", + "identifier": "AGRIBALU000000003105079", "impacts": { "acd": 0, "cch": 0, @@ -2511,20 +2507,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 192.16577622075008, - "ecs": 182.83376189686146 - } + "ecs": 182.83376189686146, + "pef": 192.16577622075008 + }, + "name": "Durum wheat, semolina, at plant {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "sugar", - "name": "Sugar, from sugar beet, at sugar refinery {GLO} - Adapted from WFLDB U", - "displayName": "Sucre de betterave FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003109942", - "system_description": "", "categories": ["ingredient"], "comment": "Economic allocation", - "source": "Agribalyse 3.1.1", + "displayName": "Sucre de betterave FR Conv.", + "id": "sugar", + "identifier": "AGRIBALU000000003109942", "impacts": { "acd": 0, "cch": 0, @@ -2545,20 +2541,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 147.802025354746, - "ecs": 148.39172813220915 - } + "ecs": 148.39172813220915, + "pef": 147.802025354746 + }, + "name": "Sugar, from sugar beet, at sugar refinery {GLO} - Adapted from WFLDB U", + "source": "Agribalyse 3.1.1", + "system_description": "", + "unit": "kg" }, { - "id": "dark-chocolate", - "name": "Dark chocolate, at plant {FR} U", - "displayName": "Chocolat noir UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003104662", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Chocolat noir UE Conv.", + "id": "dark-chocolate", + "identifier": "AGRIBALU000000003104662", "impacts": { "acd": 0, "cch": 0, @@ -2579,20 +2575,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 815.7641303963198, - "ecs": 821.3039627054469 - } + "ecs": 821.3039627054469, + "pef": 815.7641303963198 + }, + "name": "Dark chocolate, at plant {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "chicken-breast-br-max", - "name": "Meat without bone, chicken, for direct consumption {FR} U [br-max], constructed by Ecobalyse", - "displayName": "Blanc de poulet cru (alim. ani. 100%BR) Hors UE Conv.", - "unit": "kilogram", - "identifier": "b9f380cbd26fef2f30b16cbe06edd732", - "system_description": "Ecobalyse", "categories": ["ingredient"], "comment": "", - "source": "Ecobalyse", + "displayName": "Blanc de poulet cru (alim. ani. 100%BR) Hors UE Conv.", + "id": "chicken-breast-br-max", + "identifier": "b9f380cbd26fef2f30b16cbe06edd732", "impacts": { "acd": 0, "cch": 0, @@ -2613,20 +2609,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 974.7024233146012, - "ecs": 1589.6590564384737 - } + "ecs": 1591.125226714898, + "pef": 976.6095425208241 + }, + "name": "Meat without bone, chicken, for direct consumption {FR} U [br-max], constructed by Ecobalyse", + "source": "Ecobalyse", + "system_description": "Ecobalyse", + "unit": "kg" }, { - "id": "chicken-breast-fr", - "name": "Meat without bone, chicken, for direct consumption {FR} U [fr], constructed by Ecobalyse", - "displayName": "Blanc de poulet cru (alim. ani. 100%FR) FR Conv.", - "unit": "kilogram", - "identifier": "862a53ceeeaf072c8528a71d2fa6a027", - "system_description": "Ecobalyse", "categories": ["ingredient"], "comment": "", - "source": "Ecobalyse", + "displayName": "Blanc de poulet cru (alim. ani. 100%FR) FR Conv.", + "id": "chicken-breast-fr", + "identifier": "862a53ceeeaf072c8528a71d2fa6a027", "impacts": { "acd": 0, "cch": 0, @@ -2647,20 +2643,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 680.7286222636042, - "ecs": 859.8812762958948 - } + "ecs": 861.0753030181475, + "pef": 682.1097111642912 + }, + "name": "Meat without bone, chicken, for direct consumption {FR} U [fr], constructed by Ecobalyse", + "source": "Ecobalyse", + "system_description": "Ecobalyse", + "unit": "kg" }, { - "id": "cane-sugar", - "name": "Brown sugar, production, at plant {FR} U", - "displayName": "Sucre de canne Hors UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003102182", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Sucre de canne Hors UE Conv.", + "id": "cane-sugar", + "identifier": "AGRIBALU000000003102182", "impacts": { "acd": 0, "cch": 0, @@ -2681,20 +2677,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 361.71176498771126, - "ecs": 1905.9977705947435 - } + "ecs": 1905.9977705947435, + "pef": 361.71176498771126 + }, + "name": "Brown sugar, production, at plant {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "tea-dried", - "name": "Tea, dried {RoW}| tea production, dried | Cut-off, U - Adapted from Ecoinvent U", - "displayName": "Thé (feuilles) UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003115509", - "system_description": "Ecoinvent v3 - Copied from Ecoinvent", "categories": ["ingredient"], "comment": "Production Volume Amount: 1436769536", - "source": "Agribalyse 3.1.1", + "displayName": "Thé (feuilles) UE Conv.", + "id": "tea-dried", + "identifier": "AGRIBALU000000003115509", "impacts": { "acd": 0, "cch": 0, @@ -2715,20 +2711,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 676.8829609153016, - "ecs": 1381.9906488597785 - } + "ecs": 1381.9906488597785, + "pef": 676.8829609153016 + }, + "name": "Tea, dried {RoW}| tea production, dried | Cut-off, U - Adapted from Ecoinvent U", + "source": "Agribalyse 3.1.1", + "system_description": "Ecoinvent v3 - Copied from Ecoinvent", + "unit": "kg" }, { - "id": "coffee-ground", - "name": "Coffee, roast and ground, at plant {FR} U", - "displayName": "Café moulu Hors UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003103623", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Café moulu Hors UE Conv.", + "id": "coffee-ground", + "identifier": "AGRIBALU000000003103623", "impacts": { "acd": 0, "cch": 0, @@ -2749,20 +2745,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 1798.419934482006, - "ecs": 3165.914670980986 - } + "ecs": 3165.914670980986, + "pef": 1798.419934482006 + }, + "name": "Coffee, roast and ground, at plant {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "black-pepper", - "name": "Black pepper, dried, consumption mix {FR} U", - "displayName": "Poivre noir Hors UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003101545", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "This process describes the average consumption mix of black pepper imported to France. Transport is added from the farm gate (in the producing country) to a french plant in Carpentras.", - "source": "Agribalyse 3.1.1", + "displayName": "Poivre noir Hors UE Conv.", + "id": "black-pepper", + "identifier": "AGRIBALU000000003101545", "impacts": { "acd": 0, "cch": 0, @@ -2783,20 +2779,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 1130.1851485397244, - "ecs": 1226.5149792757582 - } + "ecs": 1226.5149792757582, + "pef": 1130.1851485397244 + }, + "name": "Black pepper, dried, consumption mix {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "milk-powder", - "name": "Milk, powder, skimmed, non rehydrated, at plant {FR} U", - "displayName": "Poudre de lait écrémé FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003109401", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "This process describes the production of Milk, powder, skimmed in France.\nIncluded activities are : production in country of origin and transport", - "source": "Agribalyse 3.1.1", + "displayName": "Poudre de lait écrémé FR Conv.", + "id": "milk-powder", + "identifier": "AGRIBALU000000003109401", "impacts": { "acd": 0, "cch": 0, @@ -2817,20 +2813,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 1495.5358092270042, - "ecs": 1251.7720741272337 - } + "ecs": 1251.7720741272337, + "pef": 1495.5358092270042 + }, + "name": "Milk, powder, skimmed, non rehydrated, at plant {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "red-wine", - "name": "Red Wine, from grape, in a cooperative cellar, packaged, French production mix, at plant, 1 L of red wine (PGi) {FR} U", - "displayName": "Vin rouge FR Conv.", - "unit": "litre", - "identifier": "AGRIBALU000000003112590", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "(4,4,2,1,2),", - "source": "Agribalyse 3.1.1", + "displayName": "Vin rouge FR Conv.", + "id": "red-wine", + "identifier": "AGRIBALU000000003112590", "impacts": { "acd": 0, "cch": 0, @@ -2851,20 +2847,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 155.2173279408098, - "ecs": 151.9720920448877 - } + "ecs": 151.9720920448877, + "pef": 155.2173279408098 + }, + "name": "Red Wine, from grape, in a cooperative cellar, packaged, French production mix, at plant, 1 L of red wine (PGi) {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "L" }, { - "id": "fresh-shrimps", - "name": "Fresh shrimps, China production {FR} U", - "displayName": "Crevettes fraîches Hors UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003106282", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Crevettes fraîches Hors UE Conv.", + "id": "fresh-shrimps", + "identifier": "AGRIBALU000000003106282", "impacts": { "acd": 0, "cch": 0, @@ -2885,20 +2881,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 264.39734333926424, - "ecs": 289.98775169467257 - } + "ecs": 289.98775169467257, + "pef": 264.39734333926424 + }, + "name": "Fresh shrimps, China production {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "large-trout", - "name": "Large trout, 2-4kg, conventional, at farm gate {FR} U", - "displayName": "Truite d'élevage FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003108470", - "system_description": "", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Truite d'élevage FR Conv.", + "id": "large-trout", + "identifier": "AGRIBALU000000003108470", "impacts": { "acd": 0, "cch": 0, @@ -2919,20 +2915,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 501.72994380981555, - "ecs": 542.7480745452824 - } + "ecs": 542.7480745452824, + "pef": 501.72994380981555 + }, + "name": "Large trout, 2-4kg, conventional, at farm gate {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "", + "unit": "kg" }, { - "id": "egg-indoor-code2", - "name": "Egg, conventional, indoor system, non-cage, at farm gate {FR} U", - "displayName": "Oeuf FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003105152", - "system_description": "", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Oeuf FR Conv.", + "id": "egg-indoor-code2", + "identifier": "AGRIBALU000000003105152", "impacts": { "acd": 0, "cch": 0, @@ -2953,20 +2949,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 471.2837857332832, - "ecs": 649.9474216018834 - } + "ecs": 649.9474216018834, + "pef": 471.2837857332832 + }, + "name": "Egg, conventional, indoor system, non-cage, at farm gate {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "", + "unit": "kg" }, { - "id": "egg-indoor-code3", - "name": "Egg, conventional, indoor system, cage, at farm gate {FR} U", - "displayName": "Oeuf (code 3) FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003105151", - "system_description": "", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Oeuf (code 3) FR Conv.", + "id": "egg-indoor-code3", + "identifier": "AGRIBALU000000003105151", "impacts": { "acd": 0, "cch": 0, @@ -2987,20 +2983,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 369.64232150226667, - "ecs": 520.428565560424 - } + "ecs": 520.428565560424, + "pef": 369.64232150226667 + }, + "name": "Egg, conventional, indoor system, cage, at farm gate {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "", + "unit": "kg" }, { - "id": "egg-outdoor-code1", - "name": "Egg, conventional, outdoor system, at farm gate {FR} U", - "displayName": "Oeuf (code 1) FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003105153", - "system_description": "", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Oeuf (code 1) FR Conv.", + "id": "egg-outdoor-code1", + "identifier": "AGRIBALU000000003105153", "impacts": { "acd": 0, "cch": 0, @@ -3021,20 +3017,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 449.50132103006086, - "ecs": 619.2337280221161 - } + "ecs": 619.2337280221161, + "pef": 449.50132103006086 + }, + "name": "Egg, conventional, outdoor system, at farm gate {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "", + "unit": "kg" }, { - "id": "egg-organic-code0", - "name": "Egg, organic, at farm gate {FR} U", - "displayName": "Oeuf FR ou UE ou Hors UE Bio", - "unit": "kilogram", - "identifier": "AGRIBALU000000003105163", - "system_description": "", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Oeuf FR ou UE ou Hors UE Bio", + "id": "egg-organic-code0", + "identifier": "AGRIBALU000000003105163", "impacts": { "acd": 0, "cch": 0, @@ -3055,20 +3051,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 413.80802757818947, - "ecs": 339.3585332826367 - } + "ecs": 339.3585332826367, + "pef": 413.80802757818947 + }, + "name": "Egg, organic, at farm gate {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "", + "unit": "kg" }, { - "id": "wine-grape-organic", - "name": "Grape, integrated, variety mix, Languedoc-Roussillon, at vineyard, organic 2023 {FR} U", - "displayName": "Raisin de cuve FR ou UE ou Hors UE Bio", - "unit": "kilogram", - "identifier": "wine-grape-organic", - "system_description": "", "categories": ["ingredient"], "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "source": "Ginko", + "displayName": "Raisin de cuve FR ou UE ou Hors UE Bio", + "id": "wine-grape-organic", + "identifier": "wine-grape-organic", "impacts": { "acd": 0, "cch": 0, @@ -3089,20 +3085,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 82.14988484686424, - "ecs": 71.7155311698486 - } + "ecs": 71.7155311698486, + "pef": 82.14988484686424 + }, + "name": "Grape, integrated, variety mix, Languedoc-Roussillon, at vineyard, organic 2023 {FR} U", + "source": "Ginko", + "system_description": "", + "unit": "kg" }, { - "id": "lamb-meat-without-bone", - "name": "Meat without bone, lamb {FR} U", - "displayName": "Viande d'agneau (désossée) FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003109223", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Viande d'agneau (désossée) FR Conv.", + "id": "lamb-meat-without-bone", + "identifier": "AGRIBALU000000003109223", "impacts": { "acd": 0, "cch": 0, @@ -3123,20 +3119,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 4303.984916400434, - "ecs": 4107.6172057659305 - } + "ecs": 4107.6172057659305, + "pef": 4303.984916400434 + }, + "name": "Meat without bone, lamb {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "lamb-meat-without-bone-organic", - "name": "Meat without bone, lamb {FR} U [organic], constructed by Ecobalyse", - "displayName": "Viande d'agneau FR ou UE ou Hors UE Bio (désossée)", - "unit": "kilogram", - "identifier": "f025b4a41c45eabdb2510795b3353ca4", - "system_description": "Ecobalyse", "categories": ["ingredient"], "comment": "", - "source": "Ecobalyse", + "displayName": "Viande d'agneau FR ou UE ou Hors UE Bio (désossée)", + "id": "lamb-meat-without-bone-organic", + "identifier": "f025b4a41c45eabdb2510795b3353ca4", "impacts": { "acd": 0, "cch": 0, @@ -3157,20 +3153,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 3315.2687054260427, - "ecs": 2780.43749192331 - } + "ecs": 2782.6816559031586, + "pef": 3316.623810752744 + }, + "name": "Meat without bone, lamb {FR} U [organic], constructed by Ecobalyse", + "source": "Ecobalyse", + "system_description": "Ecobalyse", + "unit": "kg" }, { - "id": "pear-organic", - "name": "Pear, consumption mix, organic 2023 {FR} U", - "displayName": "Poire FR ou UE ou Hors UE Bio", - "unit": "kilogram", - "identifier": "pear-organic", - "system_description": "", "categories": ["ingredient"], "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "source": "Ginko", + "displayName": "Poire FR ou UE ou Hors UE Bio", + "id": "pear-organic", + "identifier": "pear-organic", "impacts": { "acd": 0, "cch": 0, @@ -3191,20 +3187,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 40.79877780981382, - "ecs": 43.46995904714033 - } + "ecs": 43.46995904714033, + "pef": 40.79877780981382 + }, + "name": "Pear, consumption mix, organic 2023 {FR} U", + "source": "Ginko", + "system_description": "", + "unit": "kg" }, { - "id": "carrot-fr", - "name": "Carrot, conventional, national average, at farm gate {FR} U", - "displayName": "Carotte FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003102592", - "system_description": "", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Carotte FR Conv.", + "id": "carrot-fr", + "identifier": "AGRIBALU000000003102592", "impacts": { "acd": 0, "cch": 0, @@ -3225,20 +3221,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 17.81850610595258, - "ecs": 64.98479572456807 - } + "ecs": 64.98479572456807, + "pef": 17.81850610595258 + }, + "name": "Carrot, conventional, national average, at farm gate {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "", + "unit": "kg" }, { - "id": "carrot-eu", - "name": "Carrot {NL}| carrot production | Cut-off, U - Adapted from Ecoinvent U", - "displayName": "Carotte UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003102563", - "system_description": "Ecoinvent v3 - Copied from Ecoinvent", "categories": ["ingredient"], "comment": "Reference flow: Yield = 56880 kg/ha\nProduction Volume Amount: 508750016", - "source": "Agribalyse 3.1.1", + "displayName": "Carotte UE Conv.", + "id": "carrot-eu", + "identifier": "AGRIBALU000000003102563", "impacts": { "acd": 0, "cch": 0, @@ -3259,20 +3255,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 19.724450306619094, - "ecs": 30.913629489638385 - } + "ecs": 30.913629489638385, + "pef": 19.724450306619094 + }, + "name": "Carrot {NL}| carrot production | Cut-off, U - Adapted from Ecoinvent U", + "source": "Agribalyse 3.1.1", + "system_description": "Ecoinvent v3 - Copied from Ecoinvent", + "unit": "kg" }, { - "id": "carrot-non-ue", - "name": "Carrot {RoW}| carrot production | Cut-off, U - Copied from Ecoinvent U", - "displayName": "Carotte Hors UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003102564", - "system_description": "Ecoinvent v3 - Copied from Ecoinvent", "categories": ["ingredient"], "comment": "Production Volume Amount: 18370729984", - "source": "Agribalyse 3.1.1", + "displayName": "Carotte Hors UE Conv.", + "id": "carrot-non-ue", + "identifier": "AGRIBALU000000003102564", "impacts": { "acd": 0, "cch": 0, @@ -3293,20 +3289,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 30.571496239023755, - "ecs": 38.398618742819814 - } + "ecs": 38.398618742819814, + "pef": 30.571496239023755 + }, + "name": "Carrot {RoW}| carrot production | Cut-off, U - Copied from Ecoinvent U", + "source": "Agribalyse 3.1.1", + "system_description": "Ecoinvent v3 - Copied from Ecoinvent", + "unit": "kg" }, { - "id": "zucchini-fr", - "name": "Zucchini, springtime, under tunnel, conventionel, at farm gate {FR} U", - "displayName": "Courgette FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000024985200218", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Courgette FR Conv.", + "id": "zucchini-fr", + "identifier": "AGRIBALU000024985200218", "impacts": { "acd": 0, "cch": 0, @@ -3327,20 +3323,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 25.31894771189254, - "ecs": 24.03280371085538 - } + "ecs": 24.03280371085538, + "pef": 25.31894771189254 + }, + "name": "Zucchini, springtime, under tunnel, conventionel, at farm gate {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "zucchini-eu", - "name": "Zucchini, conventional, national average, at farm gate {FR} U", - "displayName": "Courgette UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003117541", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Courgette UE Conv.", + "id": "zucchini-eu", + "identifier": "AGRIBALU000000003117541", "impacts": { "acd": 0, "cch": 0, @@ -3361,20 +3357,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 25.202985524893382, - "ecs": 24.997074386706196 - } + "ecs": 24.997074386706196, + "pef": 25.202985524893382 + }, + "name": "Zucchini, conventional, national average, at farm gate {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "pear-fr", - "name": "Pear, conventional, at orchard {FR} U", - "displayName": "Poire FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003111019", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Poire FR Conv.", + "id": "pear-fr", + "identifier": "AGRIBALU000000003111019", "impacts": { "acd": 0, "cch": 0, @@ -3395,20 +3391,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 21.62263161962437, - "ecs": 21.184724199100767 - } + "ecs": 21.184724199100767, + "pef": 21.62263161962437 + }, + "name": "Pear, conventional, at orchard {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "pear-eu", - "name": "Pear {BE}| pear production | Cut-off, U - Adapted from Ecoinvent U", - "displayName": "Poire UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003111005", - "system_description": "Ecoinvent v3 - Copied from Ecoinvent", "categories": ["ingredient"], "comment": "Reference flow: Yield = 48205 kg/ha table fruit quality\nProduction Volume Amount: 277274240", - "source": "Agribalyse 3.1.1", + "displayName": "Poire UE Conv.", + "id": "pear-eu", + "identifier": "AGRIBALU000000003111005", "impacts": { "acd": 0, "cch": 0, @@ -3429,20 +3425,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 25.039985657174284, - "ecs": 42.87410310985863 - } + "ecs": 42.87410310985863, + "pef": 25.039985657174284 + }, + "name": "Pear {BE}| pear production | Cut-off, U - Adapted from Ecoinvent U", + "source": "Agribalyse 3.1.1", + "system_description": "Ecoinvent v3 - Copied from Ecoinvent", + "unit": "kg" }, { - "id": "peach-fr", - "name": "Peach, production mix, national average, at orchard {FR} U", - "displayName": "Pêche FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003110952", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "FRANCE", - "source": "Agribalyse 3.1.1", + "displayName": "Pêche FR Conv.", + "id": "peach-fr", + "identifier": "AGRIBALU000000003110952", "impacts": { "acd": 0, "cch": 0, @@ -3463,20 +3459,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 51.23128039780415, - "ecs": 61.726586347691565 - } + "ecs": 61.726586347691565, + "pef": 51.23128039780415 + }, + "name": "Peach, production mix, national average, at orchard {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "peach-eu", - "name": "Peach {ES}| peach production | Cut-off, U - Adapted from Ecoinvent U", - "displayName": "Pêche UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003110917", - "system_description": "Ecoinvent v3 - Copied from Ecoinvent", "categories": ["ingredient"], "comment": "Reference flow: Yield = 27000 kg/ha table fruit quality\nProduction Volume Amount: 1257250944", - "source": "Agribalyse 3.1.1", + "displayName": "Pêche UE Conv.", + "id": "peach-eu", + "identifier": "AGRIBALU000000003110917", "impacts": { "acd": 0, "cch": 0, @@ -3497,20 +3493,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 144.97598542413004, - "ecs": 204.3874851964266 - } + "ecs": 204.3874851964266, + "pef": 144.97598542413004 + }, + "name": "Peach {ES}| peach production | Cut-off, U - Adapted from Ecoinvent U", + "source": "Agribalyse 3.1.1", + "system_description": "Ecoinvent v3 - Copied from Ecoinvent", + "unit": "kg" }, { - "id": "melon-fr", - "name": "Melon, conventional, national average, at farm gate {FR} U", - "displayName": "Melon FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003109266", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Melon FR Conv.", + "id": "melon-fr", + "identifier": "AGRIBALU000000003109266", "impacts": { "acd": 0, "cch": 0, @@ -3531,20 +3527,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 32.6340993191992, - "ecs": 31.102909624216796 - } - }, - { - "id": "melon-eu", + "ecs": 31.102909624216796, + "pef": 32.6340993191992 + }, "name": "Melon, conventional, national average, at farm gate {FR} U", - "displayName": "Melon UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003109266", + "source": "Agribalyse 3.1.1", "system_description": "AGRIBALYSE", + "unit": "kg" + }, + { "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Melon UE Conv.", + "id": "melon-eu", + "identifier": "AGRIBALU000000003109266", "impacts": { "acd": 0, "cch": 0, @@ -3565,20 +3561,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 32.6340993191992, - "ecs": 31.102909624216796 - } + "ecs": 31.102909624216796, + "pef": 32.6340993191992 + }, + "name": "Melon, conventional, national average, at farm gate {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "potato-industry-fr", - "name": "Ware potato, conventional, for industrial use, at farm gate {FR} U", - "displayName": "Pomme de terre industrie FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000024985200170", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Pomme de terre industrie FR Conv.", + "id": "potato-industry-fr", + "identifier": "AGRIBALU000024985200170", "impacts": { "acd": 0, "cch": 0, @@ -3599,20 +3595,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 14.23118151745599, - "ecs": 18.668974385921725 - } + "ecs": 18.668974385921725, + "pef": 14.23118151745599 + }, + "name": "Ware potato, conventional, for industrial use, at farm gate {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "potato-table-fr", - "name": "Ware potato, conventional, for fresh market, other varieties, at farm gate {FR} U", - "displayName": "Pomme de terre de table FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000024985200169", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Pomme de terre de table FR Conv.", + "id": "potato-table-fr", + "identifier": "AGRIBALU000024985200169", "impacts": { "acd": 0, "cch": 0, @@ -3633,20 +3629,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 14.283346497425525, - "ecs": 18.708274892164997 - } + "ecs": 18.708274892164997, + "pef": 14.283346497425525 + }, + "name": "Ware potato, conventional, for fresh market, other varieties, at farm gate {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "potato-starch", - "name": "Potato starch {GLO}| market for | Cut-off, S - Copied from Ecoinvent U", - "displayName": "Fécule de pomme de terre Hors UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003111897", - "system_description": "Ecoinvent v3 - Copied from Ecoinvent", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Fécule de pomme de terre Hors UE Conv.", + "id": "potato-starch", + "identifier": "AGRIBALU000000003111897", "impacts": { "acd": 0, "cch": 0, @@ -3667,20 +3663,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 345.3386678700623, - "ecs": 492.976460642955 - } + "ecs": 492.976460642955, + "pef": 345.3386678700623 + }, + "name": "Potato starch {GLO}| market for | Cut-off, S - Copied from Ecoinvent U", + "source": "Agribalyse 3.1.1", + "system_description": "Ecoinvent v3 - Copied from Ecoinvent", + "unit": "kg" }, { - "id": "wheat-glo", - "name": "Wheat grain, feed {GLO}| market for | Cut-off, S - Copied from Ecoinvent U", - "displayName": "Blé tendre Hors UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003117048", - "system_description": "Ecoinvent v3 - Copied from Ecoinvent", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Blé tendre Hors UE Conv.", + "id": "wheat-glo", + "identifier": "AGRIBALU000000003117048", "impacts": { "acd": 0, "cch": 0, @@ -3701,20 +3697,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 170.6819853728235, - "ecs": 153.36900038051974 - } + "ecs": 153.36900038051974, + "pef": 170.6819853728235 + }, + "name": "Wheat grain, feed {GLO}| market for | Cut-off, S - Copied from Ecoinvent U", + "source": "Agribalyse 3.1.1", + "system_description": "Ecoinvent v3 - Copied from Ecoinvent", + "unit": "kg" }, { - "id": "onion-fr", - "name": "Onion, national average, at farm {FR} U", - "displayName": "Oignon FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003110467", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Oignon FR Conv.", + "id": "onion-fr", + "identifier": "AGRIBALU000000003110467", "impacts": { "acd": 0, "cch": 0, @@ -3735,20 +3731,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 18.376791757746535, - "ecs": 21.412666296293644 - } + "ecs": 21.412666296293644, + "pef": 18.376791757746535 + }, + "name": "Onion, national average, at farm {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "onion-eu", - "name": "Onion {NL}| onion production | Cut-off, U - Adapted from Ecoinvent U", - "displayName": "Oignon UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003110441", - "system_description": "Ecoinvent v3 - Copied from Ecoinvent", "categories": ["ingredient"], "comment": "Reference flow: Yield = 55000 kg/ha\nProduction Volume Amount: 1402423040", - "source": "Agribalyse 3.1.1", + "displayName": "Oignon UE Conv.", + "id": "onion-eu", + "identifier": "AGRIBALU000000003110441", "impacts": { "acd": 0, "cch": 0, @@ -3769,20 +3765,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 33.35361891312618, - "ecs": 40.00755395302994 - } + "ecs": 40.00755395302994, + "pef": 33.35361891312618 + }, + "name": "Onion {NL}| onion production | Cut-off, U - Adapted from Ecoinvent U", + "source": "Agribalyse 3.1.1", + "system_description": "Ecoinvent v3 - Copied from Ecoinvent", + "unit": "kg" }, { - "id": "onion-non-ue", - "name": "Onion {RoW}| onion production | Cut-off, U - Copied from Ecoinvent U", - "displayName": "Oignon Hors UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003110442", - "system_description": "Ecoinvent v3 - Copied from Ecoinvent", "categories": ["ingredient"], "comment": "Production Volume Amount: 38596923392", - "source": "Agribalyse 3.1.1", + "displayName": "Oignon Hors UE Conv.", + "id": "onion-non-ue", + "identifier": "AGRIBALU000000003110442", "impacts": { "acd": 0, "cch": 0, @@ -3803,20 +3799,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 67.12923161761333, - "ecs": 60.1861766137081 - } + "ecs": 60.1861766137081, + "pef": 67.12923161761333 + }, + "name": "Onion {RoW}| onion production | Cut-off, U - Copied from Ecoinvent U", + "source": "Agribalyse 3.1.1", + "system_description": "Ecoinvent v3 - Copied from Ecoinvent", + "unit": "kg" }, { - "id": "eggplant-fr", - "name": "Zucchini, springtime, under tunnel, conventionel, at farm gate {FR} U", - "displayName": "Aubergine FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000024985200218", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Aubergine FR Conv.", + "id": "eggplant-fr", + "identifier": "AGRIBALU000024985200218", "impacts": { "acd": 0, "cch": 0, @@ -3837,20 +3833,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 25.31894771189254, - "ecs": 24.03280371085538 - } - }, - { - "id": "eggplant-eu", + "ecs": 24.03280371085538, + "pef": 25.31894771189254 + }, "name": "Zucchini, springtime, under tunnel, conventionel, at farm gate {FR} U", - "displayName": "Aubergine UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000024985200218", + "source": "Agribalyse 3.1.1", "system_description": "AGRIBALYSE", + "unit": "kg" + }, + { "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Aubergine UE Conv.", + "id": "eggplant-eu", + "identifier": "AGRIBALU000024985200218", "impacts": { "acd": 0, "cch": 0, @@ -3871,20 +3867,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 25.31894771189254, - "ecs": 24.03280371085538 - } + "ecs": 24.03280371085538, + "pef": 25.31894771189254 + }, + "name": "Zucchini, springtime, under tunnel, conventionel, at farm gate {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "french-bean-fr", - "name": "French bean, conventional, national average, at farm gate {FR} U", - "displayName": "Haricot vert FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000024985200072", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Haricot vert FR Conv.", + "id": "french-bean-fr", + "identifier": "AGRIBALU000024985200072", "impacts": { "acd": 0, "cch": 0, @@ -3905,20 +3901,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 38.78399395041111, - "ecs": 43.47025936799167 - } - }, - { - "id": "french-bean-eu", + "ecs": 43.47025936799167, + "pef": 38.78399395041111 + }, "name": "French bean, conventional, national average, at farm gate {FR} U", - "displayName": "Haricot vert UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000024985200072", + "source": "Agribalyse 3.1.1", "system_description": "AGRIBALYSE", + "unit": "kg" + }, + { "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Haricot vert UE Conv.", + "id": "french-bean-eu", + "identifier": "AGRIBALU000024985200072", "impacts": { "acd": 0, "cch": 0, @@ -3939,20 +3935,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 38.78399395041111, - "ecs": 43.47025936799167 - } - }, - { - "id": "french-bean-non-eu", + "ecs": 43.47025936799167, + "pef": 38.78399395041111 + }, "name": "French bean, conventional, national average, at farm gate {FR} U", - "displayName": "Haricot vert Hors UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000024985200072", + "source": "Agribalyse 3.1.1", "system_description": "AGRIBALYSE", + "unit": "kg" + }, + { "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Haricot vert Hors UE Conv.", + "id": "french-bean-non-eu", + "identifier": "AGRIBALU000024985200072", "impacts": { "acd": 0, "cch": 0, @@ -3973,20 +3969,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 38.78399395041111, - "ecs": 43.47025936799167 - } + "ecs": 43.47025936799167, + "pef": 38.78399395041111 + }, + "name": "French bean, conventional, national average, at farm gate {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "lettuce-fr", - "name": "Lettuce, conventional, national average, at farm gate {FR} U", - "displayName": "Laitue FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003108668", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Laitue FR Conv.", + "id": "lettuce-fr", + "identifier": "AGRIBALU000000003108668", "impacts": { "acd": 0, "cch": 0, @@ -4007,20 +4003,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 26.02451803953416, - "ecs": 26.78991001440472 - } + "ecs": 26.78991001440472, + "pef": 26.02451803953416 + }, + "name": "Lettuce, conventional, national average, at farm gate {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "lettuce-eu", - "name": "Iceberg lettuce {GLO}| production | Cut-off, U - Adapted from Ecoinvent U", - "displayName": "Laitue UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003107604", - "system_description": "Ecoinvent v3 - Copied from Ecoinvent", "categories": ["ingredient"], "comment": "Production Volume Amount: 23622365184", - "source": "Agribalyse 3.1.1", + "displayName": "Laitue UE Conv.", + "id": "lettuce-eu", + "identifier": "AGRIBALU000000003107604", "impacts": { "acd": 0, "cch": 0, @@ -4041,20 +4037,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 20.339888618375657, - "ecs": 24.50587629640328 - } - }, - { - "id": "lettuce-non-eu", + "ecs": 24.50587629640328, + "pef": 20.339888618375657 + }, "name": "Iceberg lettuce {GLO}| production | Cut-off, U - Adapted from Ecoinvent U", - "displayName": "Laitue Hors UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003107604", + "source": "Agribalyse 3.1.1", "system_description": "Ecoinvent v3 - Copied from Ecoinvent", + "unit": "kg" + }, + { "categories": ["ingredient"], "comment": "Production Volume Amount: 23622365184", - "source": "Agribalyse 3.1.1", + "displayName": "Laitue Hors UE Conv.", + "id": "lettuce-non-eu", + "identifier": "AGRIBALU000000003107604", "impacts": { "acd": 0, "cch": 0, @@ -4075,20 +4071,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 20.339888618375657, - "ecs": 24.50587629640328 - } + "ecs": 24.50587629640328, + "pef": 20.339888618375657 + }, + "name": "Iceberg lettuce {GLO}| production | Cut-off, U - Adapted from Ecoinvent U", + "source": "Agribalyse 3.1.1", + "system_description": "Ecoinvent v3 - Copied from Ecoinvent", + "unit": "kg" }, { - "id": "garden-peas-fr", - "name": "Annual vining pea for industry, Conventional, National average, at farm gate {FR} U", - "displayName": "Petit pois FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000024985200024", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Petit pois FR Conv.", + "id": "garden-peas-fr", + "identifier": "AGRIBALU000024985200024", "impacts": { "acd": 0, "cch": 0, @@ -4109,20 +4105,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 61.62593073097713, - "ecs": 83.82782485359631 - } - }, - { - "id": "garden-peas-eu", + "ecs": 83.82782485359631, + "pef": 61.62593073097713 + }, "name": "Annual vining pea for industry, Conventional, National average, at farm gate {FR} U", - "displayName": "Petit pois UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000024985200024", + "source": "Agribalyse 3.1.1", "system_description": "AGRIBALYSE", + "unit": "kg" + }, + { "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Petit pois UE Conv.", + "id": "garden-peas-eu", + "identifier": "AGRIBALU000024985200024", "impacts": { "acd": 0, "cch": 0, @@ -4143,20 +4139,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 61.62593073097713, - "ecs": 83.82782485359631 - } + "ecs": 83.82782485359631, + "pef": 61.62593073097713 + }, + "name": "Annual vining pea for industry, Conventional, National average, at farm gate {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "cherry-fr", - "name": "Cherry, conventional, national average, at orchard {FR} U", - "displayName": "Cerise FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003102916", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Cerise FR Conv.", + "id": "cherry-fr", + "identifier": "AGRIBALU000000003102916", "impacts": { "acd": 0, "cch": 0, @@ -4177,20 +4173,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 178.21142637929523, - "ecs": 403.91671616583545 - } + "ecs": 403.91671616583545, + "pef": 178.21142637929523 + }, + "name": "Cherry, conventional, national average, at orchard {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "lemon-eu", - "name": "Lemon {ES}| lemon production | Cut-off, U - Adapted from Ecoinvent U", - "displayName": "Citron UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003108561", - "system_description": "Ecoinvent v3 - Copied from Ecoinvent", "categories": ["ingredient"], "comment": "Reference flow: Yield = 37000 kg/ha\nProduction Volume Amount: 674371008", - "source": "Agribalyse 3.1.1", + "displayName": "Citron UE Conv.", + "id": "lemon-eu", + "identifier": "AGRIBALU000000003108561", "impacts": { "acd": 0, "cch": 0, @@ -4211,20 +4207,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 83.51864905413399, - "ecs": 113.68544810511233 - } + "ecs": 113.68544810511233, + "pef": 83.51864905413399 + }, + "name": "Lemon {ES}| lemon production | Cut-off, U - Adapted from Ecoinvent U", + "source": "Agribalyse 3.1.1", + "system_description": "Ecoinvent v3 - Copied from Ecoinvent", + "unit": "kg" }, { - "id": "plum-fr", - "name": "Cherry, conventional, national average, at orchard {FR} U", - "displayName": "Prune FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003102916", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Prune FR Conv.", + "id": "plum-fr", + "identifier": "AGRIBALU000000003102916", "impacts": { "acd": 0, "cch": 0, @@ -4245,20 +4241,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 178.21142637929523, - "ecs": 403.91671616583545 - } - }, - { - "id": "squash-fr", - "name": "Zucchini, springtime, under tunnel, conventionel, at farm gate {FR} U", - "displayName": "Courge FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000024985200218", + "ecs": 403.91671616583545, + "pef": 178.21142637929523 + }, + "name": "Cherry, conventional, national average, at orchard {FR} U", + "source": "Agribalyse 3.1.1", "system_description": "AGRIBALYSE", + "unit": "kg" + }, + { "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Courge FR Conv.", + "id": "squash-fr", + "identifier": "AGRIBALU000024985200218", "impacts": { "acd": 0, "cch": 0, @@ -4279,20 +4275,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 25.31894771189254, - "ecs": 24.03280371085538 - } + "ecs": 24.03280371085538, + "pef": 25.31894771189254 + }, + "name": "Zucchini, springtime, under tunnel, conventionel, at farm gate {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "squash-eu", - "name": "Zucchini, conventional, national average, at farm gate {FR} U", - "displayName": "Courge UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003117541", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Courge UE Conv.", + "id": "squash-eu", + "identifier": "AGRIBALU000000003117541", "impacts": { "acd": 0, "cch": 0, @@ -4313,20 +4309,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 25.202985524893382, - "ecs": 24.997074386706196 - } + "ecs": 24.997074386706196, + "pef": 25.202985524893382 + }, + "name": "Zucchini, conventional, national average, at farm gate {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "squash-organic", - "name": "Zucchini, springtime, under tunnel, organic, at farm gate {FR} U", - "displayName": "Courge FR ou UE ou Hors UE Bio", - "unit": "kilogram", - "identifier": "AGRIBALU000024985200219", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Courge FR ou UE ou Hors UE Bio", + "id": "squash-organic", + "identifier": "AGRIBALU000024985200219", "impacts": { "acd": 0, "cch": 0, @@ -4347,20 +4343,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 23.755447115550382, - "ecs": 20.61790199404379 - } + "ecs": 20.61790199404379, + "pef": 23.755447115550382 + }, + "name": "Zucchini, springtime, under tunnel, organic, at farm gate {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "tomato-heated-greenhouse-fr", - "name": "Tomato, medium size, conventional, heated greenhouse, at greenhouse {FR} U", - "displayName": "Tomate sous serre chauffée Hors UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003115752", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Tomate sous serre chauffée Hors UE Conv.", + "id": "tomato-heated-greenhouse-fr", + "identifier": "AGRIBALU000000003115752", "impacts": { "acd": 0, "cch": 0, @@ -4381,20 +4377,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 117.23387573386083, - "ecs": 107.7456263024781 - } + "ecs": 107.7456263024781, + "pef": 117.23387573386083 + }, + "name": "Tomato, medium size, conventional, heated greenhouse, at greenhouse {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "tomato-greenhouse-fr", - "name": "Tomato, medium size, conventional, soil based, non-heated greenhouse, at greenhouse {FR} U", - "displayName": "Tomate sous serre non chauffée FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003115753", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Tomate sous serre non chauffée FR Conv.", + "id": "tomato-greenhouse-fr", + "identifier": "AGRIBALU000000003115753", "impacts": { "acd": 0, "cch": 0, @@ -4415,20 +4411,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 20.25467418923414, - "ecs": 18.408796254149188 - } + "ecs": 18.408796254149188, + "pef": 20.25467418923414 + }, + "name": "Tomato, medium size, conventional, soil based, non-heated greenhouse, at greenhouse {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "tomato-greenhouse-eu", - "name": "Tomato, fresh grade {ES}| tomato production, fresh grade, in unheated greenhouse | Cut-off, U - Copied from Ecoinvent U", - "displayName": "Tomate UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003115743", - "system_description": "Ecoinvent v3 - Copied from Ecoinvent", "categories": ["ingredient"], "comment": "Yield = 165000.0 kg/haOutput of tomato, fresh grade, produced for direct human consumption.\nProduction Volume Amount: 4255320576", - "source": "Agribalyse 3.1.1", + "displayName": "Tomate UE Conv.", + "id": "tomato-greenhouse-eu", + "identifier": "AGRIBALU000000003115743", "impacts": { "acd": 0, "cch": 0, @@ -4449,20 +4445,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 75.84811435164055, - "ecs": 107.55272230490945 - } + "ecs": 107.55272230490945, + "pef": 75.84811435164055 + }, + "name": "Tomato, fresh grade {ES}| tomato production, fresh grade, in unheated greenhouse | Cut-off, U - Copied from Ecoinvent U", + "source": "Agribalyse 3.1.1", + "system_description": "Ecoinvent v3 - Copied from Ecoinvent", + "unit": "kg" }, { - "id": "apricot-fr", - "name": "Apricot {FR}| apricot production | Cut-off, U - Adapted from Ecoinvent U", - "displayName": "Abricot FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003100510", - "system_description": "Ecoinvent v3 - Copied from Ecoinvent", "categories": ["ingredient"], "comment": "Reference flow: Yield = 20000 kg/ha table fruit quality\nProduction Volume Amount: 171400752", - "source": "Agribalyse 3.1.1", + "displayName": "Abricot FR Conv.", + "id": "apricot-fr", + "identifier": "AGRIBALU000000003100510", "impacts": { "acd": 0, "cch": 0, @@ -4483,20 +4479,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 38.923787461868606, - "ecs": 108.59904581833044 - } - }, - { - "id": "apricot-eu", + "ecs": 108.59904581833044, + "pef": 38.923787461868606 + }, "name": "Apricot {FR}| apricot production | Cut-off, U - Adapted from Ecoinvent U", - "displayName": "Abricot UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003100510", + "source": "Agribalyse 3.1.1", "system_description": "Ecoinvent v3 - Copied from Ecoinvent", + "unit": "kg" + }, + { "categories": ["ingredient"], "comment": "Reference flow: Yield = 20000 kg/ha table fruit quality\nProduction Volume Amount: 171400752", - "source": "Agribalyse 3.1.1", + "displayName": "Abricot UE Conv.", + "id": "apricot-eu", + "identifier": "AGRIBALU000000003100510", "impacts": { "acd": 0, "cch": 0, @@ -4517,20 +4513,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 38.923787461868606, - "ecs": 108.59904581833044 - } + "ecs": 108.59904581833044, + "pef": 38.923787461868606 + }, + "name": "Apricot {FR}| apricot production | Cut-off, U - Adapted from Ecoinvent U", + "source": "Agribalyse 3.1.1", + "system_description": "Ecoinvent v3 - Copied from Ecoinvent", + "unit": "kg" }, { - "id": "hazelnut-non-eu", - "name": "Hazelnut, in shell, at farm {TR} - Adapted from WFLDB U", - "displayName": "Noisette avec coque Hors UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003107313", - "system_description": "", "categories": ["ingredient"], "comment": "FAOstats average 2013-2017", - "source": "Agribalyse 3.1.1", + "displayName": "Noisette avec coque Hors UE Conv.", + "id": "hazelnut-non-eu", + "identifier": "AGRIBALU000000003107313", "impacts": { "acd": 0, "cch": 0, @@ -4551,20 +4547,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 383.07620990473555, - "ecs": 480.03446716210834 - } + "ecs": 480.03446716210834, + "pef": 383.07620990473555 + }, + "name": "Hazelnut, in shell, at farm {TR} - Adapted from WFLDB U", + "source": "Agribalyse 3.1.1", + "system_description": "", + "unit": "kg" }, { - "id": "hazelnut-eu", - "name": "Hazelnut, in shell, at farm {IT} - Adapted from WFLDB U", - "displayName": "Noisette avec coque UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003107312", - "system_description": "", "categories": ["ingredient"], "comment": "FAOstats average 2013 - 2017", - "source": "Agribalyse 3.1.1", + "displayName": "Noisette avec coque UE Conv.", + "id": "hazelnut-eu", + "identifier": "AGRIBALU000000003107312", "impacts": { "acd": 0, "cch": 0, @@ -4585,20 +4581,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 482.7516552055489, - "ecs": 673.6431190066502 - } + "ecs": 673.6431190066502, + "pef": 482.7516552055489 + }, + "name": "Hazelnut, in shell, at farm {IT} - Adapted from WFLDB U", + "source": "Agribalyse 3.1.1", + "system_description": "", + "unit": "kg" }, { - "id": "hazelnut-unshelled-eu", - "name": "Hazelnut, unshelled, at plant {IT} U", - "displayName": "Noisette décortiquée UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003107318", - "system_description": "", "categories": ["ingredient"], "comment": "Dataset of the shelling of hazelnut in shell in IT. The dataset includes the production of hazelnut in shell in Turkey and unshelling process. Energy consumption are not considered. 2kg of hazelnut in shell are needed to produce 1kg of hazelnut unshelled and 1kg of hazelnut hulls. \nSource : Hazelnuts, unshelled, at processing/FR U, from AGB 3.0. All impact are allocated to Hazelnut, unshelled.", - "source": "Agribalyse 3.1.1", + "displayName": "Noisette décortiquée UE Conv.", + "id": "hazelnut-unshelled-eu", + "identifier": "AGRIBALU000000003107318", "impacts": { "acd": 0, "cch": 0, @@ -4619,20 +4615,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 977.5935816137436, - "ecs": 1365.7952063414727 - } + "ecs": 1365.7952063414727, + "pef": 977.5935816137436 + }, + "name": "Hazelnut, unshelled, at plant {IT} U", + "source": "Agribalyse 3.1.1", + "system_description": "", + "unit": "kg" }, { - "id": "hazelnut-unshelled-non-eu", - "name": "Hazelnut, unshelled, at plant {TR} U", - "displayName": "Noisette décortiquée Hors UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003107319", - "system_description": "", "categories": ["ingredient"], "comment": "Dataset of the shelling of hazelnut in shell. Energy consumption are not considered. 2kg of hazelnut in shell are needed to produce 1kg of hazelnut unshelled and 1kg of hazelnut hulls. \nSource : Hazelnuts, unshelled, at processing/FR U, from AGB 3.0. All impact are allocated to Hazelnut, unshelled.", - "source": "Agribalyse 3.1.1", + "displayName": "Noisette décortiquée Hors UE Conv.", + "id": "hazelnut-unshelled-non-eu", + "identifier": "AGRIBALU000000003107319", "impacts": { "acd": 0, "cch": 0, @@ -4653,20 +4649,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 778.242691026176, - "ecs": 978.5779026716257 - } + "ecs": 978.5779026716257, + "pef": 778.242691026176 + }, + "name": "Hazelnut, unshelled, at plant {TR} U", + "source": "Agribalyse 3.1.1", + "system_description": "", + "unit": "kg" }, { - "id": "artichoke-fr", - "name": "Cauliflower, conventional, national average, at farm gate {FR} U", - "displayName": "Artichaut FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003102661", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Artichaut FR Conv.", + "id": "artichoke-fr", + "identifier": "AGRIBALU000000003102661", "impacts": { "acd": 0, "cch": 0, @@ -4687,20 +4683,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 35.76407596678012, - "ecs": 36.68427008586407 - } + "ecs": 36.68427008586407, + "pef": 35.76407596678012 + }, + "name": "Cauliflower, conventional, national average, at farm gate {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "artichoke-organic", - "name": "Cauliflower, organic 2023, national average, at farm gate {FR} U", - "displayName": "Artichaut FR ou UE ou Hors UE Bio", - "unit": "kilogram", - "identifier": "artichoke-organic", - "system_description": "", "categories": ["ingredient"], "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "source": "Ginko", + "displayName": "Artichaut FR ou UE ou Hors UE Bio", + "id": "artichoke-organic", + "identifier": "artichoke-organic", "impacts": { "acd": 0, "cch": 0, @@ -4721,20 +4717,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 38.77766977404584, - "ecs": 31.775500033680625 - } + "ecs": 31.775500033680625, + "pef": 38.77766977404584 + }, + "name": "Cauliflower, organic 2023, national average, at farm gate {FR} U", + "source": "Ginko", + "system_description": "", + "unit": "kg" }, { - "id": "cauliflower-organic", - "name": "Cauliflower, winter, organic, at farm gate {FR} U", - "displayName": "Chou-fleur FR ou UE ou Hors UE Bio", - "unit": "kilogram", - "identifier": "AGRIBALU000024985200052", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Chou-fleur FR ou UE ou Hors UE Bio", + "id": "cauliflower-organic", + "identifier": "AGRIBALU000024985200052", "impacts": { "acd": 0, "cch": 0, @@ -4755,20 +4751,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 45.64929474214634, - "ecs": 38.00111644532398 - } + "ecs": 38.00111644532398, + "pef": 45.64929474214634 + }, + "name": "Cauliflower, winter, organic, at farm gate {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "cauliflower-fr", - "name": "Cauliflower, winter, conventional, at farm gate {FR} U", - "displayName": "Chou-fleur FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000024985200045", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Chou-fleur FR Conv.", + "id": "cauliflower-fr", + "identifier": "AGRIBALU000024985200045", "impacts": { "acd": 0, "cch": 0, @@ -4789,20 +4785,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 36.4655093709705, - "ecs": 37.3791875173583 - } + "ecs": 37.3791875173583, + "pef": 36.4655093709705 + }, + "name": "Cauliflower, winter, conventional, at farm gate {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "leek-fr", - "name": "Leek, national average, at plant {FR} U", - "displayName": "Poireau FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003108547", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Poireau FR Conv.", + "id": "leek-fr", + "identifier": "AGRIBALU000000003108547", "impacts": { "acd": 0, "cch": 0, @@ -4823,20 +4819,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 42.51716224650336, - "ecs": 59.76112500061345 - } + "ecs": 59.76112500061345, + "pef": 42.51716224650336 + }, + "name": "Leek, national average, at plant {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "beetroot-fr", - "name": "Carrot, conventional, national average, at farm gate {FR} U", - "displayName": "Betterave rouge FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003102592", - "system_description": "", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Betterave rouge FR Conv.", + "id": "beetroot-fr", + "identifier": "AGRIBALU000000003102592", "impacts": { "acd": 0, "cch": 0, @@ -4857,20 +4853,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 17.81850610595258, - "ecs": 64.98479572456807 - } - }, - { - "id": "turnip-fr", + "ecs": 64.98479572456807, + "pef": 17.81850610595258 + }, "name": "Carrot, conventional, national average, at farm gate {FR} U", - "displayName": "Navet FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003102592", + "source": "Agribalyse 3.1.1", "system_description": "", + "unit": "kg" + }, + { "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Navet FR Conv.", + "id": "turnip-fr", + "identifier": "AGRIBALU000000003102592", "impacts": { "acd": 0, "cch": 0, @@ -4891,20 +4887,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 17.81850610595258, - "ecs": 64.98479572456807 - } + "ecs": 64.98479572456807, + "pef": 17.81850610595258 + }, + "name": "Carrot, conventional, national average, at farm gate {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "", + "unit": "kg" }, { - "id": "turnip-eu", - "name": "Carrot {NL}| carrot production | Cut-off, U - Adapted from Ecoinvent U", - "displayName": "Navet UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003102563", - "system_description": "Ecoinvent v3 - Copied from Ecoinvent", "categories": ["ingredient"], "comment": "Reference flow: Yield = 56880 kg/ha\nProduction Volume Amount: 508750016", - "source": "Agribalyse 3.1.1", + "displayName": "Navet UE Conv.", + "id": "turnip-eu", + "identifier": "AGRIBALU000000003102563", "impacts": { "acd": 0, "cch": 0, @@ -4925,20 +4921,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 19.724450306619094, - "ecs": 30.913629489638385 - } + "ecs": 30.913629489638385, + "pef": 19.724450306619094 + }, + "name": "Carrot {NL}| carrot production | Cut-off, U - Adapted from Ecoinvent U", + "source": "Agribalyse 3.1.1", + "system_description": "Ecoinvent v3 - Copied from Ecoinvent", + "unit": "kg" }, { - "id": "turnip-non-eu", - "name": "Carrot {RoW}| carrot production | Cut-off, U - Copied from Ecoinvent U", - "displayName": "Navet Hors UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003102564", - "system_description": "Ecoinvent v3 - Copied from Ecoinvent", "categories": ["ingredient"], "comment": "Production Volume Amount: 18370729984", - "source": "Agribalyse 3.1.1", + "displayName": "Navet Hors UE Conv.", + "id": "turnip-non-eu", + "identifier": "AGRIBALU000000003102564", "impacts": { "acd": 0, "cch": 0, @@ -4959,20 +4955,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 30.571496239023755, - "ecs": 38.398618742819814 - } - }, - { - "id": "chinese-cabbage-fr", - "name": "Cauliflower, winter, conventional, at farm gate {FR} U", - "displayName": "Chou chinois FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000024985200045", - "system_description": "AGRIBALYSE", + "ecs": 38.398618742819814, + "pef": 30.571496239023755 + }, + "name": "Carrot {RoW}| carrot production | Cut-off, U - Copied from Ecoinvent U", + "source": "Agribalyse 3.1.1", + "system_description": "Ecoinvent v3 - Copied from Ecoinvent", + "unit": "kg" + }, + { "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Chou chinois FR Conv.", + "id": "chinese-cabbage-fr", + "identifier": "AGRIBALU000024985200045", "impacts": { "acd": 0, "cch": 0, @@ -4993,20 +4989,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 36.4655093709705, - "ecs": 37.3791875173583 - } + "ecs": 37.3791875173583, + "pef": 36.4655093709705 + }, + "name": "Cauliflower, winter, conventional, at farm gate {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "chinese-cabbage-organic", - "name": "Chinese cabbage (nappa cabbage or bok choy), consumption mix, organic 2023 {FR} U", - "displayName": "Chou chinois FR ou UE ou Hors UE Bio", - "unit": "kilogram", - "identifier": "chinese-cabbage-organic", - "system_description": "", "categories": ["ingredient"], "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "source": "Ginko", + "displayName": "Chou chinois FR ou UE ou Hors UE Bio", + "id": "chinese-cabbage-organic", + "identifier": "chinese-cabbage-organic", "impacts": { "acd": 0, "cch": 0, @@ -5027,20 +5023,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 40.97632816660858, - "ecs": 33.9557672602755 - } + "ecs": 33.9557672602755, + "pef": 40.97632816660858 + }, + "name": "Chinese cabbage (nappa cabbage or bok choy), consumption mix, organic 2023 {FR} U", + "source": "Ginko", + "system_description": "", + "unit": "kg" }, { - "id": "white-cabbage-non-eu", - "name": "Cabbage white {RoW}| cabbage white production | Cut-off, U - Adapted from Ecoinvent U", - "displayName": "Chou blanc Hors UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003102347", - "system_description": "Ecoinvent v3 - Copied from Ecoinvent", "categories": ["ingredient"], "comment": "Production Volume Amount: 28512262144", - "source": "Agribalyse 3.1.1", + "displayName": "Chou blanc Hors UE Conv.", + "id": "white-cabbage-non-eu", + "identifier": "AGRIBALU000000003102347", "impacts": { "acd": 0, "cch": 0, @@ -5061,20 +5057,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 26.127393374521265, - "ecs": 38.07769049175316 - } + "ecs": 38.07769049175316, + "pef": 26.127393374521265 + }, + "name": "Cabbage white {RoW}| cabbage white production | Cut-off, U - Adapted from Ecoinvent U", + "source": "Agribalyse 3.1.1", + "system_description": "Ecoinvent v3 - Copied from Ecoinvent", + "unit": "kg" }, { - "id": "green-cabbage-fr", - "name": "Cauliflower, winter, conventional, at farm gate {FR} U", - "displayName": "Chou vert FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000024985200045", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Chou vert FR Conv.", + "id": "green-cabbage-fr", + "identifier": "AGRIBALU000024985200045", "impacts": { "acd": 0, "cch": 0, @@ -5095,20 +5091,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 36.4655093709705, - "ecs": 37.3791875173583 - } + "ecs": 37.3791875173583, + "pef": 36.4655093709705 + }, + "name": "Cauliflower, winter, conventional, at farm gate {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "green-cabbage-organic", - "name": "Cauliflower, winter, organic, at farm gate {FR} U", - "displayName": "Chou vert FR ou UE ou Hors UE Bio", - "unit": "kilogram", - "identifier": "AGRIBALU000024985200052", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Chou vert FR ou UE ou Hors UE Bio", + "id": "green-cabbage-organic", + "identifier": "AGRIBALU000024985200052", "impacts": { "acd": 0, "cch": 0, @@ -5129,20 +5125,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 45.64929474214634, - "ecs": 38.00111644532398 - } + "ecs": 38.00111644532398, + "pef": 45.64929474214634 + }, + "name": "Cauliflower, winter, organic, at farm gate {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "red-cabbage-non-eu", - "name": "Cabbage red {GLO}| production | Cut-off, U - Adapted from Ecoinvent U", - "displayName": "Chou rouge Hors UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003102346", - "system_description": "Ecoinvent v3 - Copied from Ecoinvent", "categories": ["ingredient"], "comment": "Production Volume Amount: 28983492608", - "source": "Agribalyse 3.1.1", + "displayName": "Chou rouge Hors UE Conv.", + "id": "red-cabbage-non-eu", + "identifier": "AGRIBALU000000003102346", "impacts": { "acd": 0, "cch": 0, @@ -5163,20 +5159,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 31.718925248227954, - "ecs": 43.48960193036811 - } + "ecs": 43.48960193036811, + "pef": 31.718925248227954 + }, + "name": "Cabbage red {GLO}| production | Cut-off, U - Adapted from Ecoinvent U", + "source": "Agribalyse 3.1.1", + "system_description": "Ecoinvent v3 - Copied from Ecoinvent", + "unit": "kg" }, { - "id": "shallot-fr", - "name": "Onion, national average, at farm {FR} U", - "displayName": "Echalote FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003110467", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Echalote FR Conv.", + "id": "shallot-fr", + "identifier": "AGRIBALU000000003110467", "impacts": { "acd": 0, "cch": 0, @@ -5197,20 +5193,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 18.376791757746535, - "ecs": 21.412666296293644 - } + "ecs": 21.412666296293644, + "pef": 18.376791757746535 + }, + "name": "Onion, national average, at farm {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "orange-eu", - "name": "Orange, fresh grade, at farm {ES} - Adapted from WFLDB U", - "displayName": "Orange UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003110507", - "system_description": "", "categories": ["ingredient"], "comment": "SPAIN", - "source": "Agribalyse 3.1.1", + "displayName": "Orange UE Conv.", + "id": "orange-eu", + "identifier": "AGRIBALU000000003110507", "impacts": { "acd": 0, "cch": 0, @@ -5231,20 +5227,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 85.43454887721842, - "ecs": 92.12680618672239 - } + "ecs": 92.12680618672239, + "pef": 85.43454887721842 + }, + "name": "Orange, fresh grade, at farm {ES} - Adapted from WFLDB U", + "source": "Agribalyse 3.1.1", + "system_description": "", + "unit": "kg" }, { - "id": "orange-non-eu", - "name": "Orange, fresh grade {ZA}| orange production, fresh grade | Cut-off, U - Adapted from Ecoinvent U", - "displayName": "Orange Hors UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003110506", - "system_description": "Ecoinvent v3 - Copied from Ecoinvent", "categories": ["ingredient"], "comment": "Orange, fresh grade, South African production. Output of orange, fresh grade, produced for direct human consumption.\nProduction Volume Amount: 1645182976", - "source": "Agribalyse 3.1.1", + "displayName": "Orange Hors UE Conv.", + "id": "orange-non-eu", + "identifier": "AGRIBALU000000003110506", "impacts": { "acd": 0, "cch": 0, @@ -5265,20 +5261,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 62.54290142386407, - "ecs": 73.33766164750413 - } + "ecs": 73.33766164750413, + "pef": 62.54290142386407 + }, + "name": "Orange, fresh grade {ZA}| orange production, fresh grade | Cut-off, U - Adapted from Ecoinvent U", + "source": "Agribalyse 3.1.1", + "system_description": "Ecoinvent v3 - Copied from Ecoinvent", + "unit": "kg" }, { - "id": "olive-eu", - "name": "Olive {ES}| olive production | Cut-off, U - Adapted from Ecoinvent U", - "displayName": "Olive UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003110400", - "system_description": "Ecoinvent v3 - Copied from Ecoinvent", "categories": ["ingredient"], "comment": "Reference flow: Yield = 5020.0 kg/ha table fruit quality\nProduction Volume Amount: 6459754496", - "source": "Agribalyse 3.1.1", + "displayName": "Olive UE Conv.", + "id": "olive-eu", + "identifier": "AGRIBALU000000003110400", "impacts": { "acd": 0, "cch": 0, @@ -5299,20 +5295,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 83.95926327121711, - "ecs": 86.79637154123564 - } + "ecs": 86.79637154123564, + "pef": 83.95926327121711 + }, + "name": "Olive {ES}| olive production | Cut-off, U - Adapted from Ecoinvent U", + "source": "Agribalyse 3.1.1", + "system_description": "Ecoinvent v3 - Copied from Ecoinvent", + "unit": "kg" }, { - "id": "rapeseed-fr", - "name": "Rape seed {FR}| production | Cut-off, U - Adapted from Ecoinvent U", - "displayName": "Colza FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003112430", - "system_description": "Ecoinvent v3 - Copied from Ecoinvent", "categories": ["ingredient"], "comment": "EcoSpold01Location=FR\nProduction Volume Amount: 4532871168", - "source": "Agribalyse 3.1.1", + "displayName": "Colza FR Conv.", + "id": "rapeseed-fr", + "identifier": "AGRIBALU000000003112430", "impacts": { "acd": 0, "cch": 0, @@ -5333,20 +5329,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 201.86389727905393, - "ecs": 363.49982562802563 - } + "ecs": 363.49982562802563, + "pef": 201.86389727905393 + }, + "name": "Rape seed {FR}| production | Cut-off, U - Adapted from Ecoinvent U", + "source": "Agribalyse 3.1.1", + "system_description": "Ecoinvent v3 - Copied from Ecoinvent", + "unit": "kg" }, { - "id": "rapeseed-eu", - "name": "Rapeseed, at farm {GLO} - Adapted from WFLDB U", - "displayName": "Colza UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003112456", - "system_description": "", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Colza UE Conv.", + "id": "rapeseed-eu", + "identifier": "AGRIBALU000000003112456", "impacts": { "acd": 0, "cch": 0, @@ -5367,20 +5363,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 270.45232551343884, - "ecs": 251.77037698736473 - } + "ecs": 251.77037698736473, + "pef": 270.45232551343884 + }, + "name": "Rapeseed, at farm {GLO} - Adapted from WFLDB U", + "source": "Agribalyse 3.1.1", + "system_description": "", + "unit": "kg" }, { - "id": "rapeseed-non-eu", - "name": "Rapeseed, at farm {CA} - Adapted from WFLDB U", - "displayName": "Colza Hors UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003112455", - "system_description": "", "categories": ["ingredient"], "comment": "CANADA", - "source": "Agribalyse 3.1.1", + "displayName": "Colza Hors UE Conv.", + "id": "rapeseed-non-eu", + "identifier": "AGRIBALU000000003112455", "impacts": { "acd": 0, "cch": 0, @@ -5401,20 +5397,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 290.7589180810637, - "ecs": 233.19899119754137 - } + "ecs": 233.19899119754137, + "pef": 290.7589180810637 + }, + "name": "Rapeseed, at farm {CA} - Adapted from WFLDB U", + "source": "Agribalyse 3.1.1", + "system_description": "", + "unit": "kg" }, { - "id": "pistachio-non-eu", - "name": "Peanut {CN}| peanut production | Cut-off, U - Adapted from Ecoinvent U", - "displayName": "Pistache avec coque Hors UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003110959", - "system_description": "Ecoinvent v3 - Copied from Ecoinvent", "categories": ["ingredient"], "comment": "Reference flow: Yield = 3470 kg/ha\nProduction Volume Amount: 15861245952", - "source": "Agribalyse 3.1.1", + "displayName": "Pistache avec coque Hors UE Conv.", + "id": "pistachio-non-eu", + "identifier": "AGRIBALU000000003110959", "impacts": { "acd": 0, "cch": 0, @@ -5435,20 +5431,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 213.15904528078175, - "ecs": 181.01230872671428 - } + "ecs": 181.01230872671428, + "pef": 213.15904528078175 + }, + "name": "Peanut {CN}| peanut production | Cut-off, U - Adapted from Ecoinvent U", + "source": "Agribalyse 3.1.1", + "system_description": "Ecoinvent v3 - Copied from Ecoinvent", + "unit": "kg" }, { - "id": "peanut-non-eu", - "name": "Peanut {IN}| peanut production | Cut-off, U - Adapted from Ecoinvent U", - "displayName": "Arachide avec coque Hors UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003110960", - "system_description": "Ecoinvent v3 - Copied from Ecoinvent", "categories": ["ingredient"], "comment": "Reference flow: Yield = 1000 kg/ha\nProduction Volume Amount: 6338124800", - "source": "Agribalyse 3.1.1", + "displayName": "Arachide avec coque Hors UE Conv.", + "id": "peanut-non-eu", + "identifier": "AGRIBALU000000003110960", "impacts": { "acd": 0, "cch": 0, @@ -5469,20 +5465,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 460.34794435559434, - "ecs": 391.9975033813963 - } + "ecs": 391.9975033813963, + "pef": 460.34794435559434 + }, + "name": "Peanut {IN}| peanut production | Cut-off, U - Adapted from Ecoinvent U", + "source": "Agribalyse 3.1.1", + "system_description": "Ecoinvent v3 - Copied from Ecoinvent", + "unit": "kg" }, { - "id": "olive-oil-eu", - "name": "Extra Virgin Olive Oil, consumption mix {FR} U", - "displayName": "Huile d'olive UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003105719", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "Data representative of virgin olive oil consumption in France. Virgin Olive oil consumption mix is determined from average FAOSTAT data over 4 years (2014-2018) from production and importation of virgin olive oil in France. Average consumption mix for virgin olive oil in France is : Spain, 65%, Italy, 20%, others origins, 15%. The coverage market mix of virgin olive oil consumed in France is 85%.", - "source": "Agribalyse 3.1.1", + "displayName": "Huile d'olive UE Conv.", + "id": "olive-oil-eu", + "identifier": "AGRIBALU000000003105719", "impacts": { "acd": 0, "cch": 0, @@ -5503,20 +5499,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 531.7720661349202, - "ecs": 538.9219120994726 - } + "ecs": 538.9219120994726, + "pef": 531.7720661349202 + }, + "name": "Extra Virgin Olive Oil, consumption mix {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "avocado-non-eu", - "name": "Avocado {GLO}| production | Cut-off, U - Adapted from Ecoinvent U", - "displayName": "Avocat Hors UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003100748", - "system_description": "Ecoinvent v3 - Copied from Ecoinvent", "categories": ["ingredient"], "comment": "Production Volume Amount: 3840904960", - "source": "Agribalyse 3.1.1", + "displayName": "Avocat Hors UE Conv.", + "id": "avocado-non-eu", + "identifier": "AGRIBALU000000003100748", "impacts": { "acd": 0, "cch": 0, @@ -5537,20 +5533,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 242.63543961664107, - "ecs": 208.91102179612872 - } + "ecs": 208.91102179612872, + "pef": 242.63543961664107 + }, + "name": "Avocado {GLO}| production | Cut-off, U - Adapted from Ecoinvent U", + "source": "Agribalyse 3.1.1", + "system_description": "Ecoinvent v3 - Copied from Ecoinvent", + "unit": "kg" }, { - "id": "chickpea-fr", - "name": "Winter pea, conventional, 15% moisture, at farm gate {FR} U", - "displayName": "Pois chiche FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000024985200192", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Pois chiche FR Conv.", + "id": "chickpea-fr", + "identifier": "AGRIBALU000024985200192", "impacts": { "acd": 0, "cch": 0, @@ -5571,20 +5567,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 65.58800107029508, - "ecs": 115.68533895585978 - } + "ecs": 115.68533895585978, + "pef": 65.58800107029508 + }, + "name": "Winter pea, conventional, 15% moisture, at farm gate {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "sunflower-fr", - "name": "Sunflower, at farm {FR} - Adapted from WFLDB U", - "displayName": "Tournesol FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003115216", - "system_description": "", "categories": ["ingredient"], "comment": "FRANCE", - "source": "Agribalyse 3.1.1", + "displayName": "Tournesol FR Conv.", + "id": "sunflower-fr", + "identifier": "AGRIBALU000000003115216", "impacts": { "acd": 0, "cch": 0, @@ -5605,20 +5601,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 220.0231686987685, - "ecs": 313.8568831543747 - } + "ecs": 313.8568831543747, + "pef": 220.0231686987685 + }, + "name": "Sunflower, at farm {FR} - Adapted from WFLDB U", + "source": "Agribalyse 3.1.1", + "system_description": "", + "unit": "kg" }, { - "id": "sunflower-eu", - "name": "Sunflower, at farm {HU} - Adapted from WFLDB U", - "displayName": "Tournesol UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003115218", - "system_description": "", "categories": ["ingredient"], "comment": "HUNGARY", - "source": "Agribalyse 3.1.1", + "displayName": "Tournesol UE Conv.", + "id": "sunflower-eu", + "identifier": "AGRIBALU000000003115218", "impacts": { "acd": 0, "cch": 0, @@ -5639,20 +5635,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 113.52571934510965, - "ecs": 359.14720087954794 - } + "ecs": 359.14720087954794, + "pef": 113.52571934510965 + }, + "name": "Sunflower, at farm {HU} - Adapted from WFLDB U", + "source": "Agribalyse 3.1.1", + "system_description": "", + "unit": "kg" }, { - "id": "sunflower-non-eu", - "name": "Sunflower, at farm {GLO} - Adapted from WFLDB U", - "displayName": "Tournesol Hors UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003115217", - "system_description": "", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Tournesol Hors UE Conv.", + "id": "sunflower-non-eu", + "identifier": "AGRIBALU000000003115217", "impacts": { "acd": 0, "cch": 0, @@ -5673,20 +5669,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 157.8379333318282, - "ecs": 339.86724525691193 - } + "ecs": 339.86724525691193, + "pef": 157.8379333318282 + }, + "name": "Sunflower, at farm {GLO} - Adapted from WFLDB U", + "source": "Agribalyse 3.1.1", + "system_description": "", + "unit": "kg" }, - { - "id": "kiwi-fr", - "name": "Kiwi FR, conventional, national average, at orchard {FR} U", - "displayName": "Kiwi FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003108090", - "system_description": "AGRIBALYSE", + { "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Kiwi FR Conv.", + "id": "kiwi-fr", + "identifier": "AGRIBALU000000003108090", "impacts": { "acd": 0, "cch": 0, @@ -5707,20 +5703,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 62.366545846815505, - "ecs": 57.78976770749293 - } + "ecs": 57.78976770749293, + "pef": 62.366545846815505 + }, + "name": "Kiwi FR, conventional, national average, at orchard {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "kiwi-eu", - "name": "Kiwi {GLO}| production | Cut-off, U - Adapted from Ecoinvent U", - "displayName": "Kiwi UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003108089", - "system_description": "Ecoinvent v3 - Copied from Ecoinvent", "categories": ["ingredient"], "comment": "Production Volume Amount: 1350206976", - "source": "Agribalyse 3.1.1", + "displayName": "Kiwi UE Conv.", + "id": "kiwi-eu", + "identifier": "AGRIBALU000000003108089", "impacts": { "acd": 0, "cch": 0, @@ -5741,20 +5737,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 69.789234429814, - "ecs": 63.14378360175055 - } - }, - { - "id": "kiwi-non-eu", + "ecs": 63.14378360175055, + "pef": 69.789234429814 + }, "name": "Kiwi {GLO}| production | Cut-off, U - Adapted from Ecoinvent U", - "displayName": "Kiwi Hors UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003108089", + "source": "Agribalyse 3.1.1", "system_description": "Ecoinvent v3 - Copied from Ecoinvent", + "unit": "kg" + }, + { "categories": ["ingredient"], "comment": "Production Volume Amount: 1350206976", - "source": "Agribalyse 3.1.1", + "displayName": "Kiwi Hors UE Conv.", + "id": "kiwi-non-eu", + "identifier": "AGRIBALU000000003108089", "impacts": { "acd": 0, "cch": 0, @@ -5775,20 +5771,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 69.789234429814, - "ecs": 63.14378360175055 - } + "ecs": 63.14378360175055, + "pef": 69.789234429814 + }, + "name": "Kiwi {GLO}| production | Cut-off, U - Adapted from Ecoinvent U", + "source": "Agribalyse 3.1.1", + "system_description": "Ecoinvent v3 - Copied from Ecoinvent", + "unit": "kg" }, { - "id": "mango-non-eu", - "name": "Mango, conventional, Val de San Francisco, at orchard {BR} U", - "displayName": "Mangue Hors UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003109086", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "BRAZIL", - "source": "Agribalyse 3.1.1", + "displayName": "Mangue Hors UE Conv.", + "id": "mango-non-eu", + "identifier": "AGRIBALU000000003109086", "impacts": { "acd": 0, "cch": 0, @@ -5809,20 +5805,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 37.79527562631753, - "ecs": 57.28359710484723 - } + "ecs": 57.28359710484723, + "pef": 37.79527562631753 + }, + "name": "Mango, conventional, Val de San Francisco, at orchard {BR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "spinach-non-eu", - "name": "Spinach {GLO}| production | Cut-off, U - Adapted from Ecoinvent U", - "displayName": "Epinard Hors UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003114717", - "system_description": "Ecoinvent v3 - Copied from Ecoinvent", "categories": ["ingredient"], "comment": "Production Volume Amount: 18088361984", - "source": "Agribalyse 3.1.1", + "displayName": "Epinard Hors UE Conv.", + "id": "spinach-non-eu", + "identifier": "AGRIBALU000000003114717", "impacts": { "acd": 0, "cch": 0, @@ -5843,20 +5839,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 16.060802619719126, - "ecs": 45.63017702251564 - } + "ecs": 45.63017702251564, + "pef": 16.060802619719126 + }, + "name": "Spinach {GLO}| production | Cut-off, U - Adapted from Ecoinvent U", + "source": "Agribalyse 3.1.1", + "system_description": "Ecoinvent v3 - Copied from Ecoinvent", + "unit": "kg" }, { - "id": "fennel-fr", - "name": "Fennel {GLO}| production | Cut-off, U - Adapted from Ecoinvent U", - "displayName": "Fenouil FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003105790", - "system_description": "Ecoinvent v3 - Copied from Ecoinvent", "categories": ["ingredient"], "comment": "Production Volume Amount: 240114696192", - "source": "Agribalyse 3.1.1", + "displayName": "Fenouil FR Conv.", + "id": "fennel-fr", + "identifier": "AGRIBALU000000003105790", "impacts": { "acd": 0, "cch": 0, @@ -5877,20 +5873,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 56.5640472642581, - "ecs": 114.44232058920515 - } - }, - { - "id": "fennel-eu", + "ecs": 114.44232058920515, + "pef": 56.5640472642581 + }, "name": "Fennel {GLO}| production | Cut-off, U - Adapted from Ecoinvent U", - "displayName": "Fenouil UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003105790", + "source": "Agribalyse 3.1.1", "system_description": "Ecoinvent v3 - Copied from Ecoinvent", + "unit": "kg" + }, + { "categories": ["ingredient"], "comment": "Production Volume Amount: 240114696192", - "source": "Agribalyse 3.1.1", + "displayName": "Fenouil UE Conv.", + "id": "fennel-eu", + "identifier": "AGRIBALU000000003105790", "impacts": { "acd": 0, "cch": 0, @@ -5911,20 +5907,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 56.5640472642581, - "ecs": 114.44232058920515 - } + "ecs": 114.44232058920515, + "pef": 56.5640472642581 + }, + "name": "Fennel {GLO}| production | Cut-off, U - Adapted from Ecoinvent U", + "source": "Agribalyse 3.1.1", + "system_description": "Ecoinvent v3 - Copied from Ecoinvent", + "unit": "kg" }, { - "id": "broccoli-eu", - "name": "Broccoli {GLO}| production | Cut-off, U - Adapted from Ecoinvent U", - "displayName": "Brocoli UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003102101", - "system_description": "Ecoinvent v3 - Copied from Ecoinvent", "categories": ["ingredient"], "comment": "Production Volume Amount: 18174699520", - "source": "Agribalyse 3.1.1", + "displayName": "Brocoli UE Conv.", + "id": "broccoli-eu", + "identifier": "AGRIBALU000000003102101", "impacts": { "acd": 0, "cch": 0, @@ -5945,20 +5941,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 48.320666592595835, - "ecs": 50.32044745743751 - } + "ecs": 50.32044745743751, + "pef": 48.320666592595835 + }, + "name": "Broccoli {GLO}| production | Cut-off, U - Adapted from Ecoinvent U", + "source": "Agribalyse 3.1.1", + "system_description": "Ecoinvent v3 - Copied from Ecoinvent", + "unit": "kg" }, { - "id": "blueberry-non-eu", - "name": "Blueberry, at farm {CA} - Adapted from WFLDB U", - "displayName": "Myrtille Hors UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003101680", - "system_description": "", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Myrtille Hors UE Conv.", + "id": "blueberry-non-eu", + "identifier": "AGRIBALU000000003101680", "impacts": { "acd": 0, "cch": 0, @@ -5979,20 +5975,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 229.17723317759962, - "ecs": 929.4161817810746 - } + "ecs": 929.4161817810746, + "pef": 229.17723317759962 + }, + "name": "Blueberry, at farm {CA} - Adapted from WFLDB U", + "source": "Agribalyse 3.1.1", + "system_description": "", + "unit": "kg" }, { - "id": "raspberry-eu", - "name": "Raspberry, at farm {RS} - Adapted from WFLDB U", - "displayName": "Framboise UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003112470", - "system_description": "", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Framboise UE Conv.", + "id": "raspberry-eu", + "identifier": "AGRIBALU000000003112470", "impacts": { "acd": 0, "cch": 0, @@ -6013,20 +6009,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 240.19403491335868, - "ecs": 446.8283295531803 - } + "ecs": 446.8283295531803, + "pef": 240.19403491335868 + }, + "name": "Raspberry, at farm {RS} - Adapted from WFLDB U", + "source": "Agribalyse 3.1.1", + "system_description": "", + "unit": "kg" }, { - "id": "strawberry-eu", - "name": "Strawberry for processing, open field, conventional, at farm gate {ES} U", - "displayName": "Fraise UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000024985200014", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Fraise UE Conv.", + "id": "strawberry-eu", + "identifier": "AGRIBALU000024985200014", "impacts": { "acd": 0, "cch": 0, @@ -6047,20 +6043,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 64.04592650383395, - "ecs": 82.20013540076332 - } + "ecs": 82.20013540076332, + "pef": 64.04592650383395 + }, + "name": "Strawberry for processing, open field, conventional, at farm gate {ES} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "strawberry-non-eu", - "name": "Strawberry for processing, open field, conventional, at farm gate {MA} U", - "displayName": "Fraise Hors UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000024985200015", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Fraise Hors UE Conv.", + "id": "strawberry-non-eu", + "identifier": "AGRIBALU000024985200015", "impacts": { "acd": 0, "cch": 0, @@ -6081,20 +6077,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 53.81072558615532, - "ecs": 73.16460011899034 - } + "ecs": 73.16460011899034, + "pef": 53.81072558615532 + }, + "name": "Strawberry for processing, open field, conventional, at farm gate {MA} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "banana-wi", - "name": "Banana, mixed production, West Indies, at farm gate {WI} U", - "displayName": "Banane hors UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003100930", - "system_description": "", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Banane hors UE Conv.", + "id": "banana-wi", + "identifier": "AGRIBALU000000003100930", "impacts": { "acd": 0, "cch": 0, @@ -6115,20 +6111,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 44.14135180247622, - "ecs": 70.56312226998747 - } + "ecs": 70.56312226998747, + "pef": 44.14135180247622 + }, + "name": "Banana, mixed production, West Indies, at farm gate {WI} U", + "source": "Agribalyse 3.1.1", + "system_description": "", + "unit": "kg" }, { - "id": "banana-non-eu", - "name": "Banana, at farm {GLO} - Adapted from WFLDB U", - "displayName": "Banane Hors UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003100924", - "system_description": "", "categories": ["ingredient"], "comment": "Average of modeled countries (Ecuador, Costa Rica, Colombia, India) based on market share of global export. The four countries modeled represent 50% of the global export: Ecuador (29.5%), Costa Rica (10.5%), Colombia (9.7%), India (0.35%) (FAOSTAT, 2010)\nIndia is considered since it is a major banana producer, with 29% of global production.", - "source": "Agribalyse 3.1.1", + "displayName": "Banane Hors UE Conv.", + "id": "banana-non-eu", + "identifier": "AGRIBALU000000003100924", "impacts": { "acd": 0, "cch": 0, @@ -6149,20 +6145,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 43.63394511587758, - "ecs": 82.18896908055615 - } + "ecs": 82.18896908055615, + "pef": 43.63394511587758 + }, + "name": "Banana, at farm {GLO} - Adapted from WFLDB U", + "source": "Agribalyse 3.1.1", + "system_description": "", + "unit": "kg" }, { - "id": "cucumber-fr-inseason", - "name": "Tomato, medium size, conventional, soil based, non-heated greenhouse, at greenhouse {FR} U", - "displayName": "Concombre de saison FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003115753", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Concombre de saison FR Conv.", + "id": "cucumber-fr-inseason", + "identifier": "AGRIBALU000000003115753", "impacts": { "acd": 0, "cch": 0, @@ -6183,20 +6179,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 20.25467418923414, - "ecs": 18.408796254149188 - } + "ecs": 18.408796254149188, + "pef": 20.25467418923414 + }, + "name": "Tomato, medium size, conventional, soil based, non-heated greenhouse, at greenhouse {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "cucumber-fr-offseason", - "name": "Cucumber {GLO}| cucumber production, in heated greenhouse | Cut-off, U - Adapted from Ecoinvent U", - "displayName": "Concombre hors saison FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003104392", - "system_description": "Ecoinvent v3 - Copied from Ecoinvent", "categories": ["ingredient"], "comment": "Production Volume Amount: 57559834624", - "source": "Agribalyse 3.1.1", + "displayName": "Concombre hors saison FR Conv.", + "id": "cucumber-fr-offseason", + "identifier": "AGRIBALU000000003104392", "impacts": { "acd": 0, "cch": 0, @@ -6217,20 +6213,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 223.3304294698721, - "ecs": 205.7208235282172 - } - }, - { - "id": "cucumber-eu", + "ecs": 205.7208235282172, + "pef": 223.3304294698721 + }, "name": "Cucumber {GLO}| cucumber production, in heated greenhouse | Cut-off, U - Adapted from Ecoinvent U", - "displayName": "Concombre hors saison UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003104392", + "source": "Agribalyse 3.1.1", "system_description": "Ecoinvent v3 - Copied from Ecoinvent", + "unit": "kg" + }, + { "categories": ["ingredient"], "comment": "Production Volume Amount: 57559834624", - "source": "Agribalyse 3.1.1", + "displayName": "Concombre hors saison UE Conv.", + "id": "cucumber-eu", + "identifier": "AGRIBALU000000003104392", "impacts": { "acd": 0, "cch": 0, @@ -6251,20 +6247,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 223.3304294698721, - "ecs": 205.7208235282172 - } + "ecs": 205.7208235282172, + "pef": 223.3304294698721 + }, + "name": "Cucumber {GLO}| cucumber production, in heated greenhouse | Cut-off, U - Adapted from Ecoinvent U", + "source": "Agribalyse 3.1.1", + "system_description": "Ecoinvent v3 - Copied from Ecoinvent", + "unit": "kg" }, { - "id": "strawberry-fr-inseason", - "name": "Strawberry, open field, conventional, at farm gate {FR} U", - "displayName": "Fraise de saison FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000024985200146", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Fraise de saison FR Conv.", + "id": "strawberry-fr-inseason", + "identifier": "AGRIBALU000024985200146", "impacts": { "acd": 0, "cch": 0, @@ -6285,20 +6281,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 52.60887776331667, - "ecs": 72.10774008058554 - } + "ecs": 72.10774008058554, + "pef": 52.60887776331667 + }, + "name": "Strawberry, open field, conventional, at farm gate {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "strawberry-fr-offseason", - "name": "Strawberry, soilless protected crops, heated, conventional, at farm gate {FR} U", - "displayName": "Fraise hors saison FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003115025", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Fraise hors saison FR Conv.", + "id": "strawberry-fr-offseason", + "identifier": "AGRIBALU000000003115025", "impacts": { "acd": 0, "cch": 0, @@ -6319,20 +6315,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 274.148644048218, - "ecs": 292.94609530081806 - } + "ecs": 292.94609530081806, + "pef": 274.148644048218 + }, + "name": "Strawberry, soilless protected crops, heated, conventional, at farm gate {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "celery-fr", - "name": "Celery {GLO}| 675 production | Cut-off, U - Adapted from Ecoinvent U", - "displayName": "Céleri branche FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003102720", - "system_description": "Ecoinvent v3 - Copied from Ecoinvent", "categories": ["ingredient"], "comment": "Production Volume Amount: 8969982976", - "source": "Agribalyse 3.1.1", + "displayName": "Céleri branche FR Conv.", + "id": "celery-fr", + "identifier": "AGRIBALU000000003102720", "impacts": { "acd": 0, "cch": 0, @@ -6353,20 +6349,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 44.55037087096618, - "ecs": 49.24006458675971 - } - }, - { - "id": "celery-eu", + "ecs": 49.24006458675971, + "pef": 44.55037087096618 + }, "name": "Celery {GLO}| 675 production | Cut-off, U - Adapted from Ecoinvent U", - "displayName": "Céleri branche UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003102720", + "source": "Agribalyse 3.1.1", "system_description": "Ecoinvent v3 - Copied from Ecoinvent", + "unit": "kg" + }, + { "categories": ["ingredient"], "comment": "Production Volume Amount: 8969982976", - "source": "Agribalyse 3.1.1", + "displayName": "Céleri branche UE Conv.", + "id": "celery-eu", + "identifier": "AGRIBALU000000003102720", "impacts": { "acd": 0, "cch": 0, @@ -6387,20 +6383,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 44.55037087096618, - "ecs": 49.24006458675971 - } + "ecs": 49.24006458675971, + "pef": 44.55037087096618 + }, + "name": "Celery {GLO}| 675 production | Cut-off, U - Adapted from Ecoinvent U", + "source": "Agribalyse 3.1.1", + "system_description": "Ecoinvent v3 - Copied from Ecoinvent", + "unit": "kg" }, { - "id": "celeriac-fr", - "name": "Carrot, conventional, national average, at farm gate {FR} U", - "displayName": "Céleri-rave FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003102592", - "system_description": "", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Céleri-rave FR Conv.", + "id": "celeriac-fr", + "identifier": "AGRIBALU000000003102592", "impacts": { "acd": 0, "cch": 0, @@ -6421,20 +6417,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 17.81850610595258, - "ecs": 64.98479572456807 - } + "ecs": 64.98479572456807, + "pef": 17.81850610595258 + }, + "name": "Carrot, conventional, national average, at farm gate {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "", + "unit": "kg" }, { - "id": "celeriac-eu", - "name": "Carrot {NL}| carrot production | Cut-off, U - Adapted from Ecoinvent U", - "displayName": "Céleri-rave UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003102563", - "system_description": "Ecoinvent v3 - Copied from Ecoinvent", "categories": ["ingredient"], "comment": "Reference flow: Yield = 56880 kg/ha\nProduction Volume Amount: 508750016", - "source": "Agribalyse 3.1.1", + "displayName": "Céleri-rave UE Conv.", + "id": "celeriac-eu", + "identifier": "AGRIBALU000000003102563", "impacts": { "acd": 0, "cch": 0, @@ -6455,20 +6451,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 19.724450306619094, - "ecs": 30.913629489638385 - } + "ecs": 30.913629489638385, + "pef": 19.724450306619094 + }, + "name": "Carrot {NL}| carrot production | Cut-off, U - Adapted from Ecoinvent U", + "source": "Agribalyse 3.1.1", + "system_description": "Ecoinvent v3 - Copied from Ecoinvent", + "unit": "kg" }, { - "id": "celeriac-non-eu", - "name": "Carrot {RoW}| carrot production | Cut-off, U - Copied from Ecoinvent U", - "displayName": "Céleri-rave Hors UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003102564", - "system_description": "Ecoinvent v3 - Copied from Ecoinvent", "categories": ["ingredient"], "comment": "Production Volume Amount: 18370729984", - "source": "Agribalyse 3.1.1", + "displayName": "Céleri-rave Hors UE Conv.", + "id": "celeriac-non-eu", + "identifier": "AGRIBALU000000003102564", "impacts": { "acd": 0, "cch": 0, @@ -6489,20 +6485,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 30.571496239023755, - "ecs": 38.398618742819814 - } + "ecs": 38.398618742819814, + "pef": 30.571496239023755 + }, + "name": "Carrot {RoW}| carrot production | Cut-off, U - Copied from Ecoinvent U", + "source": "Agribalyse 3.1.1", + "system_description": "Ecoinvent v3 - Copied from Ecoinvent", + "unit": "kg" }, { - "id": "walnut-inshell-fr", - "name": "Walnut, dried inshell, national average, at farm gate {FR} U", - "displayName": "Noix avec coque FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003116663", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Noix avec coque FR Conv.", + "id": "walnut-inshell-fr", + "identifier": "AGRIBALU000000003116663", "impacts": { "acd": 0, "cch": 0, @@ -6523,20 +6519,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 274.2322037263629, - "ecs": 258.26464727646476 - } + "ecs": 258.26464727646476, + "pef": 274.2322037263629 + }, + "name": "Walnut, dried inshell, national average, at farm gate {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "walnut-husked-fr", - "name": "Walnut, dried, husked, processed in FR | Ambient (long) | LDPE | at packaging {FR} U", - "displayName": "Noix décortiquées FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003116668", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Noix décortiquées FR Conv.", + "id": "walnut-husked-fr", + "identifier": "AGRIBALU000000003116668", "impacts": { "acd": 0, "cch": 0, @@ -6557,20 +6553,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 292.3838141648916, - "ecs": 278.8446573458546 - } - }, - { - "id": "chestnut-husked-fr", + "ecs": 278.8446573458546, + "pef": 292.3838141648916 + }, "name": "Walnut, dried, husked, processed in FR | Ambient (long) | LDPE | at packaging {FR} U", - "displayName": "Châtaigne décortiquée FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003116668", + "source": "Agribalyse 3.1.1", "system_description": "AGRIBALYSE", + "unit": "kg" + }, + { "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Châtaigne décortiquée FR Conv.", + "id": "chestnut-husked-fr", + "identifier": "AGRIBALU000000003116668", "impacts": { "acd": 0, "cch": 0, @@ -6591,20 +6587,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 292.3838141648916, - "ecs": 278.8446573458546 - } + "ecs": 278.8446573458546, + "pef": 292.3838141648916 + }, + "name": "Walnut, dried, husked, processed in FR | Ambient (long) | LDPE | at packaging {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "chestnut-inshell-fr", - "name": "Walnut, dried inshell, conventional, national average, at farm gate {FR} U", - "displayName": "Châtaigne avec coque FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003116662", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Châtaigne avec coque FR Conv.", + "id": "chestnut-inshell-fr", + "identifier": "AGRIBALU000000003116662", "impacts": { "acd": 0, "cch": 0, @@ -6625,20 +6621,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 271.0618311698035, - "ecs": 259.73512030860064 - } + "ecs": 259.73512030860064, + "pef": 271.0618311698035 + }, + "name": "Walnut, dried inshell, conventional, national average, at farm gate {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "mandarin-eu", - "name": "Mandarin {ES}| mandarin production | Cut-off, U - Adapted from Ecoinvent U", - "displayName": "Mandarine UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003109060", - "system_description": "Ecoinvent v3 - Copied from Ecoinvent", "categories": ["ingredient"], "comment": "Reference flow: Yield = 30000 kg/ha table fruit quality\nProduction Volume Amount: 2046639488", - "source": "Agribalyse 3.1.1", + "displayName": "Mandarine UE Conv.", + "id": "mandarin-eu", + "identifier": "AGRIBALU000000003109060", "impacts": { "acd": 0, "cch": 0, @@ -6659,20 +6655,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 82.81268409001734, - "ecs": 122.2805324505238 - } + "ecs": 122.2805324505238, + "pef": 82.81268409001734 + }, + "name": "Mandarin {ES}| mandarin production | Cut-off, U - Adapted from Ecoinvent U", + "source": "Agribalyse 3.1.1", + "system_description": "Ecoinvent v3 - Copied from Ecoinvent", + "unit": "kg" }, { - "id": "mushroom-eu", - "name": "Agaricus bisporus mushroom, fresh, at plant {NL} - Adapted from WFLDB U", - "displayName": "Champignon frais UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003100184", - "system_description": "", "categories": ["ingredient"], "comment": "Mushroom production in the Netherlands. Mainly based on Leiva 2015a data, adapted to NL for the electricity and water. \nThis dataset includes the compost substrate input inoculated with the mycellium, the growing chambers disinfection, soil covering, the chambers temperature and humidity control (energy consumption) and the growing process. The direct emissions from peat are included. \nThe infrastructure are excluded as well as the mushroom packaging.", - "source": "Agribalyse 3.1.1", + "displayName": "Champignon frais UE Conv.", + "id": "mushroom-eu", + "identifier": "AGRIBALU000000003100184", "impacts": { "acd": 0, "cch": 0, @@ -6693,20 +6689,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 398.35078655633237, - "ecs": 417.73573129290594 - } + "ecs": 417.73573129290594, + "pef": 398.35078655633237 + }, + "name": "Agaricus bisporus mushroom, fresh, at plant {NL} - Adapted from WFLDB U", + "source": "Agribalyse 3.1.1", + "system_description": "", + "unit": "kg" }, { - "id": "brussels-sprout-fr", - "name": "Cauliflower, winter, conventional, at farm gate {FR} U", - "displayName": "Chou de Bruxelles FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000024985200045", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Chou de Bruxelles FR Conv.", + "id": "brussels-sprout-fr", + "identifier": "AGRIBALU000024985200045", "impacts": { "acd": 0, "cch": 0, @@ -6727,20 +6723,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 36.4655093709705, - "ecs": 37.3791875173583 - } + "ecs": 37.3791875173583, + "pef": 36.4655093709705 + }, + "name": "Cauliflower, winter, conventional, at farm gate {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "brussels-sprout-organic", - "name": "Cauliflower, winter, organic, at farm gate {FR} U", - "displayName": "Chou de Bruxelles FR ou UE ou Hors UE Bio", - "unit": "kilogram", - "identifier": "AGRIBALU000024985200052", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Chou de Bruxelles FR ou UE ou Hors UE Bio", + "id": "brussels-sprout-organic", + "identifier": "AGRIBALU000024985200052", "impacts": { "acd": 0, "cch": 0, @@ -6761,20 +6757,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 45.64929474214634, - "ecs": 38.00111644532398 - } + "ecs": 38.00111644532398, + "pef": 45.64929474214634 + }, + "name": "Cauliflower, winter, organic, at farm gate {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "lentils-uncooked-fr", - "name": "Winter pea, conventional, 15% moisture, at farm gate {FR} U", - "displayName": "Lentilles FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000024985200192", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Lentilles FR Conv.", + "id": "lentils-uncooked-fr", + "identifier": "AGRIBALU000024985200192", "impacts": { "acd": 0, "cch": 0, @@ -6795,20 +6791,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 65.58800107029508, - "ecs": 115.68533895585978 - } + "ecs": 115.68533895585978, + "pef": 65.58800107029508 + }, + "name": "Winter pea, conventional, 15% moisture, at farm gate {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "curly-kale-fr", - "name": "Cauliflower, winter, conventional, at farm gate {FR} U", - "displayName": "Chou frisé FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000024985200045", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Chou frisé FR Conv.", + "id": "curly-kale-fr", + "identifier": "AGRIBALU000024985200045", "impacts": { "acd": 0, "cch": 0, @@ -6829,20 +6825,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 36.4655093709705, - "ecs": 37.3791875173583 - } + "ecs": 37.3791875173583, + "pef": 36.4655093709705 + }, + "name": "Cauliflower, winter, conventional, at farm gate {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "curly-kale-organic", - "name": "Cauliflower, winter, organic, at farm gate {FR} U", - "displayName": "Chou frisé FR ou UE ou Hors UE Bio", - "unit": "kilogram", - "identifier": "AGRIBALU000024985200052", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Chou frisé FR ou UE ou Hors UE Bio", + "id": "curly-kale-organic", + "identifier": "AGRIBALU000024985200052", "impacts": { "acd": 0, "cch": 0, @@ -6863,20 +6859,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 45.64929474214634, - "ecs": 38.00111644532398 - } + "ecs": 38.00111644532398, + "pef": 45.64929474214634 + }, + "name": "Cauliflower, winter, organic, at farm gate {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "pumpkin-fr", - "name": "Zucchini, conventional, national average, at farm gate {FR} U", - "displayName": "Citrouille FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003117541", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Citrouille FR Conv.", + "id": "pumpkin-fr", + "identifier": "AGRIBALU000000003117541", "impacts": { "acd": 0, "cch": 0, @@ -6897,20 +6893,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 25.202985524893382, - "ecs": 24.997074386706196 - } + "ecs": 24.997074386706196, + "pef": 25.202985524893382 + }, + "name": "Zucchini, conventional, national average, at farm gate {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "clementine-non-eu", - "name": "Clementine, export quality, Souss, at orchard {MA} U", - "displayName": "Clémentine Hors UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003103409", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "MOROCCO", - "source": "Agribalyse 3.1.1", + "displayName": "Clémentine Hors UE Conv.", + "id": "clementine-non-eu", + "identifier": "AGRIBALU000000003103409", "impacts": { "acd": 0, "cch": 0, @@ -6931,20 +6927,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 89.30645718963102, - "ecs": 489.7057337522536 - } + "ecs": 489.7057337522536, + "pef": 89.30645718963102 + }, + "name": "Clementine, export quality, Souss, at orchard {MA} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "endive-fr", - "name": "Lettuce, conventional, national average, at farm gate {FR} U", - "displayName": "Endive FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003108668", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Endive FR Conv.", + "id": "endive-fr", + "identifier": "AGRIBALU000000003108668", "impacts": { "acd": 0, "cch": 0, @@ -6965,20 +6961,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 26.02451803953416, - "ecs": 26.78991001440472 - } + "ecs": 26.78991001440472, + "pef": 26.02451803953416 + }, + "name": "Lettuce, conventional, national average, at farm gate {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "endive-eu", - "name": "Iceberg lettuce {GLO}| production | Cut-off, U - Adapted from Ecoinvent U", - "displayName": "Endive UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003107604", - "system_description": "Ecoinvent v3 - Copied from Ecoinvent", "categories": ["ingredient"], "comment": "Production Volume Amount: 23622365184", - "source": "Agribalyse 3.1.1", + "displayName": "Endive UE Conv.", + "id": "endive-eu", + "identifier": "AGRIBALU000000003107604", "impacts": { "acd": 0, "cch": 0, @@ -6999,20 +6995,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 20.339888618375657, - "ecs": 24.50587629640328 - } + "ecs": 24.50587629640328, + "pef": 20.339888618375657 + }, + "name": "Iceberg lettuce {GLO}| production | Cut-off, U - Adapted from Ecoinvent U", + "source": "Agribalyse 3.1.1", + "system_description": "Ecoinvent v3 - Copied from Ecoinvent", + "unit": "kg" }, { - "id": "wine-grape-fr", - "name": "Grape, full production (phase), integrated, variety mix, Languedoc-Roussillon, at vineyard {FR} U", - "displayName": "Raisin de cuve FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003106864", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Raisin de cuve FR Conv.", + "id": "wine-grape-fr", + "identifier": "AGRIBALU000000003106864", "impacts": { "acd": 0, "cch": 0, @@ -7033,20 +7029,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 39.92282740783969, - "ecs": 40.23684617931685 - } + "ecs": 40.23684617931685, + "pef": 39.92282740783969 + }, + "name": "Grape, full production (phase), integrated, variety mix, Languedoc-Roussillon, at vineyard {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "lambs-lettuce-fr", - "name": "Lettuce, conventional, national average, at farm gate {FR} U", - "displayName": "Mâche FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003108668", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Mâche FR Conv.", + "id": "lambs-lettuce-fr", + "identifier": "AGRIBALU000000003108668", "impacts": { "acd": 0, "cch": 0, @@ -7067,20 +7063,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 26.02451803953416, - "ecs": 26.78991001440472 - } + "ecs": 26.78991001440472, + "pef": 26.02451803953416 + }, + "name": "Lettuce, conventional, national average, at farm gate {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "lambs-lettuce-eu", - "name": "Iceberg lettuce {GLO}| production | Cut-off, U - Adapted from Ecoinvent U", - "displayName": "Mâche UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003107604", - "system_description": "Ecoinvent v3 - Copied from Ecoinvent", "categories": ["ingredient"], "comment": "Production Volume Amount: 23622365184", - "source": "Agribalyse 3.1.1", + "displayName": "Mâche UE Conv.", + "id": "lambs-lettuce-eu", + "identifier": "AGRIBALU000000003107604", "impacts": { "acd": 0, "cch": 0, @@ -7101,20 +7097,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 20.339888618375657, - "ecs": 24.50587629640328 - } + "ecs": 24.50587629640328, + "pef": 20.339888618375657 + }, + "name": "Iceberg lettuce {GLO}| production | Cut-off, U - Adapted from Ecoinvent U", + "source": "Agribalyse 3.1.1", + "system_description": "Ecoinvent v3 - Copied from Ecoinvent", + "unit": "kg" }, { - "id": "sweet-corn-fr", - "name": "Maize grain, conventional, 28% moisture, national average, animal feed, at farm gate {FR} U", - "displayName": "Maïs doux FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000024985200100", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Maïs doux FR Conv.", + "id": "sweet-corn-fr", + "identifier": "AGRIBALU000024985200100", "impacts": { "acd": 0, "cch": 0, @@ -7135,20 +7131,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 66.4872118276963, - "ecs": 130.2933172738426 - } + "ecs": 130.2933172738426, + "pef": 66.4872118276963 + }, + "name": "Maize grain, conventional, 28% moisture, national average, animal feed, at farm gate {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "sweet-corn-organic-fr", - "name": "Grain maize, organic, animal feed, at farm gate {FR} U", - "displayName": "Maïs doux FR ou UE ou Hors UE Bio", - "unit": "kilogram", - "identifier": "AGRIBALU000000003106825", - "system_description": "", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Maïs doux FR ou UE ou Hors UE Bio", + "id": "sweet-corn-organic-fr", + "identifier": "AGRIBALU000000003106825", "impacts": { "acd": 0, "cch": 0, @@ -7169,20 +7165,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 59.958897338643055, - "ecs": 43.427431523367616 - } + "ecs": 43.427431523367616, + "pef": 59.958897338643055 + }, + "name": "Grain maize, organic, animal feed, at farm gate {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "", + "unit": "kg" }, { - "id": "sweet-corn-br", - "name": "Maize grain, non-irrigated, at farm {BR} - Adapted from WFLDB U", - "displayName": "Maïs doux Hors UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003109026", - "system_description": "", "categories": ["ingredient"], "comment": "Economic allocation based on Whitman et al. 2011, assuming 15% stover removed from the field and 65 $/t stover", - "source": "Agribalyse 3.1.1", + "displayName": "Maïs doux Hors UE Conv.", + "id": "sweet-corn-br", + "identifier": "AGRIBALU000000003109026", "impacts": { "acd": 0, "cch": 0, @@ -7203,20 +7199,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 158.87978080842427, - "ecs": 406.0786977264271 - } + "ecs": 406.0786977264271, + "pef": 158.87978080842427 + }, + "name": "Maize grain, non-irrigated, at farm {BR} - Adapted from WFLDB U", + "source": "Agribalyse 3.1.1", + "system_description": "", + "unit": "kg" }, { - "id": "pineapple-non-eu", - "name": "Pineapple, at farm {CR} - Adapted from WFLDB U", - "displayName": "Ananas Hors UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003111295", - "system_description": "", "categories": ["ingredient"], "comment": "Yield from Ingwersen 2012.", - "source": "Agribalyse 3.1.1", + "displayName": "Ananas Hors UE Conv.", + "id": "pineapple-non-eu", + "identifier": "AGRIBALU000000003111295", "impacts": { "acd": 0, "cch": 0, @@ -7237,20 +7233,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 88.17693372059504, - "ecs": 172.7295862524396 - } + "ecs": 172.7295862524396, + "pef": 88.17693372059504 + }, + "name": "Pineapple, at farm {CR} - Adapted from WFLDB U", + "source": "Agribalyse 3.1.1", + "system_description": "", + "unit": "kg" }, { - "id": "broad-beans-eu", - "name": "Fava bean, Swiss integrated production {CH}| fava bean production, Swiss integrated production, at farm | Cut-off, U - Adapted from Ecoinvent U", - "displayName": "Fève UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003105780", - "system_description": "Ecoinvent v3 - Copied from Ecoinvent", "categories": ["ingredient"], "comment": "Production Volume Amount: 4", - "source": "Agribalyse 3.1.1", + "displayName": "Fève UE Conv.", + "id": "broad-beans-eu", + "identifier": "AGRIBALU000000003105780", "impacts": { "acd": 0, "cch": 0, @@ -7271,20 +7267,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 71.85195836687184, - "ecs": 73.8062393083272 - } - }, - { - "id": "broad-beans-fr", + "ecs": 73.8062393083272, + "pef": 71.85195836687184 + }, "name": "Fava bean, Swiss integrated production {CH}| fava bean production, Swiss integrated production, at farm | Cut-off, U - Adapted from Ecoinvent U", - "displayName": "Fève FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003105780", + "source": "Agribalyse 3.1.1", "system_description": "Ecoinvent v3 - Copied from Ecoinvent", + "unit": "kg" + }, + { "categories": ["ingredient"], "comment": "Production Volume Amount: 4", - "source": "Agribalyse 3.1.1", + "displayName": "Fève FR Conv.", + "id": "broad-beans-fr", + "identifier": "AGRIBALU000000003105780", "impacts": { "acd": 0, "cch": 0, @@ -7305,20 +7301,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 71.85195836687184, - "ecs": 73.8062393083272 - } + "ecs": 73.8062393083272, + "pef": 71.85195836687184 + }, + "name": "Fava bean, Swiss integrated production {CH}| fava bean production, Swiss integrated production, at farm | Cut-off, U - Adapted from Ecoinvent U", + "source": "Agribalyse 3.1.1", + "system_description": "Ecoinvent v3 - Copied from Ecoinvent", + "unit": "kg" }, { - "id": "swiss-chard-eu", - "name": "Spinach {GLO}| production | Cut-off, U - Adapted from Ecoinvent U", - "displayName": "Blette UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003114717", - "system_description": "Ecoinvent v3 - Copied from Ecoinvent", "categories": ["ingredient"], "comment": "Production Volume Amount: 18088361984", - "source": "Agribalyse 3.1.1", + "displayName": "Blette UE Conv.", + "id": "swiss-chard-eu", + "identifier": "AGRIBALU000000003114717", "impacts": { "acd": 0, "cch": 0, @@ -7339,20 +7335,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 16.060802619719126, - "ecs": 45.63017702251564 - } - }, - { - "id": "swiss-chard-fr", + "ecs": 45.63017702251564, + "pef": 16.060802619719126 + }, "name": "Spinach {GLO}| production | Cut-off, U - Adapted from Ecoinvent U", - "displayName": "Blette FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003114717", + "source": "Agribalyse 3.1.1", "system_description": "Ecoinvent v3 - Copied from Ecoinvent", + "unit": "kg" + }, + { "categories": ["ingredient"], "comment": "Production Volume Amount: 18088361984", - "source": "Agribalyse 3.1.1", + "displayName": "Blette FR Conv.", + "id": "swiss-chard-fr", + "identifier": "AGRIBALU000000003114717", "impacts": { "acd": 0, "cch": 0, @@ -7373,20 +7369,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 16.060802619719126, - "ecs": 45.63017702251564 - } + "ecs": 45.63017702251564, + "pef": 16.060802619719126 + }, + "name": "Spinach {GLO}| production | Cut-off, U - Adapted from Ecoinvent U", + "source": "Agribalyse 3.1.1", + "system_description": "Ecoinvent v3 - Copied from Ecoinvent", + "unit": "kg" }, { - "id": "flageolet-bean-eu", - "name": "Fava bean, Swiss integrated production {CH}| fava bean production, Swiss integrated production, at farm | Cut-off, U - Adapted from Ecoinvent U", - "displayName": "Haricot flageolet UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003105780", - "system_description": "Ecoinvent v3 - Copied from Ecoinvent", "categories": ["ingredient"], "comment": "Production Volume Amount: 4", - "source": "Agribalyse 3.1.1", + "displayName": "Haricot flageolet UE Conv.", + "id": "flageolet-bean-eu", + "identifier": "AGRIBALU000000003105780", "impacts": { "acd": 0, "cch": 0, @@ -7407,20 +7403,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 71.85195836687184, - "ecs": 73.8062393083272 - } - }, - { - "id": "flageolet-bean-fr", + "ecs": 73.8062393083272, + "pef": 71.85195836687184 + }, "name": "Fava bean, Swiss integrated production {CH}| fava bean production, Swiss integrated production, at farm | Cut-off, U - Adapted from Ecoinvent U", - "displayName": "Haricot flageolet FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003105780", + "source": "Agribalyse 3.1.1", "system_description": "Ecoinvent v3 - Copied from Ecoinvent", + "unit": "kg" + }, + { "categories": ["ingredient"], "comment": "Production Volume Amount: 4", - "source": "Agribalyse 3.1.1", + "displayName": "Haricot flageolet FR Conv.", + "id": "flageolet-bean-fr", + "identifier": "AGRIBALU000000003105780", "impacts": { "acd": 0, "cch": 0, @@ -7441,20 +7437,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 71.85195836687184, - "ecs": 73.8062393083272 - } + "ecs": 73.8062393083272, + "pef": 71.85195836687184 + }, + "name": "Fava bean, Swiss integrated production {CH}| fava bean production, Swiss integrated production, at farm | Cut-off, U - Adapted from Ecoinvent U", + "source": "Agribalyse 3.1.1", + "system_description": "Ecoinvent v3 - Copied from Ecoinvent", + "unit": "kg" }, { - "id": "rice-basmati-non-eu", - "name": "Rice, basmati {IN}| rice production, basmati | Cut-off, U - Adapted from Ecoinvent U", - "displayName": "Riz basmati Hors UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003112687", - "system_description": "Ecoinvent v3 - Copied from Ecoinvent", "categories": ["ingredient"], "comment": "Production Volume Amount: 8769999872", - "source": "Agribalyse 3.1.1", + "displayName": "Riz basmati Hors UE Conv.", + "id": "rice-basmati-non-eu", + "identifier": "AGRIBALU000000003112687", "impacts": { "acd": 0, "cch": 0, @@ -7475,20 +7471,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 1549.3741063525924, - "ecs": 1456.9254009392575 - } + "ecs": 1456.9254009392575, + "pef": 1549.3741063525924 + }, + "name": "Rice, basmati {IN}| rice production, basmati | Cut-off, U - Adapted from Ecoinvent U", + "source": "Agribalyse 3.1.1", + "system_description": "Ecoinvent v3 - Copied from Ecoinvent", + "unit": "kg" }, { - "id": "soft-wheat-organic", - "name": "Wheat, organic, national average, at farm gate/FR U constructed by Ecobalyse", - "displayName": "Blé tendre FR ou UE ou Hors UE Bio", - "unit": "kilogram", - "identifier": "bdd14c2017eaf0cda1e207e74012c391", - "system_description": "Ecobalyse", "categories": ["ingredient"], "comment": "", - "source": "Ecobalyse", + "displayName": "Blé tendre FR ou UE ou Hors UE Bio", + "id": "soft-wheat-organic", + "identifier": "bdd14c2017eaf0cda1e207e74012c391", "impacts": { "acd": 0, "cch": 0, @@ -7509,20 +7505,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 75.11819304767268, - "ecs": 56.86371542054135 - } + "ecs": 56.972307139352274, + "pef": 75.17417092425244 + }, + "name": "Wheat, organic, national average, at farm gate/FR U constructed by Ecobalyse", + "source": "Ecobalyse", + "system_description": "Ecobalyse", + "unit": "kg" }, { - "id": "soft-wheat-fr", - "name": "Soft wheat grain, conventional, national average, animal feed, at farm gate, production {FR} U", - "displayName": "Blé tendre FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000024985200247", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Blé tendre FR Conv.", + "id": "soft-wheat-fr", + "identifier": "AGRIBALU000024985200247", "impacts": { "acd": 0, "cch": 0, @@ -7543,20 +7539,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 65.23190875590463, - "ecs": 87.40067510475018 - } + "ecs": 87.40067510475018, + "pef": 65.23190875590463 + }, + "name": "Soft wheat grain, conventional, national average, animal feed, at farm gate, production {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "soft-wheat-non-eu", - "name": "Wheat grain, at farm {GLO} - Adapted from WFLDB U", - "displayName": "Blé tendre Hors UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003117044", - "system_description": "", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Blé tendre Hors UE Conv.", + "id": "soft-wheat-non-eu", + "identifier": "AGRIBALU000000003117044", "impacts": { "acd": 0, "cch": 0, @@ -7577,20 +7573,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 91.40931803041477, - "ecs": 87.59422022223636 - } + "ecs": 87.59422022223636, + "pef": 91.40931803041477 + }, + "name": "Wheat grain, at farm {GLO} - Adapted from WFLDB U", + "source": "Agribalyse 3.1.1", + "system_description": "", + "unit": "kg" }, { - "id": "durum-wheat-fr", - "name": "Durum wheat grain, conventional, national average, at farm gate {FR} U", - "displayName": "Blé dur FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000024985200066", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Blé dur FR Conv.", + "id": "durum-wheat-fr", + "identifier": "AGRIBALU000024985200066", "impacts": { "acd": 0, "cch": 0, @@ -7611,20 +7607,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 91.13193677617065, - "ecs": 91.44951647633499 - } + "ecs": 91.44951647633499, + "pef": 91.13193677617065 + }, + "name": "Durum wheat grain, conventional, national average, at farm gate {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "durum-wheat-eu", - "name": "Durum wheat grain, at farm {GR} - Adapted from WFLDB U", - "displayName": "Blé dur UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003105055", - "system_description": "", "categories": ["ingredient"], "comment": "Economic allocation for wheat based on FEFAC (2015)", - "source": "Agribalyse 3.1.1", + "displayName": "Blé dur UE Conv.", + "id": "durum-wheat-eu", + "identifier": "AGRIBALU000000003105055", "impacts": { "acd": 0, "cch": 0, @@ -7645,20 +7641,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 129.43233413217857, - "ecs": 120.40966248702924 - } + "ecs": 120.40966248702924, + "pef": 129.43233413217857 + }, + "name": "Durum wheat grain, at farm {GR} - Adapted from WFLDB U", + "source": "Agribalyse 3.1.1", + "system_description": "", + "unit": "kg" }, { - "id": "durum-wheat-non-eu", - "name": "Durum wheat grain, at farm {AU} - Adapted from WFLDB U", - "displayName": "Blé dur Hors UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003105051", - "system_description": "", "categories": ["ingredient"], "comment": "Economic allocation for wheat based on FEFAC (2015)\nYield, irrigation (no irrigation in Australia), fertilizers (type and amount) and pesticides (total amount) application, diesel consumption and seed consumption based on the PEF Screening report for dry pasta.", - "source": "Agribalyse 3.1.1", + "displayName": "Blé dur Hors UE Conv.", + "id": "durum-wheat-non-eu", + "identifier": "AGRIBALU000000003105051", "impacts": { "acd": 0, "cch": 0, @@ -7679,20 +7675,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 132.01581571235292, - "ecs": 127.79130744252005 - } + "ecs": 127.79130744252005, + "pef": 132.01581571235292 + }, + "name": "Durum wheat grain, at farm {AU} - Adapted from WFLDB U", + "source": "Agribalyse 3.1.1", + "system_description": "", + "unit": "kg" }, { - "id": "apple-organic", - "name": "Table apple, consumption mix, organic 2023 {FR} U", - "displayName": "Pomme FR ou UE ou Hors UE Bio", - "unit": "kilogram", - "identifier": "apple-organic", - "system_description": "", "categories": ["ingredient"], "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "source": "Ginko", + "displayName": "Pomme FR ou UE ou Hors UE Bio", + "id": "apple-organic", + "identifier": "apple-organic", "impacts": { "acd": 0, "cch": 0, @@ -7713,20 +7709,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 32.64459013777798, - "ecs": 39.276975577869024 - } + "ecs": 39.276975577869024, + "pef": 32.64459013777798 + }, + "name": "Table apple, consumption mix, organic 2023 {FR} U", + "source": "Ginko", + "system_description": "", + "unit": "kg" }, { - "id": "apple-fr", - "name": "Apple, conventional, national average, at orchard {FR} U", - "displayName": "Pomme FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003100459", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "FRANCE", - "source": "Agribalyse 3.1.1", + "displayName": "Pomme FR Conv.", + "id": "apple-fr", + "identifier": "AGRIBALU000000003100459", "impacts": { "acd": 0, "cch": 0, @@ -7747,20 +7743,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 18.195546423119126, - "ecs": 40.737269068867505 - } + "ecs": 40.737269068867505, + "pef": 18.195546423119126 + }, + "name": "Apple, conventional, national average, at orchard {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "potato-table-organic", - "name": "Ware potato, organic 2023, variety mix, national average, at farm gate {FR} U", - "displayName": "Pomme de terre de table FR ou UE ou Hors UE Bio", - "unit": "kilogram", - "identifier": "potato-table-organic", - "system_description": "", "categories": ["ingredient"], "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "source": "Ginko", + "displayName": "Pomme de terre de table FR ou UE ou Hors UE Bio", + "id": "potato-table-organic", + "identifier": "potato-table-organic", "impacts": { "acd": 0, "cch": 0, @@ -7781,20 +7777,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 22.531275238729474, - "ecs": 19.400834757951447 - } + "ecs": 19.400834757951447, + "pef": 22.531275238729474 + }, + "name": "Ware potato, organic 2023, variety mix, national average, at farm gate {FR} U", + "source": "Ginko", + "system_description": "", + "unit": "kg" }, { - "id": "potato-industry-organic", - "name": "Ware potato, organic 2023, for industrial use, at farm gate {FR} U", - "displayName": "Pomme de terre industrie FR ou UE ou Hors UE Bio", - "unit": "kilogram", - "identifier": "potato-industry-organic", - "system_description": "", "categories": ["ingredient"], "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "source": "Ginko", + "displayName": "Pomme de terre industrie FR ou UE ou Hors UE Bio", + "id": "potato-industry-organic", + "identifier": "potato-industry-organic", "impacts": { "acd": 0, "cch": 0, @@ -7815,20 +7811,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 23.187571945329438, - "ecs": 19.974420175456235 - } + "ecs": 19.974420175456235, + "pef": 23.187571945329438 + }, + "name": "Ware potato, organic 2023, for industrial use, at farm gate {FR} U", + "source": "Ginko", + "system_description": "", + "unit": "kg" }, { - "id": "kiwi-organic", - "name": "Kiwi, consumption mix, organic 2023 {FR} U", - "displayName": "Kiwi FR ou UE ou Hors UE Bio", - "unit": "kilogram", - "identifier": "kiwi-organic", - "system_description": "", "categories": ["ingredient"], "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "source": "Ginko", + "displayName": "Kiwi FR ou UE ou Hors UE Bio", + "id": "kiwi-organic", + "identifier": "kiwi-organic", "impacts": { "acd": 0, "cch": 0, @@ -7849,20 +7845,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 95.20576599892593, - "ecs": 77.61064729781063 - } - }, - { - "id": "red-cabbage-organic", - "name": "Red Cabbage, consumption mix, organic 2023 {FR} U", - "displayName": "Chou rouge FR ou UE ou Hors UE Bio", - "unit": "kilogram", - "identifier": "red-cabbage-organic", + "ecs": 77.61064729781063, + "pef": 95.20576599892593 + }, + "name": "Kiwi, consumption mix, organic 2023 {FR} U", + "source": "Ginko", "system_description": "", + "unit": "kg" + }, + { "categories": ["ingredient"], "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "source": "Ginko", + "displayName": "Chou rouge FR ou UE ou Hors UE Bio", + "id": "red-cabbage-organic", + "identifier": "red-cabbage-organic", "impacts": { "acd": 0, "cch": 0, @@ -7883,20 +7879,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 47.19999714789499, - "ecs": 39.18411423246976 - } + "ecs": 39.18411423246976, + "pef": 47.19999714789499 + }, + "name": "Red Cabbage, consumption mix, organic 2023 {FR} U", + "source": "Ginko", + "system_description": "", + "unit": "kg" }, { - "id": "sugar-beet-organic", - "name": "Sugar beet, organic 2023 {FR}| sugar beet production | Cut-off, U", - "displayName": "Betterave sucrière FR ou UE ou Hors UE Bio", - "unit": "kilogram", - "identifier": "sugar-beet-organic", - "system_description": "", "categories": ["ingredient"], "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "source": "Ginko", + "displayName": "Betterave sucrière FR ou UE ou Hors UE Bio", + "id": "sugar-beet-organic", + "identifier": "sugar-beet-organic", "impacts": { "acd": 0, "cch": 0, @@ -7917,20 +7913,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 6.688259983606439, - "ecs": 5.052019800220155 - } + "ecs": 5.052019800220155, + "pef": 6.688259983606439 + }, + "name": "Sugar beet, organic 2023 {FR}| sugar beet production | Cut-off, U", + "source": "Ginko", + "system_description": "", + "unit": "kg" }, { - "id": "papaya-organic", - "name": "Papaya, consumption mix, organic 2023 {FR} U", - "displayName": "Papaye FR ou UE ou Hors UE Bio", - "unit": "kilogram", - "identifier": "papaya-organic", - "system_description": "", "categories": ["ingredient"], "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "source": "Ginko", + "displayName": "Papaye FR ou UE ou Hors UE Bio", + "id": "papaya-organic", + "identifier": "papaya-organic", "impacts": { "acd": 0, "cch": 0, @@ -7951,20 +7947,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 67.61263707040482, - "ecs": 56.164260929150835 - } + "ecs": 56.164260929150835, + "pef": 67.61263707040482 + }, + "name": "Papaya, consumption mix, organic 2023 {FR} U", + "source": "Ginko", + "system_description": "", + "unit": "kg" }, { - "id": "tomato-organic", - "name": "Fresh tomato, consumption mix, organic 2023 {FR} U", - "displayName": "Tomate FR ou UE ou Hors UE Bio", - "unit": "kilogram", - "identifier": "tomato-organic", - "system_description": "", "categories": ["ingredient"], "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "source": "Ginko", + "displayName": "Tomate FR ou UE ou Hors UE Bio", + "id": "tomato-organic", + "identifier": "tomato-organic", "impacts": { "acd": 0, "cch": 0, @@ -7985,20 +7981,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 43.65892588599402, - "ecs": 37.74306720879688 - } + "ecs": 37.74306720879688, + "pef": 43.65892588599402 + }, + "name": "Fresh tomato, consumption mix, organic 2023 {FR} U", + "source": "Ginko", + "system_description": "", + "unit": "kg" }, { - "id": "pineapple-organic", - "name": "Pineapple, organic 2023 {GLO}| production | Cut-off, U", - "displayName": "Ananas FR ou UE ou Hors UE Bio", - "unit": "kilogram", - "identifier": "pineapple-organic", - "system_description": "", "categories": ["ingredient"], "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "source": "Ginko", + "displayName": "Ananas FR ou UE ou Hors UE Bio", + "id": "pineapple-organic", + "identifier": "pineapple-organic", "impacts": { "acd": 0, "cch": 0, @@ -8019,20 +8015,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 19.158317815189967, - "ecs": 14.745408880330562 - } + "ecs": 14.745408880330562, + "pef": 19.158317815189967 + }, + "name": "Pineapple, organic 2023 {GLO}| production | Cut-off, U", + "source": "Ginko", + "system_description": "", + "unit": "kg" }, { - "id": "garden-peas-organic", - "name": "Garden peas, consumption mix, organic 2023 {FR} U", - "displayName": "Petit pois FR ou UE ou Hors UE Bio", - "unit": "kilogram", - "identifier": "garden-peas-organic", - "system_description": "", "categories": ["ingredient"], "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "source": "Ginko", + "displayName": "Petit pois FR ou UE ou Hors UE Bio", + "id": "garden-peas-organic", + "identifier": "garden-peas-organic", "impacts": { "acd": 0, "cch": 0, @@ -8053,20 +8049,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 72.0108747312462, - "ecs": 63.89037901858987 - } + "ecs": 63.89037901858987, + "pef": 72.0108747312462 + }, + "name": "Garden peas, consumption mix, organic 2023 {FR} U", + "source": "Ginko", + "system_description": "", + "unit": "kg" }, { - "id": "almond-inshell-organic", - "name": "Almonds, in shell, at farm, organic 2023 {CN}", - "displayName": "Amandes en coque FR ou UE ou Hors UE Bio ", - "unit": "kilogram", - "identifier": "almond-inshell-organic", - "system_description": "", "categories": ["ingredient"], "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "source": "Ginko", + "displayName": "Amandes en coque FR ou UE ou Hors UE Bio ", + "id": "almond-inshell-organic", + "identifier": "almond-inshell-organic", "impacts": { "acd": 0, "cch": 0, @@ -8087,20 +8083,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 455.6802457858006, - "ecs": 343.8709702802648 - } + "ecs": 343.8709702802648, + "pef": 455.6802457858006 + }, + "name": "Almonds, in shell, at farm, organic 2023 {CN}", + "source": "Ginko", + "system_description": "", + "unit": "kg" }, { - "id": "lettuce-organic", - "name": "Lettuce, organic 2023, national average, at farm gate {FR} U", - "displayName": "Laitue FR ou UE ou Hors UE Bio", - "unit": "kilogram", - "identifier": "lettuce-organic", - "system_description": "", "categories": ["ingredient"], "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "source": "Ginko", + "displayName": "Laitue FR ou UE ou Hors UE Bio", + "id": "lettuce-organic", + "identifier": "lettuce-organic", "impacts": { "acd": 0, "cch": 0, @@ -8121,20 +8117,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 19.29487034583362, - "ecs": 16.984993649256353 - } + "ecs": 16.984993649256353, + "pef": 19.29487034583362 + }, + "name": "Lettuce, organic 2023, national average, at farm gate {FR} U", + "source": "Ginko", + "system_description": "", + "unit": "kg" }, { - "id": "mango-organic", - "name": "Mango, organic 2023, Val de San Francisco, at orchard {BR} U", - "displayName": "Mangue FR ou UE ou Hors UE Bio", - "unit": "kilogram", - "identifier": "mango-organic", - "system_description": "", "categories": ["ingredient"], "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "source": "Ginko", + "displayName": "Mangue FR ou UE ou Hors UE Bio", + "id": "mango-organic", + "identifier": "mango-organic", "impacts": { "acd": 0, "cch": 0, @@ -8155,20 +8151,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 57.481539548758015, - "ecs": 46.37216992167492 - } - }, - { - "id": "lychee-organic", + "ecs": 46.37216992167492, + "pef": 57.481539548758015 + }, "name": "Mango, organic 2023, Val de San Francisco, at orchard {BR} U", - "displayName": "Litchi Hors FR ou UE ou Hors UE Bio", - "unit": "kilogram", - "identifier": "lychee-organic", + "source": "Ginko", "system_description": "", + "unit": "kg" + }, + { "categories": ["ingredient"], "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "source": "Ginko", + "displayName": "Litchi Hors FR ou UE ou Hors UE Bio", + "id": "lychee-organic", + "identifier": "lychee-organic", "impacts": { "acd": 0, "cch": 0, @@ -8189,20 +8185,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 57.481539548758015, - "ecs": 46.37216992167492 - } + "ecs": 46.37216992167492, + "pef": 57.481539548758015 + }, + "name": "Mango, organic 2023, Val de San Francisco, at orchard {BR} U", + "source": "Ginko", + "system_description": "", + "unit": "kg" }, { - "id": "lychee-non-eu", - "name": "Mango, conventional, Val de San Francisco, at orchard {BR} U", - "displayName": "Litchi Hors UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003109086", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "BRAZIL", - "source": "Agribalyse 3.1.1", + "displayName": "Litchi Hors UE Conv.", + "id": "lychee-non-eu", + "identifier": "AGRIBALU000000003109086", "impacts": { "acd": 0, "cch": 0, @@ -8223,20 +8219,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 37.79527562631753, - "ecs": 57.28359710484723 - } + "ecs": 57.28359710484723, + "pef": 37.79527562631753 + }, + "name": "Mango, conventional, Val de San Francisco, at orchard {BR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "oats-glo", - "name": "Oats, at farm {GLO} - Adapted from WFLDB U", - "displayName": "Avoine Hors UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003110378", - "system_description": "", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Avoine Hors UE Conv.", + "id": "oats-glo", + "identifier": "AGRIBALU000000003110378", "impacts": { "acd": 0, "cch": 0, @@ -8257,20 +8253,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 142.70724663411804, - "ecs": 121.11558400083138 - } + "ecs": 121.11558400083138, + "pef": 142.70724663411804 + }, + "name": "Oats, at farm {GLO} - Adapted from WFLDB U", + "source": "Agribalyse 3.1.1", + "system_description": "", + "unit": "kg" }, { - "id": "oats-organic", - "name": "Spring oats, organic, national average, at feed plant {FR} U", - "displayName": "Avoine FR ou UE ou Hors UE bio", - "unit": "kilogram", - "identifier": "AGRIBALU000000003114832", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Avoine FR ou UE ou Hors UE bio", + "id": "oats-organic", + "identifier": "AGRIBALU000000003114832", "impacts": { "acd": 0, "cch": 0, @@ -8291,20 +8287,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 89.90593002721727, - "ecs": 56.46146050018076 - } + "ecs": 56.46146050018076, + "pef": 89.90593002721727 + }, + "name": "Spring oats, organic, national average, at feed plant {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "barley", - "name": "Barley, feed grain, conventional, national average, animal feed, at farm gate {FR} U", - "displayName": "Orge FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003100974", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Orge FR Conv.", + "id": "barley", + "identifier": "AGRIBALU000000003100974", "impacts": { "acd": 0, "cch": 0, @@ -8325,20 +8321,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 61.773785787458245, - "ecs": 73.11368795280814 - } + "ecs": 73.11368795280814, + "pef": 61.773785787458245 + }, + "name": "Barley, feed grain, conventional, national average, animal feed, at farm gate {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "barley-organic", - "name": "Barley, organic, animal feed, at farm gate {FR} U", - "displayName": "Orge FR ou UE ou Hors UE Bio", - "unit": "kilogram", - "identifier": "AGRIBALU000000003100976", - "system_description": "", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Orge FR ou UE ou Hors UE Bio", + "id": "barley-organic", + "identifier": "AGRIBALU000000003100976", "impacts": { "acd": 0, "cch": 0, @@ -8359,20 +8355,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 66.9979080868876, - "ecs": 52.524212928156665 - } + "ecs": 52.524212928156665, + "pef": 66.9979080868876 + }, + "name": "Barley, organic, animal feed, at farm gate {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "", + "unit": "kg" }, { - "id": "banana-organic", - "name": "Banana, consumption mix, organic 2023 {FR} U", - "displayName": "Banane FR ou UE ou Hors UE Bio", - "unit": "kilogram", - "identifier": "banana-organic", - "system_description": "", "categories": ["ingredient"], "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "source": "Ginko", + "displayName": "Banane FR ou UE ou Hors UE Bio", + "id": "banana-organic", + "identifier": "banana-organic", "impacts": { "acd": 0, "cch": 0, @@ -8393,20 +8389,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 54.22578689055047, - "ecs": 44.56826154654676 - } + "ecs": 44.56826154654676, + "pef": 54.22578689055047 + }, + "name": "Banana, consumption mix, organic 2023 {FR} U", + "source": "Ginko", + "system_description": "", + "unit": "kg" }, { - "id": "orange-organic", - "name": "Orange, fresh grade, at farm, organic 2023 {ES}", - "displayName": "Orange FR ou UE ou Hors UE Bio", - "unit": "kilogram", - "identifier": "orange-organic", - "system_description": "", "categories": ["ingredient"], "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "source": "Ginko", + "displayName": "Orange FR ou UE ou Hors UE Bio", + "id": "orange-organic", + "identifier": "orange-organic", "impacts": { "acd": 0, "cch": 0, @@ -8427,20 +8423,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 104.75378389302492, - "ecs": 81.39278004014615 - } + "ecs": 81.39278004014615, + "pef": 104.75378389302492 + }, + "name": "Orange, fresh grade, at farm, organic 2023 {ES}", + "source": "Ginko", + "system_description": "", + "unit": "kg" }, { - "id": "lemon-organic", - "name": "Lemon, organic 2023 {ES}| lemon production | Cut-off, U", - "displayName": "Citron FR ou UE ou Hors UE Bio", - "unit": "kilogram", - "identifier": "lemon-organic", - "system_description": "", "categories": ["ingredient"], "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "source": "Ginko", + "displayName": "Citron FR ou UE ou Hors UE Bio", + "id": "lemon-organic", + "identifier": "lemon-organic", "impacts": { "acd": 0, "cch": 0, @@ -8461,20 +8457,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 89.88399880714461, - "ecs": 69.52898023898267 - } + "ecs": 69.52898023898267, + "pef": 89.88399880714461 + }, + "name": "Lemon, organic 2023 {ES}| lemon production | Cut-off, U", + "source": "Ginko", + "system_description": "", + "unit": "kg" }, { - "id": "celery-organic", - "name": "Celery, organic 2023 {GLO}| 675 production | Cut-off, U", - "displayName": "Céleri branche FR ou UE ou Hors UE Bio", - "unit": "kilogram", - "identifier": "celery-organic", - "system_description": "", "categories": ["ingredient"], "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "source": "Ginko", + "displayName": "Céleri branche FR ou UE ou Hors UE Bio", + "id": "celery-organic", + "identifier": "celery-organic", "impacts": { "acd": 0, "cch": 0, @@ -8495,20 +8491,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 58.49349299004286, - "ecs": 47.958000270347725 - } + "ecs": 47.958000270347725, + "pef": 58.49349299004286 + }, + "name": "Celery, organic 2023 {GLO}| 675 production | Cut-off, U", + "source": "Ginko", + "system_description": "", + "unit": "kg" }, { - "id": "olive-organic", - "name": "Olive, organic 2023 {ES}| olive production | Cut-off, U", - "displayName": "Olive FR ou UE ou Hors UE Bio", - "unit": "kilogram", - "identifier": "olive-organic", - "system_description": "", "categories": ["ingredient"], "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "source": "Ginko", + "displayName": "Olive FR ou UE ou Hors UE Bio", + "id": "olive-organic", + "identifier": "olive-organic", "impacts": { "acd": 0, "cch": 0, @@ -8529,20 +8525,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 144.72689252493072, - "ecs": 107.32813005134938 - } + "ecs": 107.32813005134938, + "pef": 144.72689252493072 + }, + "name": "Olive, organic 2023 {ES}| olive production | Cut-off, U", + "source": "Ginko", + "system_description": "", + "unit": "kg" }, { - "id": "peanut-organic", - "name": "Peanut, organic 2023 {RoW}| peanut production | Cut-off, U", - "displayName": "Arachide avec coque FR ou UE ou Hors UE Bio", - "unit": "kilogram", - "identifier": "peanut-organic", - "system_description": "", "categories": ["ingredient"], "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "source": "Ginko", + "displayName": "Arachide avec coque FR ou UE ou Hors UE Bio", + "id": "peanut-organic", + "identifier": "peanut-organic", "impacts": { "acd": 0, "cch": 0, @@ -8563,20 +8559,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 231.19184556360213, - "ecs": 175.10870728815954 - } - }, - { - "id": "raspberry-organic", - "name": "Raspberry, at farm, organic 2023 {RS}", - "displayName": "Framboise FR ou UE ou Hors UE Bio", - "unit": "kilogram", - "identifier": "raspberry-organic", + "ecs": 175.10870728815954, + "pef": 231.19184556360213 + }, + "name": "Peanut, organic 2023 {RoW}| peanut production | Cut-off, U", + "source": "Ginko", "system_description": "", + "unit": "kg" + }, + { "categories": ["ingredient"], "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "source": "Ginko", + "displayName": "Framboise FR ou UE ou Hors UE Bio", + "id": "raspberry-organic", + "identifier": "raspberry-organic", "impacts": { "acd": 0, "cch": 0, @@ -8597,20 +8593,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 275.535286380428, - "ecs": 213.91073679328812 - } + "ecs": 213.91073679328812, + "pef": 275.535286380428 + }, + "name": "Raspberry, at farm, organic 2023 {RS}", + "source": "Ginko", + "system_description": "", + "unit": "kg" }, { - "id": "lambs-lettuce-organic", - "name": "Lettuce, organic 2023, national average, at farm gate {FR} U", - "displayName": "Mâche FR ou UE ou Hors UE Bio", - "unit": "kilogram", - "identifier": "lambs-lettuce-organic", - "system_description": "", "categories": ["ingredient"], "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "source": "Ginko", + "displayName": "Mâche FR ou UE ou Hors UE Bio", + "id": "lambs-lettuce-organic", + "identifier": "lambs-lettuce-organic", "impacts": { "acd": 0, "cch": 0, @@ -8631,20 +8627,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 19.29487034583362, - "ecs": 16.984993649256353 - } - }, - { - "id": "endive-organic", + "ecs": 16.984993649256353, + "pef": 19.29487034583362 + }, "name": "Lettuce, organic 2023, national average, at farm gate {FR} U", - "displayName": "Endive FR ou UE ou Hors UE Bio", - "unit": "kilogram", - "identifier": "endive-organic", + "source": "Ginko", "system_description": "", + "unit": "kg" + }, + { "categories": ["ingredient"], "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "source": "Ginko", + "displayName": "Endive FR ou UE ou Hors UE Bio", + "id": "endive-organic", + "identifier": "endive-organic", "impacts": { "acd": 0, "cch": 0, @@ -8665,20 +8661,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 19.29487034583362, - "ecs": 16.984993649256353 - } + "ecs": 16.984993649256353, + "pef": 19.29487034583362 + }, + "name": "Lettuce, organic 2023, national average, at farm gate {FR} U", + "source": "Ginko", + "system_description": "", + "unit": "kg" }, { - "id": "durum-wheat-organic", - "name": "Durum wheat grain, organic 2023, national average, at farm gate {FR} U", - "displayName": "Blé dur FR ou UE ou Hors UE Bio", - "unit": "kilogram", - "identifier": "durum-wheat-organic", - "system_description": "", "categories": ["ingredient"], "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "source": "Ginko", + "displayName": "Blé dur FR ou UE ou Hors UE Bio", + "id": "durum-wheat-organic", + "identifier": "durum-wheat-organic", "impacts": { "acd": 0, "cch": 0, @@ -8699,20 +8695,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 152.68235309327795, - "ecs": 114.50144970254988 - } + "ecs": 114.50144970254988, + "pef": 152.68235309327795 + }, + "name": "Durum wheat grain, organic 2023, national average, at farm gate {FR} U", + "source": "Ginko", + "system_description": "", + "unit": "kg" }, { - "id": "onion-organic", - "name": "Onion, national average, at farm, organic 2023 {FR} U", - "displayName": "Oignon FR ou UE ou Hors UE Bio", - "unit": "kilogram", - "identifier": "onion-organic", - "system_description": "", "categories": ["ingredient"], "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "source": "Ginko", + "displayName": "Oignon FR ou UE ou Hors UE Bio", + "id": "onion-organic", + "identifier": "onion-organic", "impacts": { "acd": 0, "cch": 0, @@ -8733,20 +8729,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 17.453758088833403, - "ecs": 14.40237685199719 - } + "ecs": 14.40237685199719, + "pef": 17.453758088833403 + }, + "name": "Onion, national average, at farm, organic 2023 {FR} U", + "source": "Ginko", + "system_description": "", + "unit": "kg" }, { - "id": "rice-basmati-organic", - "name": "Rice, non-basmati, organic 2023 {GLO}| market for rice, non-basmati | Cut-off, U", - "displayName": "Riz basmati FR ou UE ou Hors UE Bio", - "unit": "kilogram", - "identifier": "rice-basmati-organic", - "system_description": "", "categories": ["ingredient"], "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "source": "Ginko", + "displayName": "Riz basmati FR ou UE ou Hors UE Bio", + "id": "rice-basmati-organic", + "identifier": "rice-basmati-organic", "impacts": { "acd": 0, "cch": 0, @@ -8767,20 +8763,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 409.7881963407181, - "ecs": 330.0516233983951 - } + "ecs": 330.0516233983951, + "pef": 409.7881963407181 + }, + "name": "Rice, non-basmati, organic 2023 {GLO}| market for rice, non-basmati | Cut-off, U", + "source": "Ginko", + "system_description": "", + "unit": "kg" }, { - "id": "barley-de", - "name": "Barley grain, non-irrigated, at farm {DE} - Adapted from WFLDB U", - "displayName": "Orge UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003100967", - "system_description": "", "categories": ["ingredient"], "comment": "Economic allocation based on FEFAC (2015)", - "source": "Agribalyse 3.1.1", + "displayName": "Orge UE Conv.", + "id": "barley-de", + "identifier": "AGRIBALU000000003100967", "impacts": { "acd": 0, "cch": 0, @@ -8801,20 +8797,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 80.16881048512722, - "ecs": 81.68050714392669 - } + "ecs": 81.68050714392669, + "pef": 80.16881048512722 + }, + "name": "Barley grain, non-irrigated, at farm {DE} - Adapted from WFLDB U", + "source": "Agribalyse 3.1.1", + "system_description": "", + "unit": "kg" }, { - "id": "triticale-organic", - "name": "Triticale, organic, animal feed, at farm gate {FR} U", - "displayName": "Triricale FR ou UE ou Hors UE Bio", - "unit": "kilogram", - "identifier": "AGRIBALU000000003116024", - "system_description": "", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Triricale FR ou UE ou Hors UE Bio", + "id": "triticale-organic", + "identifier": "AGRIBALU000000003116024", "impacts": { "acd": 0, "cch": 0, @@ -8835,20 +8831,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 62.888124265805295, - "ecs": 51.510203409634705 - } + "ecs": 51.510203409634705, + "pef": 62.888124265805295 + }, + "name": "Triticale, organic, animal feed, at farm gate {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "", + "unit": "kg" }, { - "id": "bean", - "name": "Faba bean, grain stored and transported, processing {FR} U", - "displayName": "Pois Hors UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003105752", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Pois Hors UE Conv.", + "id": "bean", + "identifier": "AGRIBALU000000003105752", "impacts": { "acd": 0, "cch": 0, @@ -8869,20 +8865,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 49.04549734707373, - "ecs": 110.68864373316993 - } + "ecs": 110.68864373316993, + "pef": 49.04549734707373 + }, + "name": "Faba bean, grain stored and transported, processing {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "bean-organic", - "name": "Pea, organic, animal feed, at farm gate {FR} U", - "displayName": "Pois FR ou UE ou Hors UE Bio", - "unit": "kilogram", - "identifier": "AGRIBALU000000003110915", - "system_description": "", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Pois FR ou UE ou Hors UE Bio", + "id": "bean-organic", + "identifier": "AGRIBALU000000003110915", "impacts": { "acd": 0, "cch": 0, @@ -8903,20 +8899,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 52.415160274461705, - "ecs": 43.68627073021545 - } + "ecs": 43.68627073021545, + "pef": 52.415160274461705 + }, + "name": "Pea, organic, animal feed, at farm gate {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "", + "unit": "kg" }, { - "id": "alfalfa-organic", - "name": "Alfalfa, hay, organic, animal feed, at farm gate {FR} U", - "displayName": "Luzerne FR ou UE ou Hors UE Bio", - "unit": "kilogram", - "identifier": "AGRIBALU000000003100242", - "system_description": "", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Luzerne FR ou UE ou Hors UE Bio", + "id": "alfalfa-organic", + "identifier": "AGRIBALU000000003100242", "impacts": { "acd": 0, "cch": 0, @@ -8937,20 +8933,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 28.19759233096963, - "ecs": 24.41755933486093 - } + "ecs": 24.41755933486093, + "pef": 28.19759233096963 + }, + "name": "Alfalfa, hay, organic, animal feed, at farm gate {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "", + "unit": "kg" }, { - "id": "radish-organic", - "name": "Radish, organic 2023 {GLO}| radish production, in unheated greenhouse | Cut-off, U", - "displayName": "Radis FR ou UE ou Hors UE Bio", - "unit": "kilogram", - "identifier": "radish-organic", - "system_description": "", "categories": ["ingredient"], "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "source": "Ginko", + "displayName": "Radis FR ou UE ou Hors UE Bio", + "id": "radish-organic", + "identifier": "radish-organic", "impacts": { "acd": 0, "cch": 0, @@ -8971,20 +8967,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 37.512313723462796, - "ecs": 33.37280182032623 - } + "ecs": 33.37280182032623, + "pef": 37.512313723462796 + }, + "name": "Radish, organic 2023 {GLO}| radish production, in unheated greenhouse | Cut-off, U", + "source": "Ginko", + "system_description": "", + "unit": "kg" }, { - "id": "lentils-uncooked-organic", - "name": "Lentil, organic 2023 {RoW}| lentil production | Cut-off, U", - "displayName": "Lentilles Hors FR ou UE ou Hors UE Bio", - "unit": "kilogram", - "identifier": "lentils-uncooked-organic", - "system_description": "", "categories": ["ingredient"], "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "source": "Ginko", + "displayName": "Lentilles Hors FR ou UE ou Hors UE Bio", + "id": "lentils-uncooked-organic", + "identifier": "lentils-uncooked-organic", "impacts": { "acd": 0, "cch": 0, @@ -9005,20 +9001,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": -1814.7275162890037, - "ecs": -1435.4562253279007 - } + "ecs": -1435.4562253279007, + "pef": -1814.7275162890037 + }, + "name": "Lentil, organic 2023 {RoW}| lentil production | Cut-off, U", + "source": "Ginko", + "system_description": "", + "unit": "kg" }, { - "id": "apricot-organic", - "name": "Apricot, organic 2023 {FR}| apricot production | Cut-off, U", - "displayName": "Abricot FR ou UE ou Hors UE Bio", - "unit": "kilogram", - "identifier": "apricot-organic", - "system_description": "", "categories": ["ingredient"], "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "source": "Ginko", + "displayName": "Abricot FR ou UE ou Hors UE Bio", + "id": "apricot-organic", + "identifier": "apricot-organic", "impacts": { "acd": 0, "cch": 0, @@ -9039,20 +9035,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 47.9163065073791, - "ecs": 106.62716637209662 - } + "ecs": 106.62716637209662, + "pef": 47.9163065073791 + }, + "name": "Apricot, organic 2023 {FR}| apricot production | Cut-off, U", + "source": "Ginko", + "system_description": "", + "unit": "kg" }, { - "id": "leek-organic", - "name": "Leek, national average, at plant, organic 2023 {FR} U", - "displayName": "Poireau FR ou UE ou Hors UE Bio", - "unit": "kilogram", - "identifier": "leek-organic", - "system_description": "", "categories": ["ingredient"], "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "source": "Ginko", + "displayName": "Poireau FR ou UE ou Hors UE Bio", + "id": "leek-organic", + "identifier": "leek-organic", "impacts": { "acd": 0, "cch": 0, @@ -9073,20 +9069,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 27.360582218368567, - "ecs": 22.96220337431388 - } + "ecs": 22.96220337431388, + "pef": 27.360582218368567 + }, + "name": "Leek, national average, at plant, organic 2023 {FR} U", + "source": "Ginko", + "system_description": "", + "unit": "kg" }, { - "id": "cherry-organic", - "name": "Cherry, organic 2023, national average, at orchard {FR} U", - "displayName": "Cerise FR ou UE ou Hors UE Bio", - "unit": "kilogram", - "identifier": "cherry-organic", - "system_description": "", "categories": ["ingredient"], "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "source": "Ginko", + "displayName": "Cerise FR ou UE ou Hors UE Bio", + "id": "cherry-organic", + "identifier": "cherry-organic", "impacts": { "acd": 0, "cch": 0, @@ -9107,20 +9103,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 490.33175160663825, - "ecs": 327.92773078060463 - } - }, - { - "id": "plum-organic", + "ecs": 327.92773078060463, + "pef": 490.33175160663825 + }, "name": "Cherry, organic 2023, national average, at orchard {FR} U", - "displayName": "Prune FR ou UE ou Hors UE Bio", - "unit": "kilogram", - "identifier": "plum-organic", + "source": "Ginko", "system_description": "", + "unit": "kg" + }, + { "categories": ["ingredient"], "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "source": "Ginko", + "displayName": "Prune FR ou UE ou Hors UE Bio", + "id": "plum-organic", + "identifier": "plum-organic", "impacts": { "acd": 0, "cch": 0, @@ -9141,20 +9137,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 490.33175160663825, - "ecs": 327.92773078060463 - } + "ecs": 327.92773078060463, + "pef": 490.33175160663825 + }, + "name": "Cherry, organic 2023, national average, at orchard {FR} U", + "source": "Ginko", + "system_description": "", + "unit": "kg" }, { - "id": "shallot-organic", - "name": "Onion, national average, at farm, organic 2023 {FR} U", - "displayName": "Echalote FR ou UE ou Hors UE Bio", - "unit": "kilogram", - "identifier": "shallot-organic", - "system_description": "", "categories": ["ingredient"], "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "source": "Ginko", + "displayName": "Echalote FR ou UE ou Hors UE Bio", + "id": "shallot-organic", + "identifier": "shallot-organic", "impacts": { "acd": 0, "cch": 0, @@ -9175,20 +9171,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 17.453758088833403, - "ecs": 14.40237685199719 - } + "ecs": 14.40237685199719, + "pef": 17.453758088833403 + }, + "name": "Onion, national average, at farm, organic 2023 {FR} U", + "source": "Ginko", + "system_description": "", + "unit": "kg" }, { - "id": "blueberry-organic", - "name": "Blueberry, at farm, organic 2023 {CA}", - "displayName": "Myrtille FR ou UE ou Hors UE Bio", - "unit": "kilogram", - "identifier": "blueberry-organic", - "system_description": "", "categories": ["ingredient"], "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "source": "Ginko", + "displayName": "Myrtille FR ou UE ou Hors UE Bio", + "id": "blueberry-organic", + "identifier": "blueberry-organic", "impacts": { "acd": 0, "cch": 0, @@ -9209,20 +9205,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 135.38306372394482, - "ecs": 117.8536673487336 - } + "ecs": 117.8536673487336, + "pef": 135.38306372394482 + }, + "name": "Blueberry, at farm, organic 2023 {CA}", + "source": "Ginko", + "system_description": "", + "unit": "kg" }, { - "id": "spinach-organic", - "name": "Spinach, organic 2023 {GLO}| production | Cut-off, U", - "displayName": "Epinard FR ou UE ou Hors UE Bio", - "unit": "kilogram", - "identifier": "spinach-organic", - "system_description": "", "categories": ["ingredient"], "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "source": "Ginko", + "displayName": "Epinard FR ou UE ou Hors UE Bio", + "id": "spinach-organic", + "identifier": "spinach-organic", "impacts": { "acd": 0, "cch": 0, @@ -9243,20 +9239,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 20.734946953731605, - "ecs": 15.009343591936002 - } + "ecs": 15.009343591936002, + "pef": 20.734946953731605 + }, + "name": "Spinach, organic 2023 {GLO}| production | Cut-off, U", + "source": "Ginko", + "system_description": "", + "unit": "kg" }, { - "id": "watermelon-organic", - "name": "Melon, organic 2023, national average, at farm gate {FR} U", - "displayName": "Pastèque FR ou UE ou Hors UE Bio", - "unit": "kilogram", - "identifier": "watermelon-organic", - "system_description": "", "categories": ["ingredient"], "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "source": "Ginko", + "displayName": "Pastèque FR ou UE ou Hors UE Bio", + "id": "watermelon-organic", + "identifier": "watermelon-organic", "impacts": { "acd": 0, "cch": 0, @@ -9277,20 +9273,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 39.55487311552576, - "ecs": 33.539711918930905 - } + "ecs": 33.539711918930905, + "pef": 39.55487311552576 + }, + "name": "Melon, organic 2023, national average, at farm gate {FR} U", + "source": "Ginko", + "system_description": "", + "unit": "kg" }, { - "id": "silage-maize-fr", - "name": "Silage maize, conventional, national average, animal feed, at farm gate, production {FR} U", - "displayName": "Ensilage maïs FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000024985200246", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Ensilage maïs FR Conv.", + "id": "silage-maize-fr", + "identifier": "AGRIBALU000024985200246", "impacts": { "acd": 0, "cch": 0, @@ -9311,20 +9307,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 55.38493684327017, - "ecs": 102.11527714745658 - } - }, - { - "id": "silage-maize-organic", + "ecs": 102.11527714745658, + "pef": 55.38493684327017 + }, "name": "Silage maize, conventional, national average, animal feed, at farm gate, production {FR} U", - "displayName": "Ensilage maïs FR ou UE ou Hors UE Bio", - "unit": "kilogram", - "identifier": "AGRIBALU000024985200246", + "source": "Agribalyse 3.1.1", "system_description": "AGRIBALYSE", + "unit": "kg" + }, + { "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Ensilage maïs FR ou UE ou Hors UE Bio", + "id": "silage-maize-organic", + "identifier": "AGRIBALU000024985200246", "impacts": { "acd": 0, "cch": 0, @@ -9345,20 +9341,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 55.38493684327017, - "ecs": 102.11527714745658 - } + "ecs": 102.11527714745658, + "pef": 55.38493684327017 + }, + "name": "Silage maize, conventional, national average, animal feed, at farm gate, production {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "oilseed-feed", - "name": "Oilseed meal mix, as feed, at regional warehouse, as DM {RER} - Adapted from WFLDB U", - "displayName": "Soja FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003110393", - "system_description": "", "categories": ["ingredient"], "comment": "Feed mixture inventory is built for 1 kg DM, but contains inputs with various DM content, for a total fresh matter above 1 kg.\nThe average DM of this mixture is 0.89, hence transport modelling should add an additional mass of 0.11 kg/kg DM for the water content.\nGross energy content is 19.70 MJ/kg DM and crude protein content is 46.4%.\nProportions between the oilseeds estimated based on FAOSTAT 2017 data at global level", - "source": "Agribalyse 3.1.1", + "displayName": "Soja FR Conv.", + "id": "oilseed-feed", + "identifier": "AGRIBALU000000003110393", "impacts": { "acd": 0, "cch": 0, @@ -9379,20 +9375,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 162.89315403579087, - "ecs": 185.88269775266423 - } + "ecs": 185.88269775266423, + "pef": 162.89315403579087 + }, + "name": "Oilseed meal mix, as feed, at regional warehouse, as DM {RER} - Adapted from WFLDB U", + "source": "Agribalyse 3.1.1", + "system_description": "", + "unit": "kg" }, { - "id": "grazed-grass-temporary", - "name": "Grazed grass, temporary meadow, without clover, Northwestern region, on field {FR} U", - "displayName": "Herbe de prairie temporaire FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000024985200276", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Herbe de prairie temporaire FR Conv.", + "id": "grazed-grass-temporary", + "identifier": "AGRIBALU000024985200276", "impacts": { "acd": 0, "cch": 0, @@ -9413,20 +9409,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 41.438979513022424, - "ecs": 33.877602723275864 - } + "ecs": 33.877602723275864, + "pef": 41.438979513022424 + }, + "name": "Grazed grass, temporary meadow, without clover, Northwestern region, on field {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "grazed-grass-permanent", - "name": "Grazed grass, permanent meadow, without clover, Northwestern region, on field {FR} U", - "displayName": "Herbe de prairie permanente FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003106967", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Herbe de prairie permanente FR Conv.", + "id": "grazed-grass-permanent", + "identifier": "AGRIBALU000000003106967", "impacts": { "acd": 0, "cch": 0, @@ -9447,20 +9443,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 26.7219167940208, - "ecs": 19.685924789237824 - } + "ecs": 19.685924789237824, + "pef": 26.7219167940208 + }, + "name": "Grazed grass, permanent meadow, without clover, Northwestern region, on field {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "cherry-tr", - "name": "Cherry, at farm (WFLDB)", - "displayName": "Cerise Hors UE Conv.", - "unit": "kilogram", - "identifier": "WFLDBQUA000001234500334", - "system_description": "", "categories": ["ingredient"], "comment": "Average yield for sweet and sour cherries according to faostat data from 2012 to 2016.", - "source": "WFLDB", + "displayName": "Cerise Hors UE Conv.", + "id": "cherry-tr", + "identifier": "WFLDBQUA000001234500334", "impacts": { "acd": 0, "cch": 0, @@ -9481,20 +9477,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 396.812784387594, - "ecs": 1055.1748133055262 - } + "ecs": 1057.8799097933233, + "pef": 405.41441199663086 + }, + "name": "Cherry, at farm (WFLDB)", + "source": "WFLDB", + "system_description": "", + "unit": "kg" }, { - "id": "refined-palm-oil", - "name": "Palm oil, refined, processed in EU, at plant {RER} U", - "displayName": "Huile de palme (raffinée) UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003105775", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "Modification : ITERG\n\nIncluded processes: This process includes the refining of crude palm oil, in Europe. Transport of inputs are considered. System boundary is at the oil mill.\nRemark: Inventory refers to the production of 1 kg refined palm oil, respectively 0,07 kg of Fatty Acids Distallates. \nEconomic allocation : Economic Allocation between refined palm oil and palm oil fatty acids distillates\nPalm oil : 803€/T", - "source": "Agribalyse 3.1.1", + "displayName": "Huile de palme (raffinée) UE Conv.", + "id": "refined-palm-oil", + "identifier": "AGRIBALU000000003105775", "impacts": { "acd": 0, "cch": 0, @@ -9515,20 +9511,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 383.38750680314564, - "ecs": 407.5721772670125 - } + "ecs": 407.5721772670125, + "pef": 383.38750680314564 + }, + "name": "Palm oil, refined, processed in EU, at plant {RER} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "refined-linseed-oil", - "name": "Linseed oil, refined, at oil mill { FR} U", - "displayName": "Huile de lin (raffinée) FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003108737", - "system_description": "", "categories": ["ingredient"], "comment": "Dataset of the production of refined linseed oil in France. It includes crushing of linseed grain, representative of French consumption mix, and refining of crude oil. \n3,36 kg of linseed are needed for the production of 1kg of refined Linseed oil and Linseed oil cake.\nEconomic allocation is made between oil, cake and refining co-products\nPrice for 1 kg Linseed oil = 1,49 €/kg ; price for 1 kg Linseed oil cake = 0,286€/kg, according to WFLDB economic value. Price for soap stocks and deodorization condensates were approximated from the economic values of rapeseed co-products: 0,2179 €/kg Linseed soap stock, 0,2179 €/kg Linseed deodorisation condensates.\nIncluding consumptions at crushing and refining\nData for crushing come from AGRIBALYSE 1.4 datateset \"Flaxseed crushing, processing/FR U\", from AGRIBALYSE 1.4, based on expert informations. Data from crude Linseed oil refining are based on industrial data for 2013, representative of refining step for linseed oil in France.", - "source": "Agribalyse 3.1.1", + "displayName": "Huile de lin (raffinée) FR Conv.", + "id": "refined-linseed-oil", + "identifier": "AGRIBALU000000003108737", "impacts": { "acd": 0, "cch": 0, @@ -9549,20 +9545,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 551.8802031188281, - "ecs": 548.2282130945533 - } + "ecs": 548.2282130945533, + "pef": 551.8802031188281 + }, + "name": "Linseed oil, refined, at oil mill { FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "", + "unit": "kg" }, { - "id": "refined-grapeseed-oil", - "name": "Grapeseed oil, refined at plant {FR} U", - "displayName": "Huile de pépin de raisin (raffinée) FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003106915", - "system_description": "", "categories": ["ingredient"], "comment": "Data are representative of refined grapeseed oil production from dry grapeseed. 7,18kg of dry grapeseed are needed to produce 1kg of refined grapeseed oil and 5,87 of grapeseed oil meal. Data source : Data source : industrial data, representative for crushing and refining of grapeseed oil in France.\nEconomic Allocation\nEconomic value from AGECO report : 1,71€/kg of refined grapeseed oil, 0,212€/kg of grapeseed oil meal, 0,21792€/kg of grapeseed soap stock, 0,21792€/kg of grapeseed deodorization condensate\nData source : industrial data, representative for grapeseed drying. Reference year : 2014", - "source": "Agribalyse 3.1.1", + "displayName": "Huile de pépin de raisin (raffinée) FR Conv.", + "id": "refined-grapeseed-oil", + "identifier": "AGRIBALU000000003106915", "impacts": { "acd": 0, "cch": 0, @@ -9583,20 +9579,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 127.20421480060834, - "ecs": 113.4131474531948 - } + "ecs": 113.4131474531948, + "pef": 127.20421480060834 + }, + "name": "Grapeseed oil, refined at plant {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "", + "unit": "kg" }, { - "id": "refined-soybean-oil", - "name": "Soybean oil, refined, at plant {FR} U", - "displayName": "Huile de soja (raffinée) FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003114609", - "system_description": "", "categories": ["ingredient"], "comment": "Data are representative of refined soybean oil production from soybean seeds. 5,4k g of soybean seeds are needed to produce 1 kg of refined soybean oil and 4,24 kg of soybean oil cake. \nData source : industrial data, representative for crushing and refining of soybean oil in Europe. Data from FEDIOL, 2013. Life cycle assessment of EU Oilseed Crushing and Vegetable oil refining. Final report 59 pages\nEconomic Allocation\nEconomic value from FEDIOL report : 0,809€/kg of refined soybean oil, 0,297€/kg of soybean oil meal, 0,6€/kg of soybean lecithin, 0,35€/kg of soybean soap stock\n\nThe consumption mix of soybean oil in France was determined with importation and production data from FAOSTAT (average 2015-2019). The average conusmption mix (2015-2019) was : France, 70%, Spain, 12%, others origins (mainly UE countries) : 18%. Only French origin are considered in this datasets, representing 70% of market mix", - "source": "Agribalyse 3.1.1", + "displayName": "Huile de soja (raffinée) FR Conv.", + "id": "refined-soybean-oil", + "identifier": "AGRIBALU000000003114609", "impacts": { "acd": 0, "cch": 0, @@ -9617,20 +9613,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 314.10370154397594, - "ecs": 726.1918471255067 - } + "ecs": 726.1918471255067, + "pef": 314.10370154397594 + }, + "name": "Soybean oil, refined, at plant {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "", + "unit": "kg" }, { - "id": "virgin-hazelnut-oil", - "name": "Hazelnut oil, crude, at plant {FR} U", - "displayName": "Huile de noisette (vierge) FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003107299", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "Dataset of the production of crude hazelnut oil in France. It includes crushing of unshelled hazelnut kernel, by mechanical cold pressing. \n2,5 kg of unshelled hazelnut are needed for the production of 1 kg of crude hazelnut oil and 1,5 of hazelnut oil cake. \n\nEconomic allocation is made between oil and cake\nPrice for 1 kg crude Hazelnut oil = 4 TL/ kg (0,4€/kg) \n Price for 1 kg Hazelnut oil cake = 1 TL/kg ( 0,10€/kg). Source : Turkish Grain Board (TMO)\nData from ITERG, based on cold pressing for rapeseed seeds", - "source": "Agribalyse 3.1.1", + "displayName": "Huile de noisette (vierge) FR Conv.", + "id": "virgin-hazelnut-oil", + "identifier": "AGRIBALU000000003107299", "impacts": { "acd": 0, "cch": 0, @@ -9651,20 +9647,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 1505.443124521604, - "ecs": 1934.5404492223074 - } + "ecs": 1934.5404492223074, + "pef": 1505.443124521604 + }, + "name": "Hazelnut oil, crude, at plant {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "refined-peanut-oil", - "name": "Peanut oil, at oil mill {SN} U", - "displayName": "Huile d'arachide (raffinée) Hors UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003110968", - "system_description": "", "categories": ["ingredient"], "comment": "Production of 1kg refined peanut oil in Senegal\nSource : Schmidt, J. H. (2015). Life cycle assessment of five vegetable oils\nAllocation is based on the price ratio of cake : oil = 0.10\nEconomic allocation is applied. Price for 1 kg Peanut oil = 0.51 US $/pound; price for 1 kg Peanut oil cake = 0.05 US $/pound.", - "source": "Agribalyse 3.1.1", + "displayName": "Huile d'arachide (raffinée) Hors UE Conv.", + "id": "refined-peanut-oil", + "identifier": "AGRIBALU000000003110968", "impacts": { "acd": 0, "cch": 0, @@ -9685,20 +9681,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 921.4117461887155, - "ecs": 1062.23288426755 - } + "ecs": 1062.23288426755, + "pef": 921.4117461887155 + }, + "name": "Peanut oil, at oil mill {SN} U", + "source": "Agribalyse 3.1.1", + "system_description": "", + "unit": "kg" }, { - "id": "refined-sunflower-oil", - "name": "Sunflower oil, refined, low dehulling at plant {FR} U", - "displayName": "Huile de tournesol (raffinée) FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003115161", - "system_description": "", "categories": ["ingredient"], "comment": "According to data from the ACéVOL study (FNCG and ITERG, 2012), 2010 production data collected from French industrial sites, considered representative of national production.\nEconomic Allocation\nEconomic value from AGECO report : 0,9517€/kg of refined sunflower oil", - "source": "Agribalyse 3.1.1", + "displayName": "Huile de tournesol (raffinée) FR Conv.", + "id": "refined-sunflower-oil", + "identifier": "AGRIBALU000000003115161", "impacts": { "acd": 0, "cch": 0, @@ -9719,20 +9715,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 318.719164789273, - "ecs": 475.2660672101299 - } + "ecs": 475.2660672101299, + "pef": 318.719164789273 + }, + "name": "Sunflower oil, refined, low dehulling at plant {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "", + "unit": "kg" }, { - "id": "refined-rapeseed-oil", - "name": "Rapeseed oil, refined, at oil mill {FR} U", - "displayName": "Huile de colza (raffinée) FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003112440", - "system_description": "", "categories": ["ingredient"], "comment": "According to data from the ACéVOL study (FNCG and ITERG, 2012), 2010 production data collected from French industrial sites, considered representative of national production.\nEconomic Allocation\nEconomic value from AGECO report : 0,9192€/kg of refined rapeseed oil", - "source": "Agribalyse 3.1.1", + "displayName": "Huile de colza (raffinée) FR Conv.", + "id": "refined-rapeseed-oil", + "identifier": "AGRIBALU000000003112440", "impacts": { "acd": 0, "cch": 0, @@ -9753,20 +9749,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 276.4928867752055, - "ecs": 380.39000127474935 - } + "ecs": 380.39000127474935, + "pef": 276.4928867752055 + }, + "name": "Rapeseed oil, refined, at oil mill {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "", + "unit": "kg" }, { - "id": "extra-virgin-olive-oil", - "name": "Extra Virgin Olive Oil, at plant {ES} U", - "displayName": "Huile d'olive (extra vierge) UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003105717", - "system_description": "", "categories": ["ingredient"], "comment": "This dataset represents the virgin oil extraction in Spain from olive produced in Spain. \n\nIncluded processes: This process includes the production of olive in Spain, cleaning and rinsing of harvest olives and Extra Virgin Olive Oil extraction from two phases process. \nRemark : Inventory refers to the production of 1kg of Extra Virgin Olive Oil and 4,46 kg of pomace from 5,83 kg of harvest olives. System boundary is at Spain mill. Electricity, water consumption and extraction Yield_ are based on default value proposed by PEFCR for Olive rules (3rd Draft, 2016). \nEconomic Allocation is applied between Extra Virgin Olive Oil and pomace, based on price proposed in PEFCR : Extra Virgin Olive Oil : 1,88€/kg and Pomace : 0,01€/kg\nGeography: Extra Virgin Olive Oil production in Spain\nTechnology: Extra Virgin Olive Oil extraction two phases, representative of extraction process in Spain. \nTime period: Data from PEFCR Olive Oil, 2016,", - "source": "Agribalyse 3.1.1", + "displayName": "Huile d'olive (extra vierge) UE Conv.", + "id": "extra-virgin-olive-oil", + "identifier": "AGRIBALU000000003105717", "impacts": { "acd": 0, "cch": 0, @@ -9787,20 +9783,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 487.1034904691177, - "ecs": 503.1494226145319 - } + "ecs": 503.1494226145319, + "pef": 487.1034904691177 + }, + "name": "Extra Virgin Olive Oil, at plant {ES} U", + "source": "Agribalyse 3.1.1", + "system_description": "", + "unit": "kg" }, { - "id": "fresh-cream-cheese", - "name": "Fresh cream cheese, plain, creamy, around 8% fat, at plant {FR} U", - "displayName": "Crème fraiche FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003106208", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "This process describes the production of Fresh cream cheese, plain, creamy, around 8% fat in France.\nIncluded activities are : production in country of origin and transport", - "source": "Agribalyse 3.1.1", + "displayName": "Crème fraiche FR Conv.", + "id": "fresh-cream-cheese", + "identifier": "AGRIBALU000000003106208", "impacts": { "acd": 0, "cch": 0, @@ -9821,20 +9817,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 178.17749595620123, - "ecs": 216.7449658152886 - } + "ecs": 216.7449658152886, + "pef": 178.17749595620123 + }, + "name": "Fresh cream cheese, plain, creamy, around 8% fat, at plant {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "onion-dried-hors-ue", - "name": "Onions, dried, consumption mix {FR} U", - "displayName": "Oignons déshydratés Hors UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003110475", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "This process describes the average consumption mix of dried Onions in France.\nIncluded activities are : production in country of origin and transport. \nThe consumption mix was evaluated using data extracted from FAOstat", - "source": "Agribalyse 3.1.1", + "displayName": "Oignons déshydratés Hors UE Conv.", + "id": "onion-dried-hors-ue", + "identifier": "AGRIBALU000000003110475", "impacts": { "acd": 0, "cch": 0, @@ -9855,20 +9851,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 686.1046949964714, - "ecs": 631.3772011936228 - } + "ecs": 631.3772011936228, + "pef": 686.1046949964714 + }, + "name": "Onions, dried, consumption mix {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "egg-without-shell-fr", - "name": "Chicken egg, raw, without shell, at plant {FR} U", - "displayName": "Oeuf cru décoquillé FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003103004", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Oeuf cru décoquillé FR Conv.", + "id": "egg-without-shell-fr", + "identifier": "AGRIBALU000000003103004", "impacts": { "acd": 0, "cch": 0, @@ -9889,20 +9885,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 429.48383867791114, - "ecs": 593.6027482016807 - } + "ecs": 593.6027482016807, + "pef": 429.48383867791114 + }, + "name": "Chicken egg, raw, without shell, at plant {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "egg-yolk-powder-fr", - "name": "Egg yolk, powder, at plant {FR} U", - "displayName": "poudre de jaune d'oeuf FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003105140", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "poudre de jaune d'oeuf FR Conv.", + "id": "egg-yolk-powder-fr", + "identifier": "AGRIBALU000000003105140", "impacts": { "acd": 0, "cch": 0, @@ -9923,20 +9919,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 503.32786380316986, - "ecs": 672.2074141794261 - } + "ecs": 672.2074141794261, + "pef": 503.32786380316986 + }, + "name": "Egg yolk, powder, at plant {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "egg-white-powder-fr", - "name": "Egg white, powder, at plant {FR} U", - "displayName": "poudre de blanc d'oeuf FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003105126", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "poudre de blanc d'oeuf FR Conv.", + "id": "egg-white-powder-fr", + "identifier": "AGRIBALU000000003105126", "impacts": { "acd": 0, "cch": 0, @@ -9957,20 +9953,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 503.39228637897634, - "ecs": 672.2964545916598 - } + "ecs": 672.2964545916598, + "pef": 503.39228637897634 + }, + "name": "Egg white, powder, at plant {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "emmental-grated-fr", - "name": "Emmental cheese, grated, cheese production, from cow's milk, hard cheese, French production mix, at plant, 1 kg of Emmental, grated cheese (PGi) {FR} U", - "displayName": "Emmental rapé FR Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003105535", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "(3,3,2,1,2),", - "source": "Agribalyse 3.1.1", + "displayName": "Emmental rapé FR Conv.", + "id": "emmental-grated-fr", + "identifier": "AGRIBALU000000003105535", "impacts": { "acd": 0, "cch": 0, @@ -9991,20 +9987,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 523.8711839742018, - "ecs": 654.3724238653224 - } + "ecs": 654.3724238653224, + "pef": 523.8711839742018 + }, + "name": "Emmental cheese, grated, cheese production, from cow's milk, hard cheese, French production mix, at plant, 1 kg of Emmental, grated cheese (PGi) {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" }, { - "id": "cocoa-powder-non-ue", - "name": "Cocoa powder, at plant {FR} U", - "displayName": "Poudre de cacao Hors UE Conv.", - "unit": "kilogram", - "identifier": "AGRIBALU000000003103498", - "system_description": "AGRIBALYSE", "categories": ["ingredient"], "comment": "", - "source": "Agribalyse 3.1.1", + "displayName": "Poudre de cacao Hors UE Conv.", + "id": "cocoa-powder-non-ue", + "identifier": "AGRIBALU000000003103498", "impacts": { "acd": 0, "cch": 0, @@ -10025,8 +10021,12 @@ "swe": 0, "tre": 0, "wtu": 0, - "pef": 1228.2995950409074, - "ecs": 1235.6680735506416 - } + "ecs": 1235.6680735506416, + "pef": 1228.2995950409074 + }, + "name": "Cocoa powder, at plant {FR} U", + "source": "Agribalyse 3.1.1", + "system_description": "AGRIBALYSE", + "unit": "kg" } ] diff --git a/public/data/textile/materials.json b/public/data/textile/materials.json index ca6a86770..4e8311ef5 100644 --- a/public/data/textile/materials.json +++ b/public/data/textile/materials.json @@ -1,80 +1,4 @@ [ - { - "id": "coton-rdpc", - "materialProcessUuid": "993955be-5888-6f39-137c-56af8c5187c1", - "recycledProcessUuid": null, - "recycledFrom": "ei-coton", - "name": "Production de coton recyclé (recyclage mécanique) pré-filature, traitement de déchets textiles post-consommation, inventaire partiellement agrégé", - "shortName": "Coton recyclé (déchets post-consommation)", - "origin": "NaturalFromVegetal", - "primary": true, - "geographicOrigin": "France", - "defaultCountry": "FR", - "priority": 0, - "cff": { - "manufacturerAllocation": 0.8, - "recycledQualityRatio": 0.5 - } - }, - { - "id": "coton-rdp", - "materialProcessUuid": "9c6ab710-4a08-c720-cede-24428a013fda", - "recycledProcessUuid": null, - "recycledFrom": "ei-coton", - "name": "Production de coton recyclé (recyclage mécanique) pré-filature, traitement de déchets de production textiles, inventaire partiellement agrégé", - "shortName": "Coton recyclé (déchets de production)", - "origin": "NaturalFromVegetal", - "primary": true, - "geographicOrigin": "Espagne & France", - "defaultCountry": "FR", - "priority": 0, - "cff": { - "manufacturerAllocation": 0.8, - "recycledQualityRatio": 0.5 - } - }, - { - "id": "ei-chanvre", - "materialProcessUuid": "fa590941e8bbf72c8956b5c3ba793eb7", - "recycledProcessUuid": null, - "recycledFrom": null, - "name": "Chanvre", - "shortName": "Chanvre", - "origin": "NaturalFromVegetal", - "primary": true, - "geographicOrigin": "Asie - Pacifique", - "defaultCountry": "CN", - "priority": 0, - "cff": null - }, - { - "id": "ei-coton", - "materialProcessUuid": "a211822aabe83653a6079b9d5677daed", - "recycledProcessUuid": "9c6ab710-4a08-c720-cede-24428a013fda", - "recycledFrom": null, - "name": "Coton", - "shortName": "Coton", - "origin": "NaturalFromVegetal", - "primary": true, - "geographicOrigin": "Asie - Pacifique", - "defaultCountry": "CN", - "priority": 100, - "cff": null - }, - { - "id": "ei-coton-organic", - "materialProcessUuid": "coton-bio", - "recycledProcessUuid": null, - "recycledFrom": null, - "name": "Coton biologique", - "shortName": "Coton biologique", - "origin": "NaturalFromVegetal", - "primary": true, - "geographicOrigin": "Asie - Pacifique", - "defaultCountry": "CN", - "priority": 100, - "cff": null - }, { "id": "elasthane", "materialProcessUuid": "elasthane-lycra", @@ -86,7 +10,7 @@ "primary": false, "geographicOrigin": "Asie - Pacifique", "defaultCountry": "CN", - "priority": 0, + "priority": null, "cff": null }, { @@ -100,7 +24,7 @@ "primary": false, "geographicOrigin": "Asie - Pacifique", "defaultCountry": "CN", - "priority": 0, + "priority": null, "cff": null }, { @@ -114,35 +38,66 @@ "primary": false, "geographicOrigin": "Asie - Pacifique", "defaultCountry": "CN", - "priority": 0, + "priority": null, "cff": null }, { - "id": "ei-laine-par-defaut", - "materialProcessUuid": "wool-default", + "id": "ei-pp", + "materialProcessUuid": "6e442b958af0d26f85ecacce2eeb23d0", "recycledProcessUuid": null, "recycledFrom": null, - "name": "Laine par défaut", - "shortName": "Laine par défaut", - "origin": "NaturalFromAnimal", + "name": "Polypropylène", + "shortName": "Polypropylène", + "origin": "Synthetic", "primary": false, + "geographicOrigin": "Europe", + "defaultCountry": "FR", + "priority": null, + "cff": null + }, + { + "id": "ei-pet", + "materialProcessUuid": "f32024fc5e736e01fa14321363900581", + "recycledProcessUuid": "087896096b5bede914ef3ec1062b1c02", + "recycledFrom": null, + "name": "Polyester", + "shortName": "Polyester", + "origin": "Synthetic", + "primary": true, "geographicOrigin": "Asie - Pacifique", "defaultCountry": "CN", - "priority": 0, + "priority": 80, "cff": null }, { - "id": "ei-laine-nouvelle-filiere", - "materialProcessUuid": "wool-new", + "id": "ei-pet-r", + "materialProcessUuid": "087896096b5bede914ef3ec1062b1c02", "recycledProcessUuid": null, - "recycledFrom": null, - "name": "Laine nouvelle filière", - "shortName": "Laine nouvelle filière", - "origin": "NaturalFromAnimal", + "recycledFrom": "ei-pet", + "name": "Polyester recyclé", + "shortName": "Polyester recyclé", + "origin": "Synthetic", "primary": true, "geographicOrigin": "Asie - Pacifique", "defaultCountry": "CN", - "priority": 0, + "priority": 80, + "cff": { + "manufacturerAllocation": 0.5, + "recycledQualityRatio": 1 + } + }, + { + "id": "ei-pa", + "materialProcessUuid": "88a1395a1c61be31b0bc692e977dd10b", + "recycledProcessUuid": null, + "recycledFrom": null, + "name": "Nylon", + "shortName": "Nylon", + "origin": "Synthetic", + "primary": true, + "geographicOrigin": "Europe", + "defaultCountry": "FR", + "priority": null, "cff": null }, { @@ -156,67 +111,78 @@ "primary": true, "geographicOrigin": "Europe", "defaultCountry": "FR", - "priority": 0, + "priority": null, "cff": null }, { - "id": "ei-pa", - "materialProcessUuid": "88a1395a1c61be31b0bc692e977dd10b", + "id": "ei-laine-par-defaut", + "materialProcessUuid": "wool-default", "recycledProcessUuid": null, "recycledFrom": null, - "name": "Nylon", - "shortName": "Nylon", - "origin": "Synthetic", - "primary": true, - "geographicOrigin": "Europe", - "defaultCountry": "FR", - "priority": 0, + "name": "Laine par défaut", + "shortName": "Laine par défaut", + "origin": "NaturalFromAnimal", + "primary": false, + "geographicOrigin": "Asie - Pacifique", + "defaultCountry": "CN", + "priority": null, "cff": null }, { - "id": "ei-pp", - "materialProcessUuid": "6e442b958af0d26f85ecacce2eeb23d0", + "id": "ei-laine-nouvelle-filiere", + "materialProcessUuid": "wool-new", "recycledProcessUuid": null, "recycledFrom": null, - "name": "Polypropylène", - "shortName": "Polypropylène", - "origin": "Synthetic", - "primary": false, - "geographicOrigin": "Europe", - "defaultCountry": "FR", - "priority": 0, + "name": "Laine nouvelle filière", + "shortName": "Laine nouvelle filière", + "origin": "NaturalFromAnimal", + "primary": true, + "geographicOrigin": "Asie - Pacifique", + "defaultCountry": "CN", + "priority": null, "cff": null }, { - "id": "ei-pet", - "materialProcessUuid": "f32024fc5e736e01fa14321363900581", - "recycledProcessUuid": "087896096b5bede914ef3ec1062b1c02", + "id": "ei-coton", + "materialProcessUuid": "a211822aabe83653a6079b9d5677daed", + "recycledProcessUuid": "9c6ab710-4a08-c720-cede-24428a013fda", "recycledFrom": null, - "name": "Polyester", - "shortName": "Polyester", - "origin": "Synthetic", + "name": "Coton", + "shortName": "Coton", + "origin": "NaturalFromVegetal", "primary": true, "geographicOrigin": "Asie - Pacifique", "defaultCountry": "CN", - "priority": 80, + "priority": 100, "cff": null }, { - "id": "ei-pet-r", - "materialProcessUuid": "087896096b5bede914ef3ec1062b1c02", + "id": "ei-coton-organic", + "materialProcessUuid": "coton-bio", "recycledProcessUuid": null, - "recycledFrom": "ei-pet", - "name": "Polyester recyclé", - "shortName": "Polyester recyclé", - "origin": "Synthetic", + "recycledFrom": null, + "name": "Coton biologique", + "shortName": "Coton biologique", + "origin": "NaturalFromVegetal", "primary": true, "geographicOrigin": "Asie - Pacifique", "defaultCountry": "CN", - "priority": 80, - "cff": { - "manufacturerAllocation": 0.5, - "recycledQualityRatio": 1 - } + "priority": 100, + "cff": null + }, + { + "id": "ei-chanvre", + "materialProcessUuid": "fa590941e8bbf72c8956b5c3ba793eb7", + "recycledProcessUuid": null, + "recycledFrom": null, + "name": "Chanvre", + "shortName": "Chanvre", + "origin": "NaturalFromVegetal", + "primary": true, + "geographicOrigin": "Asie - Pacifique", + "defaultCountry": "CN", + "priority": null, + "cff": null }, { "id": "ei-viscose", @@ -229,7 +195,41 @@ "primary": true, "geographicOrigin": "Asie - Pacifique", "defaultCountry": "CN", - "priority": 0, + "priority": null, "cff": null + }, + { + "id": "coton-rdpc", + "materialProcessUuid": "993955be-5888-6f39-137c-56af8c5187c1", + "recycledProcessUuid": null, + "recycledFrom": "ei-coton", + "name": "Coton recyclé (déchets post-consommation)", + "shortName": "Coton recyclé (déchets post-consommation)", + "origin": "NaturalFromVegetal", + "primary": true, + "geographicOrigin": "France", + "defaultCountry": "FR", + "priority": null, + "cff": { + "manufacturerAllocation": 0.8, + "recycledQualityRatio": 0.5 + } + }, + { + "id": "coton-rdp", + "materialProcessUuid": "9c6ab710-4a08-c720-cede-24428a013fda", + "recycledProcessUuid": null, + "recycledFrom": "ei-coton", + "name": "Coton recyclé (déchets de production)", + "shortName": "Coton recyclé (déchets de production)", + "origin": "NaturalFromVegetal", + "primary": true, + "geographicOrigin": "Espagne & France", + "defaultCountry": "FR", + "priority": null, + "cff": { + "manufacturerAllocation": 0.8, + "recycledQualityRatio": 0.5 + } } ] diff --git a/public/data/textile/processes.json b/public/data/textile/processes.json index c6d290386..e2c6456ae 100644 --- a/public/data/textile/processes.json +++ b/public/data/textile/processes.json @@ -1,6 +1,6 @@ [ { - "name": "market group for electricity, medium voltage, RAS", + "name": "electricity, medium voltage//[RAS] market group for electricity, medium voltage", "displayName": "Électricité moyenne tension, Asie", "info": "Energie > Electricité > Mix moyen", "unit": "kWh", @@ -28,8 +28,8 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 63.07231191512229, - "pef": 68.16425180398339 + "ecs": 62.603613830244775, + "pef": 67.572468289423 }, "heat_MJ": 0, "elec_pppm": 0, @@ -38,7 +38,7 @@ "alias": null }, { - "name": "market group for electricity, medium voltage, RAF", + "name": "electricity, medium voltage//[RAF] market group for electricity, medium voltage", "displayName": "Électricité moyenne tension, Afrique", "info": "Energie > Electricité > Mix moyen", "unit": "kWh", @@ -66,8 +66,8 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 51.12960864707618, - "pef": 57.47689709895714 + "ecs": 50.96801179489731, + "pef": 57.27286314080849 }, "heat_MJ": 0, "elec_pppm": 0, @@ -76,7 +76,7 @@ "alias": null }, { - "name": "market group for electricity, medium voltage, RME", + "name": "electricity, medium voltage//[RME] market group for electricity, medium voltage", "displayName": "Électricité moyenne tension, Moyen-Orient", "info": "Energie > Electricité > Mix moyen", "unit": "kWh", @@ -104,8 +104,8 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 52.06386169843278, - "pef": 54.15649584058809 + "ecs": 51.822724893794756, + "pef": 53.85203360338701 }, "heat_MJ": 0, "elec_pppm": 0, @@ -114,7 +114,7 @@ "alias": null }, { - "name": "market group for electricity, medium voltage, RLA", + "name": "electricity, medium voltage//[RLA] market group for electricity, medium voltage", "displayName": "Électricité moyenne tension, Amérique latine", "info": "Energie > Electricité > Mix moyen", "unit": "kWh", @@ -142,8 +142,8 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 27.926952016633788, - "pef": 30.24389629997297 + "ecs": 25.102886152180908, + "pef": 26.67819894378467 }, "heat_MJ": 0, "elec_pppm": 0, @@ -152,7 +152,7 @@ "alias": null }, { - "name": "market group for electricity, medium voltage, RNA", + "name": "electricity, medium voltage//[RNA] market group for electricity, medium voltage", "displayName": "Électricité moyenne tension, Amérique du nord", "info": "Energie > Electricité > Mix moyen", "unit": "kWh", @@ -180,8 +180,8 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 33.46879157188187, - "pef": 37.10846119760227 + "ecs": 32.48733569845634, + "pef": 35.86926390471668 }, "heat_MJ": 0, "elec_pppm": 0, @@ -190,7 +190,7 @@ "alias": null }, { - "name": "market for electricity, medium voltage, AU", + "name": "electricity, medium voltage//[AU] market for electricity, medium voltage", "displayName": "Électricité moyenne tension, Australie", "info": "Energie > Electricité > Mix moyen", "unit": "kWh", @@ -218,8 +218,8 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 74.88121860504617, - "pef": 82.61998726633823 + "ecs": 74.8811841164527, + "pef": 82.61994342367964 }, "heat_MJ": 0, "elec_pppm": 0, @@ -228,7 +228,7 @@ "alias": null }, { - "name": "market group for electricity, medium voltage, CN", + "name": "electricity, medium voltage//[CN] market group for electricity, medium voltage", "displayName": "Électricité moyenne tension, Chine", "info": "Energie > Electricité > Mix moyen", "unit": "kWh", @@ -256,8 +256,8 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 68.66001716910438, - "pef": 73.13819292990408 + "ecs": 64.24164844469438, + "pef": 69.15842379973827 }, "heat_MJ": 0, "elec_pppm": 0, @@ -266,7 +266,7 @@ "alias": null }, { - "name": "market for electricity, medium voltage, AL", + "name": "electricity, medium voltage//[AL] market for electricity, medium voltage", "displayName": "Électricité moyenne tension, Albanie", "info": "Energie > Electricité > Mix moyen", "unit": "kWh", @@ -294,8 +294,8 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 10.09578971009571, - "pef": 10.37133585038633 + "ecs": 11.253818771171867, + "pef": 11.83347642985147 }, "heat_MJ": 0, "elec_pppm": 0, @@ -304,7 +304,7 @@ "alias": null }, { - "name": "market for electricity, medium voltage, PE", + "name": "electricity, medium voltage//[PE] market for electricity, medium voltage", "displayName": "Électricité moyenne tension, Pérou", "info": "Energie > Electricité > Mix moyen", "unit": "kWh", @@ -332,8 +332,8 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 37.2694555784697, - "pef": 44.22111637512356 + "ecs": 17.343952123426455, + "pef": 19.062951024438945 }, "heat_MJ": 0, "elec_pppm": 0, @@ -342,7 +342,7 @@ "alias": null }, { - "name": "market for electricity, medium voltage, NZ", + "name": "electricity, medium voltage//[NZ] market for electricity, medium voltage", "displayName": "Électricité moyenne tension, Nouvelle-Zélande", "info": "Energie > Electricité > Mix moyen", "unit": "kWh", @@ -370,8 +370,8 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 9.313330773764823, - "pef": 9.56585761805052 + "ecs": 10.094869860855908, + "pef": 10.552637688310561 }, "heat_MJ": 0, "elec_pppm": 0, @@ -380,7 +380,7 @@ "alias": null }, { - "name": "market for electricity, medium voltage, MA", + "name": "electricity, medium voltage//[MA] market for electricity, medium voltage", "displayName": "Électricité moyenne tension, Maroc", "info": "Energie > Electricité > Mix moyen", "unit": "kWh", @@ -408,8 +408,8 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 51.97444545594945, - "pef": 56.71474482470129 + "ecs": 61.81782996352887, + "pef": 67.28467836877752 }, "heat_MJ": 0, "elec_pppm": 0, @@ -418,7 +418,7 @@ "alias": null }, { - "name": "market for electricity, medium voltage, KE", + "name": "electricity, medium voltage//[KE] market for electricity, medium voltage", "displayName": "Électricité moyenne tension, Kenya", "info": "Energie > Electricité > Mix moyen", "unit": "kWh", @@ -446,8 +446,8 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 15.397269105067446, - "pef": 14.721269392674182 + "ecs": 15.746902213915206, + "pef": 15.162720126799286 }, "heat_MJ": 0, "elec_pppm": 0, @@ -456,7 +456,7 @@ "alias": null }, { - "name": "market for electricity, medium voltage, IT", + "name": "electricity, medium voltage//[IT] market for electricity, medium voltage", "displayName": "Électricité moyenne tension, Italie", "info": "Energie > Electricité > Mix moyen", "unit": "kWh", @@ -484,8 +484,8 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 27.029217472668655, - "pef": 29.39906976059051 + "ecs": 25.75909111969023, + "pef": 27.79539379175755 }, "heat_MJ": 0, "elec_pppm": 0, @@ -494,7 +494,7 @@ "alias": null }, { - "name": "market for electricity, medium voltage, RER", + "name": "electricity, medium voltage//[RER] market group for electricity, medium voltage", "displayName": "Électricité moyenne tension, Europe", "info": "Energie > Electricité > Mix moyen", "unit": "kWh", @@ -522,8 +522,8 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 32.91952782797804, - "pef": 36.8521504185399 + "ecs": 31.74088404695165, + "pef": 35.36398153017472 }, "heat_MJ": 0, "elec_pppm": 0, @@ -532,7 +532,7 @@ "alias": null }, { - "name": "market for electricity, medium voltage, ES", + "name": "electricity, medium voltage//[ES] market for electricity, medium voltage", "displayName": "Électricité moyenne tension, Espagne", "info": "Energie > Electricité > Mix moyen", "unit": "kWh", @@ -560,8 +560,8 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 24.088595037218766, - "pef": 26.676201239056496 + "ecs": 24.088594861524538, + "pef": 26.676201035245835 }, "heat_MJ": 0, "elec_pppm": 0, @@ -570,7 +570,7 @@ "alias": null }, { - "name": "market for electricity, medium voltage, FR", + "name": "electricity, medium voltage//[FR] market for electricity, medium voltage", "displayName": "Électricité moyenne tension, France", "info": "Energie > Electricité > Mix moyen", "unit": "kWh", @@ -598,8 +598,8 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 22.037794960999594, - "pef": 26.171023803987612 + "ecs": 22.203313846657093, + "pef": 26.457894467307508 }, "heat_MJ": 0, "elec_pppm": 0, @@ -608,7 +608,7 @@ "alias": null }, { - "name": "market group for electricity, medium voltage, MM", + "name": "electricity, medium voltage//[MM] market for electricity, medium voltage", "displayName": "Électricité moyenne tension, Myanmar", "info": "Energie > Electricité > Mix moyen", "unit": "kWh", @@ -636,8 +636,8 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 22.86203905900447, - "pef": 24.663180173348902 + "ecs": 23.363843709081053, + "pef": 25.296764431669217 }, "heat_MJ": 0, "elec_pppm": 0, @@ -646,7 +646,7 @@ "alias": null }, { - "name": "market group for electricity, medium voltage, IN", + "name": "electricity, medium voltage//[IN] market group for electricity, medium voltage", "displayName": "Électricité moyenne tension, Inde", "info": "Energie > Electricité > Mix moyen", "unit": "kWh", @@ -674,8 +674,8 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 87.58488453962532, - "pef": 95.63659297903982 + "ecs": 93.04829599496097, + "pef": 101.62695244753462 }, "heat_MJ": 0, "elec_pppm": 0, @@ -688,7 +688,7 @@ "displayName": "Elasthane (Lycra)", "info": "Textile > Matières > Matières synthétiques", "unit": "kg", - "source": "Ecobalyse", + "source": "Custom", "correctif": "", "step_usage": "Matières", "uuid": "elasthane-lycra", @@ -712,8 +712,8 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 1042.5934373602631, - "pef": 656.9997972762473 + "ecs": 1042.593437360263, + "pef": 656.9997972762471 }, "heat_MJ": 0, "elec_pppm": 0, @@ -722,7 +722,7 @@ "alias": null }, { - "name": "polymethyl methacrylate production, beads [RoW]", + "name": "polymethyl methacrylate, beads//[RoW] polymethyl methacrylate production, beads", "displayName": "Production de plexiglas (Polyméthacrylate de méthyle)", "info": "Textile > Matières > Matières synthétiques", "unit": "kg", @@ -750,8 +750,8 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 500.2198125962985, - "pef": 557.5596780322377 + "ecs": 494.2911338622397, + "pef": 550.0740644734477 }, "heat_MJ": 0, "elec_pppm": 0, @@ -760,7 +760,7 @@ "alias": null }, { - "name": "fibre production, jute, retting [RoW]", + "name": "fibre, jute//[RoW] fibre production, jute, retting", "displayName": "Production de jute, rouissage", "info": "Textile > Matières > Matières naturelles", "unit": "kg", @@ -788,8 +788,8 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 907.2652271360823, - "pef": 806.6021678448908 + "ecs": 877.3715835740272, + "pef": 768.8582369858626 }, "heat_MJ": 0, "elec_pppm": 0, @@ -798,7 +798,7 @@ "alias": null }, { - "name": "polypropylene production, granulate [RoW]", + "name": "polypropylene, granulate//[RoW] polypropylene production, granulate", "displayName": "Production de polypropylène, granulés", "info": "Textile > Matières > Matières synthétiques", "unit": "kg", @@ -826,8 +826,8 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 207.01625510215553, - "pef": 230.82895309490212 + "ecs": 198.79025180939377, + "pef": 222.14731849829033 }, "heat_MJ": 0, "elec_pppm": 0, @@ -836,7 +836,7 @@ "alias": null }, { - "name": "polyethylene terephthalate production, granulate, amorphous [RoW]", + "name": "polyethylene terephthalate, granulate, amorphous//[RoW] polyethylene terephthalate production, granulate, amorphous", "displayName": "Production de PET, granulés, amorphe", "info": "Textile > Matières > Matières synthétiques", "unit": "kg", @@ -864,8 +864,8 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 272.8889137819099, - "pef": 299.21172981887804 + "ecs": 279.6462646839095, + "pef": 309.71558911493605 }, "heat_MJ": 0, "elec_pppm": 0, @@ -874,7 +874,7 @@ "alias": null }, { - "name": "polyethylene terephthalate production, granulate, amorphous, recycled [RoW]", + "name": "polyethylene terephthalate, granulate, amorphous, recycled//[RoW] polyethylene terephthalate production, granulate, amorphous, recycled", "displayName": "Production de PET recyclé, granulés, amorphe", "info": "Textile > Matières > Matières synthétiques", "unit": "kg", @@ -902,8 +902,8 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 134.81597237178747, - "pef": 140.1451151171533 + "ecs": 133.09616729865036, + "pef": 138.9890125263651 }, "heat_MJ": 0, "elec_pppm": 0, @@ -912,7 +912,7 @@ "alias": null }, { - "name": "nylon 6-6 production [RoW]", + "name": "nylon 6-6//[RoW] nylon 6-6 production", "displayName": "Production de nylon 6-6", "info": "Textile > Matières > Matières synthétiques", "unit": "kg", @@ -940,8 +940,8 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 518.1820901852709, - "pef": 570.233489866642 + "ecs": 518.2094523470295, + "pef": 570.2684161564904 }, "heat_MJ": 0, "elec_pppm": 0, @@ -950,7 +950,7 @@ "alias": null }, { - "name": "fibre production, flax, retting [RoW]", + "name": "fibre, flax//[RoW] fibre production, flax, retting", "displayName": "Production de fibres de lin, rouissage", "info": "Textile > Matières > Matières naturelles", "unit": "kg", @@ -978,8 +978,8 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 256.24140650160166, - "pef": 257.4011497575117 + "ecs": 261.3178608717324, + "pef": 256.951793458764 }, "heat_MJ": 0, "elec_pppm": 0, @@ -992,7 +992,7 @@ "displayName": "Laine par défaut", "info": "Textile > Matières > Matières naturelles", "unit": "kg", - "source": "Ecobalyse", + "source": "Custom", "correctif": "", "step_usage": "Matières", "uuid": "wool-default", @@ -1017,7 +1017,7 @@ "tre": 0, "wtu": 0, "ecs": 4263.098561863456, - "pef": 4646.846238265963 + "pef": 4646.846238265962 }, "heat_MJ": 0, "elec_pppm": 0, @@ -1030,7 +1030,7 @@ "displayName": "Laine nouvelle filière", "info": "Textile > Matières > Matières naturelles uuid_bi=376bd165-d354-41aa-a6e3-fd3228413bb2", "unit": "kg", - "source": "Ecobalyse", + "source": "Custom", "correctif": "", "step_usage": "Matières", "uuid": "wool-new", @@ -1064,7 +1064,7 @@ "alias": null }, { - "name": "fibre production, cotton, ginning, RoW", + "name": "fibre, cotton//[RoW] fibre production, cotton, ginning", "displayName": "Production de fibres de coton", "info": "Textile > Matières > Matières naturelles", "unit": "kg", @@ -1092,8 +1092,8 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 1791.8068591660822, - "pef": 775.3090013405736 + "ecs": 1636.4706545472218, + "pef": 573.0550833318028 }, "heat_MJ": 0, "elec_pppm": 0, @@ -1102,11 +1102,11 @@ "alias": null }, { - "name": "fibre production, cotton, organic, ginning [RoW] (Ecobalyse)", + "name": "Production de fibres de coton bio", "displayName": "Production de fibres de coton bio", "info": "Textile > Matières > Matières naturelles", "unit": "kg", - "source": "Ecobalyse", + "source": "Custom", "correctif": "", "step_usage": "Matières", "uuid": "coton-bio", @@ -1130,7 +1130,7 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 618.962439739018, + "ecs": 618.9624397390182, "pef": 736.2192841211813 }, "heat_MJ": 0, @@ -1140,7 +1140,7 @@ "alias": null }, { - "name": "sunn hemp production [RoW]", + "name": "sunn hemp plant, harvested//[RoW] sunn hemp production", "displayName": "Production de chanvre", "info": "Textile > Matières > Matières naturelles", "unit": "kg", @@ -1168,8 +1168,8 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 301.90470100537027, - "pef": 62.44050114087389 + "ecs": 294.4297784688472, + "pef": 50.42407156564021 }, "heat_MJ": 0, "elec_pppm": 0, @@ -1178,7 +1178,7 @@ "alias": null }, { - "name": "market for fibre, viscose [GLO]", + "name": "fibre, viscose//[GLO] market for fibre, viscose", "displayName": "Fibre de viscose", "info": "Textile > Matières > Matières synthétiques", "unit": "kg", @@ -1206,8 +1206,8 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 354.4292573475441, - "pef": 356.1743123213975 + "ecs": 354.939293800587, + "pef": 354.5790491655871 }, "heat_MJ": 0, "elec_pppm": 0, @@ -1216,11 +1216,11 @@ "alias": null }, { - "name": "Production de coton recyclé (recyclage mécanique) pré-filature, traitement de déchets textiles post-consommation, inventaire partiellement agrégé", + "name": "Production de coton recyclé (déchets post-consommation)", "displayName": "Production de coton recyclé (déchets post-consommation)", "info": "Textile > Matières > Matières recyclées uuid_bi=4d23093d-1346-4018-8c0f-7aae33c67bcd", "unit": "kg", - "source": "Ecobalyse", + "source": "Custom", "correctif": "corr1: Données Base Impacts 2.01 uuid_bi=d23093d-1346-4018-8c0f-7aae33c67bcd auquel a été retranché l'impact de la filature", "step_usage": "Matières", "uuid": "993955be-5888-6f39-137c-56af8c5187c1", @@ -1245,7 +1245,7 @@ "tre": 0, "wtu": 0, "ecs": 179.4597612653979, - "pef": 221.26277508920256 + "pef": 221.26277508920253 }, "heat_MJ": 0, "elec_pppm": 0, @@ -1254,11 +1254,11 @@ "alias": null }, { - "name": "Production de coton recyclé (recyclage mécanique) pré-filature, traitement de déchets de production textiles, inventaire partiellement agrégé", + "name": "Production de coton recyclé (déchets de production)", "displayName": "Production de coton recyclé (déchets de production)", "info": "Textile > Matières > Matières recyclées uuid_bi=2b24abb0-c1ec-4298-9b58-350904a26104", "unit": "kg", - "source": "Ecobalyse", + "source": "Custom", "correctif": "corr1: Données Base Impacts 2.01 uuid_bi=2b24abb0-c1ec-4298-9b58-350904a26104 auquel a été retranché l'impact de la filature", "step_usage": "Matières", "uuid": "9c6ab710-4a08-c720-cede-24428a013fda", @@ -1282,7 +1282,7 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 147.07224315665147, + "ecs": 147.0722431566515, "pef": 185.4743814674453 }, "heat_MJ": 0, @@ -1296,7 +1296,7 @@ "displayName": "Tricotage moyen (mix de métiers circulaire & rectiligne)", "info": "Textile > Mise en forme > Tricotage", "unit": "kg", - "source": "Ecobalyse", + "source": "Custom", "correctif": "non applicable", "step_usage": "Tissage / Tricotage", "uuid": "9c478d79-ff6b-45e1-9396-c3bd897faa1d", @@ -1320,8 +1320,8 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 0, - "pef": 0 + "ecs": 0.0, + "pef": 0.0 }, "heat_MJ": 0, "elec_pppm": 0, @@ -1334,7 +1334,7 @@ "displayName": "Tricotage fully-fashioned", "info": "Textile > Mise en forme > Tricotage", "unit": "kg", - "source": "Ecobalyse", + "source": "Custom", "correctif": "non applicable", "step_usage": "Tissage / Tricotage", "uuid": "6524ac1e-cc95-4b5a-b462-2fccad7a0bce", @@ -1358,8 +1358,8 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 0, - "pef": 0 + "ecs": 0.0, + "pef": 0.0 }, "heat_MJ": 0, "elec_pppm": 0, @@ -1372,7 +1372,7 @@ "displayName": "Tricotage seamless", "info": "Textile > Mise en forme > Tricotage", "unit": "kg", - "source": "Ecobalyse", + "source": "Custom", "correctif": "non applicable", "step_usage": "Tissage / Tricotage", "uuid": "11648b33-f117-4eca-bb09-233c0ad0757f", @@ -1396,8 +1396,8 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 0, - "pef": 0 + "ecs": 0.0, + "pef": 0.0 }, "heat_MJ": 0, "elec_pppm": 0, @@ -1410,7 +1410,7 @@ "displayName": "Tissage (habillement)", "info": "Textile > Mise en forme > Tissage", "unit": "kg", - "source": "Ecobalyse", + "source": "Custom", "correctif": "non applicable", "step_usage": "Tissage / Tricotage", "uuid": "f9686809-f55e-4b96-b1f0-3298959de7d0", @@ -1434,8 +1434,8 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 0, - "pef": 0 + "ecs": 0.0, + "pef": 0.0 }, "heat_MJ": 0, "elec_pppm": 0.0003145, @@ -1511,7 +1511,7 @@ "tre": 0, "wtu": 0, "ecs": 78.78597840930105, - "pef": 94.30202340574053 + "pef": 94.30202340574051 }, "heat_MJ": 30.06, "elec_pppm": 0, @@ -1549,7 +1549,7 @@ "tre": 0, "wtu": 0, "ecs": 60.47104887932729, - "pef": 72.46288021314759 + "pef": 72.46288021314761 }, "heat_MJ": 33.42, "elec_pppm": 0, @@ -1561,7 +1561,7 @@ "name": "transport, freight, sea, container ship//[GLO] market for transport, freight, sea, container ship", "displayName": "transport maritime", "info": "Transport > Maritime > Flotte moyenne", - "unit": "t*km", + "unit": "t⋅km", "source": "Ecoinvent 3.9.1", "correctif": "non applicable", "step_usage": "Transport", @@ -1586,8 +1586,8 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 1.3073212835535144, - "pef": 1.4348607997381615 + "ecs": 1.3052891375827191, + "pef": 1.4322921637269501 }, "heat_MJ": 0, "elec_pppm": 0, @@ -1599,7 +1599,7 @@ "name": "transport, freight, aircraft, long haul//[GLO] market for transport, freight, aircraft, long haul", "displayName": "transport aérien long-courrier", "info": "Transport > Aérien > Flotte moyenne", - "unit": "t*km", + "unit": "t⋅km", "source": "Ecoinvent 3.9.1", "correctif": "non applicable", "step_usage": "Transport", @@ -1624,8 +1624,8 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 59.49450536841945, - "pef": 57.313621957893034 + "ecs": 59.40178064207564, + "pef": 57.19662380793924 }, "heat_MJ": 0, "elec_pppm": 0, @@ -1637,7 +1637,7 @@ "name": "transport, freight train//[GLO] market group for transport, freight train", "displayName": "transport ferroviaire", "info": "Transport > Train > Flotte moyenne", - "unit": "t*km", + "unit": "t⋅km", "source": "Ecoinvent 3.9.1", "correctif": "non applicable", "step_usage": "Transport", @@ -1662,8 +1662,8 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 5.516681916688929, - "pef": 5.871039372042421 + "ecs": 5.485982019299962, + "pef": 5.8322976988226625 }, "heat_MJ": 0, "elec_pppm": 0, @@ -1675,7 +1675,7 @@ "name": "transport, freight, lorry, unspecified//[GLO] market group for transport, freight, lorry, unspecified", "displayName": "transport routier", "info": "Transport > Routier > Flotte moyenne continentale", - "unit": "t*km", + "unit": "t⋅km", "source": "Ecoinvent 3.9.1", "correctif": "non applicable", "step_usage": "Transport", @@ -1700,8 +1700,8 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 15.686304452119371, - "pef": 14.032282251508976 + "ecs": 15.589216092520365, + "pef": 13.909104855022996 }, "heat_MJ": 0, "elec_pppm": 0, @@ -1738,8 +1738,8 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 20.6042751673443, - "pef": 24.033004439288675 + "ecs": 20.604275167344298, + "pef": 24.033004439288668 }, "heat_MJ": 0, "elec_pppm": 0, @@ -1748,7 +1748,7 @@ "alias": "distribution" }, { - "name": "market for electricity, medium voltage, TN", + "name": "electricity, medium voltage//[TN] market for electricity, medium voltage", "displayName": "Électricité moyenne tension, Tunisie", "info": "Energie > Electricité > Mix moyen", "unit": "kWh", @@ -1776,8 +1776,8 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 30.294841443313274, - "pef": 33.60116376583419 + "ecs": 33.025501055000106, + "pef": 36.09204359775752 }, "heat_MJ": 0, "elec_pppm": 0, @@ -1786,7 +1786,7 @@ "alias": null }, { - "name": "market for electricity, medium voltage, TR", + "name": "electricity, medium voltage//[TR] market for electricity, medium voltage", "displayName": "Électricité moyenne tension, Turquie", "info": "Energie > Electricité > Mix moyen", "unit": "kWh", @@ -1814,8 +1814,8 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 47.35728709738637, - "pef": 52.23543063816331 + "ecs": 45.86611638957674, + "pef": 50.22894252636405 }, "heat_MJ": 0, "elec_pppm": 0, @@ -1824,7 +1824,7 @@ "alias": null }, { - "name": "market for electricity, medium voltage, BD", + "name": "electricity, medium voltage//[BD] market for electricity, medium voltage", "displayName": "Électricité moyenne tension, Bangladesh", "info": "Energie > Electricité > Mix moyen", "unit": "kWh", @@ -1852,8 +1852,8 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 47.936347390453456, - "pef": 51.839081407742654 + "ecs": 51.1431823374395, + "pef": 54.133563259006316 }, "heat_MJ": 0, "elec_pppm": 0, @@ -1862,7 +1862,7 @@ "alias": null }, { - "name": "market group for electricity, medium voltage, BR", + "name": "electricity, medium voltage//[BR] market group for electricity, medium voltage", "displayName": "Électricité moyenne tension, Brésil", "info": "Energie > Electricité > Mix moyen", "unit": "kWh", @@ -1890,8 +1890,8 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 14.333816627518155, - "pef": 15.438721280367199 + "ecs": 14.333816620551765, + "pef": 15.438721259967162 }, "heat_MJ": 0, "elec_pppm": 0, @@ -1900,7 +1900,7 @@ "alias": null }, { - "name": "market for electricity, medium voltage, CZ", + "name": "electricity, medium voltage//[CZ] market for electricity, medium voltage", "displayName": "Électricité moyenne tension, République Tchèque", "info": "Energie > Electricité > Mix moyen", "unit": "kWh", @@ -1928,8 +1928,8 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 58.22000924873968, - "pef": 64.21583485567096 + "ecs": 58.22000934018208, + "pef": 64.21583493522782 }, "heat_MJ": 0, "elec_pppm": 0, @@ -1938,7 +1938,7 @@ "alias": null }, { - "name": "market for electricity, medium voltage, ET", + "name": "electricity, medium voltage//[ET] market for electricity, medium voltage", "displayName": "Électricité moyenne tension, Éthiopie", "info": "Energie > Electricité > Mix moyen", "unit": "kWh", @@ -1966,8 +1966,8 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 2.5992113907948795, - "pef": 2.420402483124184 + "ecs": 2.599211396644681, + "pef": 2.420402496037708 }, "heat_MJ": 0, "elec_pppm": 0, @@ -1976,7 +1976,7 @@ "alias": null }, { - "name": "market for electricity, medium voltage, KH", + "name": "electricity, medium voltage//[KH] market for electricity, medium voltage", "displayName": "Électricité moyenne tension, Cambodge", "info": "Energie > Electricité > Mix moyen", "unit": "kWh", @@ -2004,8 +2004,8 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 43.72706504969444, - "pef": 50.24766417725164 + "ecs": 57.38090586175485, + "pef": 62.24016310342568 }, "heat_MJ": 0, "elec_pppm": 0, @@ -2014,7 +2014,7 @@ "alias": null }, { - "name": "market for electricity, medium voltage, LK", + "name": "electricity, medium voltage//[SK] market for electricity, medium voltage", "displayName": "Électricité moyenne tension, Sri Lanka", "info": "Energie > Electricité > Mix moyen", "unit": "kWh", @@ -2042,8 +2042,8 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 43.40517283622236, - "pef": 46.417531821764726 + "ecs": 42.162212750927814, + "pef": 47.60564420358556 }, "heat_MJ": 0, "elec_pppm": 0, @@ -2052,7 +2052,7 @@ "alias": null }, { - "name": "market for electricity, medium voltage, PK", + "name": "electricity, medium voltage//[PK] market for electricity, medium voltage", "displayName": "Électricité moyenne tension, Pakistan", "info": "Energie > Electricité > Mix moyen", "unit": "kWh", @@ -2080,8 +2080,8 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 34.60298703126678, - "pef": 37.46317521008122 + "ecs": 35.933618510081594, + "pef": 38.48886281648279 }, "heat_MJ": 0, "elec_pppm": 0, @@ -2090,7 +2090,7 @@ "alias": null }, { - "name": "market group for electricity, medium voltage US", + "name": "electricity, medium voltage//[US] market group for electricity, medium voltage", "displayName": "Électricité moyenne tension, USA", "info": "Energie > Electricité > Mix moyen", "unit": "kWh", @@ -2118,8 +2118,8 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 34.25620694204882, - "pef": 37.75748495540171 + "ecs": 34.256207010996604, + "pef": 37.757485039069145 }, "heat_MJ": 0, "elec_pppm": 0, @@ -2128,7 +2128,7 @@ "alias": null }, { - "name": "market for electricity, medium voltage, VN", + "name": "electricity, medium voltage//[VN] market for electricity, medium voltage", "displayName": "Électricité moyenne tension, Viet Nam", "info": "Energie > Electricité > Mix moyen", "unit": "kWh", @@ -2156,8 +2156,8 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 36.784101772885684, - "pef": 40.07675857851145 + "ecs": 44.984063407619814, + "pef": 48.94992432662239 }, "heat_MJ": 0, "elec_pppm": 0, @@ -2166,11 +2166,11 @@ "alias": null }, { - "name": "Heat mix (Europe)", + "name": "Mix chaleur (Europe)", "displayName": "Mix chaleur (Europe)", "info": "Energie > Chaleur > Vapeur par énergie primaire", "unit": "MJ", - "source": "Ecobalyse", + "source": "Custom", "correctif": "Reconstitution du mix depuis Ecoinvent 3.9.1", "step_usage": "Energie", "uuid": "heat-europe", @@ -2194,8 +2194,8 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 4.083605241745064, - "pef": 4.443660504016496 + "ecs": 4.083605241745065, + "pef": 4.443660504016495 }, "heat_MJ": 0, "elec_pppm": 0, @@ -2204,11 +2204,11 @@ "alias": "heat-europe" }, { - "name": "Heat mix (World)", + "name": "Mix chaleur (Monde)", "displayName": "Mix chaleur (Monde)", "info": "Energie > Chaleur > Vapeur par énergie primaire", "unit": "MJ", - "source": "Ecobalyse", + "source": "Custom", "correctif": "Reconstitution du mix depuis Ecoinvent 3.9.1", "step_usage": "Energie", "uuid": "heat-row", @@ -2232,8 +2232,8 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 7.082834566329015, - "pef": 7.82738331952437 + "ecs": 7.082834566329016, + "pef": 7.827383319524371 }, "heat_MJ": 0, "elec_pppm": 0, @@ -2242,11 +2242,11 @@ "alias": "heat-row" }, { - "name": "Utilisation : Impact hors repassage (électricité (lave-linge, sèche-linge), lessive liquide et traitement des eaux usées) (Chemisier) - Non ironing impact", + "name": "Utilisation : Impact hors repassage (Chemisier)", "displayName": "Utilisation : Impact hors repassage (Chemisier)", "info": "Utilisation > Aggrégation multi-impacts > Electricité (lave-linge, sèche-linge), lessive liquide et traitement des eaux usées", "unit": "kg", - "source": "Ecobalyse", + "source": "Custom", "correctif": "", "step_usage": "Utilisation", "uuid": "406d1f98-1052-458d-8f50-1901853d896d", @@ -2270,8 +2270,8 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 15.133534579300136, - "pef": 18.849860331795774 + "ecs": 15.133534579300138, + "pef": 18.84986033179577 }, "heat_MJ": 0, "elec_pppm": 0, @@ -2280,11 +2280,11 @@ "alias": null }, { - "name": "Utilisation : Impact hors repassage (électricité (lave-linge, sèche-linge), lessive liquide et traitement des eaux usées) (Jean) - Non ironing impact", + "name": "Utilisation : Impact hors repassage (Jean)", "displayName": "Utilisation : Impact hors repassage (Jean)", "info": "Utilisation > Aggrégation multi-impacts > Electricité (lave-linge, sèche-linge), lessive liquide et traitement des eaux usées", "unit": "kg", - "source": "Ecobalyse", + "source": "Custom", "correctif": "", "step_usage": "Utilisation", "uuid": "4964273a-cdbd-43cf-8cf8-4b017aee4f03", @@ -2308,8 +2308,8 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 15.133534579300136, - "pef": 18.849860331795774 + "ecs": 15.133534579300138, + "pef": 18.84986033179577 }, "heat_MJ": 0, "elec_pppm": 0, @@ -2318,11 +2318,11 @@ "alias": null }, { - "name": "Utilisation : Impact hors repassage (électricité (lave-linge, sèche-linge), lessive liquide et traitement des eaux usées) (Jupe) - Non ironing impact", + "name": "Utilisation : Impact hors repassage (Jupe)", "displayName": "Utilisation : Impact hors repassage (Jupe)", "info": "Utilisation > Aggrégation multi-impacts > Electricité (lave-linge, sèche-linge), lessive liquide et traitement des eaux usées", "unit": "kg", - "source": "Ecobalyse", + "source": "Custom", "correctif": "", "step_usage": "Utilisation", "uuid": "2572015b-7320-4ce1-bc99-cc6de371a654", @@ -2346,8 +2346,8 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 15.133534579300136, - "pef": 18.849860331795774 + "ecs": 15.133534579300138, + "pef": 18.84986033179577 }, "heat_MJ": 0, "elec_pppm": 0, @@ -2356,11 +2356,11 @@ "alias": null }, { - "name": "Utilisation : Impact hors repassage (électricité (lave-linge, sèche-linge), lessive liquide et traitement des eaux usées) (Manteau) - Non ironing impact", + "name": "Utilisation : Impact hors repassage (Manteau)", "displayName": "Utilisation : Impact hors repassage (Manteau)", "info": "Utilisation > Aggrégation multi-impacts > Electricité (lave-linge, sèche-linge), lessive liquide et traitement des eaux usées", "unit": "kg", - "source": "Ecobalyse", + "source": "Custom", "correctif": "", "step_usage": "Utilisation", "uuid": "8c040f35-e137-424b-a67f-2e50b628c1bf", @@ -2384,8 +2384,8 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 15.133534579300136, - "pef": 18.849860331795774 + "ecs": 15.133534579300138, + "pef": 18.84986033179577 }, "heat_MJ": 0, "elec_pppm": 0, @@ -2394,11 +2394,11 @@ "alias": null }, { - "name": "Utilisation : Impact hors repassage (électricité (lave-linge, sèche-linge), lessive liquide et traitement des eaux usées) (Pantalon) - Non ironing impact", + "name": "Utilisation : Impact hors repassage (Pantalon)", "displayName": "Utilisation : Impact hors repassage (Pantalon)", "info": "Utilisation > Aggrégation multi-impacts > Electricité (lave-linge, sèche-linge), lessive liquide et traitement des eaux usées", "unit": "kg", - "source": "Ecobalyse", + "source": "Custom", "correctif": "", "step_usage": "Utilisation", "uuid": "ea7afeed-c058-4dbb-be01-66704a9afb1f", @@ -2422,8 +2422,8 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 15.133534579300136, - "pef": 18.849860331795774 + "ecs": 15.133534579300138, + "pef": 18.84986033179577 }, "heat_MJ": 0, "elec_pppm": 0, @@ -2432,11 +2432,11 @@ "alias": null }, { - "name": "Utilisation : Impact hors repassage (électricité (lave-linge, sèche-linge), lessive liquide et traitement des eaux usées) (Pull) - Non ironing impact", + "name": "Utilisation : Impact hors repassage (Pull)", "displayName": "Utilisation : Impact hors repassage (Pull)", "info": "Utilisation > Aggrégation multi-impacts > Electricité (lave-linge, sèche-linge), lessive liquide et traitement des eaux usées", "unit": "kg", - "source": "Ecobalyse", + "source": "Custom", "correctif": "", "step_usage": "Utilisation", "uuid": "2b39a7ac-38bd-435f-85a4-783023d845bf", @@ -2460,8 +2460,8 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 15.133534579300136, - "pef": 18.849860331795774 + "ecs": 15.133534579300138, + "pef": 18.84986033179577 }, "heat_MJ": 0, "elec_pppm": 0, @@ -2470,11 +2470,11 @@ "alias": null }, { - "name": "Utilisation : Impact hors repassage (électricité (lave-linge, sèche-linge), lessive liquide et traitement des eaux usées) (Robe) - Non ironing impact", + "name": "Utilisation : Impact hors repassage (Robe)", "displayName": "Utilisation : Impact hors repassage (Robe)", "info": "Utilisation > Aggrégation multi-impacts > Electricité (lave-linge, sèche-linge), lessive liquide et traitement des eaux usées", "unit": "kg", - "source": "Ecobalyse", + "source": "Custom", "correctif": "", "step_usage": "Utilisation", "uuid": "d3bff7b7-efc1-459b-856d-ea0801d6912f", @@ -2498,8 +2498,8 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 15.133534579300136, - "pef": 18.849860331795774 + "ecs": 15.133534579300138, + "pef": 18.84986033179577 }, "heat_MJ": 0, "elec_pppm": 0, @@ -2508,11 +2508,11 @@ "alias": null }, { - "name": "Utilisation : Impact hors repassage (électricité (lave-linge, sèche-linge), lessive liquide et traitement des eaux usées) (T-shirt) - Non ironing impact", + "name": "Utilisation : Impact hors repassage (T-shirt)", "displayName": "Utilisation : Impact hors repassage (T-shirt)", "info": "Utilisation > Aggrégation multi-impacts > Electricité (lave-linge, sèche-linge), lessive liquide et traitement des eaux usées", "unit": "kg", - "source": "Ecobalyse", + "source": "Custom", "correctif": "", "step_usage": "Utilisation", "uuid": "7f76529e-521d-4795-bb36-ff896c4692da", @@ -2536,8 +2536,8 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 15.133534579300136, - "pef": 18.849860331795774 + "ecs": 15.133534579300138, + "pef": 18.84986033179577 }, "heat_MJ": 0, "elec_pppm": 0, @@ -2588,7 +2588,7 @@ "displayName": "Fin de vie hors voiture (transport en camion, incinération, mise en décharge)", "info": "Fin de vie > Aggrégation multi-impacts > ", "unit": "kg", - "source": "Ecobalyse", + "source": "Custom", "correctif": "Précalcul Ecobalyse à partir de Base Impacts", "step_usage": "Fin de vie", "uuid": "266fa378-77c0-11ec-90d6-0242ac120003", @@ -2612,7 +2612,7 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 33.10958312937074, + "ecs": 33.109583129370755, "pef": 33.28066255209558 }, "heat_MJ": 0, @@ -2622,11 +2622,11 @@ "alias": "end-of-life" }, { - "name": "Tricotage rectiligne, inventaire désagrégé", + "name": "Tricotage rectiligne", "displayName": "Tricotage rectiligne", "info": "Textile > Mise en forme > Tricotage", "unit": "kg", - "source": "Ecobalyse", + "source": "Custom", "correctif": "non applicable", "step_usage": "Tissage / Tricotage", "uuid": "364298ad-2058-4ec4-b2d0-47f5214abffb", @@ -2650,8 +2650,8 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 0, - "pef": 0 + "ecs": 0.0, + "pef": 0.0 }, "heat_MJ": 0, "elec_pppm": 0, @@ -2660,11 +2660,11 @@ "alias": "knitting-straight" }, { - "name": "Tricotage circulaire, inventaire désagrégé", + "name": "Tricotage circulaire", "displayName": "Tricotage circulaire", "info": "Textile > Mise en forme > Tricotage", "unit": "kg", - "source": "Ecobalyse", + "source": "Custom", "correctif": "non applicable", "step_usage": "Tissage / Tricotage", "uuid": "2e16787c-7a89-4883-acdf-37d3d362bdab", @@ -2688,8 +2688,8 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 0, - "pef": 0 + "ecs": 0.0, + "pef": 0.0 }, "heat_MJ": 0, "elec_pppm": 0, @@ -2726,8 +2726,8 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 19.02626819356544, - "pef": 22.66169575467732 + "ecs": 19.026268193565436, + "pef": 22.661695754677325 }, "heat_MJ": 37.81, "elec_pppm": 0, @@ -2764,7 +2764,7 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 6.982066280639367, + "ecs": 6.9820662806393665, "pef": 8.354115771936371 }, "heat_MJ": 7.25, @@ -2802,7 +2802,7 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 6.703583334489573, + "ecs": 6.703583334489572, "pef": 8.180265537420423 }, "heat_MJ": 8.72, @@ -2854,7 +2854,7 @@ "displayName": "Teinture fibres synthétiques", "info": "Textile > Ennoblissement > Teinture", "unit": "kg", - "source": "Ecobalyse", + "source": "Custom", "correctif": "Inventaires enrichis (substances chimiques)", "step_usage": "Ennoblissement", "uuid": "ecobalyse-teinture-fibres-synthetiques", @@ -2878,8 +2878,8 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 223.90514244228544, - "pef": 0 + "ecs": 223.9051424422854, + "pef": 0.0 }, "heat_MJ": 10.74, "elec_pppm": 0, @@ -2892,7 +2892,7 @@ "displayName": "Teinture fibres cellulosiques", "info": "Textile > Ennoblissement > Teinture", "unit": "kg", - "source": "Ecobalyse", + "source": "Custom", "correctif": "Inventaires enrichis (substances chimiques)", "step_usage": "Ennoblissement", "uuid": "ecobalyse-teinture-fibres-cellulosiques", @@ -2916,8 +2916,8 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 585.5577498796123, - "pef": 0 + "ecs": 585.5577498796122, + "pef": 0.0 }, "heat_MJ": 10.74, "elec_pppm": 0, @@ -2954,8 +2954,8 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 11.066608295453653, - "pef": 12.122376319214194 + "ecs": 10.10050562041144, + "pef": 10.471103597886401 }, "heat_MJ": 10.74, "elec_pppm": 0, @@ -2968,7 +2968,7 @@ "displayName": "Impression (pigmentaire)", "info": "Textile > Ennoblissement > Impression", "unit": "kg", - "source": "Ecobalyse", + "source": "Custom", "correctif": "Inventaires enrichis (substances chimiques)", "step_usage": "Ennoblissement", "uuid": "ecobalyse-impression-pigmentaire", @@ -2992,8 +2992,8 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 729.9903419496324, - "pef": 0 + "ecs": 729.9903419496322, + "pef": 0.0 }, "heat_MJ": 10.74, "elec_pppm": 0, @@ -3006,7 +3006,7 @@ "displayName": "Impression fixé-lavé (colorants)", "info": "Textile > Ennoblissement > Impression", "unit": "kg", - "source": "Ecobalyse", + "source": "Custom", "correctif": "Inventaires enrichis (substances chimiques)", "step_usage": "Ennoblissement", "uuid": "ecobalyse-impression-fixe-lave-colorants", @@ -3031,7 +3031,7 @@ "tre": 0, "wtu": 0, "ecs": 283.16005100701443, - "pef": 0 + "pef": 0.0 }, "heat_MJ": 10.74, "elec_pppm": 0, diff --git a/src/Data/Food/Process.elm b/src/Data/Food/Process.elm index fbc6a9c7a..adae04159 100644 --- a/src/Data/Food/Process.elm +++ b/src/Data/Food/Process.elm @@ -194,7 +194,7 @@ decodeProcess impactsDecoder = |> Pipe.required "name" (Decode.map nameFromString Decode.string) |> Pipe.required "source" Decode.string |> Pipe.required "system_description" Decode.string - |> Pipe.required "unit" decodeStringUnit + |> Pipe.required "unit" Decode.string encode : Process -> Encode.Value @@ -209,7 +209,7 @@ encode process = , ( "name", Encode.string (nameToString process.name) ) , ( "source", Encode.string process.source ) , ( "system_description", Encode.string process.systemDescription ) - , ( "unit", encodeStringUnit process.unit ) + , ( "unit", Encode.string process.unit ) ] @@ -245,67 +245,6 @@ findByIdentifier ((Identifier identifierString) as identifier) processes = |> Result.fromMaybe ("Procédé introuvable par code : " ++ identifierString) -decodeStringUnit : Decoder String -decodeStringUnit = - Decode.string - |> Decode.andThen - (\str -> - -- TODO : modify the export to have the proper unit instead of converting here? - case str of - "cubic meter" -> - Decode.succeed "m³" - - "kilogram" -> - Decode.succeed "kg" - - "kilometer" -> - Decode.succeed "km" - - "kilowatt hour" -> - Decode.succeed "kWh" - - "litre" -> - Decode.succeed "l" - - "megajoule" -> - Decode.succeed "MJ" - - "ton kilometer" -> - Decode.succeed "ton.km" - - _ -> - Decode.fail <| "Could not decode unit " ++ str - ) - - -encodeStringUnit : String -> Encode.Value -encodeStringUnit unit = - case unit of - "m³" -> - Encode.string "cubic meter" - - "kg" -> - Encode.string "kilogram" - - "km" -> - Encode.string "kilometer" - - "kWh" -> - Encode.string "kilowatt hour" - - "l" -> - Encode.string "litre" - - "MJ" -> - Encode.string "megajoule" - - "ton.km" -> - Encode.string "ton kilometer" - - _ -> - Encode.string "Could not decode unit" - - getDisplayName : Process -> String getDisplayName process = process.displayName diff --git a/tests/Data/Food/RecipeTest.elm b/tests/Data/Food/RecipeTest.elm index 6668dd0cf..e9e4d4e7f 100644 --- a/tests/Data/Food/RecipeTest.elm +++ b/tests/Data/Food/RecipeTest.elm @@ -149,7 +149,7 @@ suite = Expect.fail err Ok result -> - expectImpactEqual (Unit.impact 131.81588989680748) result + expectImpactEqual (Unit.impact 131.81588989680745) result ) , asTest "should have the ingredients' total ecs impact with the complement taken into account" (case royalPizzaResults |> Result.map (Tuple.second >> .recipe >> .ingredientsTotal >> Impact.getImpact Definition.Ecs) of @@ -157,7 +157,7 @@ suite = Expect.fail err Ok result -> - expectImpactEqual (Unit.impact 106.16420108745277) result + expectImpactEqual (Unit.impact 106.16420108745274) result ) , describe "Scoring" (case royalPizzaResults |> Result.map (Tuple.second >> .scoring) of diff --git a/tests/Data/Textile/SimulatorTest.elm b/tests/Data/Textile/SimulatorTest.elm index aa15c9ecb..3850b3579 100644 --- a/tests/Data/Textile/SimulatorTest.elm +++ b/tests/Data/Textile/SimulatorTest.elm @@ -50,7 +50,7 @@ suite = [ { tShirtCotonFrance | countrySpinning = Nothing } - |> expectImpact db ecs 1473.9780976999311 + |> expectImpact db ecs 1401.079098395078 |> asTest "should compute a simulation ecs impact" , describe "disabled steps" [ { tShirtCotonFrance | disabledSteps = [ Label.Ennobling ] } diff --git a/tests/e2e-food.json b/tests/e2e-food.json index 82c6fe328..e7c3ded83 100644 --- a/tests/e2e-food.json +++ b/tests/e2e-food.json @@ -22,11 +22,11 @@ "swe": 0.00327751466189682, "tre": 0.0365913234765909, "wtu": 0.27156067319612565, - "ecs": 132.8924956475673, + "ecs": 132.89249564756727, "pef": 132.56803849539975 }, "scoring": { - "all": 1384.2968296621593, + "all": 1384.296829662159, "climate": 517.6798374796787, "biodiversity": 430.80420703919776, "health": 139.12974375280868, @@ -56,11 +56,11 @@ "swe": 0.0004467979943975832, "tre": 0.005630688694881073, "wtu": 0.24424086870863998, - "ecs": 20.7458082291587, - "pef": 19.053175389475143 + "ecs": 20.745808229158705, + "pef": 19.053175389475147 }, "scoring": { - "all": 216.10216905373647, + "all": 216.1021690537365, "climate": 49.10493511151695, "biodiversity": 91.88197748556209, "health": 26.635353449247106, @@ -90,11 +90,11 @@ "swe": 0.0015276321235013306, "tre": 0.017442682418193894, "wtu": 0.25590278135682243, - "ecs": 64.5654349645626, + "ecs": 64.56543496456258, "pef": 63.24101142364565 }, "scoring": { - "all": 672.5566142141937, + "all": 672.5566142141936, "climate": 238.50412207493454, "biodiversity": 220.9292671042854, "health": 65.4052620147858, @@ -124,11 +124,11 @@ "swe": 0.0015276321235013306, "tre": 0.017442682418193894, "wtu": 0.25590278135682243, - "ecs": 64.5654349645626, + "ecs": 64.56543496456258, "pef": 63.24101142364565 }, "scoring": { - "all": 672.5566142141937, + "all": 672.5566142141936, "climate": 238.50412207493454, "biodiversity": 220.9292671042854, "health": 65.4052620147858, diff --git a/tests/e2e-textile.json b/tests/e2e-textile.json index ee03eaee0..f7611355e 100644 --- a/tests/e2e-textile.json +++ b/tests/e2e-textile.json @@ -10,27 +10,27 @@ "countryMaking=FR" ], "impacts": { - "acd": 0.04163544680574335, - "cch": 6.076074899448809, - "etf": 134.0863054530789, - "etf-c": 282.1219011261312, - "fru": 108.75723225108744, - "fwe": 0.0016020599526329704, - "htc": 9.324883616149098e-10, - "htc-c": 1.5316938071499886e-9, - "htn": 2.2958539136038225e-8, - "htn-c": 3.396278638169421e-8, - "ior": 13.313836563271293, - "ldu": 106.0312189737267, - "mru": 0.000052176453397729595, - "ozd": 0.00003037113615558597, - "pco": 0.017158026522891636, - "pma": 3.650629404142302e-7, - "swe": 0.025467662607441162, - "tre": 0.12648609991631055, - "wtu": 14.022971246600134, - "ecs": 1473.9780976999311, - "pef": 942.9643784896306 + "acd": 0.040947160149247784, + "cch": 6.020701956249272, + "etf": 135.78900205151768, + "etf-c": 283.51321048507714, + "fru": 108.6350507389818, + "fwe": 0.0015733111263051323, + "htc": 3.738578351692862e-9, + "htc-c": 1.3872597680236832e-9, + "htn": 3.130465194657146e-8, + "htn-c": 3.394789226206709e-8, + "ior": 13.317990301220913, + "ldu": 105.23255671822369, + "mru": 0.000048106569616382006, + "ozd": 0.000030295918999428996, + "pco": 0.017755685651354356, + "pma": 3.558623580234299e-7, + "swe": 0.025306657195578727, + "tre": 0.12504221221166, + "wtu": 2.3980964862351737, + "ecs": 1401.079098395078, + "pef": 852.7913691316962 } }, { @@ -45,27 +45,27 @@ "countryMaking=FR" ], "impacts": { - "acd": 0.04017877886165545, - "cch": 5.617174959801102, - "etf": 132.65150231089498, - "etf-c": 280.7160545793037, - "fru": 105.84666823008729, - "fwe": 0.00214707581824648, - "htc": 9.255039347492112e-10, - "htc-c": 1.5082831207682146e-9, - "htn": 2.2830062191910908e-8, - "htn-c": 3.3509334976722056e-8, - "ior": 13.299673064884704, - "ldu": 104.44850017797987, - "mru": 0.000052106875086460975, - "ozd": 0.000030382351231542455, - "pco": 0.015524569751985531, - "pma": 2.944166918372446e-7, - "swe": 0.02494838859581367, - "tre": 0.1196338735708263, - "wtu": 14.167230364956025, - "ecs": 1450.2914354053546, - "pef": 919.7149683050168 + "acd": 0.04008199745739389, + "cch": 5.6002494617244825, + "etf": 134.80981524048227, + "etf-c": 282.5613190115607, + "fru": 105.01689679306604, + "fwe": 0.0021586693533881844, + "htc": 3.657076062345066e-9, + "htc-c": 1.374638533739503e-9, + "htn": 2.6854658174302617e-8, + "htn-c": 3.3560996251498214e-8, + "ior": 13.275397491794092, + "ldu": 103.91944670857092, + "mru": 0.000048156836174357224, + "ozd": 0.000030298743557511143, + "pco": 0.016517345592070812, + "pma": 2.953802109717606e-7, + "swe": 0.02491217048719188, + "tre": 0.1195103385097931, + "wtu": 2.429190904043678, + "ecs": 1380.942755042525, + "pef": 831.9551006228857 } }, { @@ -80,27 +80,27 @@ "countryMaking=FR" ], "impacts": { - "acd": 0.057581557642514186, - "cch": 11.486772334324144, - "etf": 15.634225651652217, - "etf-c": 35.30084273467208, - "fru": 206.83621120280137, - "fwe": 0.0011841875998579946, - "htc": 1.1733390915883777e-9, - "htc-c": 9.657327058055596e-10, - "htn": 1.7104907125727847e-8, - "htn-c": 8.594192534789848e-9, - "ior": 13.251972542033904, - "ldu": 21.656481609935792, - "mru": 0.00007192741894281859, - "ozd": 0.00005134618451117797, - "pco": 0.03386786925642574, - "pma": 5.381982335152771e-7, - "swe": 0.011781122757516282, - "tre": 0.07959215390253874, - "wtu": 1.1726385765499685, - "ecs": 1622.3567024833867, - "pef": 1148.1148870018326 + "acd": 0.05705837775901931, + "cch": 11.410537103071833, + "etf": 15.994260234159302, + "etf-c": 35.7502046985735, + "fru": 206.3809957143016, + "fwe": 0.001167912765750946, + "htc": 1.6210896145721436e-9, + "htc-c": 9.841777290141749e-10, + "htn": 3.111945227971613e-8, + "htn-c": 8.571887962625597e-9, + "ior": 13.26888555872635, + "ldu": 21.483643430235055, + "mru": 0.00007156779046345629, + "ozd": 0.00005134183108933046, + "pco": 0.03415288826919107, + "pma": 5.31497095825386e-7, + "swe": 0.011679808224231652, + "tre": 0.07851922877288305, + "wtu": 0.35742608687319033, + "ecs": 1614.2247688286495, + "pef": 1139.8664507587937 } }, { @@ -116,27 +116,27 @@ "countryMaking=FR" ], "impacts": { - "acd": 0.03152481557850885, - "cch": 5.7623391873436365, - "etf": 74.02203123770292, - "etf-c": 151.43828158178619, - "fru": 115.3694352814857, - "fwe": 0.0012059961939220561, - "htc": 9.408805844144814e-10, - "htc-c": 1.4406978925029883e-9, - "htn": 1.670283464363093e-8, - "htn-c": 1.906926773536258e-8, - "ior": 13.307510680679485, - "ldu": 60.793578837279895, - "mru": 0.00005173472732919651, - "ozd": 0.000033069825250950026, - "pco": 0.014561425864626854, - "pma": 3.008625307764535e-7, - "swe": 0.015320376929918441, - "tre": 0.08079622398774226, - "wtu": 6.9639123932412055, - "ecs": 1267.9101496135304, - "pef": 811.4356101328748 + "acd": 0.031063700185326604, + "cch": 5.716064407502163, + "etf": 75.2563528025129, + "etf-c": 152.55860112776116, + "fru": 115.23040090071464, + "fwe": 0.0011870561324447027, + "htc": 2.7422549156075255e-9, + "htc-c": 1.3766699133221376e-9, + "htn": 3.070824652025457e-8, + "htn-c": 1.914423535491044e-8, + "ior": 13.31497935431314, + "ldu": 60.35403878273187, + "mru": 0.0000496675959493475, + "ozd": 0.000033016430347223084, + "pco": 0.01563516218747952, + "pma": 2.9452924171701e-7, + "swe": 0.015214712910854909, + "tre": 0.07979584350887753, + "wtu": 1.3728384780538796, + "ecs": 1233.3475311091088, + "pef": 769.7428128625023 } }, { @@ -151,27 +151,27 @@ "disabledSteps=ennobling" ], "impacts": { - "acd": 0.03304139570903395, - "cch": 3.4946630396619085, - "etf": 131.8206093278565, - "etf-c": 253.00644259358452, - "fru": 83.53499556118432, - "fwe": 0.0012865964018241127, - "htc": 7.000351294941802e-10, - "htc-c": 1.2821805198555586e-9, - "htn": 1.8001092896262975e-8, - "htn-c": 3.344391071571918e-8, - "ior": 12.844507622401041, - "ldu": 100.87996147118199, - "mru": 0.000015896873941184877, - "ozd": 1.7777448468287237e-7, - "pco": 0.013694195018363142, - "pma": 2.838567035748975e-7, - "swe": 0.022668187659341657, - "tre": 0.11804694713872195, - "wtu": 13.941791629352936, - "ecs": 1216.7933769403794, - "pef": 714.3342887484364 + "acd": 0.032347737353195634, + "cch": 3.437872592610936, + "etf": 133.45593115259405, + "etf-c": 254.3299782963392, + "fru": 83.41172967590721, + "fwe": 0.0012579831124224156, + "htc": 3.458559713270163e-9, + "htc-c": 1.1362488234760849e-9, + "htn": 2.5387720281663114e-8, + "htn-c": 3.342421263914828e-8, + "ior": 12.849147091529362, + "ldu": 100.08356626878921, + "mru": 0.000011871883404573001, + "ozd": 1.0337418496863485e-7, + "pco": 0.014218708576989184, + "pma": 2.744677504062268e-7, + "swe": 0.022505615643301485, + "tre": 0.11658690468750123, + "wtu": 2.35191350274551, + "ecs": 1143.8639031360874, + "pef": 624.098287254228 } }, { @@ -188,27 +188,27 @@ "airTransportRatio=1" ], "impacts": { - "acd": 0.17776530284519634, - "cch": 29.29713112389512, - "etf": 400.0061382866833, - "etf-c": 931.1534694580287, - "fru": 306.7250384898656, - "fwe": 0.005872724272504519, - "htc": 4.330174862471458e-9, - "htc-c": 6.325543794413083e-9, - "htn": 1.2485534139249358e-7, - "htn-c": 9.056708643635269e-8, - "ior": 16.32772384454294, - "ldu": 275.870695207961, - "mru": 0.00014311958620352283, - "ozd": 0.00008057582979176627, - "pco": 0.09775567050471355, - "pma": 0.0000019718066464557678, - "swe": 0.08000116470598892, - "tre": 0.5022110547143145, - "wtu": 35.180613817523366, - "ecs": 4811.167813476992, - "pef": 3052.638092437028 + "acd": 0.17191777308291448, + "cch": 28.538386449582482, + "etf": 403.5534247612614, + "etf-c": 934.6755681241924, + "fru": 305.53756017608885, + "fwe": 0.005633025303477838, + "htc": 1.2405391705950967e-8, + "htc-c": 6.18122720598352e-9, + "htn": 2.147242044493958e-7, + "htn-c": 9.015920973192776e-8, + "ior": 16.54558122597707, + "ldu": 271.79968244617976, + "mru": 0.00012993706600417844, + "ozd": 0.00008035518721291681, + "pco": 0.09649762426760249, + "pma": 0.0000018851659734231127, + "swe": 0.07863250004223703, + "tre": 0.48854214594340006, + "wtu": 6.253609274282903, + "ecs": 4591.6117903663435, + "pef": 2795.4686913481846 } }, { @@ -224,27 +224,27 @@ "fading=true" ], "impacts": { - "acd": 0.19650754361129413, - "cch": 27.34278194470025, - "etf": 390.8126880668444, - "etf-c": 985.4292861961296, - "fru": 278.1848505021621, - "fwe": 0.013024377908051372, - "htc": 4.162600787641573e-9, - "htc-c": 6.082474936122221e-9, - "htn": 1.0400791489444354e-7, - "htn-c": 9.70449168665708e-8, - "ior": 16.251032132818466, - "ldu": 315.86133436995925, - "mru": 0.00014671716699291178, - "ozd": 0.00008274534837021724, - "pco": 0.08009650824743483, - "pma": 0.0000019636491591381196, - "swe": 0.08611009389584703, - "tre": 0.4635144069953214, - "wtu": 41.14890419887185, - "ecs": 4949.858297610277, - "pef": 3134.1630944264157 + "acd": 0.19496824715783034, + "cch": 26.759719143175857, + "etf": 399.3132679073461, + "etf-c": 994.0072897114582, + "fru": 269.9197382949202, + "fwe": 0.013135843120805, + "htc": 1.2870457158038291e-8, + "htc-c": 6.046176305094514e-9, + "htn": 1.733967909353147e-7, + "htn-c": 9.717713118384634e-8, + "ior": 16.251663557536894, + "ldu": 313.52676812062714, + "mru": 0.00013246025629646985, + "ozd": 0.00008240911347570446, + "pco": 0.08209606904956485, + "pma": 0.000001952520570863601, + "swe": 0.0856224706188067, + "tre": 0.45913718462591685, + "wtu": 6.852480892284013, + "ecs": 4727.584129434572, + "pef": 2858.0861753836784 } }, { @@ -260,27 +260,27 @@ "fading=false" ], "impacts": { - "acd": 0.16805098372713878, - "cch": 23.406141883754728, - "etf": 382.2300354273023, - "etf-c": 976.2518816411425, - "fru": 240.7313699287465, - "fwe": 0.011041456207531702, - "htc": 3.2082433700128635e-9, - "htc-c": 4.9765905189357655e-9, - "htn": 8.154860534336768e-8, - "htn-c": 9.554213300063791e-8, - "ior": 16.224766386147213, - "ldu": 296.5388687773984, - "mru": 0.00014426264821133564, - "ozd": 0.00008270166963985792, - "pco": 0.06803336296847878, - "pma": 0.0000015356274590468485, - "swe": 0.07953020200552749, - "tre": 0.42425784859037785, - "wtu": 40.78389572826903, - "ecs": 4646.99066487436, - "pef": 2798.276588760015 + "acd": 0.16646017956782644, + "cch": 22.879178368242588, + "etf": 390.1456775807663, + "etf-c": 984.0749101539045, + "fru": 233.48514310083218, + "fwe": 0.011127703819799214, + "htc": 1.1744054814893857e-8, + "htc-c": 4.894635092425342e-9, + "htn": 1.4363939214056022e-7, + "htn-c": 9.563648076098458e-8, + "ior": 16.22632047738496, + "ldu": 294.1840496310243, + "mru": 0.00013035906133172692, + "ozd": 0.00008238143726818768, + "pco": 0.06988459465174668, + "pma": 0.0000015227470457985697, + "swe": 0.07904133924856241, + "tre": 0.4199064630455665, + "wtu": 6.760515566278536, + "ecs": 4426.914344460029, + "pef": 2525.157047689932 } }, { @@ -296,27 +296,27 @@ "reparability=1.15" ], "impacts": { - "acd": 0.04163544680574335, - "cch": 6.076074899448809, - "etf": 134.0863054530789, - "etf-c": 282.1219011261312, - "fru": 108.75723225108744, - "fwe": 0.0016020599526329704, - "htc": 9.324883616149098e-10, - "htc-c": 1.5316938071499886e-9, - "htn": 2.2958539136038225e-8, - "htn-c": 3.396278638169421e-8, - "ior": 13.313836563271293, - "ldu": 106.0312189737267, - "mru": 0.000052176453397729595, - "ozd": 0.00003037113615558597, - "pco": 0.017158026522891636, - "pma": 3.650629404142302e-7, - "swe": 0.025467662607441162, - "tre": 0.12648609991631055, - "wtu": 14.022971246600134, - "ecs": 1473.9780976999311, - "pef": 942.9643784896306 + "acd": 0.040947160149247784, + "cch": 6.020701956249272, + "etf": 135.78900205151768, + "etf-c": 283.51321048507714, + "fru": 108.6350507389818, + "fwe": 0.0015733111263051323, + "htc": 3.738578351692862e-9, + "htc-c": 1.3872597680236832e-9, + "htn": 3.130465194657146e-8, + "htn-c": 3.394789226206709e-8, + "ior": 13.317990301220913, + "ldu": 105.23255671822369, + "mru": 0.000048106569616382006, + "ozd": 0.000030295918999428996, + "pco": 0.017755685651354356, + "pma": 3.558623580234299e-7, + "swe": 0.025306657195578727, + "tre": 0.12504221221166, + "wtu": 2.3980964862351737, + "ecs": 1401.079098395078, + "pef": 852.7913691316962 } }, { @@ -331,27 +331,27 @@ "makingWaste=0" ], "impacts": { - "acd": 0.03573846577551521, - "cch": 5.29996737386433, - "etf": 114.22944021552313, - "etf-c": 240.15186918362068, - "fru": 100.2239535034761, - "fwe": 0.0013843883280009535, - "htc": 8.095023395572573e-10, - "htc-c": 1.3329320985332255e-9, - "htn": 1.9605468225485186e-8, - "htn-c": 2.8937573933380658e-8, - "ior": 13.166286970554003, - "ldu": 91.60870785555007, - "mru": 0.00004489017344329534, - "ozd": 0.000025827064835365563, - "pco": 0.014834561195870921, - "pma": 3.159043475614539e-7, - "swe": 0.02176633947907204, - "tre": 0.10827607026526874, - "wtu": 11.933371318307108, - "ecs": 1304.0314709229826, - "pef": 840.4876551108515 + "acd": 0.03515341117555045, + "cch": 5.252900371584849, + "etf": 115.70338427950517, + "etf-c": 241.36148939715773, + "fru": 100.12009913155448, + "fwe": 0.0013599531678901153, + "htc": 3.2175663683017604e-9, + "htc-c": 1.2101642149173232e-9, + "htn": 2.727681405568267e-8, + "htn-c": 2.8926698640265072e-8, + "ior": 13.169817649242683, + "ldu": 90.92989613362748, + "mru": 0.00004143076684583559, + "ozd": 0.00002576313038871996, + "pco": 0.015386730643937313, + "pma": 3.080836844070077e-7, + "swe": 0.02162950077214327, + "tre": 0.10704876572145422, + "wtu": 2.0515959089024456, + "ecs": 1242.1625430398944, + "pef": 764.0073474658005 } }, { @@ -366,27 +366,27 @@ "makingWaste=0.25" ], "impacts": { - "acd": 0.04687720772150169, - "cch": 6.765948255523903, - "etf": 151.73685233090626, - "etf-c": 319.4285961861407, - "fru": 116.34236891563084, - "fwe": 0.001795545841194763, - "htc": 1.041809270110601e-9, - "htc-c": 1.7083708814760004e-9, - "htn": 2.593904661208537e-8, - "htn-c": 3.842964189130624e-8, - "ior": 13.444991756797775, - "ldu": 118.85122885655039, - "mru": 0.000058653146690560065, - "ozd": 0.00003441031066244854, - "pco": 0.019223329035798944, - "pma": 4.087594673944759e-7, - "swe": 0.028757727610435928, - "tre": 0.14267279293945884, - "wtu": 15.880393405082835, - "ecs": 1625.0417659461073, - "pef": 1034.0547992707675 + "acd": 0.04609715923697874, + "cch": 6.703192253728761, + "etf": 153.6428845155289, + "etf-c": 320.98140700767215, + "fru": 116.20389661225052, + "fwe": 0.001762962644896259, + "htc": 4.201700114707176e-9, + "htc-c": 1.5446780374515596e-9, + "htn": 3.4884952294028174e-8, + "htn-c": 3.8411175481446677e-8, + "ior": 13.44969932520156, + "ldu": 117.94603279342037, + "mru": 0.0000540406165235344, + "ozd": 0.00003432506443117035, + "pco": 0.019861423435725067, + "pma": 3.9833229012691655e-7, + "swe": 0.028575240683076916, + "tre": 0.14103638686962075, + "wtu": 2.7060969994198234, + "ecs": 1542.3382587107967, + "pef": 931.7104995013814 } }, { @@ -402,27 +402,27 @@ "surfaceMass=300" ], "impacts": { - "acd": 0.07301301144136867, - "cch": 10.614371039084205, - "etf": 236.16726740356503, - "etf-c": 497.23511512615795, - "fru": 175.8505469001982, - "fwe": 0.0028058993271268926, - "htc": 1.6136411382168829e-9, - "htc-c": 2.6391359539399452e-9, - "htn": 4.0455600637319064e-8, - "htn-c": 5.98184616757536e-8, - "ior": 22.76470680285452, - "ldu": 186.62966344226942, - "mru": 0.00009120198097882398, - "ozd": 0.00005359176786132629, - "pco": 0.03002572035982282, - "pma": 6.379869966256389e-7, - "swe": 0.04480609001594954, - "tre": 0.22219859194137329, - "wtu": 24.71605261646426, - "ecs": 2570.5571191805325, - "pef": 1627.7398706444221 + "acd": 0.07179838793190436, + "cch": 10.516654081983287, + "etf": 239.11018133346673, + "etf-c": 499.62769769169125, + "fru": 175.63493266541343, + "fwe": 0.002755166104250066, + "htc": 6.512459089998315e-9, + "htc-c": 2.3842499199092752e-9, + "htn": 5.384438258446115e-8, + "htn-c": 5.978803659177539e-8, + "ior": 22.77203692533042, + "ldu": 185.22014066324124, + "mru": 0.00008401983311143018, + "ozd": 0.00005345903170339494, + "pco": 0.03097798143817123, + "pma": 6.217506747638934e-7, + "swe": 0.04452196281687977, + "tre": 0.2196505548019769, + "wtu": 4.2015677450610545, + "ecs": 2441.682294173816, + "pef": 1468.2132147865102 } }, { @@ -438,27 +438,27 @@ "printing=pigment" ], "impacts": { - "acd": 0.07428255235868933, - "cch": 10.884026831215587, - "etf": 236.72649107585758, - "etf-c": 509.5789628750392, - "fru": 184.98509478897574, - "fwe": 0.0029061853746658066, - "htc": 1.671519393971466e-9, - "htc-c": 2.707697555305092e-9, - "htn": 4.15533929792165e-8, - "htn-c": 6.017793941922328e-8, - "ior": 23.04280483523297, - "ldu": 187.88486195042003, - "mru": 0.0000917587532115565, - "ozd": 0.000053602328847674277, - "pco": 0.030795578115666435, - "pma": 6.53000553946302e-7, - "swe": 0.04585545725852972, - "tre": 0.22419877014322215, - "wtu": 24.7331635965313, - "ecs": 2623.782882214503, - "pef": 1659.9240056636133 + "acd": 0.07306792884847084, + "cch": 10.786309873553689, + "etf": 239.69274424945215, + "etf-c": 511.9951958266947, + "fru": 184.7694804793395, + "fwe": 0.0028554521517683558, + "htc": 6.590378548015632e-9, + "htc-c": 2.45281244042113e-9, + "htn": 5.544773865900382e-8, + "htn-c": 6.014907721306291e-8, + "ior": 23.05013495896086, + "ldu": 186.4753840041616, + "mru": 0.00008457660535093935, + "ozd": 0.00005346959268974566, + "pco": 0.031786495229857256, + "pma": 6.367642320829064e-7, + "swe": 0.04557133006008848, + "tre": 0.2216507330089366, + "wtu": 4.218678725192593, + "ecs": 2494.994679014393, + "pef": 1500.5474792306345 } }, { @@ -474,27 +474,27 @@ "printing=substantive" ], "impacts": { - "acd": 0.07480114883583026, - "cch": 10.913459946219007, - "etf": 236.82990191025763, - "etf-c": 502.52610724806686, - "fru": 185.8597194987319, - "fwe": 0.0029315089327020608, - "htc": 1.6825556292003047e-9, - "htc-c": 2.720086376135145e-9, - "htn": 4.177467768952792e-8, - "htn-c": 5.998562398500163e-8, - "ior": 23.083387789647457, - "ldu": 188.0527076463535, - "mru": 0.00009199158999750911, - "ozd": 0.000053601047279168154, - "pco": 0.030872562014323462, - "pma": 6.563477075072172e-7, - "swe": 0.045913628016308994, - "tre": 0.22447334781625053, - "wtu": 24.735968059012894, - "ecs": 2612.3753854906913, - "pef": 1664.4974402015926 + "acd": 0.07358652532550262, + "cch": 10.815742988475913, + "etf": 239.7995331322814, + "etf-c": 504.94576328192426, + "fru": 185.64410517826187, + "fwe": 0.002880775709801625, + "htc": 6.604315483571971e-9, + "htc-c": 2.4652013942855755e-9, + "htn": 5.574219706746126e-8, + "htn-c": 5.995698798484122e-8, + "ior": 23.090717913556556, + "ldu": 186.64323618904862, + "mru": 0.00008480944213787278, + "ozd": 0.00005346831112123995, + "pco": 0.03186907408107042, + "pma": 6.401113856435828e-7, + "swe": 0.045629500817958725, + "tre": 0.22192531068270466, + "wtu": 4.221483187683524, + "ecs": 2483.5997196573276, + "pef": 1505.1426430274853 } }, { @@ -510,27 +510,27 @@ "printing=pigment;0.5" ], "impacts": { - "acd": 0.07598979799072568, - "cch": 11.230826296926482, - "etf": 237.56532658429637, - "etf-c": 528.0947344983612, - "fru": 197.42380243529087, - "fwe": 0.002993256918731499, - "htc": 1.7583367776033414e-9, - "htc-c": 2.810539957352812e-9, - "htn": 4.3200081492062654e-8, - "htn-c": 6.071715603442778e-8, - "ior": 23.4590798519874, - "ldu": 189.4912500653805, - "mru": 0.00009232634062639925, - "ozd": 0.000053611084325027164, - "pco": 0.03171506887585856, - "pma": 6.71714758645987e-7, - "swe": 0.046138040891082525, - "tre": 0.2269599906040805, - "wtu": 24.758830066631848, - "ecs": 2697.130941987712, - "pef": 1700.4341552101737 + "acd": 0.07477517447937593, + "cch": 11.13310933842311, + "etf": 240.56658862343028, + "etf-c": 530.5464430292, + "fru": 197.20818801337742, + "fwe": 0.00294252369580311, + "htc": 6.707257735041608e-9, + "htc-c": 2.555656221188913e-9, + "htn": 5.785277277081782e-8, + "htn-c": 6.069063814499417e-8, + "ior": 23.466409977593276, + "ldu": 188.08183936827675, + "mru": 0.00008514419277594706, + "ozd": 0.00005347834816710268, + "pco": 0.03276397004381298, + "pma": 6.554784367801162e-7, + "swe": 0.04585391369358409, + "tre": 0.2244119534774611, + "wtu": 4.2443451953899, + "ecs": 2568.4726714975122, + "pef": 1541.2828229145937 } }, { @@ -545,27 +545,27 @@ "upcycled=true" ], "impacts": { - "acd": 0.002968511865179645, - "cch": 1.0533507868080005, - "etf": 2.3471551919408955, - "etf-c": 3.202435248820042, - "fru": 74.4387428034298, - "fwe": 0.0001807814140681821, - "htc": 1.5742426431901755e-10, - "htc-c": 2.963011825484837e-10, - "htn": 6.882599436189848e-10, - "htn-c": 6.241123556934332e-10, - "ior": 13.35591899638985, - "ldu": 10.55919498476111, - "mru": 0.00000482895771006836, - "ozd": 8.344387630037608e-8, - "pco": 0.0020224992872211905, - "pma": 4.609150230119407e-8, - "swe": 0.000983845919096806, - "tre": 0.006500693022400001, - "wtu": 0.13495760676979718, - "ecs": 320.49211185973485, - "pef": 310.761127204542 + "acd": 0.0029684389160825604, + "cch": 1.0533507809876295, + "etf": 2.611699490013451, + "etf-c": 3.470506252261882, + "fru": 74.43874194730016, + "fwe": 0.0001807903624435816, + "htc": 3.845977063038087e-10, + "htc-c": 2.9631160106200145e-10, + "htn": 6.417546290440587e-9, + "htn-c": 6.418271715724139e-10, + "ior": 13.355919010592899, + "ldu": 10.559703146213762, + "mru": 0.000004828921846527799, + "ozd": 8.344478356276785e-8, + "pco": 0.0024607649057391493, + "pma": 4.609038147994612e-8, + "swe": 0.0009839518757980366, + "tre": 0.006500693075677745, + "wtu": 0.13074518638023463, + "ecs": 321.4493132956767, + "pef": 312.4315514782177 } } ] diff --git a/tests/server.spec.js b/tests/server.spec.js index 0e5226532..ab43771c4 100644 --- a/tests/server.spec.js +++ b/tests/server.spec.js @@ -325,8 +325,8 @@ describe("API", () => { const response = await makeRequest("/api/textile/simulator/detailed", successQuery); expectStatus(response, 200); - expect(response.body.impacts.ecs).toBeCloseTo(1619.93, 1); - expect(response.body.impactsWithoutDurability.ecs).toBeCloseTo(1085.35, 1); + expect(response.body.impacts.ecs).toBeCloseTo(1574.39, 1); + expect(response.body.impactsWithoutDurability.ecs).toBeCloseTo(1054.84, 1); }); });