Skip to content

Commit

Permalink
cleanup and add to Readme
Browse files Browse the repository at this point in the history
  • Loading branch information
bl-young committed Dec 4, 2024
1 parent b0c1a41 commit a5d7c33
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ The LCIA Formatter v1 was peer-reviewed internally at USEPA and externally throu
|ImpactWorld+ Endpoint*|International Reference Center for Life Cycle of Products, Services and Systems (CIRAIG)|[ImpactWorld+](http://www.impactworldplus.org/en/team.php)|
|IPCC GWP|Intergovernmental Panel on Climate Change (IPCC)| |
|FEDEFL Inventory Methods|US Environmental Protection Agency|[FEDEFL Inventory Methods](https://github.com/USEPA/LCIAformatter/wiki/Inventory-Methods)|
|Cumulative Energy Demand|Federal LCA Commons|[FEDEFL Inventory Methods](https://github.com/USEPA/LCIAformatter/wiki/Inventory-Methods)|

\* only works on Windows installations

Expand Down
5 changes: 3 additions & 2 deletions lciafmt/ced.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,14 @@ def get() -> pd.DataFrame():
inv['Indicator'] = np.select(conditions, indicators, default='')

## Original CED Method included the
# "Energy, fossil, unspecified" technosphere flow
# "Energy, fossil, unspecified" technosphere flow;
# this has been dropped
# https://www.lcacommons.gov/lca-collaboration/National_Renewable_Energy_Laboratory/USLCI_Database_Public/dataset/FLOW/46dc4693-2f24-39d2-b69f-dd059737fd5e

## Original CED Method used HHV for biomass/wood flows
# Some wood flows were removed after the original method in FEDEFLv1.0.8

# Dropped flows from FEDEFL inv method: "Hydrogen", "Energy, heat"

inv = inv.query('Indicator != ""').reset_index(drop=True)

return inv
Expand All @@ -57,3 +57,4 @@ def get() -> pd.DataFrame():
df = get()
store_method(df, method)
lciafmt.util.save_json(method, df)
# lciafmt.util.save_json(method, df, write_flows=True)

0 comments on commit a5d7c33

Please sign in to comment.