Generate mappings between elementary flow lists
Project description
flowmapper
Flowmapper
This is a tool to automate matching elementary flow lists in life cycle assessment. It can map different lists against each other and generate usable transformation files for those mappings.
It works by starting with the assumption that there is a core underlying ontology for elementary
flows, regardless of the expression of that ontology in difference data formats. Here is the core
ontology that flowmapper
uses:
- name: str, the canonical name used to identify a substance, e.g. "1,4-Butanediol"
- identifier: str, or complex type with a string representation, the unique string used to identify the flow, unit, and context combination, e.g. "38a622c6-f086-4763-a952-7c6b3b1c42ba"
- context: tuple[str], a hierarchical organization into environmental compartments, e.g.
("air", "urban air close to ground")
- unit: str, or complex type with a string representation, e.g. "kg"
- sector-specific labels: str, or complex type with a string representation, a set of additional fields which can help identify or further specify a flow, e.g. CAS number 000110-63-4
- synonyms: list[str], a list of alternative unique names for a substance, e.g.
["Butylene glycol", "butane-1,4-diol"]
Flowmapper assumes that the source and target lists are given in this format; it comes with or plays well with conversion software for data formats like ecospold, FEDEFL, and SimaPro CSV.
Chemical formulas are not currently used - they can be expressed in too many different ways, and haven't proven useful for matching.
Matching across the two lists is defined by a set of strategy functions; matching can take some or all ontological elements into account. Due to the sometimes chaotic nature of the input data, matching usually needs to be customized for the specific source and target lists.
For example, a matching strategy could say that two flows are the same if their name and context are equal, or if their CAS number and context are equal. Units are rarely compared directly; instead, after a match is found we check that the units have the same dimension, and apply unit conversions using pint if necessary.
This library does not generate partial matches (i.e. "1,4-Butanediol" is always the same as "butane-1,4-diol", but the separate contexts would need to be matched afterwards). Partial matches could be used to reduce the size of the matching file, as one could store name matches in one partial match and context matches in another partial match, but we prefer the explicit enumeration of all matches of flows present in the source and target lists.
Matching is usually done by checking for equality. Instead of forcing conversion and then testing, flowmapper comes with custom classes for these ontological elements which allow for a flexible definition of equality, and the testing of logical relationships. For example, you can do this:
from flowmapper import CAS
first = CAS(" 007440-05-3")
second = CAS("7440-05-3")
first == second
>>> True
Installation
You can install flowmapper via [pip] from [PyPI]:
$ pip install flowmapper
Contributing
Contributions are very welcome. To learn more, see the Contributor Guide.
License
Distributed under the terms of the MIT license, flowmapper is free and open source software.
Issues
If you encounter any problems, please file an issue along with a detailed description.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file flowmapper-0.1.1.tar.gz
.
File metadata
- Download URL: flowmapper-0.1.1.tar.gz
- Upload date:
- Size: 34.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b17f7a9a97c775db47a38c14781410b8e5b988f27019d38b5395e6cc4ce575c2 |
|
MD5 | beb531106e0944ef829d2c34b3e379e2 |
|
BLAKE2b-256 | 415cc34448c7c3baf9a8ef6898c578d5d3d43b8d4a95a0857646eb42e2f70f60 |
File details
Details for the file flowmapper-0.1.1-py3-none-any.whl
.
File metadata
- Download URL: flowmapper-0.1.1-py3-none-any.whl
- Upload date:
- Size: 29.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f27af563082800740e664f58c152eba814048096460018742147c97bba14dcec |
|
MD5 | a2aa38da86301770cd82999b1887d81d |
|
BLAKE2b-256 | a3ef6574d9f267e66c54b9c03c34f3955fa9adbfd60a055b76ca036945f9b10d |