-
-
Notifications
You must be signed in to change notification settings - Fork 128
Description
From this comment and this comment
The fuel_pct
field comes from the core_eia861__yearly_distributed_generation_fuel
table. In 2010, the form switched from reporting percent of total capacity to mw of capacity for each individual technology type. In the transform module, we convert all the pre-2010 pct_capacity values to mw of capacity so we can have a uniform column of values throughout the years.
The form stops reported fuel_pct values in 2007. This means that there was no incentive to convert this column to fuel_mw (because there was no post-2010 fuel_mw columns to combine it with).
This leaves me with 2 questions:
-
The fuel_pct columns represent the percent of total capacity by fuel. We split this table off from the
_tech
and_misc
tables so that we could normalize the data (i.e.: makefuel_class
andfuel_pct
columns instead of having individual columns for each fuel type). However, thecapacity_mw
field, that all the percentages are based on, lives in thecore_eia861__yearly_distributed_generation_tech
table. How should we solve this issue? It feels like the capacity field should be in the same table, but the whole point of normalization is to de-duplicate data for storage. It also doesn't necessarily make sense to recombine the tables, because that will result in tons of columns because we will have to make it a wide table again. -
Should we bother converting this
fuel_pct
tocapacity_mw
to match the newertech_pct
data that has been converted?
Will update the description for this field once we have more clarity on what to do here.
It helps to look at the column maps for the distributed_generation_eia861
table.
Metadata
Metadata
Assignees
Labels
Type
Projects
Status