diff --git a/data/Makefile b/data/Makefile index c40b89fb9..533dd8a6b 100644 --- a/data/Makefile +++ b/data/Makefile @@ -9,7 +9,7 @@ env | grep ECOBALYSE_DATA_DIR || echo "No ECOBALYSE_DATA_DIR in environment. Con env | grep ECOBALYSE_DATA_DIR || exit @if [ "$(shell docker container inspect -f '{{.State.Running}}' $(NAME) )" = "true" ]; then \ echo "(Using the existing container)" &&\ - docker exec -u jovyan -it -e ECOBALYSE_DATA_DIR=/home/jovyan/ecobalyse-private/ -w /home/jovyan/ecobalyse/data $(NAME) $(1);\ + docker exec -u jovyan -it -e ECOBALYSE_DATA_DIR=/home/jovyan/ecobalyse-private/ -e PYTHONPATH=. -w /home/jovyan/ecobalyse/data $(NAME) $(1);\ else \ echo "(Creating a new container)" &&\ docker run --rm -it -v $(NAME):/home/jovyan -v $$PWD/../:/home/jovyan/ecobalyse -v $$PWD/../../dbfiles/:/home/jovyan/dbfiles -v $(ECOBALYSE_DATA_DIR):/home/jovyan/ecobalyse-private -e ECOBALYSE_DATA_DIR=/home/jovyan/ecobalyse-private/ -w /home/jovyan/ecobalyse/data $(NAME) $(1); fi @@ -41,7 +41,7 @@ delete_method: @$(call DOCKER,python3 common/delete_methods.py) export_food: - @$(call DOCKER,bash -c "python3 food/export.py && npm run processes:build") + @$(call DOCKER,bash -c "python3 food/export.py") compare_food: @$(call DOCKER,python3 export.py compare) diff --git a/data/common/export.py b/data/common/export.py index 9c9f84a29..51e39ad85 100644 --- a/data/common/export.py +++ b/data/common/export.py @@ -2,6 +2,7 @@ import functools import json import logging +from copy import deepcopy import bw2data from bw2io.utils import activity_hash @@ -22,16 +23,74 @@ def spproject(activity): return "AGB3.1.1 2023-03-06" -def export_json(data, filename): +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 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(data, file, indent=2, ensure_ascii=False) + 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. @@ -94,6 +153,49 @@ def with_corrected_impacts(impacts_ecobalyse, processes_fd, impacts_key="impacts 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)""" diff --git a/data/food/export.py b/data/food/export.py index 0523a4394..3b65ff108 100644 --- a/data/food/export.py +++ b/data/food/export.py @@ -21,10 +21,12 @@ from common.export import ( cached_search, display_changes, - export_json, + export_json_ordered, load_json, progress_bar, + remove_detailed_impacts, spproject, + with_aggregated_impacts, with_corrected_impacts, with_subimpacts, ) @@ -59,7 +61,8 @@ "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_FILE": f"{ECOBALYSE_DATA_DIR}/data/food/processes_impacts.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", } @@ -387,7 +390,7 @@ def csv_export_impact_comparison(compared_impacts): bw2data.config.p["biosphere_database"] = CONFIG["BIOSPHERE"] # keep the previous processes with old impacts - oldprocesses = load_json(CONFIG["PROCESSES_FILE"]) + oldprocesses = load_json(CONFIG["PROCESSES_IMPACTS"]) activities = tuple(load_json(CONFIG["ACTIVITIES_FILE"])) activities_land_occ = compute_land_occupation(activities) @@ -427,10 +430,19 @@ def csv_export_impact_comparison(compared_impacts): processes_corrected_impacts = with_corrected_impacts( IMPACTS_DEF_ECOBALYSE, processes_impacts ) + processes_aggregated_impacts = with_aggregated_impacts( + IMPACTS_DEF_ECOBALYSE, processes_corrected_impacts + ) # Export - export_json(activities_land_occ, CONFIG["ACTIVITIES_FILE"]) - export_json(ingredients_animal_es, CONFIG["INGREDIENTS_FILE"]) + export_json_ordered(activities_land_occ, CONFIG["ACTIVITIES_FILE"]) + export_json_ordered(ingredients_animal_es, CONFIG["INGREDIENTS_FILE"]) display_changes("id", oldprocesses, processes_corrected_impacts) - export_json(list(processes_corrected_impacts.values()), CONFIG["PROCESSES_FILE"]) + export_json_ordered( + list(processes_aggregated_impacts.values()), CONFIG["PROCESSES_IMPACTS"] + ) + export_json_ordered( + remove_detailed_impacts(list(processes_aggregated_impacts.values())), + CONFIG["PROCESSES_AGGREGATED"], + ) diff --git a/public/data/food/processes.json b/public/data/food/processes.json index a7243c085..b161f3ecb 100644 --- a/public/data/food/processes.json +++ b/public/data/food/processes.json @@ -1,10 +1,14 @@ [ { - "categories": ["ingredient"], - "comment": "", - "displayName": "Oeuf Bleu-Blanc-Cœur FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -25,20 +29,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 482.0806163407891, - "pef": 404.2689900739915 - }, - "name": "Egg, Bleu Blanc Coeur, outdoor system, at farm gate {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "", - "unit": "kilogram" + "pef": 404.2689900739916, + "ecs": 482.08061634078916 + } }, { - "categories": ["ingredient"], - "comment": "FRANCE", - "displayName": "Lait FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -59,20 +63,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 129.48432437479158, - "pef": 100.8744234517829 - }, - "name": "Cow milk, national average, at farm gate {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 100.87442345178292, + "ecs": 129.48432437479158 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Lait FR ou UE ou Hors UE Bio", "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", "impacts": { "acd": 0, "cch": 0, @@ -93,20 +97,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 73.28220920830047, - "pef": 85.56984419203104 - }, - "name": "Cow milk, organic, national average, at farm gate/FR U constructed by Ecobalyse", - "source": "Ecobalyse", - "system_description": "Ecobalyse", - "unit": "kilogram" + "pef": 85.56984419203104, + "ecs": 73.28220920830047 + } }, { - "categories": ["ingredient"], - "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "displayName": "Carotte FR ou UE ou Hors UE Bio", "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", "impacts": { "acd": 0, "cch": 0, @@ -127,20 +131,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 13.032834134308757, - "pef": 15.090184627616896 - }, - "name": "Carrot, organic 2023, national average, at farm gate {FR} U", - "source": "Ginko", - "system_description": "", - "unit": "kilogram" + "pef": 15.0901846276169, + "ecs": 13.032834134308757 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Farine UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -161,20 +165,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 105.19820289192933, - "pef": 80.00147574034824 - }, - "name": "Wheat flour, at industrial mill {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 80.00147574034824, + "ecs": 105.1982028919293 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Farine FR ou UE ou Hors UE Bio", "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", "impacts": { "acd": 0, "cch": 0, @@ -195,20 +199,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 75.09113339163017, - "pef": 98.6365873674314 - }, - "name": "Wheat flour, at industrial mill {FR} U [organic], constructed by Ecobalyse", - "source": "Ecobalyse", - "system_description": "Ecobalyse", - "unit": "kilogram" + "pef": 98.6365873674314, + "ecs": 75.09113339163017 + } }, { - "categories": ["ingredient"], - "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "displayName": "Tournesol FR ou UE ou Hors UE Bio", "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", "impacts": { "acd": 0, "cch": 0, @@ -229,20 +233,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 158.6688298573552, - "pef": 148.32081139883707 - }, - "name": "Sunflower grain, consumption mix, organic 2023 {FR} U", - "source": "Ginko", - "system_description": "", - "unit": "kilogram" + "pef": 148.32081139883704, + "ecs": 158.66882985735518 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Tournesol FR ou UE ou Hors UE Bio", "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", "impacts": { "acd": 0, "cch": 0, @@ -263,20 +267,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 93.45778017599187, - "pef": 112.2808691171095 - }, - "name": "Sunflower, organic, animal feed, at farm gate {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "", - "unit": "kilogram" + "pef": 112.2808691171095, + "ecs": 93.45778017599187 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Colza FR ou UE ou Hors UE Bio", "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", "impacts": { "acd": 0, "cch": 0, @@ -297,20 +301,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 119.00957972053897, - "pef": 149.00738961540029 - }, - "name": "Winter rapeseed, organic, at farm gate {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "", - "unit": "kilogram" + "pef": 149.00738961540023, + "ecs": 119.00957972053897 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Boeuf haché cru FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -331,20 +335,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 3024.9111891091306, - "pef": 3032.253863153226 - }, - "name": "Ground beef, fresh, case ready, for direct consumption, at plant {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 3032.2538631532266, + "ecs": 3024.911189109131 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Boeuf haché cru FR ou UE ou Hors UE Bio", "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", "impacts": { "acd": 0, "cch": 0, @@ -365,20 +369,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 2423.465638706463, - "pef": 2809.416054232443 - }, - "name": "Ground beef, fresh, case ready, for direct consumption, at plant {FR} U [organic], constructed by Ecobalyse", - "source": "Ecobalyse", - "system_description": "Ecobalyse", - "unit": "kilogram" + "pef": 2809.4160542324425, + "ecs": 2423.4656387064624 + } }, { - "categories": ["material"], - "comment": "", - "displayName": "Vache de réforme bio", "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", "impacts": { "acd": 0, "cch": 0, @@ -399,20 +403,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 1171.334968928874, - "pef": 1365.0583752846944 - }, - "name": "Cull cow, organic, milk system number 1, at farm gate {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 1365.0583752846949, + "ecs": 1171.3349689288743 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Boeuf haché cru Hors UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -433,20 +437,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 5454.76888170201, - "pef": 5866.962929357456 - }, - "name": "Ground beef, fresh, case ready, for direct consumption, at plant {FR} U [feedlot], constructed by Ecobalyse", - "source": "Ecobalyse", - "system_description": "Ecobalyse", - "unit": "kilogram" + "pef": 5866.962929357459, + "ecs": 5454.768881702009 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Boeuf haché cru - v. de réforme 100% herbe FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -467,20 +471,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 1022.8928544825393, - "pef": 1128.3099123709333 - }, - "name": "Ground beef, fresh, case ready, for direct consumption, at plant {FR} U [grass-fed], constructed by Ecobalyse", - "source": "Ecobalyse", - "system_description": "Ecobalyse", - "unit": "kilogram" + "pef": 1128.309912370933, + "ecs": 1022.8928544825391 + } }, { - "categories": ["ingredient"], - "comment": "Product already packed.", - "displayName": "Jambon cuit FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -501,20 +505,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 1043.5126910351305, - "pef": 889.2035037022283 - }, - "name": "Cooked ham, case ready, at plant {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 889.2035037022284, + "ecs": 1043.5126910351307 + } }, { - "categories": ["ingredient"], - "comment": "Product already packed.", - "displayName": "Jambon cuit FR ou UE ou Hors UE Bio", "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", "impacts": { "acd": 0, "cch": 0, @@ -535,20 +539,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 1146.0764688094807, - "pef": 1332.9783574432186 - }, - "name": "Cooked ham, case ready, at plant {FR} U [organic], constructed by Ecobalyse", - "source": "Ecobalyse", - "system_description": "Ecobalyse", - "unit": "kilogram" + "pef": 1332.9783574432186, + "ecs": 1146.076468809481 + } }, { - "categories": ["ingredient"], - "comment": "Product already packed.", - "displayName": "Jambon cuit (alim. ani. 100%FR) FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -569,20 +573,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 967.2093886660132, - "pef": 875.6073918482264 - }, - "name": "Cooked ham, case ready, at plant {FR} U [fr], constructed by Ecobalyse", - "source": "Ecobalyse", - "system_description": "Ecobalyse", - "unit": "kilogram" + "pef": 875.6073918482263, + "ecs": 967.2093886660133 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Blanc de poulet cru FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -603,20 +607,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 1114.8106857579344, - "pef": 763.0764466053245 - }, - "name": "Meat without bone, chicken, for direct consumption {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 763.0764466053243, + "ecs": 1114.8106857579342 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Blanc de poulet cru FR ou UE ou Hors UE Bio", "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", "impacts": { "acd": 0, "cch": 0, @@ -637,20 +641,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 1002.7966067829354, - "pef": 1152.6303736892075 - }, - "name": "Meat without bone, chicken, for direct consumption {FR} U [organic], constructed by Ecobalyse", - "source": "Ecobalyse", - "system_description": "Ecobalyse", - "unit": "kilogram" + "pef": 1152.630373689208, + "ecs": 1002.7966067829357 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Blanc de poulet cru (alim. ani. 100%FR) FR ou UE ou Hors UE Bio", "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", "impacts": { "acd": 0, "cch": 0, @@ -671,20 +675,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 1038.2786524697924, - "pef": 1187.559011478903 - }, - "name": "Meat without bone, chicken, for direct consumption {FR} U [organic], constructed by Ecobalyse [fr-organic]", - "source": "Ecobalyse", - "system_description": "Ecobalyse", - "unit": "kilogram" + "pef": 1187.559011478903, + "ecs": 1038.2786524697924 + } }, { - "categories": ["ingredient"], - "comment": "Allocation is based on the price ratio of cake : oil = 0.29", - "displayName": "Huile de colza Hors UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -705,20 +709,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 430.3338526141934, - "pef": 462.55622413719834 - }, - "name": "Rapeseed oil, at oil mill {GLO} - Adapted from WFLDB U", - "source": "Agribalyse 3.1.1", - "system_description": "", - "unit": "kilogram" + "pef": 462.5562241371983, + "ecs": 430.3338526141934 + } }, { - "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", "id": "rapeseed-oil-organic", + "name": "Rapeseed oil, at oil mill {GLO} - Adapted from WFLDB U [organic], constructed by Ecobalyse", + "displayName": "Huile de colza FR ou UE ou Hors UE Bio", + "unit": "kilogram", "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, @@ -739,20 +743,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 210.05192070912295, - "pef": 261.13204060072036 - }, - "name": "Rapeseed oil, at oil mill {GLO} - Adapted from WFLDB U [organic], constructed by Ecobalyse", - "source": "Ecobalyse", - "system_description": "Ecobalyse", - "unit": "kilogram" + "pef": 261.13204060072036, + "ecs": 210.05192070912287 + } }, { - "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)", - "displayName": "Huile de tournesol Hors UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -773,20 +777,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 942.0457866166045, - "pef": 505.79929142657846 - }, - "name": "Sunflower oil, at oil mill {GLO} - Adapted from WFLDB U", - "source": "Agribalyse 3.1.1", - "system_description": "", - "unit": "kilogram" + "pef": 505.7992914265785, + "ecs": 942.0457866166042 + } }, { - "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)", - "displayName": "Huile de tournesol FR ou UE ou Hors UE Bio", "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", "impacts": { "acd": 0, "cch": 0, @@ -807,20 +811,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 312.52984554113317, - "pef": 360.4590660434512 - }, - "name": "Sunflower oil, at oil mill {GLO} - Adapted from WFLDB U [organic], constructed by Ecobalyse", - "source": "Ecobalyse", - "system_description": "Ecobalyse", - "unit": "kilogram" + "pef": 360.4590660434512, + "ecs": 312.52984554113317 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Courgette FR ou UE ou Hors UE Bio", "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", "impacts": { "acd": 0, "cch": 0, @@ -841,20 +845,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 20.617901994043795, - "pef": 23.755447115550382 - }, - "name": "Zucchini, springtime, under tunnel, organic, at farm gate {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 23.755447115550382, + "ecs": 20.61790199404379 + } }, { - "categories": ["ingredient"], - "comment": "FRANCE", - "displayName": "Pêche FR ou UE ou Hors UE Bio", "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", "impacts": { "acd": 0, "cch": 0, @@ -875,20 +879,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 57.124371220502454, - "pef": 69.3425333350802 - }, - "name": "Peach, organic, national average, at orchard {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 69.34253333508022, + "ecs": 57.124371220502454 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Melon FR ou UE ou Hors UE Bio", "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", "impacts": { "acd": 0, "cch": 0, @@ -909,20 +913,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 25.66289567999664, - "pef": 31.02454966019247 - }, - "name": "Melon, organic, at farm gate {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 31.02454966019247, + "ecs": 25.66289567999664 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Beurre FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -943,20 +947,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 871.4251639682516, - "pef": 686.5752145660014 - }, - "name": "Butter, 82% fat, unsalted, at dairy {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 686.5752145660015, + "ecs": 871.4251639682516 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Beurre FR ou UE ou Hors UE Bio", "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", "impacts": { "acd": 0, "cch": 0, @@ -977,20 +981,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 501.46375407409084, - "pef": 585.6945053650963 - }, - "name": "Butter, 82% fat, unsalted, at dairy {FR} U [organic], constructed by Ecobalyse", - "source": "Ecobalyse", - "system_description": "Ecobalyse", - "unit": "kilogram" + "pef": 585.6945053650963, + "ecs": 501.4637540740909 + } }, { - "categories": ["packaging"], - "comment": "", - "displayName": "Acier", "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", "impacts": { "acd": 0, "cch": 0, @@ -1011,20 +1015,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 121.50585817435886, - "pef": 143.88102281053918 - }, - "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": "kilogram" + "pef": 143.8810228105392, + "ecs": 121.50585817435886 + } }, { - "categories": ["packaging"], - "comment": "", - "displayName": "Polyéthylène basse densité", "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", "impacts": { "acd": 0, "cch": 0, @@ -1045,20 +1049,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 271.5375310800338, - "pef": 306.3852532983294 - }, - "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": "kilogram" + "pef": 306.3852532983293, + "ecs": 271.5375310800338 + } }, { - "categories": ["packaging"], - "comment": "", - "displayName": "Polystyrène", "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", "impacts": { "acd": 0, "cch": 0, @@ -1079,20 +1083,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 247.8623691646641, - "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": "kilogram" + "pef": 284.949378734688, + "ecs": 247.86236916466407 + } }, { - "categories": ["packaging"], - "comment": "", - "displayName": "Verre", "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", "impacts": { "acd": 0, "cch": 0, @@ -1113,20 +1117,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 88.55200834650874, - "pef": 95.1349700737809 - }, - "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": "kilogram" + "pef": 95.13497007378089, + "ecs": 88.5520083465087 + } }, { - "categories": ["packaging"], - "comment": "", - "displayName": "Polypropylène", "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", "impacts": { "acd": 0, "cch": 0, @@ -1147,20 +1151,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 178.18145962377145, - "pef": 208.34431090459944 - }, - "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": "kilogram" + "pef": 208.34431090459947, + "ecs": 178.18145962377145 + } }, { - "categories": ["packaging"], - "comment": "", - "displayName": "Carton", "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", "impacts": { "acd": 0, "cch": 0, @@ -1181,20 +1185,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 91.72303477509108, - "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": "kilogram" + "pef": 91.76476355591325, + "ecs": 91.72303477509107 + } }, { - "categories": ["packaging"], - "comment": "", - "displayName": "Papier", "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", "impacts": { "acd": 0, "cch": 0, @@ -1215,20 +1219,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 88.25250225882223, - "pef": 98.87885585685956 - }, - "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": "kilogram" + "pef": 98.87885585685957, + "ecs": 88.25250225882226 + } }, { - "categories": ["packaging"], - "comment": "", - "displayName": "PVC", "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", "impacts": { "acd": 0, "cch": 0, @@ -1249,20 +1253,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 217.36933127930504, - "pef": 245.14827023795368 - }, - "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": "kilogram" + "pef": 245.14827023795374, + "ecs": 217.369331279305 + } }, { - "categories": ["packaging"], - "comment": "", - "displayName": "PET", "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", "impacts": { "acd": 0, "cch": 0, @@ -1283,20 +1287,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 584.6177614958613, - "pef": 703.6186085850575 - }, - "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": "kilogram" + "pef": 703.6186085850576, + "ecs": 584.6177614958614 + } }, { - "categories": ["packaging"], - "comment": "", - "displayName": "Polyéthylène haute densité", "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", "impacts": { "acd": 0, "cch": 0, @@ -1317,20 +1321,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 181.74429515002336, - "pef": 211.9915559914887 - }, - "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": "kilogram" + "pef": 211.99155599148867, + "ecs": 181.7442951500233 + } }, { - "categories": ["packaging"], - "comment": "", - "displayName": "Aluminium", "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", "impacts": { "acd": 0, "cch": 0, @@ -1351,20 +1355,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "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": "kilogram" + "pef": 1778.9122405084688, + "ecs": 1581.6529964075614 + } }, { - "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.\"", - "displayName": "Mise en conserve", "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", "impacts": { "acd": 0, "cch": 0, @@ -1385,20 +1389,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 31.38576338197455, - "pef": 38.269026985234284 - }, - "name": "Canning fruits or vegetables, industrial, 1kg of canned product {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 38.26902698523428, + "ecs": 31.385763381974535 + } }, { - "categories": ["transformation"], - "comment": "This process is a dummy process. It is assumed that no energy or water addition is needed for this process.", - "displayName": "Mélange", "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", "impacts": { "acd": 0, "cch": 0, @@ -1419,20 +1423,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 0, - "pef": 0 - }, - "name": "[Dummy] Mixing, processing, at plant {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 0.0, + "ecs": 0.0 + } }, { - "categories": ["transformation"], - "comment": "", - "displayName": "Cuisson", "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, "cch": 0, @@ -1453,20 +1457,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 24.225350669195503, - "pef": 28.41251135425378 - }, - "name": "Cooking, industrial, 1kg of cooked product {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 28.412511354253777, + "ecs": 24.225350669195503 + } }, { - "categories": ["transport"], - "comment": "", - "displayName": "Camion", "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", "impacts": { "acd": 0, "cch": 0, @@ -1487,20 +1491,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 13.939612327318024, - "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": "ton kilometer" + "pef": 14.217243686020684, + "ecs": 13.93961232731802 + } }, { - "categories": ["transport"], - "comment": "", - "displayName": "Bateau", "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", "impacts": { "acd": 0, "cch": 0, @@ -1521,20 +1525,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 1.2366399058232693, - "pef": 1.3992971563133287 - }, - "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": "ton kilometer" + "pef": 1.399297156313329, + "ecs": 1.236639905823269 + } }, { - "categories": ["transport"], - "comment": "", - "displayName": "Avion", "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", "impacts": { "acd": 0, "cch": 0, @@ -1555,20 +1559,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 53.46775452152509, - "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": "ton kilometer" + "pef": 54.29010065781355, + "ecs": 53.46775452152507 + } }, { - "categories": ["transport"], - "comment": "", - "displayName": "Bateau frigorifique", "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", "impacts": { "acd": 0, "cch": 0, @@ -1589,20 +1593,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 2.4787760834132193, - "pef": 2.7469819739874204 - }, - "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": "ton kilometer" + "pef": 2.74698197398742, + "ecs": 2.4787760834132198 + } }, { - "categories": ["transport"], - "comment": "", - "displayName": "Camion frigorifique", "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", "impacts": { "acd": 0, "cch": 0, @@ -1623,20 +1627,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 22.46207868250126, - "pef": 22.637819753439373 - }, - "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": "ton kilometer" + "pef": 22.63781975343938, + "ecs": 22.462078682501264 + } }, { - "categories": ["energy"], - "comment": "", - "displayName": "Electricité basse tension", "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", "impacts": { "acd": 0, "cch": 0, @@ -1657,20 +1661,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "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": "kilowatt hour" + "pef": 31.584083204083548, + "ecs": 25.820876635284137 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Eau du robinet UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -1691,20 +1695,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 0.28316945990608366, - "pef": 0.35589128361361144 - }, - "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": "kilogram" + "pef": 0.35589128361361155, + "ecs": 0.28316945990608366 + } }, { - "categories": ["energy"], - "comment": "", - "displayName": "Gaz de ville", "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", "impacts": { "acd": 0, "cch": 0, @@ -1725,20 +1729,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 4.505715956676105, - "pef": 4.244465029201733 - }, - "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": "megajoule" + "pef": 4.2444650292017325, + "ecs": 4.505715956676105 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Comté FR AOP Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -1759,20 +1763,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 623.8601122452482, - "pef": 501.69304798545176 - }, - "name": "Comte cheese, from cow's milk, at plant {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 501.69304798545176, + "ecs": 623.860112245248 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Emmental FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -1793,20 +1797,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 653.0420990279583, - "pef": 523.4522162300182 - }, - "name": "Emmental cheese, from cow's milk, at plant {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 523.4522162300182, + "ecs": 653.0420990279582 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Mozzarella FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -1827,20 +1831,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 477.8983479228089, - "pef": 383.3898575988132 - }, - "name": "Mozzarella cheese, from cow's milk, at plant {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 383.3898575988133, + "ecs": 477.89834792280885 + } }, { - "categories": ["ingredient"], - "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "displayName": "Betterave rouge FR ou UE ou Hors UE Bio", "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", "impacts": { "acd": 0, "cch": 0, @@ -1861,20 +1865,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 13.032834134308757, - "pef": 15.090184627616896 - }, - "name": "Carrot, organic 2023, national average, at farm gate {FR} U", - "source": "Ginko", - "system_description": "", - "unit": "kilogram" + "pef": 15.0901846276169, + "ecs": 13.032834134308757 + } }, { - "categories": ["ingredient"], - "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "displayName": "Céleri-rave FR ou UE ou Hors UE Bio", "id": "celeriac-organic", + "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", + "system_description": "", + "categories": ["ingredient"], + "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", + "source": "Ginko", "impacts": { "acd": 0, "cch": 0, @@ -1895,20 +1899,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 13.032834134308757, - "pef": 15.090184627616896 - }, - "name": "Carrot, organic 2023, national average, at farm gate {FR} U", - "source": "Ginko", - "system_description": "", - "unit": "kilogram" + "pef": 15.0901846276169, + "ecs": 13.032834134308757 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Navet FR ou UE ou Hors UE Bio", "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", "impacts": { "acd": 0, "cch": 0, @@ -1929,20 +1933,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 12.588610858389908, - "pef": 12.591749875827201 - }, - "name": "Carrot, organic, Lower Normandy, at farm gate {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 12.591749875827201, + "ecs": 12.58861085838991 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Pois chiche FR ou UE ou Hors UE Bio", "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", "impacts": { "acd": 0, "cch": 0, @@ -1963,20 +1967,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 40.5557142658534, - "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": "kilogram" + "pef": 49.24712177006622, + "ecs": 40.555714265853396 + } }, { - "categories": ["ingredient"], - "comment": "Production Volume Amount: 34497462272", - "displayName": "Poivron sous serre non chauffée FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -1997,20 +2001,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 53.02961304851451, - "pef": 56.28631578307503 - }, - "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": "kilogram" + "pef": 56.28631578307504, + "ecs": 53.02961304851452 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Soja FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -2031,20 +2035,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "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": "kilogram" + "pef": 68.29126821945296, + "ecs": 76.00444657735915 + } }, { - "categories": ["ingredient"], - "comment": "Rdt mean = 2,25 t/ha", + "id": "soybean-organic", + "name": "Soybean, organic, animal feed, at farm gate {FR} U", "displayName": "Soja FR ou UE ou Hors UE Bio", - "id": "soybean-organic", + "unit": "kilogram", "identifier": "AGRIBALU000000003114674", + "system_description": "", + "categories": ["ingredient"], + "comment": "Rdt mean = 2,25 t/ha", + "source": "Agribalyse 3.1.1", "impacts": { "acd": 0, "cch": 0, @@ -2065,20 +2069,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 115.33712697697422, - "pef": 136.43216223167863 - }, - "name": "Soybean, organic, animal feed, at farm gate {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "", - "unit": "kilogram" + "pef": 136.43216223167863, + "ecs": 115.33712697697423 + } }, { - "categories": ["ingredient"], - "comment": "Production Volume Amount: 76692414464", - "displayName": "Soja (non déforestant) Hors UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -2099,20 +2103,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 427.2156604473987, - "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": "kilogram" + "pef": 122.85469020017466, + "ecs": 427.21566044739865 + } }, { - "categories": ["ingredient"], - "comment": "Production Volume Amount: 76692414464", - "displayName": "Soja déforestant Hors UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -2133,20 +2137,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 489.40706835373936, - "pef": 194.46230182615696 - }, - "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": "kilogram" + "pef": 194.46230182615702, + "ecs": 489.4070683537393 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Soja feed Hors UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -2167,20 +2171,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 77.15577351297308, - "pef": 69.51737699966561 - }, - "name": "Soybean grain dried, stored and transported, processing {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 69.51737699966563, + "ecs": 77.15577351297308 + } }, { - "categories": ["ingredient"], - "comment": "None", - "displayName": "Chair à saucisse crue FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -2201,20 +2205,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 1321.8702289111702, - "pef": 1131.0975385390955 - }, - "name": "Sausage meat, raw, at plant {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 1131.0975385390955, + "ecs": 1321.8702289111702 + } }, { - "categories": ["ingredient"], - "comment": "The CIQUAL food item 'Toulouse sausage, raw' matches with a recipe from ANSES.", - "displayName": "Saucisse de Toulouse (crue) FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -2235,20 +2239,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 2099.3512657815277, - "pef": 1857.6721986102461 - }, - "name": "Toulouse sausage, raw, at plant {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 1857.6721986102464, + "ecs": 2099.3512657815277 + } }, { - "categories": ["ingredient"], - "comment": "The CIQUAL food item 'Toulouse sausage, cooked' matches with a recipe from ANSES.", - "displayName": "Saucisse de Toulouse (cuite) FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -2269,20 +2273,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 2123.576615660449, - "pef": 1886.0847087530829 - }, - "name": "Toulouse sausage, cooked, at plant {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 1886.0847087530826, + "ecs": 2123.5766156604486 + } }, { - "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. \"", - "displayName": "Saucisse végétale tofu FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -2303,20 +2307,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 118.2514145205723, - "pef": 99.18069025582145 - }, - "name": "Plant-based sausage with tofu (vegan), at plant {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "", - "unit": "kilogram" + "pef": 99.18069025582145, + "ecs": 118.25141452057227 + } }, { - "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", - "displayName": "Purée de tomates Hors UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -2337,20 +2341,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "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": "kilogram" + "pef": 293.0029435780502, + "ecs": 265.0904671642133 + } }, { - "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", - "displayName": "Concentré de tomates Hors UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -2371,20 +2375,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "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": "kilogram" + "pef": 452.3148770874482, + "ecs": 411.45133158605597 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Viande de boeuf avec os (crue) FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -2405,20 +2409,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 1953.7986977698026, - "pef": 1955.2669596997257 - }, - "name": "Meat with bone, beef, for direct consumption {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 1955.2669596997257, + "ecs": 1953.7986977698022 + } }, { - "categories": ["ingredient"], - "comment": "This dataset includes packaging", - "displayName": "Viande de boeuf sans os (crue) FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -2439,20 +2443,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 2446.875616510269, - "pef": 2447.106268630926 - }, - "name": "Meat without bone, beef, for direct consumption {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 2447.1062686309256, + "ecs": 2446.8756165102686 + } }, { - "categories": ["ingredient"], - "comment": "This dataset includes packaging", - "displayName": "Viande de boeuf sans os FR ou UE ou Hors UE Bio (crue)", "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", "impacts": { "acd": 0, "cch": 0, @@ -2473,20 +2477,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 1956.6522284266964, - "pef": 2265.525824415107 - }, - "name": "Meat without bone, beef, for direct consumption {FR} U [organic], constructed by Ecobalyse", - "source": "Ecobalyse", - "system_description": "Ecobalyse", - "unit": "kilogram" + "pef": 2265.5258244151064, + "ecs": 1956.6522284266962 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Semoule de blé dur FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -2507,20 +2511,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 182.83376189686146, - "pef": 192.16577622075008 - }, - "name": "Durum wheat, semolina, at plant {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 192.16577622075008, + "ecs": 182.83376189686146 + } }, { - "categories": ["ingredient"], - "comment": "Economic allocation", - "displayName": "Sucre de betterave FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -2541,20 +2545,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 148.39172813220918, - "pef": 147.80202535474598 - }, - "name": "Sugar, from sugar beet, at sugar refinery {GLO} - Adapted from WFLDB U", - "source": "Agribalyse 3.1.1", - "system_description": "", - "unit": "kilogram" + "pef": 147.802025354746, + "ecs": 148.39172813220915 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Chocolat noir UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -2575,20 +2579,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 821.3039627054468, - "pef": 815.7641303963198 - }, - "name": "Dark chocolate, at plant {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 815.7641303963198, + "ecs": 821.3039627054469 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Blanc de poulet cru (alim. ani. 100%BR) Hors UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -2609,20 +2613,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 1589.659056438474, - "pef": 974.702423314601 - }, - "name": "Meat without bone, chicken, for direct consumption {FR} U [br-max], constructed by Ecobalyse", - "source": "Ecobalyse", - "system_description": "Ecobalyse", - "unit": "kilogram" + "pef": 974.7024233146012, + "ecs": 1589.6590564384737 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Blanc de poulet cru (alim. ani. 100%FR) FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -2643,20 +2647,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 859.8812762958948, - "pef": 680.728622263604 - }, - "name": "Meat without bone, chicken, for direct consumption {FR} U [fr], constructed by Ecobalyse", - "source": "Ecobalyse", - "system_description": "Ecobalyse", - "unit": "kilogram" + "pef": 680.7286222636042, + "ecs": 859.8812762958948 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Sucre de canne Hors UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -2677,20 +2681,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 1905.997770594743, - "pef": 361.7117649877112 - }, - "name": "Brown sugar, production, at plant {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 361.71176498771126, + "ecs": 1905.9977705947435 + } }, { - "categories": ["ingredient"], - "comment": "Production Volume Amount: 1436769536", - "displayName": "Thé (feuilles) UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -2711,20 +2715,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 1381.990648859779, - "pef": 676.8829609153015 - }, - "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": "kilogram" + "pef": 676.8829609153016, + "ecs": 1381.9906488597785 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Café moulu Hors UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -2745,20 +2749,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 3165.914670980986, - "pef": 1798.4199344820058 - }, - "name": "Coffee, roast and ground, at plant {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 1798.419934482006, + "ecs": 3165.914670980986 + } }, { - "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.", - "displayName": "Poivre noir Hors UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -2779,20 +2783,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 1226.5149792757582, - "pef": 1130.1851485397242 - }, - "name": "Black pepper, dried, consumption mix {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 1130.1851485397244, + "ecs": 1226.5149792757582 + } }, { - "categories": ["ingredient"], - "comment": "This process describes the production of Milk, powder, skimmed in France.\nIncluded activities are : production in country of origin and transport", - "displayName": "Poudre de lait écrémé FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -2813,20 +2817,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 1251.7720741272337, - "pef": 1495.535809227004 - }, - "name": "Milk, powder, skimmed, non rehydrated, at plant {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 1495.5358092270042, + "ecs": 1251.7720741272337 + } }, { - "categories": ["ingredient"], - "comment": "(4,4,2,1,2),", - "displayName": "Vin rouge FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -2847,20 +2851,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 151.97209204488766, - "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": "litre" + "pef": 155.2173279408098, + "ecs": 151.9720920448877 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Crevettes fraîches Hors UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -2881,20 +2885,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 289.98775169467257, - "pef": 264.39734333926424 - }, - "name": "Fresh shrimps, China production {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 264.39734333926424, + "ecs": 289.98775169467257 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Truite d'élevage FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -2915,20 +2919,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 542.7480745452824, - "pef": 501.7299438098156 - }, - "name": "Large trout, 2-4kg, conventional, at farm gate {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "", - "unit": "kilogram" + "pef": 501.72994380981555, + "ecs": 542.7480745452824 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Oeuf FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -2949,20 +2953,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 649.9474216018835, - "pef": 471.2837857332832 - }, - "name": "Egg, conventional, indoor system, non-cage, at farm gate {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "", - "unit": "kilogram" + "pef": 471.2837857332832, + "ecs": 649.9474216018834 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Oeuf (code 3) FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -2983,20 +2987,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 520.4285655604239, - "pef": 369.64232150226667 - }, - "name": "Egg, conventional, indoor system, cage, at farm gate {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "", - "unit": "kilogram" + "pef": 369.64232150226667, + "ecs": 520.428565560424 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Oeuf (code 1) FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -3017,20 +3021,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 619.2337280221162, - "pef": 449.501321030061 - }, - "name": "Egg, conventional, outdoor system, at farm gate {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "", - "unit": "kilogram" + "pef": 449.50132103006086, + "ecs": 619.2337280221161 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Oeuf FR ou UE ou Hors UE Bio", "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", "impacts": { "acd": 0, "cch": 0, @@ -3051,20 +3055,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 339.3585332826367, - "pef": 413.8080275781894 - }, - "name": "Egg, organic, at farm gate {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "", - "unit": "kilogram" + "pef": 413.80802757818947, + "ecs": 339.3585332826367 + } }, { - "categories": ["ingredient"], - "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "displayName": "Raisin de cuve FR ou UE ou Hors UE Bio", "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", "impacts": { "acd": 0, "cch": 0, @@ -3085,20 +3089,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 71.71553116984859, - "pef": 82.14988484686424 - }, - "name": "Grape, integrated, variety mix, Languedoc-Roussillon, at vineyard, organic 2023 {FR} U", - "source": "Ginko", - "system_description": "", - "unit": "kilogram" + "pef": 82.14988484686424, + "ecs": 71.7155311698486 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Viande d'agneau (désossée) FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -3119,20 +3123,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 4107.6172057659305, - "pef": 4303.9849164004345 - }, - "name": "Meat without bone, lamb {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 4303.984916400434, + "ecs": 4107.6172057659305 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Viande d'agneau FR ou UE ou Hors UE Bio (désossée)", "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", "impacts": { "acd": 0, "cch": 0, @@ -3153,20 +3157,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 2780.43749192331, - "pef": 3315.2687054260427 - }, - "name": "Meat without bone, lamb {FR} U [organic], constructed by Ecobalyse", - "source": "Ecobalyse", - "system_description": "Ecobalyse", - "unit": "kilogram" + "pef": 3315.2687054260427, + "ecs": 2780.43749192331 + } }, { - "categories": ["ingredient"], - "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "displayName": "Poire FR ou UE ou Hors UE Bio", "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", "impacts": { "acd": 0, "cch": 0, @@ -3187,20 +3191,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 43.469959047140335, - "pef": 40.798777809813814 - }, - "name": "Pear, consumption mix, organic 2023 {FR} U", - "source": "Ginko", - "system_description": "", - "unit": "kilogram" + "pef": 40.79877780981382, + "ecs": 43.46995904714033 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Carotte FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -3221,20 +3225,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 64.98479572456809, - "pef": 17.818506105952576 - }, - "name": "Carrot, conventional, national average, at farm gate {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "", - "unit": "kilogram" + "pef": 17.81850610595258, + "ecs": 64.98479572456807 + } }, { - "categories": ["ingredient"], - "comment": "Reference flow: Yield = 56880 kg/ha\nProduction Volume Amount: 508750016", - "displayName": "Carotte UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -3255,20 +3259,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 30.91362948963839, - "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": "kilogram" + "pef": 19.724450306619094, + "ecs": 30.913629489638385 + } }, { - "categories": ["ingredient"], - "comment": "Production Volume Amount: 18370729984", - "displayName": "Carotte Hors UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -3289,20 +3293,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "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": "kilogram" + "pef": 30.571496239023755, + "ecs": 38.398618742819814 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Courgette FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -3323,20 +3327,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 24.03280371085538, - "pef": 25.318947711892537 - }, - "name": "Zucchini, springtime, under tunnel, conventionel, at farm gate {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 25.31894771189254, + "ecs": 24.03280371085538 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Courgette UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -3357,20 +3361,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 24.9970743867062, - "pef": 25.20298552489338 - }, - "name": "Zucchini, conventional, national average, at farm gate {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 25.202985524893382, + "ecs": 24.997074386706196 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Poire FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -3391,20 +3395,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 21.18472419910076, - "pef": 21.62263161962437 - }, - "name": "Pear, conventional, at orchard {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 21.62263161962437, + "ecs": 21.184724199100767 + } }, { - "categories": ["ingredient"], - "comment": "Reference flow: Yield = 48205 kg/ha table fruit quality\nProduction Volume Amount: 277274240", - "displayName": "Poire UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -3425,20 +3429,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "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": "kilogram" + "pef": 25.039985657174284, + "ecs": 42.87410310985863 + } }, { - "categories": ["ingredient"], - "comment": "FRANCE", - "displayName": "Pêche FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -3459,20 +3463,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 61.72658634769158, - "pef": 51.231280397804156 - }, - "name": "Peach, production mix, national average, at orchard {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 51.23128039780415, + "ecs": 61.726586347691565 + } }, { - "categories": ["ingredient"], - "comment": "Reference flow: Yield = 27000 kg/ha table fruit quality\nProduction Volume Amount: 1257250944", - "displayName": "Pêche UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -3493,20 +3497,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 204.38748519642667, - "pef": 144.97598542413007 - }, - "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": "kilogram" + "pef": 144.97598542413004, + "ecs": 204.3874851964266 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Melon FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -3527,20 +3531,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 31.102909624216796, - "pef": 32.634099319199194 - }, - "name": "Melon, conventional, national average, at farm gate {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 32.6340993191992, + "ecs": 31.102909624216796 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Melon UE Conv.", "id": "melon-eu", + "name": "Melon, conventional, national average, at farm gate {FR} U", + "displayName": "Melon UE Conv.", + "unit": "kilogram", "identifier": "AGRIBALU000000003109266", + "system_description": "AGRIBALYSE", + "categories": ["ingredient"], + "comment": "", + "source": "Agribalyse 3.1.1", "impacts": { "acd": 0, "cch": 0, @@ -3561,20 +3565,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 31.102909624216796, - "pef": 32.634099319199194 - }, - "name": "Melon, conventional, national average, at farm gate {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 32.6340993191992, + "ecs": 31.102909624216796 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Pomme de terre industrie FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -3595,20 +3599,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 18.668974385921725, - "pef": 14.231181517455987 - }, - "name": "Ware potato, conventional, for industrial use, at farm gate {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 14.23118151745599, + "ecs": 18.668974385921725 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Pomme de terre de table FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -3629,20 +3633,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 18.708274892165, - "pef": 14.283346497425526 - }, - "name": "Ware potato, conventional, for fresh market, other varieties, at farm gate {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 14.283346497425525, + "ecs": 18.708274892164997 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Fécule de pomme de terre Hors UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -3663,20 +3667,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 492.97646064295486, - "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": "kilogram" + "pef": 345.3386678700623, + "ecs": 492.976460642955 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Blé tendre Hors UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -3697,20 +3701,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 153.3690003805198, - "pef": 170.68198537282348 - }, - "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": "kilogram" + "pef": 170.6819853728235, + "ecs": 153.36900038051974 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Oignon FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -3731,20 +3735,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 21.41266629629364, - "pef": 18.37679175774654 - }, - "name": "Onion, national average, at farm {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 18.376791757746535, + "ecs": 21.412666296293644 + } }, { - "categories": ["ingredient"], - "comment": "Reference flow: Yield = 55000 kg/ha\nProduction Volume Amount: 1402423040", - "displayName": "Oignon UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -3765,20 +3769,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "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": "kilogram" + "pef": 33.35361891312618, + "ecs": 40.00755395302994 + } }, { - "categories": ["ingredient"], - "comment": "Production Volume Amount: 38596923392", - "displayName": "Oignon Hors UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -3799,20 +3803,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 60.186176613708085, - "pef": 67.12923161761331 - }, - "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": "kilogram" + "pef": 67.12923161761333, + "ecs": 60.1861766137081 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Aubergine FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -3833,20 +3837,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 24.03280371085538, - "pef": 25.318947711892537 - }, - "name": "Zucchini, springtime, under tunnel, conventionel, at farm gate {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 25.31894771189254, + "ecs": 24.03280371085538 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Aubergine UE Conv.", "id": "eggplant-eu", + "name": "Zucchini, springtime, under tunnel, conventionel, at farm gate {FR} U", + "displayName": "Aubergine UE Conv.", + "unit": "kilogram", "identifier": "AGRIBALU000024985200218", + "system_description": "AGRIBALYSE", + "categories": ["ingredient"], + "comment": "", + "source": "Agribalyse 3.1.1", "impacts": { "acd": 0, "cch": 0, @@ -3867,20 +3871,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 24.03280371085538, - "pef": 25.318947711892537 - }, - "name": "Zucchini, springtime, under tunnel, conventionel, at farm gate {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 25.31894771189254, + "ecs": 24.03280371085538 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Haricot vert FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -3901,20 +3905,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 43.47025936799168, - "pef": 38.783993950411116 - }, - "name": "French bean, conventional, national average, at farm gate {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 38.78399395041111, + "ecs": 43.47025936799167 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Haricot vert UE Conv.", "id": "french-bean-eu", + "name": "French bean, conventional, national average, at farm gate {FR} U", + "displayName": "Haricot vert UE Conv.", + "unit": "kilogram", "identifier": "AGRIBALU000024985200072", + "system_description": "AGRIBALYSE", + "categories": ["ingredient"], + "comment": "", + "source": "Agribalyse 3.1.1", "impacts": { "acd": 0, "cch": 0, @@ -3935,20 +3939,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 43.47025936799168, - "pef": 38.783993950411116 - }, - "name": "French bean, conventional, national average, at farm gate {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 38.78399395041111, + "ecs": 43.47025936799167 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Haricot vert Hors UE Conv.", "id": "french-bean-non-eu", + "name": "French bean, conventional, national average, at farm gate {FR} U", + "displayName": "Haricot vert Hors UE Conv.", + "unit": "kilogram", "identifier": "AGRIBALU000024985200072", + "system_description": "AGRIBALYSE", + "categories": ["ingredient"], + "comment": "", + "source": "Agribalyse 3.1.1", "impacts": { "acd": 0, "cch": 0, @@ -3969,20 +3973,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 43.47025936799168, - "pef": 38.783993950411116 - }, - "name": "French bean, conventional, national average, at farm gate {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 38.78399395041111, + "ecs": 43.47025936799167 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Laitue FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -4003,20 +4007,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 26.789910014404725, - "pef": 26.024518039534165 - }, - "name": "Lettuce, conventional, national average, at farm gate {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 26.02451803953416, + "ecs": 26.78991001440472 + } }, { - "categories": ["ingredient"], - "comment": "Production Volume Amount: 23622365184", - "displayName": "Laitue UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -4037,20 +4041,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 24.50587629640328, - "pef": 20.339888618375653 - }, - "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": "kilogram" + "pef": 20.339888618375657, + "ecs": 24.50587629640328 + } }, { - "categories": ["ingredient"], - "comment": "Production Volume Amount: 23622365184", - "displayName": "Laitue Hors UE Conv.", "id": "lettuce-non-eu", + "name": "Iceberg lettuce {GLO}| production | Cut-off, U - Adapted from Ecoinvent U", + "displayName": "Laitue Hors 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", "impacts": { "acd": 0, "cch": 0, @@ -4071,20 +4075,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 24.50587629640328, - "pef": 20.339888618375653 - }, - "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": "kilogram" + "pef": 20.339888618375657, + "ecs": 24.50587629640328 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Petit pois FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -4105,20 +4109,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 83.82782485359631, - "pef": 61.62593073097711 - }, - "name": "Annual vining pea for industry, Conventional, National average, at farm gate {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 61.62593073097713, + "ecs": 83.82782485359631 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Petit pois UE Conv.", "id": "garden-peas-eu", + "name": "Annual vining pea for industry, Conventional, National average, at farm gate {FR} U", + "displayName": "Petit pois UE Conv.", + "unit": "kilogram", "identifier": "AGRIBALU000024985200024", + "system_description": "AGRIBALYSE", + "categories": ["ingredient"], + "comment": "", + "source": "Agribalyse 3.1.1", "impacts": { "acd": 0, "cch": 0, @@ -4139,20 +4143,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 83.82782485359631, - "pef": 61.62593073097711 - }, - "name": "Annual vining pea for industry, Conventional, National average, at farm gate {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 61.62593073097713, + "ecs": 83.82782485359631 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Cerise FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -4173,20 +4177,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 403.91671616583557, - "pef": 178.21142637929526 - }, - "name": "Cherry, conventional, national average, at orchard {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 178.21142637929523, + "ecs": 403.91671616583545 + } }, { - "categories": ["ingredient"], - "comment": "Reference flow: Yield = 37000 kg/ha\nProduction Volume Amount: 674371008", - "displayName": "Citron UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -4207,20 +4211,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 113.68544810511234, - "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": "kilogram" + "pef": 83.51864905413399, + "ecs": 113.68544810511233 + } }, { - "categories": ["ingredient"], - "comment": "", + "id": "plum-fr", + "name": "Cherry, conventional, national average, at orchard {FR} U", "displayName": "Prune FR Conv.", - "id": "plum-fr", + "unit": "kilogram", "identifier": "AGRIBALU000000003102916", + "system_description": "AGRIBALYSE", + "categories": ["ingredient"], + "comment": "", + "source": "Agribalyse 3.1.1", "impacts": { "acd": 0, "cch": 0, @@ -4241,20 +4245,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 403.91671616583557, - "pef": 178.21142637929526 - }, - "name": "Cherry, conventional, national average, at orchard {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 178.21142637929523, + "ecs": 403.91671616583545 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Courge FR Conv.", "id": "squash-fr", + "name": "Zucchini, springtime, under tunnel, conventionel, at farm gate {FR} U", + "displayName": "Courge FR Conv.", + "unit": "kilogram", "identifier": "AGRIBALU000024985200218", + "system_description": "AGRIBALYSE", + "categories": ["ingredient"], + "comment": "", + "source": "Agribalyse 3.1.1", "impacts": { "acd": 0, "cch": 0, @@ -4275,20 +4279,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 24.03280371085538, - "pef": 25.318947711892537 - }, - "name": "Zucchini, springtime, under tunnel, conventionel, at farm gate {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 25.31894771189254, + "ecs": 24.03280371085538 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Courge UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -4309,20 +4313,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 24.9970743867062, - "pef": 25.20298552489338 - }, - "name": "Zucchini, conventional, national average, at farm gate {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 25.202985524893382, + "ecs": 24.997074386706196 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Courge FR ou UE ou Hors UE Bio", "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", "impacts": { "acd": 0, "cch": 0, @@ -4343,20 +4347,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 20.617901994043795, - "pef": 23.755447115550382 - }, - "name": "Zucchini, springtime, under tunnel, organic, at farm gate {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 23.755447115550382, + "ecs": 20.61790199404379 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Tomate sous serre chauffée Hors UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -4377,20 +4381,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 107.74562630247809, - "pef": 117.23387573386084 - }, - "name": "Tomato, medium size, conventional, heated greenhouse, at greenhouse {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 117.23387573386083, + "ecs": 107.7456263024781 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Tomate sous serre non chauffée FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -4411,20 +4415,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "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": "kilogram" + "pef": 20.25467418923414, + "ecs": 18.408796254149188 + } }, { - "categories": ["ingredient"], - "comment": "Yield = 165000.0 kg/haOutput of tomato, fresh grade, produced for direct human consumption.\nProduction Volume Amount: 4255320576", - "displayName": "Tomate UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -4445,20 +4449,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 107.55272230490948, - "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": "kilogram" + "pef": 75.84811435164055, + "ecs": 107.55272230490945 + } }, { - "categories": ["ingredient"], - "comment": "Reference flow: Yield = 20000 kg/ha table fruit quality\nProduction Volume Amount: 171400752", - "displayName": "Abricot FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -4479,20 +4483,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 108.59904581833044, - "pef": 38.92378746186861 - }, - "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": "kilogram" + "pef": 38.923787461868606, + "ecs": 108.59904581833044 + } }, { - "categories": ["ingredient"], - "comment": "Reference flow: Yield = 20000 kg/ha table fruit quality\nProduction Volume Amount: 171400752", - "displayName": "Abricot UE Conv.", "id": "apricot-eu", + "name": "Apricot {FR}| apricot production | Cut-off, U - Adapted from Ecoinvent U", + "displayName": "Abricot UE 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", "impacts": { "acd": 0, "cch": 0, @@ -4513,20 +4517,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 108.59904581833044, - "pef": 38.92378746186861 - }, - "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": "kilogram" + "pef": 38.923787461868606, + "ecs": 108.59904581833044 + } }, { - "categories": ["ingredient"], - "comment": "FAOstats average 2013-2017", - "displayName": "Noisette avec coque Hors UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -4547,20 +4551,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 480.03446716210834, - "pef": 383.07620990473544 - }, - "name": "Hazelnut, in shell, at farm {TR} - Adapted from WFLDB U", - "source": "Agribalyse 3.1.1", - "system_description": "", - "unit": "kilogram" + "pef": 383.07620990473555, + "ecs": 480.03446716210834 + } }, { - "categories": ["ingredient"], - "comment": "FAOstats average 2013 - 2017", - "displayName": "Noisette avec coque UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -4581,20 +4585,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 673.6431190066502, - "pef": 482.75165520554884 - }, - "name": "Hazelnut, in shell, at farm {IT} - Adapted from WFLDB U", - "source": "Agribalyse 3.1.1", - "system_description": "", - "unit": "kilogram" + "pef": 482.7516552055489, + "ecs": 673.6431190066502 + } }, { - "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.", - "displayName": "Noisette décortiquée UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -4615,20 +4619,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 1365.7952063414727, - "pef": 977.5935816137436 - }, - "name": "Hazelnut, unshelled, at plant {IT} U", - "source": "Agribalyse 3.1.1", - "system_description": "", - "unit": "kilogram" + "pef": 977.5935816137436, + "ecs": 1365.7952063414727 + } }, { - "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.", - "displayName": "Noisette décortiquée Hors UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -4649,20 +4653,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 978.5779026716257, - "pef": 778.2426910261761 - }, - "name": "Hazelnut, unshelled, at plant {TR} U", - "source": "Agribalyse 3.1.1", - "system_description": "", - "unit": "kilogram" + "pef": 778.242691026176, + "ecs": 978.5779026716257 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Artichaut FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -4683,20 +4687,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "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": "kilogram" + "pef": 35.76407596678012, + "ecs": 36.68427008586407 + } }, { - "categories": ["ingredient"], - "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "displayName": "Artichaut FR ou UE ou Hors UE Bio", "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", "impacts": { "acd": 0, "cch": 0, @@ -4717,20 +4721,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 31.775500033680625, - "pef": 38.77766977404585 - }, - "name": "Cauliflower, organic 2023, national average, at farm gate {FR} U", - "source": "Ginko", - "system_description": "", - "unit": "kilogram" + "pef": 38.77766977404584, + "ecs": 31.775500033680625 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Chou-fleur FR ou UE ou Hors UE Bio", "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", "impacts": { "acd": 0, "cch": 0, @@ -4751,20 +4755,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 38.00111644532399, - "pef": 45.64929474214633 - }, - "name": "Cauliflower, winter, organic, at farm gate {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 45.64929474214634, + "ecs": 38.00111644532398 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Chou-fleur FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -4785,20 +4789,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 37.3791875173583, - "pef": 36.46550937097049 - }, - "name": "Cauliflower, winter, conventional, at farm gate {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 36.4655093709705, + "ecs": 37.3791875173583 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Poireau FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -4819,20 +4823,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 59.761125000613454, - "pef": 42.517162246503354 - }, - "name": "Leek, national average, at plant {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 42.51716224650336, + "ecs": 59.76112500061345 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Betterave rouge FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -4853,20 +4857,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 64.98479572456809, - "pef": 17.818506105952576 - }, - "name": "Carrot, conventional, national average, at farm gate {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "", - "unit": "kilogram" + "pef": 17.81850610595258, + "ecs": 64.98479572456807 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Navet FR Conv.", "id": "turnip-fr", + "name": "Carrot, conventional, national average, at farm gate {FR} U", + "displayName": "Navet FR Conv.", + "unit": "kilogram", "identifier": "AGRIBALU000000003102592", + "system_description": "", + "categories": ["ingredient"], + "comment": "", + "source": "Agribalyse 3.1.1", "impacts": { "acd": 0, "cch": 0, @@ -4887,20 +4891,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 64.98479572456809, - "pef": 17.818506105952576 - }, - "name": "Carrot, conventional, national average, at farm gate {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "", - "unit": "kilogram" + "pef": 17.81850610595258, + "ecs": 64.98479572456807 + } }, { - "categories": ["ingredient"], - "comment": "Reference flow: Yield = 56880 kg/ha\nProduction Volume Amount: 508750016", - "displayName": "Navet UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -4921,20 +4925,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 30.91362948963839, - "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": "kilogram" + "pef": 19.724450306619094, + "ecs": 30.913629489638385 + } }, { - "categories": ["ingredient"], - "comment": "Production Volume Amount: 18370729984", - "displayName": "Navet Hors UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -4955,20 +4959,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "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": "kilogram" + "pef": 30.571496239023755, + "ecs": 38.398618742819814 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Chou chinois FR Conv.", "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", + "categories": ["ingredient"], + "comment": "", + "source": "Agribalyse 3.1.1", "impacts": { "acd": 0, "cch": 0, @@ -4989,20 +4993,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 37.3791875173583, - "pef": 36.46550937097049 - }, - "name": "Cauliflower, winter, conventional, at farm gate {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 36.4655093709705, + "ecs": 37.3791875173583 + } }, { - "categories": ["ingredient"], - "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "displayName": "Chou chinois FR ou UE ou Hors UE Bio", "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", "impacts": { "acd": 0, "cch": 0, @@ -5023,20 +5027,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 33.95576726027551, - "pef": 40.97632816660858 - }, - "name": "Chinese cabbage (nappa cabbage or bok choy), consumption mix, organic 2023 {FR} U", - "source": "Ginko", - "system_description": "", - "unit": "kilogram" + "pef": 40.97632816660858, + "ecs": 33.9557672602755 + } }, { - "categories": ["ingredient"], - "comment": "Production Volume Amount: 28512262144", - "displayName": "Chou blanc Hors UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -5057,20 +5061,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 38.07769049175317, - "pef": 26.127393374521276 - }, - "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": "kilogram" + "pef": 26.127393374521265, + "ecs": 38.07769049175316 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Chou vert FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -5091,20 +5095,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 37.3791875173583, - "pef": 36.46550937097049 - }, - "name": "Cauliflower, winter, conventional, at farm gate {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 36.4655093709705, + "ecs": 37.3791875173583 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Chou vert FR ou UE ou Hors UE Bio", "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", "impacts": { "acd": 0, "cch": 0, @@ -5125,20 +5129,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 38.00111644532399, - "pef": 45.64929474214633 - }, - "name": "Cauliflower, winter, organic, at farm gate {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 45.64929474214634, + "ecs": 38.00111644532398 + } }, { - "categories": ["ingredient"], - "comment": "Production Volume Amount: 28983492608", - "displayName": "Chou rouge Hors UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -5159,20 +5163,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 43.48960193036809, - "pef": 31.71892524822795 - }, - "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": "kilogram" + "pef": 31.718925248227954, + "ecs": 43.48960193036811 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Echalote FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -5193,20 +5197,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 21.41266629629364, - "pef": 18.37679175774654 - }, - "name": "Onion, national average, at farm {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 18.376791757746535, + "ecs": 21.412666296293644 + } }, { - "categories": ["ingredient"], - "comment": "SPAIN", - "displayName": "Orange UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -5227,20 +5231,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 92.12680618672238, - "pef": 85.43454887721843 - }, - "name": "Orange, fresh grade, at farm {ES} - Adapted from WFLDB U", - "source": "Agribalyse 3.1.1", - "system_description": "", - "unit": "kilogram" + "pef": 85.43454887721842, + "ecs": 92.12680618672239 + } }, { - "categories": ["ingredient"], - "comment": "Orange, fresh grade, South African production. Output of orange, fresh grade, produced for direct human consumption.\nProduction Volume Amount: 1645182976", - "displayName": "Orange Hors UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -5261,20 +5265,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "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": "kilogram" + "pef": 62.54290142386407, + "ecs": 73.33766164750413 + } }, { - "categories": ["ingredient"], - "comment": "Reference flow: Yield = 5020.0 kg/ha table fruit quality\nProduction Volume Amount: 6459754496", - "displayName": "Olive UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -5295,20 +5299,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 86.79637154123566, - "pef": 83.9592632712171 - }, - "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": "kilogram" + "pef": 83.95926327121711, + "ecs": 86.79637154123564 + } }, { - "categories": ["ingredient"], - "comment": "EcoSpold01Location=FR\nProduction Volume Amount: 4532871168", - "displayName": "Colza FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -5329,20 +5333,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 363.49982562802563, - "pef": 201.86389727905396 - }, - "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": "kilogram" + "pef": 201.86389727905393, + "ecs": 363.49982562802563 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Colza UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -5363,20 +5367,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 251.77037698736473, - "pef": 270.4523255134388 - }, - "name": "Rapeseed, at farm {GLO} - Adapted from WFLDB U", - "source": "Agribalyse 3.1.1", - "system_description": "", - "unit": "kilogram" + "pef": 270.45232551343884, + "ecs": 251.77037698736473 + } }, { - "categories": ["ingredient"], - "comment": "CANADA", - "displayName": "Colza Hors UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -5397,20 +5401,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 233.19899119754137, - "pef": 290.75891808106377 - }, - "name": "Rapeseed, at farm {CA} - Adapted from WFLDB U", - "source": "Agribalyse 3.1.1", - "system_description": "", - "unit": "kilogram" + "pef": 290.7589180810637, + "ecs": 233.19899119754137 + } }, { - "categories": ["ingredient"], - "comment": "Reference flow: Yield = 3470 kg/ha\nProduction Volume Amount: 15861245952", - "displayName": "Pistache avec coque Hors UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -5431,20 +5435,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "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": "kilogram" + "pef": 213.15904528078175, + "ecs": 181.01230872671428 + } }, { - "categories": ["ingredient"], - "comment": "Reference flow: Yield = 1000 kg/ha\nProduction Volume Amount: 6338124800", - "displayName": "Arachide avec coque Hors UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -5465,20 +5469,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 391.9975033813963, - "pef": 460.3479443555943 - }, - "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": "kilogram" + "pef": 460.34794435559434, + "ecs": 391.9975033813963 + } }, { - "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%.", - "displayName": "Huile d'olive UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -5499,20 +5503,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 538.9219120994727, - "pef": 531.7720661349202 - }, - "name": "Extra Virgin Olive Oil, consumption mix {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 531.7720661349202, + "ecs": 538.9219120994726 + } }, { - "categories": ["ingredient"], - "comment": "Production Volume Amount: 3840904960", - "displayName": "Avocat Hors UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -5533,20 +5537,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 208.91102179612875, - "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": "kilogram" + "pef": 242.63543961664107, + "ecs": 208.91102179612872 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Pois chiche FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -5567,20 +5571,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 115.68533895585982, - "pef": 65.58800107029506 - }, - "name": "Winter pea, conventional, 15% moisture, at farm gate {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 65.58800107029508, + "ecs": 115.68533895585978 + } }, { - "categories": ["ingredient"], - "comment": "FRANCE", - "displayName": "Tournesol FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -5601,20 +5605,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 313.85688315437477, - "pef": 220.02316869876853 - }, - "name": "Sunflower, at farm {FR} - Adapted from WFLDB U", - "source": "Agribalyse 3.1.1", - "system_description": "", - "unit": "kilogram" + "pef": 220.0231686987685, + "ecs": 313.8568831543747 + } }, { - "categories": ["ingredient"], - "comment": "HUNGARY", - "displayName": "Tournesol UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -5635,20 +5639,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 359.14720087954805, - "pef": 113.52571934510964 - }, - "name": "Sunflower, at farm {HU} - Adapted from WFLDB U", - "source": "Agribalyse 3.1.1", - "system_description": "", - "unit": "kilogram" + "pef": 113.52571934510965, + "ecs": 359.14720087954794 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Tournesol Hors UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -5669,20 +5673,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 339.867245256912, - "pef": 157.8379333318282 - }, - "name": "Sunflower, at farm {GLO} - Adapted from WFLDB U", - "source": "Agribalyse 3.1.1", - "system_description": "", - "unit": "kilogram" + "pef": 157.8379333318282, + "ecs": 339.86724525691193 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Kiwi FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -5703,20 +5707,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 57.78976770749293, - "pef": 62.3665458468155 - }, - "name": "Kiwi FR, conventional, national average, at orchard {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 62.366545846815505, + "ecs": 57.78976770749293 + } }, { - "categories": ["ingredient"], - "comment": "Production Volume Amount: 1350206976", - "displayName": "Kiwi UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -5737,20 +5741,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "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": "kilogram" + "pef": 69.789234429814, + "ecs": 63.14378360175055 + } }, { - "categories": ["ingredient"], - "comment": "Production Volume Amount: 1350206976", - "displayName": "Kiwi Hors UE Conv.", "id": "kiwi-non-eu", + "name": "Kiwi {GLO}| production | Cut-off, U - Adapted from Ecoinvent U", + "displayName": "Kiwi Hors 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", "impacts": { "acd": 0, "cch": 0, @@ -5771,20 +5775,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "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": "kilogram" + "pef": 69.789234429814, + "ecs": 63.14378360175055 + } }, { - "categories": ["ingredient"], - "comment": "BRAZIL", - "displayName": "Mangue Hors UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -5805,20 +5809,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 57.283597104847225, - "pef": 37.79527562631753 - }, - "name": "Mango, conventional, Val de San Francisco, at orchard {BR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 37.79527562631753, + "ecs": 57.28359710484723 + } }, { - "categories": ["ingredient"], - "comment": "Production Volume Amount: 18088361984", - "displayName": "Epinard Hors UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -5839,20 +5843,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "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": "kilogram" + "pef": 16.060802619719126, + "ecs": 45.63017702251564 + } }, { - "categories": ["ingredient"], - "comment": "Production Volume Amount: 240114696192", - "displayName": "Fenouil FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -5873,20 +5877,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 114.44232058920514, - "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": "kilogram" + "pef": 56.5640472642581, + "ecs": 114.44232058920515 + } }, { - "categories": ["ingredient"], - "comment": "Production Volume Amount: 240114696192", - "displayName": "Fenouil UE Conv.", "id": "fennel-eu", + "name": "Fennel {GLO}| production | Cut-off, U - Adapted from Ecoinvent U", + "displayName": "Fenouil UE Conv.", + "unit": "kilogram", "identifier": "AGRIBALU000000003105790", + "system_description": "Ecoinvent v3 - Copied from Ecoinvent", + "categories": ["ingredient"], + "comment": "Production Volume Amount: 240114696192", + "source": "Agribalyse 3.1.1", "impacts": { "acd": 0, "cch": 0, @@ -5907,20 +5911,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 114.44232058920514, - "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": "kilogram" + "pef": 56.5640472642581, + "ecs": 114.44232058920515 + } }, { - "categories": ["ingredient"], - "comment": "Production Volume Amount: 18174699520", - "displayName": "Brocoli UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -5941,20 +5945,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 50.32044745743751, - "pef": 48.32066659259582 - }, - "name": "Broccoli {GLO}| production | Cut-off, U - Adapted from Ecoinvent U", - "source": "Agribalyse 3.1.1", - "system_description": "Ecoinvent v3 - Copied from Ecoinvent", - "unit": "kilogram" + "pef": 48.320666592595835, + "ecs": 50.32044745743751 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Myrtille Hors UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -5975,20 +5979,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 929.4161817810746, - "pef": 229.17723317759965 - }, - "name": "Blueberry, at farm {CA} - Adapted from WFLDB U", - "source": "Agribalyse 3.1.1", - "system_description": "", - "unit": "kilogram" + "pef": 229.17723317759962, + "ecs": 929.4161817810746 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Framboise UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -6009,20 +6013,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 446.82832955318037, - "pef": 240.1940349133587 - }, - "name": "Raspberry, at farm {RS} - Adapted from WFLDB U", - "source": "Agribalyse 3.1.1", - "system_description": "", - "unit": "kilogram" + "pef": 240.19403491335868, + "ecs": 446.8283295531803 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Fraise UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -6043,20 +6047,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 82.20013540076334, - "pef": 64.04592650383397 - }, - "name": "Strawberry for processing, open field, conventional, at farm gate {ES} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 64.04592650383395, + "ecs": 82.20013540076332 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Fraise Hors UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -6077,20 +6081,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 73.16460011899035, - "pef": 53.81072558615533 - }, - "name": "Strawberry for processing, open field, conventional, at farm gate {MA} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 53.81072558615532, + "ecs": 73.16460011899034 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Banane hors UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -6111,20 +6115,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 70.56312226998749, - "pef": 44.14135180247622 - }, - "name": "Banana, mixed production, West Indies, at farm gate {WI} U", - "source": "Agribalyse 3.1.1", - "system_description": "", - "unit": "kilogram" + "pef": 44.14135180247622, + "ecs": 70.56312226998747 + } }, { - "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.", - "displayName": "Banane Hors UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -6145,20 +6149,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 82.18896908055613, - "pef": 43.63394511587758 - }, - "name": "Banana, at farm {GLO} - Adapted from WFLDB U", - "source": "Agribalyse 3.1.1", - "system_description": "", - "unit": "kilogram" + "pef": 43.63394511587758, + "ecs": 82.18896908055615 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Concombre de saison FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -6179,20 +6183,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "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": "kilogram" + "pef": 20.25467418923414, + "ecs": 18.408796254149188 + } }, { - "categories": ["ingredient"], - "comment": "Production Volume Amount: 57559834624", - "displayName": "Concombre hors saison FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -6213,20 +6217,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "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": "kilogram" + "pef": 223.3304294698721, + "ecs": 205.7208235282172 + } }, { - "categories": ["ingredient"], - "comment": "Production Volume Amount: 57559834624", - "displayName": "Concombre hors saison UE Conv.", "id": "cucumber-eu", + "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", + "system_description": "Ecoinvent v3 - Copied from Ecoinvent", + "categories": ["ingredient"], + "comment": "Production Volume Amount: 57559834624", + "source": "Agribalyse 3.1.1", "impacts": { "acd": 0, "cch": 0, @@ -6247,20 +6251,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "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": "kilogram" + "pef": 223.3304294698721, + "ecs": 205.7208235282172 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Fraise de saison FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -6281,20 +6285,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 72.10774008058554, - "pef": 52.608877763316684 - }, - "name": "Strawberry, open field, conventional, at farm gate {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 52.60887776331667, + "ecs": 72.10774008058554 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Fraise hors saison FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -6315,20 +6319,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 292.94609530081806, - "pef": 274.14864404821805 - }, - "name": "Strawberry, soilless protected crops, heated, conventional, at farm gate {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 274.148644048218, + "ecs": 292.94609530081806 + } }, { - "categories": ["ingredient"], - "comment": "Production Volume Amount: 8969982976", - "displayName": "Céleri branche FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -6349,20 +6353,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 49.2400645867597, - "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": "kilogram" + "pef": 44.55037087096618, + "ecs": 49.24006458675971 + } }, { - "categories": ["ingredient"], - "comment": "Production Volume Amount: 8969982976", - "displayName": "Céleri branche UE Conv.", "id": "celery-eu", + "name": "Celery {GLO}| 675 production | Cut-off, U - Adapted from Ecoinvent U", + "displayName": "Céleri branche UE Conv.", + "unit": "kilogram", "identifier": "AGRIBALU000000003102720", + "system_description": "Ecoinvent v3 - Copied from Ecoinvent", + "categories": ["ingredient"], + "comment": "Production Volume Amount: 8969982976", + "source": "Agribalyse 3.1.1", "impacts": { "acd": 0, "cch": 0, @@ -6383,20 +6387,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 49.2400645867597, - "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": "kilogram" + "pef": 44.55037087096618, + "ecs": 49.24006458675971 + } }, { - "categories": ["ingredient"], - "comment": "", + "id": "celeriac-fr", + "name": "Carrot, conventional, national average, at farm gate {FR} U", "displayName": "Céleri-rave FR Conv.", - "id": "celeriac-fr", + "unit": "kilogram", "identifier": "AGRIBALU000000003102592", + "system_description": "", + "categories": ["ingredient"], + "comment": "", + "source": "Agribalyse 3.1.1", "impacts": { "acd": 0, "cch": 0, @@ -6417,20 +6421,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 64.98479572456809, - "pef": 17.818506105952576 - }, - "name": "Carrot, conventional, national average, at farm gate {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "", - "unit": "kilogram" + "pef": 17.81850610595258, + "ecs": 64.98479572456807 + } }, { - "categories": ["ingredient"], - "comment": "Reference flow: Yield = 56880 kg/ha\nProduction Volume Amount: 508750016", - "displayName": "Céleri-rave UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -6451,20 +6455,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 30.91362948963839, - "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": "kilogram" + "pef": 19.724450306619094, + "ecs": 30.913629489638385 + } }, { - "categories": ["ingredient"], - "comment": "Production Volume Amount: 18370729984", - "displayName": "Céleri-rave Hors UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -6485,20 +6489,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "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": "kilogram" + "pef": 30.571496239023755, + "ecs": 38.398618742819814 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Noix avec coque FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -6519,20 +6523,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "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": "kilogram" + "pef": 274.2322037263629, + "ecs": 258.26464727646476 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Noix décortiquées FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -6553,20 +6557,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "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": "kilogram" + "pef": 292.3838141648916, + "ecs": 278.8446573458546 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Châtaigne décortiquée FR Conv.", "id": "chestnut-husked-fr", + "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", + "system_description": "AGRIBALYSE", + "categories": ["ingredient"], + "comment": "", + "source": "Agribalyse 3.1.1", "impacts": { "acd": 0, "cch": 0, @@ -6587,20 +6591,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "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": "kilogram" + "pef": 292.3838141648916, + "ecs": 278.8446573458546 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Châtaigne avec coque FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -6621,20 +6625,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 259.7351203086006, - "pef": 271.06183116980344 - }, - "name": "Walnut, dried inshell, conventional, national average, at farm gate {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 271.0618311698035, + "ecs": 259.73512030860064 + } }, { - "categories": ["ingredient"], - "comment": "Reference flow: Yield = 30000 kg/ha table fruit quality\nProduction Volume Amount: 2046639488", - "displayName": "Mandarine UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -6655,20 +6659,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 122.28053245052378, - "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": "kilogram" + "pef": 82.81268409001734, + "ecs": 122.2805324505238 + } }, { - "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.", - "displayName": "Champignon frais UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -6689,20 +6693,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 417.735731292906, - "pef": 398.35078655633237 - }, - "name": "Agaricus bisporus mushroom, fresh, at plant {NL} - Adapted from WFLDB U", - "source": "Agribalyse 3.1.1", - "system_description": "", - "unit": "kilogram" + "pef": 398.35078655633237, + "ecs": 417.73573129290594 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Chou de Bruxelles FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -6723,20 +6727,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 37.3791875173583, - "pef": 36.46550937097049 - }, - "name": "Cauliflower, winter, conventional, at farm gate {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 36.4655093709705, + "ecs": 37.3791875173583 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Chou de Bruxelles FR ou UE ou Hors UE Bio", "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", "impacts": { "acd": 0, "cch": 0, @@ -6757,20 +6761,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 38.00111644532399, - "pef": 45.64929474214633 - }, - "name": "Cauliflower, winter, organic, at farm gate {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 45.64929474214634, + "ecs": 38.00111644532398 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Lentilles FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -6791,20 +6795,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 115.68533895585982, - "pef": 65.58800107029506 - }, - "name": "Winter pea, conventional, 15% moisture, at farm gate {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 65.58800107029508, + "ecs": 115.68533895585978 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Chou frisé FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -6825,20 +6829,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 37.3791875173583, - "pef": 36.46550937097049 - }, - "name": "Cauliflower, winter, conventional, at farm gate {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 36.4655093709705, + "ecs": 37.3791875173583 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Chou frisé FR ou UE ou Hors UE Bio", "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", "impacts": { "acd": 0, "cch": 0, @@ -6859,20 +6863,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 38.00111644532399, - "pef": 45.64929474214633 - }, - "name": "Cauliflower, winter, organic, at farm gate {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 45.64929474214634, + "ecs": 38.00111644532398 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Citrouille FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -6893,20 +6897,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 24.9970743867062, - "pef": 25.20298552489338 - }, - "name": "Zucchini, conventional, national average, at farm gate {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 25.202985524893382, + "ecs": 24.997074386706196 + } }, { - "categories": ["ingredient"], - "comment": "MOROCCO", - "displayName": "Clémentine Hors UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -6927,20 +6931,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 489.70573375225365, - "pef": 89.30645718963102 - }, - "name": "Clementine, export quality, Souss, at orchard {MA} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 89.30645718963102, + "ecs": 489.7057337522536 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Endive FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -6961,20 +6965,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 26.789910014404725, - "pef": 26.024518039534165 - }, - "name": "Lettuce, conventional, national average, at farm gate {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 26.02451803953416, + "ecs": 26.78991001440472 + } }, { - "categories": ["ingredient"], - "comment": "Production Volume Amount: 23622365184", - "displayName": "Endive UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -6995,20 +6999,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 24.50587629640328, - "pef": 20.339888618375653 - }, - "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": "kilogram" + "pef": 20.339888618375657, + "ecs": 24.50587629640328 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Raisin de cuve FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -7029,20 +7033,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 40.236846179316856, - "pef": 39.922827407839684 - }, - "name": "Grape, full production (phase), integrated, variety mix, Languedoc-Roussillon, at vineyard {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 39.92282740783969, + "ecs": 40.23684617931685 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Mâche FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -7063,20 +7067,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 26.789910014404725, - "pef": 26.024518039534165 - }, - "name": "Lettuce, conventional, national average, at farm gate {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 26.02451803953416, + "ecs": 26.78991001440472 + } }, { - "categories": ["ingredient"], - "comment": "Production Volume Amount: 23622365184", - "displayName": "Mâche UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -7097,20 +7101,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 24.50587629640328, - "pef": 20.339888618375653 - }, - "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": "kilogram" + "pef": 20.339888618375657, + "ecs": 24.50587629640328 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Maïs doux FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -7131,20 +7135,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 130.2933172738426, - "pef": 66.48721182769629 - }, - "name": "Maize grain, conventional, 28% moisture, national average, animal feed, at farm gate {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 66.4872118276963, + "ecs": 130.2933172738426 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Maïs doux FR ou UE ou Hors UE Bio", "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", "impacts": { "acd": 0, "cch": 0, @@ -7165,20 +7169,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "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": "kilogram" + "pef": 59.958897338643055, + "ecs": 43.427431523367616 + } }, { - "categories": ["ingredient"], - "comment": "Economic allocation based on Whitman et al. 2011, assuming 15% stover removed from the field and 65 $/t stover", - "displayName": "Maïs doux Hors UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -7199,20 +7203,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 406.0786977264272, - "pef": 158.8797808084243 - }, - "name": "Maize grain, non-irrigated, at farm {BR} - Adapted from WFLDB U", - "source": "Agribalyse 3.1.1", - "system_description": "", - "unit": "kilogram" + "pef": 158.87978080842427, + "ecs": 406.0786977264271 + } }, { - "categories": ["ingredient"], - "comment": "Yield from Ingwersen 2012.", - "displayName": "Ananas Hors UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -7233,20 +7237,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 172.72958625243965, - "pef": 88.17693372059504 - }, - "name": "Pineapple, at farm {CR} - Adapted from WFLDB U", - "source": "Agribalyse 3.1.1", - "system_description": "", - "unit": "kilogram" + "pef": 88.17693372059504, + "ecs": 172.7295862524396 + } }, { - "categories": ["ingredient"], - "comment": "Production Volume Amount: 4", - "displayName": "Fève UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -7267,20 +7271,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 73.8062393083272, - "pef": 71.85195836687183 - }, - "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": "kilogram" + "pef": 71.85195836687184, + "ecs": 73.8062393083272 + } }, { - "categories": ["ingredient"], - "comment": "Production Volume Amount: 4", - "displayName": "Fève FR Conv.", "id": "broad-beans-fr", + "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", + "system_description": "Ecoinvent v3 - Copied from Ecoinvent", + "categories": ["ingredient"], + "comment": "Production Volume Amount: 4", + "source": "Agribalyse 3.1.1", "impacts": { "acd": 0, "cch": 0, @@ -7301,20 +7305,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 73.8062393083272, - "pef": 71.85195836687183 - }, - "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": "kilogram" + "pef": 71.85195836687184, + "ecs": 73.8062393083272 + } }, { - "categories": ["ingredient"], - "comment": "Production Volume Amount: 18088361984", - "displayName": "Blette UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -7335,20 +7339,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "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": "kilogram" + "pef": 16.060802619719126, + "ecs": 45.63017702251564 + } }, { - "categories": ["ingredient"], - "comment": "Production Volume Amount: 18088361984", - "displayName": "Blette FR Conv.", "id": "swiss-chard-fr", + "name": "Spinach {GLO}| production | Cut-off, U - Adapted from Ecoinvent U", + "displayName": "Blette FR Conv.", + "unit": "kilogram", "identifier": "AGRIBALU000000003114717", + "system_description": "Ecoinvent v3 - Copied from Ecoinvent", + "categories": ["ingredient"], + "comment": "Production Volume Amount: 18088361984", + "source": "Agribalyse 3.1.1", "impacts": { "acd": 0, "cch": 0, @@ -7369,20 +7373,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "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": "kilogram" + "pef": 16.060802619719126, + "ecs": 45.63017702251564 + } }, { - "categories": ["ingredient"], - "comment": "Production Volume Amount: 4", - "displayName": "Haricot flageolet UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -7403,20 +7407,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 73.8062393083272, - "pef": 71.85195836687183 - }, - "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": "kilogram" + "pef": 71.85195836687184, + "ecs": 73.8062393083272 + } }, { - "categories": ["ingredient"], - "comment": "Production Volume Amount: 4", - "displayName": "Haricot flageolet FR Conv.", "id": "flageolet-bean-fr", + "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", + "system_description": "Ecoinvent v3 - Copied from Ecoinvent", + "categories": ["ingredient"], + "comment": "Production Volume Amount: 4", + "source": "Agribalyse 3.1.1", "impacts": { "acd": 0, "cch": 0, @@ -7437,20 +7441,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 73.8062393083272, - "pef": 71.85195836687183 - }, - "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": "kilogram" + "pef": 71.85195836687184, + "ecs": 73.8062393083272 + } }, { - "categories": ["ingredient"], - "comment": "Production Volume Amount: 8769999872", - "displayName": "Riz basmati Hors UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -7471,20 +7475,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 1456.9254009392578, - "pef": 1549.3741063525922 - }, - "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": "kilogram" + "pef": 1549.3741063525924, + "ecs": 1456.9254009392575 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Blé tendre FR ou UE ou Hors UE Bio", "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", "impacts": { "acd": 0, "cch": 0, @@ -7505,20 +7509,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 56.86371542054134, - "pef": 75.11819304767269 - }, - "name": "Wheat, organic, national average, at farm gate/FR U constructed by Ecobalyse", - "source": "Ecobalyse", - "system_description": "Ecobalyse", - "unit": "kilogram" + "pef": 75.11819304767268, + "ecs": 56.86371542054135 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Blé tendre FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -7539,20 +7543,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "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": "kilogram" + "pef": 65.23190875590463, + "ecs": 87.40067510475018 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Blé tendre Hors UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -7573,20 +7577,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 87.59422022223636, - "pef": 91.40931803041477 - }, - "name": "Wheat grain, at farm {GLO} - Adapted from WFLDB U", - "source": "Agribalyse 3.1.1", - "system_description": "", - "unit": "kilogram" + "pef": 91.40931803041477, + "ecs": 87.59422022223636 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Blé dur FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -7607,20 +7611,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 91.449516476335, - "pef": 91.13193677617065 - }, - "name": "Durum wheat grain, conventional, national average, at farm gate {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 91.13193677617065, + "ecs": 91.44951647633499 + } }, { - "categories": ["ingredient"], - "comment": "Economic allocation for wheat based on FEFAC (2015)", - "displayName": "Blé dur UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -7641,20 +7645,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 120.40966248702925, - "pef": 129.43233413217854 - }, - "name": "Durum wheat grain, at farm {GR} - Adapted from WFLDB U", - "source": "Agribalyse 3.1.1", - "system_description": "", - "unit": "kilogram" + "pef": 129.43233413217857, + "ecs": 120.40966248702924 + } }, { - "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.", - "displayName": "Blé dur Hors UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -7675,20 +7679,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 127.79130744252004, - "pef": 132.01581571235295 - }, - "name": "Durum wheat grain, at farm {AU} - Adapted from WFLDB U", - "source": "Agribalyse 3.1.1", - "system_description": "", - "unit": "kilogram" + "pef": 132.01581571235292, + "ecs": 127.79130744252005 + } }, { - "categories": ["ingredient"], - "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "displayName": "Pomme FR ou UE ou Hors UE Bio", "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", "impacts": { "acd": 0, "cch": 0, @@ -7709,20 +7713,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 39.27697557786902, - "pef": 32.64459013777798 - }, - "name": "Table apple, consumption mix, organic 2023 {FR} U", - "source": "Ginko", - "system_description": "", - "unit": "kilogram" + "pef": 32.64459013777798, + "ecs": 39.276975577869024 + } }, { - "categories": ["ingredient"], - "comment": "FRANCE", - "displayName": "Pomme FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -7743,20 +7747,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 40.73726906886751, - "pef": 18.19554642311913 - }, - "name": "Apple, conventional, national average, at orchard {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 18.195546423119126, + "ecs": 40.737269068867505 + } }, { - "categories": ["ingredient"], - "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "displayName": "Pomme de terre de table FR ou UE ou Hors UE Bio", "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", "impacts": { "acd": 0, "cch": 0, @@ -7777,20 +7781,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "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": "kilogram" + "pef": 22.531275238729474, + "ecs": 19.400834757951447 + } }, { - "categories": ["ingredient"], - "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "displayName": "Pomme de terre industrie FR ou UE ou Hors UE Bio", "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", "impacts": { "acd": 0, "cch": 0, @@ -7811,20 +7815,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 19.974420175456235, - "pef": 23.187571945329438 - }, - "name": "Ware potato, organic 2023, for industrial use, at farm gate {FR} U", - "source": "Ginko", - "system_description": "", - "unit": "kilogram" + "pef": 23.187571945329438, + "ecs": 19.974420175456235 + } }, { - "categories": ["ingredient"], - "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "displayName": "Kiwi FR ou UE ou Hors UE Bio", "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", "impacts": { "acd": 0, "cch": 0, @@ -7845,20 +7849,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 77.61064729781062, - "pef": 95.20576599892593 - }, - "name": "Kiwi, consumption mix, organic 2023 {FR} U", - "source": "Ginko", - "system_description": "", - "unit": "kilogram" + "pef": 95.20576599892593, + "ecs": 77.61064729781063 + } }, { - "categories": ["ingredient"], - "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "displayName": "Chou rouge FR ou UE ou Hors UE Bio", "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", + "system_description": "", + "categories": ["ingredient"], + "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", + "source": "Ginko", "impacts": { "acd": 0, "cch": 0, @@ -7879,20 +7883,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 39.18411423246975, - "pef": 47.19999714789498 - }, - "name": "Red Cabbage, consumption mix, organic 2023 {FR} U", - "source": "Ginko", - "system_description": "", - "unit": "kilogram" + "pef": 47.19999714789499, + "ecs": 39.18411423246976 + } }, { - "categories": ["ingredient"], - "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "displayName": "Betterave sucrière FR ou UE ou Hors UE Bio", "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", "impacts": { "acd": 0, "cch": 0, @@ -7913,20 +7917,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 5.052019800220155, - "pef": 6.68825998360644 - }, - "name": "Sugar beet, organic 2023 {FR}| sugar beet production | Cut-off, U", - "source": "Ginko", - "system_description": "", - "unit": "kilogram" + "pef": 6.688259983606439, + "ecs": 5.052019800220155 + } }, { - "categories": ["ingredient"], - "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "displayName": "Papaye FR ou UE ou Hors UE Bio", "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", "impacts": { "acd": 0, "cch": 0, @@ -7947,20 +7951,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 56.164260929150835, - "pef": 67.61263707040484 - }, - "name": "Papaya, consumption mix, organic 2023 {FR} U", - "source": "Ginko", - "system_description": "", - "unit": "kilogram" + "pef": 67.61263707040482, + "ecs": 56.164260929150835 + } }, { - "categories": ["ingredient"], - "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "displayName": "Tomate FR ou UE ou Hors UE Bio", "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", "impacts": { "acd": 0, "cch": 0, @@ -7981,20 +7985,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 37.74306720879688, - "pef": 43.65892588599403 - }, - "name": "Fresh tomato, consumption mix, organic 2023 {FR} U", - "source": "Ginko", - "system_description": "", - "unit": "kilogram" + "pef": 43.65892588599402, + "ecs": 37.74306720879688 + } }, { - "categories": ["ingredient"], - "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "displayName": "Ananas FR ou UE ou Hors UE Bio", "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", "impacts": { "acd": 0, "cch": 0, @@ -8015,20 +8019,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 14.745408880330562, - "pef": 19.158317815189964 - }, - "name": "Pineapple, organic 2023 {GLO}| production | Cut-off, U", - "source": "Ginko", - "system_description": "", - "unit": "kilogram" + "pef": 19.158317815189967, + "ecs": 14.745408880330562 + } }, { - "categories": ["ingredient"], - "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "displayName": "Petit pois FR ou UE ou Hors UE Bio", "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", "impacts": { "acd": 0, "cch": 0, @@ -8049,20 +8053,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 63.890379018589854, - "pef": 72.01087473124622 - }, - "name": "Garden peas, consumption mix, organic 2023 {FR} U", - "source": "Ginko", - "system_description": "", - "unit": "kilogram" + "pef": 72.0108747312462, + "ecs": 63.89037901858987 + } }, { - "categories": ["ingredient"], - "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "displayName": "Amandes en coque FR ou UE ou Hors UE Bio ", "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", "impacts": { "acd": 0, "cch": 0, @@ -8083,20 +8087,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 343.8709702802648, - "pef": 455.6802457858006 - }, - "name": "Almonds, in shell, at farm, organic 2023 {CN}", - "source": "Ginko", - "system_description": "", - "unit": "kilogram" + "pef": 455.6802457858006, + "ecs": 343.8709702802648 + } }, { - "categories": ["ingredient"], - "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "displayName": "Laitue FR ou UE ou Hors UE Bio", "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", "impacts": { "acd": 0, "cch": 0, @@ -8117,20 +8121,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 16.984993649256353, - "pef": 19.29487034583362 - }, - "name": "Lettuce, organic 2023, national average, at farm gate {FR} U", - "source": "Ginko", - "system_description": "", - "unit": "kilogram" + "pef": 19.29487034583362, + "ecs": 16.984993649256353 + } }, { - "categories": ["ingredient"], - "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "displayName": "Mangue FR ou UE ou Hors UE Bio", "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", "impacts": { "acd": 0, "cch": 0, @@ -8151,20 +8155,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 46.37216992167492, - "pef": 57.48153954875802 - }, - "name": "Mango, organic 2023, Val de San Francisco, at orchard {BR} U", - "source": "Ginko", - "system_description": "", - "unit": "kilogram" + "pef": 57.481539548758015, + "ecs": 46.37216992167492 + } }, { - "categories": ["ingredient"], - "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "displayName": "Litchi Hors FR ou UE ou Hors UE Bio", "id": "lychee-organic", + "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", + "system_description": "", + "categories": ["ingredient"], + "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", + "source": "Ginko", "impacts": { "acd": 0, "cch": 0, @@ -8185,20 +8189,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 46.37216992167492, - "pef": 57.48153954875802 - }, - "name": "Mango, organic 2023, Val de San Francisco, at orchard {BR} U", - "source": "Ginko", - "system_description": "", - "unit": "kilogram" + "pef": 57.481539548758015, + "ecs": 46.37216992167492 + } }, { - "categories": ["ingredient"], - "comment": "BRAZIL", - "displayName": "Litchi Hors UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -8219,20 +8223,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 57.283597104847225, - "pef": 37.79527562631753 - }, - "name": "Mango, conventional, Val de San Francisco, at orchard {BR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 37.79527562631753, + "ecs": 57.28359710484723 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Avoine Hors UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -8253,20 +8257,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 121.11558400083139, - "pef": 142.70724663411804 - }, - "name": "Oats, at farm {GLO} - Adapted from WFLDB U", - "source": "Agribalyse 3.1.1", - "system_description": "", - "unit": "kilogram" + "pef": 142.70724663411804, + "ecs": 121.11558400083138 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Avoine FR ou UE ou Hors UE bio", "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", "impacts": { "acd": 0, "cch": 0, @@ -8287,20 +8291,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "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": "kilogram" + "pef": 89.90593002721727, + "ecs": 56.46146050018076 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Orge FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -8321,20 +8325,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "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": "kilogram" + "pef": 61.773785787458245, + "ecs": 73.11368795280814 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Orge FR ou UE ou Hors UE Bio", "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", "impacts": { "acd": 0, "cch": 0, @@ -8355,20 +8359,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 52.52421292815667, - "pef": 66.99790808688762 - }, - "name": "Barley, organic, animal feed, at farm gate {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "", - "unit": "kilogram" + "pef": 66.9979080868876, + "ecs": 52.524212928156665 + } }, { - "categories": ["ingredient"], - "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "displayName": "Banane FR ou UE ou Hors UE Bio", "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", "impacts": { "acd": 0, "cch": 0, @@ -8389,20 +8393,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 44.568261546546765, - "pef": 54.22578689055046 - }, - "name": "Banana, consumption mix, organic 2023 {FR} U", - "source": "Ginko", - "system_description": "", - "unit": "kilogram" + "pef": 54.22578689055047, + "ecs": 44.56826154654676 + } }, { - "categories": ["ingredient"], - "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "displayName": "Orange FR ou UE ou Hors UE Bio", "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", "impacts": { "acd": 0, "cch": 0, @@ -8423,20 +8427,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 81.39278004014616, - "pef": 104.75378389302493 - }, - "name": "Orange, fresh grade, at farm, organic 2023 {ES}", - "source": "Ginko", - "system_description": "", - "unit": "kilogram" + "pef": 104.75378389302492, + "ecs": 81.39278004014615 + } }, { - "categories": ["ingredient"], - "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "displayName": "Citron FR ou UE ou Hors UE Bio", "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", "impacts": { "acd": 0, "cch": 0, @@ -8457,20 +8461,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 69.52898023898268, - "pef": 89.8839988071446 - }, - "name": "Lemon, organic 2023 {ES}| lemon production | Cut-off, U", - "source": "Ginko", - "system_description": "", - "unit": "kilogram" + "pef": 89.88399880714461, + "ecs": 69.52898023898267 + } }, { - "categories": ["ingredient"], - "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "displayName": "Céleri branche FR ou UE ou Hors UE Bio", "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", "impacts": { "acd": 0, "cch": 0, @@ -8491,20 +8495,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 47.958000270347725, - "pef": 58.49349299004285 - }, - "name": "Celery, organic 2023 {GLO}| 675 production | Cut-off, U", - "source": "Ginko", - "system_description": "", - "unit": "kilogram" + "pef": 58.49349299004286, + "ecs": 47.958000270347725 + } }, { - "categories": ["ingredient"], - "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "displayName": "Olive FR ou UE ou Hors UE Bio", "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", "impacts": { "acd": 0, "cch": 0, @@ -8525,20 +8529,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 107.32813005134935, - "pef": 144.7268925249307 - }, - "name": "Olive, organic 2023 {ES}| olive production | Cut-off, U", - "source": "Ginko", - "system_description": "", - "unit": "kilogram" + "pef": 144.72689252493072, + "ecs": 107.32813005134938 + } }, { - "categories": ["ingredient"], - "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "displayName": "Arachide avec coque FR ou UE ou Hors UE Bio", "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", "impacts": { "acd": 0, "cch": 0, @@ -8559,20 +8563,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 175.10870728815954, - "pef": 231.19184556360216 - }, - "name": "Peanut, organic 2023 {RoW}| peanut production | Cut-off, U", - "source": "Ginko", - "system_description": "", - "unit": "kilogram" + "pef": 231.19184556360213, + "ecs": 175.10870728815954 + } }, { - "categories": ["ingredient"], - "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", + "id": "raspberry-organic", + "name": "Raspberry, at farm, organic 2023 {RS}", "displayName": "Framboise FR ou UE ou Hors UE Bio", - "id": "raspberry-organic", + "unit": "kilogram", "identifier": "raspberry-organic", + "system_description": "", + "categories": ["ingredient"], + "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", + "source": "Ginko", "impacts": { "acd": 0, "cch": 0, @@ -8593,20 +8597,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 213.91073679328815, - "pef": 275.535286380428 - }, - "name": "Raspberry, at farm, organic 2023 {RS}", - "source": "Ginko", - "system_description": "", - "unit": "kilogram" + "pef": 275.535286380428, + "ecs": 213.91073679328812 + } }, { - "categories": ["ingredient"], - "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "displayName": "Mâche FR ou UE ou Hors UE Bio", "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", "impacts": { "acd": 0, "cch": 0, @@ -8627,20 +8631,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 16.984993649256353, - "pef": 19.29487034583362 - }, - "name": "Lettuce, organic 2023, national average, at farm gate {FR} U", - "source": "Ginko", - "system_description": "", - "unit": "kilogram" + "pef": 19.29487034583362, + "ecs": 16.984993649256353 + } }, { - "categories": ["ingredient"], - "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "displayName": "Endive FR ou UE ou Hors UE Bio", "id": "endive-organic", + "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", + "system_description": "", + "categories": ["ingredient"], + "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", + "source": "Ginko", "impacts": { "acd": 0, "cch": 0, @@ -8661,20 +8665,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 16.984993649256353, - "pef": 19.29487034583362 - }, - "name": "Lettuce, organic 2023, national average, at farm gate {FR} U", - "source": "Ginko", - "system_description": "", - "unit": "kilogram" + "pef": 19.29487034583362, + "ecs": 16.984993649256353 + } }, { - "categories": ["ingredient"], - "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "displayName": "Blé dur FR ou UE ou Hors UE Bio", "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", "impacts": { "acd": 0, "cch": 0, @@ -8695,20 +8699,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 114.50144970254986, - "pef": 152.68235309327792 - }, - "name": "Durum wheat grain, organic 2023, national average, at farm gate {FR} U", - "source": "Ginko", - "system_description": "", - "unit": "kilogram" + "pef": 152.68235309327795, + "ecs": 114.50144970254988 + } }, { - "categories": ["ingredient"], - "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "displayName": "Oignon FR ou UE ou Hors UE Bio", "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", "impacts": { "acd": 0, "cch": 0, @@ -8729,20 +8733,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 14.40237685199719, - "pef": 17.453758088833403 - }, - "name": "Onion, national average, at farm, organic 2023 {FR} U", - "source": "Ginko", - "system_description": "", - "unit": "kilogram" + "pef": 17.453758088833403, + "ecs": 14.40237685199719 + } }, { - "categories": ["ingredient"], - "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "displayName": "Riz basmati FR ou UE ou Hors UE Bio", "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", "impacts": { "acd": 0, "cch": 0, @@ -8763,20 +8767,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 330.0516233983951, - "pef": 409.78819634071806 - }, - "name": "Rice, non-basmati, organic 2023 {GLO}| market for rice, non-basmati | Cut-off, U", - "source": "Ginko", - "system_description": "", - "unit": "kilogram" + "pef": 409.7881963407181, + "ecs": 330.0516233983951 + } }, { - "categories": ["ingredient"], - "comment": "Economic allocation based on FEFAC (2015)", - "displayName": "Orge UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -8797,20 +8801,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 81.68050714392672, - "pef": 80.16881048512721 - }, - "name": "Barley grain, non-irrigated, at farm {DE} - Adapted from WFLDB U", - "source": "Agribalyse 3.1.1", - "system_description": "", - "unit": "kilogram" + "pef": 80.16881048512722, + "ecs": 81.68050714392669 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Triricale FR ou UE ou Hors UE Bio", "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", "impacts": { "acd": 0, "cch": 0, @@ -8831,20 +8835,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 51.510203409634705, - "pef": 62.888124265805295 - }, - "name": "Triticale, organic, animal feed, at farm gate {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "", - "unit": "kilogram" + "pef": 62.888124265805295, + "ecs": 51.510203409634705 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Pois Hors UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -8865,20 +8869,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 110.68864373316993, - "pef": 49.04549734707372 - }, - "name": "Faba bean, grain stored and transported, processing {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 49.04549734707373, + "ecs": 110.68864373316993 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Pois FR ou UE ou Hors UE Bio", "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", "impacts": { "acd": 0, "cch": 0, @@ -8899,20 +8903,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 43.68627073021544, - "pef": 52.415160274461705 - }, - "name": "Pea, organic, animal feed, at farm gate {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "", - "unit": "kilogram" + "pef": 52.415160274461705, + "ecs": 43.68627073021545 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Luzerne FR ou UE ou Hors UE Bio", "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", "impacts": { "acd": 0, "cch": 0, @@ -8933,20 +8937,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 24.417559334860933, - "pef": 28.197592330969627 - }, - "name": "Alfalfa, hay, organic, animal feed, at farm gate {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "", - "unit": "kilogram" + "pef": 28.19759233096963, + "ecs": 24.41755933486093 + } }, { - "categories": ["ingredient"], - "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "displayName": "Radis FR ou UE ou Hors UE Bio", "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", "impacts": { "acd": 0, "cch": 0, @@ -8967,20 +8971,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 33.372801820326224, - "pef": 37.51231372346278 - }, - "name": "Radish, organic 2023 {GLO}| radish production, in unheated greenhouse | Cut-off, U", - "source": "Ginko", - "system_description": "", - "unit": "kilogram" + "pef": 37.512313723462796, + "ecs": 33.37280182032623 + } }, { - "categories": ["ingredient"], - "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "displayName": "Lentilles Hors FR ou UE ou Hors UE Bio", "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", "impacts": { "acd": 0, "cch": 0, @@ -9001,20 +9005,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": -1435.4562253279007, - "pef": -1814.7275162890037 - }, - "name": "Lentil, organic 2023 {RoW}| lentil production | Cut-off, U", - "source": "Ginko", - "system_description": "", - "unit": "kilogram" + "pef": -1814.7275162890037, + "ecs": -1435.4562253279007 + } }, { - "categories": ["ingredient"], - "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "displayName": "Abricot FR ou UE ou Hors UE Bio", "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", "impacts": { "acd": 0, "cch": 0, @@ -9035,20 +9039,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 106.62716637209665, - "pef": 47.91630650737909 - }, - "name": "Apricot, organic 2023 {FR}| apricot production | Cut-off, U", - "source": "Ginko", - "system_description": "", - "unit": "kilogram" + "pef": 47.9163065073791, + "ecs": 106.62716637209662 + } }, { - "categories": ["ingredient"], - "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "displayName": "Poireau FR ou UE ou Hors UE Bio", "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", "impacts": { "acd": 0, "cch": 0, @@ -9069,20 +9073,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 22.96220337431388, - "pef": 27.360582218368563 - }, - "name": "Leek, national average, at plant, organic 2023 {FR} U", - "source": "Ginko", - "system_description": "", - "unit": "kilogram" + "pef": 27.360582218368567, + "ecs": 22.96220337431388 + } }, { - "categories": ["ingredient"], - "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "displayName": "Cerise FR ou UE ou Hors UE Bio", "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", "impacts": { "acd": 0, "cch": 0, @@ -9103,20 +9107,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 327.9277307806046, - "pef": 490.3317516066382 - }, - "name": "Cherry, organic 2023, national average, at orchard {FR} U", - "source": "Ginko", - "system_description": "", - "unit": "kilogram" + "pef": 490.33175160663825, + "ecs": 327.92773078060463 + } }, { - "categories": ["ingredient"], - "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "displayName": "Prune FR ou UE ou Hors UE Bio", "id": "plum-organic", + "name": "Cherry, organic 2023, national average, at orchard {FR} U", + "displayName": "Prune FR ou UE ou Hors UE Bio", + "unit": "kilogram", "identifier": "plum-organic", + "system_description": "", + "categories": ["ingredient"], + "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", + "source": "Ginko", "impacts": { "acd": 0, "cch": 0, @@ -9137,20 +9141,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 327.9277307806046, - "pef": 490.3317516066382 - }, - "name": "Cherry, organic 2023, national average, at orchard {FR} U", - "source": "Ginko", - "system_description": "", - "unit": "kilogram" + "pef": 490.33175160663825, + "ecs": 327.92773078060463 + } }, { - "categories": ["ingredient"], - "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "displayName": "Echalote FR ou UE ou Hors UE Bio", "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", "impacts": { "acd": 0, "cch": 0, @@ -9171,20 +9175,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 14.40237685199719, - "pef": 17.453758088833403 - }, - "name": "Onion, national average, at farm, organic 2023 {FR} U", - "source": "Ginko", - "system_description": "", - "unit": "kilogram" + "pef": 17.453758088833403, + "ecs": 14.40237685199719 + } }, { - "categories": ["ingredient"], - "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "displayName": "Myrtille FR ou UE ou Hors UE Bio", "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", "impacts": { "acd": 0, "cch": 0, @@ -9205,20 +9209,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 117.85366734873357, - "pef": 135.38306372394482 - }, - "name": "Blueberry, at farm, organic 2023 {CA}", - "source": "Ginko", - "system_description": "", - "unit": "kilogram" + "pef": 135.38306372394482, + "ecs": 117.8536673487336 + } }, { - "categories": ["ingredient"], - "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "displayName": "Epinard FR ou UE ou Hors UE Bio", "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", "impacts": { "acd": 0, "cch": 0, @@ -9239,20 +9243,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 15.009343591936, - "pef": 20.73494695373161 - }, - "name": "Spinach, organic 2023 {GLO}| production | Cut-off, U", - "source": "Ginko", - "system_description": "", - "unit": "kilogram" + "pef": 20.734946953731605, + "ecs": 15.009343591936002 + } }, { - "categories": ["ingredient"], - "comment": "This input has been extrapolated from conventional LCI. Please refer to the methodological report.", - "displayName": "Pastèque FR ou UE ou Hors UE Bio", "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", "impacts": { "acd": 0, "cch": 0, @@ -9273,20 +9277,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 33.53971191893091, - "pef": 39.554873115525766 - }, - "name": "Melon, organic 2023, national average, at farm gate {FR} U", - "source": "Ginko", - "system_description": "", - "unit": "kilogram" + "pef": 39.55487311552576, + "ecs": 33.539711918930905 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Ensilage maïs FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -9307,20 +9311,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 102.11527714745658, - "pef": 55.384936843270154 - }, - "name": "Silage maize, conventional, national average, animal feed, at farm gate, production {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 55.38493684327017, + "ecs": 102.11527714745658 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Ensilage maïs FR ou UE ou Hors UE Bio", "id": "silage-maize-organic", + "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", + "system_description": "AGRIBALYSE", + "categories": ["ingredient"], + "comment": "", + "source": "Agribalyse 3.1.1", "impacts": { "acd": 0, "cch": 0, @@ -9341,20 +9345,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 102.11527714745658, - "pef": 55.384936843270154 - }, - "name": "Silage maize, conventional, national average, animal feed, at farm gate, production {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 55.38493684327017, + "ecs": 102.11527714745658 + } }, { - "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", - "displayName": "Soja FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -9375,20 +9379,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 185.8826977526642, - "pef": 162.8931540357909 - }, - "name": "Oilseed meal mix, as feed, at regional warehouse, as DM {RER} - Adapted from WFLDB U", - "source": "Agribalyse 3.1.1", - "system_description": "", - "unit": "kilogram" + "pef": 162.89315403579087, + "ecs": 185.88269775266423 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Herbe de prairie temporaire FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -9409,20 +9413,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "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": "kilogram" + "pef": 41.438979513022424, + "ecs": 33.877602723275864 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Herbe de prairie permanente FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -9443,20 +9447,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "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": "kilogram" + "pef": 26.7219167940208, + "ecs": 19.685924789237824 + } }, { - "categories": ["ingredient"], - "comment": "Average yield for sweet and sour cherries according to faostat data from 2012 to 2016.", - "displayName": "Cerise Hors UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -9477,20 +9481,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 1055.1748133055262, - "pef": 396.812784387594 - }, - "name": "Cherry, at farm (WFLDB)", - "source": "WFLDB", - "system_description": "", - "unit": "kilogram" + "pef": 396.812784387594, + "ecs": 1055.1748133055262 + } }, { - "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", - "displayName": "Huile de palme (raffinée) UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -9511,20 +9515,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 407.5721772670124, - "pef": 383.3875068031456 - }, - "name": "Palm oil, refined, processed in EU, at plant {RER} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 383.38750680314564, + "ecs": 407.5721772670125 + } }, { - "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.", - "displayName": "Huile de lin (raffinée) FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -9545,20 +9549,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 548.2282130945532, - "pef": 551.880203118828 - }, - "name": "Linseed oil, refined, at oil mill { FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "", - "unit": "kilogram" + "pef": 551.8802031188281, + "ecs": 548.2282130945533 + } }, { - "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", - "displayName": "Huile de pépin de raisin (raffinée) FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -9579,20 +9583,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 113.41314745319481, - "pef": 127.20421480060831 - }, - "name": "Grapeseed oil, refined at plant {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "", - "unit": "kilogram" + "pef": 127.20421480060834, + "ecs": 113.4131474531948 + } }, { - "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", - "displayName": "Huile de soja (raffinée) FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -9613,20 +9617,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 726.1918471255068, - "pef": 314.10370154397583 - }, - "name": "Soybean oil, refined, at plant {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "", - "unit": "kilogram" + "pef": 314.10370154397594, + "ecs": 726.1918471255067 + } }, { - "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", - "displayName": "Huile de noisette (vierge) FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -9647,20 +9651,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 1934.5404492223076, - "pef": 1505.4431245216037 - }, - "name": "Hazelnut oil, crude, at plant {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 1505.443124521604, + "ecs": 1934.5404492223074 + } }, { - "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.", - "displayName": "Huile d'arachide (raffinée) Hors UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -9681,20 +9685,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 1062.23288426755, - "pef": 921.4117461887155 - }, - "name": "Peanut oil, at oil mill {SN} U", - "source": "Agribalyse 3.1.1", - "system_description": "", - "unit": "kilogram" + "pef": 921.4117461887155, + "ecs": 1062.23288426755 + } }, { - "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", - "displayName": "Huile de tournesol (raffinée) FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -9715,20 +9719,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 475.26606721012996, - "pef": 318.71916478927307 - }, - "name": "Sunflower oil, refined, low dehulling at plant {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "", - "unit": "kilogram" + "pef": 318.719164789273, + "ecs": 475.2660672101299 + } }, { - "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", - "displayName": "Huile de colza (raffinée) FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -9749,20 +9753,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 380.3900012747494, - "pef": 276.4928867752055 - }, - "name": "Rapeseed oil, refined, at oil mill {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "", - "unit": "kilogram" + "pef": 276.4928867752055, + "ecs": 380.39000127474935 + } }, { - "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,", - "displayName": "Huile d'olive (extra vierge) UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -9783,20 +9787,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 503.14942261453183, - "pef": 487.1034904691177 - }, - "name": "Extra Virgin Olive Oil, at plant {ES} U", - "source": "Agribalyse 3.1.1", - "system_description": "", - "unit": "kilogram" + "pef": 487.1034904691177, + "ecs": 503.1494226145319 + } }, { - "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", - "displayName": "Crème fraiche FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -9817,20 +9821,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 216.74496581528857, - "pef": 178.17749595620128 - }, - "name": "Fresh cream cheese, plain, creamy, around 8% fat, at plant {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 178.17749595620123, + "ecs": 216.7449658152886 + } }, { - "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", - "displayName": "Oignons déshydratés Hors UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -9851,20 +9855,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 631.3772011936228, - "pef": 686.1046949964716 - }, - "name": "Onions, dried, consumption mix {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 686.1046949964714, + "ecs": 631.3772011936228 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Oeuf cru décoquillé FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -9885,20 +9889,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "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": "kilogram" + "pef": 429.48383867791114, + "ecs": 593.6027482016807 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "poudre de jaune d'oeuf FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -9919,20 +9923,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 672.2074141794261, - "pef": 503.3278638031698 - }, - "name": "Egg yolk, powder, at plant {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 503.32786380316986, + "ecs": 672.2074141794261 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "poudre de blanc d'oeuf FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -9953,20 +9957,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 672.2964545916599, - "pef": 503.3922863789764 - }, - "name": "Egg white, powder, at plant {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 503.39228637897634, + "ecs": 672.2964545916598 + } }, { - "categories": ["ingredient"], - "comment": "(3,3,2,1,2),", - "displayName": "Emmental rapé FR Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -9987,20 +9991,20 @@ "swe": 0, "tre": 0, "wtu": 0, - "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": "kilogram" + "pef": 523.8711839742018, + "ecs": 654.3724238653224 + } }, { - "categories": ["ingredient"], - "comment": "", - "displayName": "Poudre de cacao Hors UE Conv.", "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", "impacts": { "acd": 0, "cch": 0, @@ -10021,12 +10025,8 @@ "swe": 0, "tre": 0, "wtu": 0, - "ecs": 1235.6680735506416, - "pef": 1228.2995950409074 - }, - "name": "Cocoa powder, at plant {FR} U", - "source": "Agribalyse 3.1.1", - "system_description": "AGRIBALYSE", - "unit": "kilogram" + "pef": 1228.2995950409074, + "ecs": 1235.6680735506416 + } } ]