ocni-dtu / epdx

ILCD parser for Javascript and Python, written in Rust
https://epdx.kongsgaard.eu/
Apache License 2.0
24 stars 3 forks source link

Fix Conversion Factors #18

Closed ocni-dtu closed 5 months ago

ocni-dtu commented 11 months ago
// TODO - Fix conversion
  for material_property in exchange.material_properties.unwrap() {
      conversions.push(Conversion { value: material_property.value.parse().unwrap(), to: Unit::from(&material_property.unit) })
  }