Skip to content

Total GHG emissions by NAICS-6 #59

Answered by bl-young
nacho-osio asked this question in Q&A
Discussion options

You must be logged in to vote

The emission factors are based on totals developed in EPA’s FLOWSA python package. You can see we flag the specific dataset in the USEEIO model spec file here. That file can be downloaded from EPA’s Data Commons:
https://dmap-data-commons-ord.s3.amazonaws.com/flowsa/FlowBySector/GHG_national_2019_m1_v1.3.1_d680131.parquet

These are in a .parquet data type format which are essentially compressed csv files. These can be read in python or R, for example, if you have the useeior package:

f <- 'flowsa/FlowBySector/GHG_national_2019_m1_v1.3.1_d680131.parquet'
file <- useeior:::loadDataCommonsfile(f)
df <- as.data.frame(arrow::read_parquet(file))

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by bl-young
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants