Skip to main content

Utility library to read and parse SimaPro CSV LCI and LCIA files

Project description

bw_simapro_csv

PyPI Status Python Version License

Read the documentation at https://bw_simapro_csv.readthedocs.io/ Tests Codecov

pre-commit Black

Installation

You can install bw_simapro_csv via from PyPI:

$ pip install bw_simapro_csv

Or using conda/mamba from the channel cmutel:

$ mamba install -c conda-forge -c cmutel bw_simapro_csv

To install with the compatible Brightway libraries via pip:

$ pip install "bw_simapro_csv[brightway]""

Or via conda/mamba:

$ mamba install -c conda-forge -c cmutel bw_simapro_csv brightway25

On MacOS with ARM chips, run instead:

$ mamba install -c conda-forge -c cmutel bw_simapro_csv brightway25_nosolver

See the Brightway docs for more on ARM CPUs and sparse solvers.

Usage

bw_simapro_csv extracts a single SimaPro separated value export file to a series of blocks. Files can be CSV, TSV, or some other separator. Basic usage:

from pathlib import Path
from bw_simapro_csv import SimaProCSV
sp = SimaProCSV(Path("my SimaPro file.csv"))

The file object must be an instance of pathlib.Path or io.StringIO. The SimaProCSV will do the following:

  • Determine the file type. There are three kinds of SimaPro export files: "processes", "methods", and "product stages". This library does not yet work with product stages.
  • Read the header, and build SimaProCSV.header. The header is a dictionary of metadata. We do our best to convert the values to their python equivalents, such as datetimes or booleans.
  • Using the metadata, read the rest of the file, and convert it into a series of blocks. Each block has its own data schema, though they are mostly similar.
  • While reading the file, some common data mistakes are cleaned up. For example, impossible uncertainty distributions are switch to UnkownUncertainty. We also do our best to create valid and reasonable unicode text.
  • Many numeric values can be defined by formulae. In order to parse these formulae in python, we need to substitute some operators for their python equivalents (e.g. ** instead of ^). As python is case-sensitive, we switch all variable names to upper case, and add the prefix SP_, so my_variable would become SP_MY_VARIABLE. We then evaluate all formulas (including for allocation), and store their numeric results in the amount field.

The end result is SimaProCSV.blocks, a list of SimaProCSVBlock instances with parsed and cleaned data.

Products versus processes

Despite the presence of a Products block in processes, SimaPro doesn't really differentiate between between the two. Therefore, all process datasets should be considered as ProcessWithReferenceProduct. Consider this quote from the tutorial:

Process name in SimaPro
Under the Documentation tab, you can enter the process name. Please note that this is only for
your own reference and this name is not used anywhere. Processes are identified by the name
defined under the Input/Output tab in the product section. Therefore, if you want to search for a
certain process, you should use the product name defined in the Input/Output as the keyword.

Waste modelling

The intersection of ecoinvent waste models (negative values means things labelled as inputs are outputs, and vice-versa) and SimaPro Waste treatment versus Waste to treatment make life interesting. The SimaPro model is:

  • Waste treatment are inputs, and indicate that the given process is a waste treatment process, i.e. it does not have a Products block, and has the category_type waste treatment.
  • Waste to treatment are outputs, and indicate that waste is being produced which needs to be treated. Negative amounts in Waste to treatment indicate that these wastes are inputs, and that this process is a waste treatment process.

We label edges in both Products and Waste treatment as functional when exporting to Brightway.

Logging

bw_simapro_csv uses the loguru library for controlling logs. By default, logs are printed to stderr, and two log files are created: warning.log for important errors or information messages, and debug.log, for a detailed log of operations and resolved data issues.

Log are created in a directory path drawn from the platformdirs library; you can copy them to a more convenient place with SimaProCSV.copy_log_dir(some_dir), where some_dir is a pathlib.Path directory instance.

Exporting to Brightway

Process datasets can be exported to a format usable by bw2io with SimaProCSV.to_brightway(). This returns a Python dictionary, but you can also write this data to a file on disk by passing a pathlib.Path instance, i.e.:

from pathlib import Path
from bw_simapro_csv import SimaProCSV
sp = SimaProCSV(Path("my SimaPro file.csv"))
sp.to_brightway(Path("my-export.json"))

Blocks

Contributing

Contributions are very welcome. To learn more, see the Contributor Guide.

License

Distributed under the terms of the MIT license, bw_simapro_csv is free and open source software.

Issues

If you encounter any problems, please file an issue along with a detailed description.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

bw_simapro_csv-0.4.3.tar.gz (38.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

bw_simapro_csv-0.4.3-py3-none-any.whl (40.9 kB view details)

Uploaded Python 3

File details

Details for the file bw_simapro_csv-0.4.3.tar.gz.

File metadata

  • Download URL: bw_simapro_csv-0.4.3.tar.gz
  • Upload date:
  • Size: 38.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.10.18

File hashes

Hashes for bw_simapro_csv-0.4.3.tar.gz
Algorithm Hash digest
SHA256 450a404b07876a8713cc9e84e01d0c9fdb8a817a9f2a9301cdccaaf7e74d61d4
MD5 08a149a922a0ddb54776f1adee527da4
BLAKE2b-256 69464bdd0df421005b1f31755f0235c409979944f2de816365d15bc3c8e16057

See more details on using hashes here.

File details

Details for the file bw_simapro_csv-0.4.3-py3-none-any.whl.

File metadata

  • Download URL: bw_simapro_csv-0.4.3-py3-none-any.whl
  • Upload date:
  • Size: 40.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.10.18

File hashes

Hashes for bw_simapro_csv-0.4.3-py3-none-any.whl
Algorithm Hash digest
SHA256 dcdbba79e3127df73ff10c63681b4531b7477aea788807a1e0d47e71b73fb69d
MD5 de05c81eaa31b63a4f649095fb164675
BLAKE2b-256 a76fdc75f2f064daa29017aef64cf7e8c168799a88ac6567fc3307627a319bfc

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page