Releases: USEPA/IO-Model-Builder
Releases · USEPA/IO-Model-Builder
v1.2.3
v1.2.2
Corrects version correspondence
v1.2.1
Adds M and M_dqi matrices representing life cycle flows per dollar and their data quality
v1.2
-Updates to matio to expose model matrices for more intuitive
before was
export = matio.Export(some_io_model_object)
export.to_dir() #which only exported API versions
now is
matrices = matio.Matrices(some_io_model_object)
#with option to get matrix like
matrices.A
matrices.B
#and two export options
matrices.export_for_api()
matrices.export_to_csv()
v1.1.2
-Minor updates to formats.
-Bug fixes in tests and example
-Updates to conform to pandas API >v0.22
v1.1
This version includes the following major updates:
- Matio and webapi modules that together provides the user with the functionality to export models in a format that can be served via a RESTful API
- A new data structure, a DqiMatrix, that supports data quality aggregation calculations
- Support for inclusion of additional life cycle stages in models
Additional improvements have been made including more unit tests and model validation checks, aggregation of comment fields in satellite tables for use in model export into JSON-LD format, and improvements in numeric handling of make and use tables.