bw2io.importers.simapro_lcia_csv#
Classes#
Importer for SimaPro CSV LCIA data format. |
Module Contents#
- class bw2io.importers.simapro_lcia_csv.SimaProLCIACSVImporter(filepath, biosphere=None, delimiter=';', encoding='latin-1', normalize_biosphere=True)[source]#
Bases:
bw2io.importers.base_lcia.LCIAImporter
Importer for SimaPro CSV LCIA data format.
- Parameters:
filepath (str) β Path to the SimaPro CSV LCIA file.
biosphere (str, optional) β Name of the biosphere database to use. Default is None, which uses the current projectβs default biosphere.
delimiter (str, optional) β Delimiter used in the CSV file. Default is β;β.
encoding (str, optional) β Character encoding used in the CSV file. Default is βlatin-1β.
normalize_biosphere (bool, optional) β Whether to normalize biosphere flows using the included strategies. Default is True.
Notes
This importer extracts SimaPro CSV LCIA data.
If
normalize_biosphere=True
, the following strategies are applied:normalize_units
set_biosphere_type
normalize_simapro_biosphere_categories
normalize_simapro_biosphere_names
Initialize the ImportBase object.
- Parameters:
*args β Variable length argument list.
**kwargs β Arbitrary keyword arguments.
- Raises:
NotImplemented : β This class should be subclassed.