standardizedinventories icon indicating copy to clipboard operation
standardizedinventories copied to clipboard

Standardized Release and Waste Inventories

Results 10 standardizedinventories issues
Sort by recently updated
recently updated
newest added

As described in https://github.com/USEPA/ElectricityLCI/issues/207, annual facility-level emissions from EPA's Clean Air Markets Program Data are desired for building a life cycle inventory for U.S. electricity generation. The EPA provide a...

Action indicates KeyError in `combineFullInventories` for: ``` name = 'TRI_DMR_2017', compartment = 'water' inv_dict = {'DMR': '2017', 'TRI': '2017'} ``` ``` stewicombo/__init__.py:53: in combineFullInventories inventories = aggregate_and_remove_overlap(inventories) stewicombo/overlaphandler.py:108: in aggregate_and_remove_overlap...

Comparing results by `FacilityID` shows a number of differences for individual facilities. ``` import stewicombo sc1 = stewicombo.getInventory('NEI_TRI_air_2017_v1.1.1_ff2903a') sc2 = stewicombo.getInventory('NEI_TRI_air_seccntx_2017_v1.1.1_ff2903a') sc1 = sc1.groupby(['FacilityID']).agg({'FlowAmount':'sum'}) sc2 = sc2.groupby(['FacilityID']).agg({'FlowAmount':'sum'}) s = (pd.merge(sc1,...

So I tried accessing other years of RCRAInfo data (2013, 2015, 2017, and 2019). All worked except for one (2017), which produced the following errors. I wasn't able to track...

bug

The table in the README says RCRAInfo has 2013, 2017 and 2019 data available, but I don't see them with I run the following code snippet (using stewi 1.1.2). I...

enhancement

I'm not sure what the intended pathway is for data management, but seeing a general buy-in on esupy's data manager, I'm guessing that's the direction you are heading. That said,...

> But what if a facility reports 100 kg of formaldehyde to TRI and 10 kg via DMR, and DMR takes precedence in INVENTORY_PREFERENCE_BY_COMPARTMENT? Then we would want stewicombo to...

enhancement

### Discussed in https://github.com/USEPA/standardizedinventories/discussions/116 Add biogenic CO2 emissions from plants based on "BIOCO2" field.

enhancement

I'm noticing that [facilitymatcher](https://github.com/USEPA/facilitymatcher/) code appears reproduced here under the submodule of the same name. Are both being updated? Is one to be used in preference over the other?

In stewicombo's overlaphandler.py, there are several agg and a transform method calls that utilize "sum" and "min", which should be called by string version of their function name (see warning...