معرفی شرکت ها


bw-migrations-0.2


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Migration data and utilities for Brightway IO and LCA in general
ویژگی مقدار
سیستم عامل -
نام فایل bw-migrations-0.2
نام bw-migrations
نسخه کتابخانه 0.2
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Chris Mutel
ایمیل نویسنده cmutel@gmail.com
آدرس صفحه اصلی https://github.com/brightway-lca/bw_migrations
آدرس اینترنتی https://pypi.org/project/bw-migrations/
مجوز NewBSD 3-clause; LICENSE
# bw_migrations Migration data and utilities for Brightway IO and LCA in general [![Build Status](https://travis-ci.org/brightway-lca/bw_migrations.svg?branch=master)](https://travis-ci.org/brightway-lca/bw_migrations) [![Coverage Status](https://coveralls.io/repos/github/brightway-lca/bw_migrations/badge.svg?branch=master)](https://coveralls.io/github/brightway-lca/bw_migrations?branch=master) [![Build status](https://ci.appveyor.com/api/projects/status/lk0tbo21v2irm48x?svg=true)](https://ci.appveyor.com/project/cmutel/bw-migrations) Most databases use their own nomenclature for classification systems, units, etc. These systems need to be matched when linking from one database to another. Often, a simple mapping is suitable, and tools like [correspondentia](https://github.com/BONSAMURAIS/correspondentia) are a good fit. However, sometimes one needs more complexity, e.g. change field X to Y, but only if field A has value B. When ecoinvent released version 3, they changed their unit of mesaure for water from kilograms to cubic meters. ``bw_migrations`` provides tools for this more complicated transformations, and is built around the following data format: { # The fields on which to filter 'fields': ['name', 'category', 'unit'], 'data': [ ( # First element is input data in the order of `fields` above ('Water', 'air', 'kilogram'), # Second element is new values to substitute when all fields match { 'unit': 'cubic meter', '__multiplier__': 0.001 } ) ] } And is implemented with the following pseudo-code: for element in input_data: for original, new in migration['data']: if all(element[field] == original[field] for field in migration['fields']): element.update(dict(zip(migration['fields'], new))) The actual code is a bit more complex, as `bw_migrations` can also do rescaling of probability distributions and disaggregation migrations (splitting one object into several outputs).


نحوه نصب


نصب پکیج whl bw-migrations-0.2:

    pip install bw-migrations-0.2.whl


نصب پکیج tar.gz bw-migrations-0.2:

    pip install bw-migrations-0.2.tar.gz