Skip to content

Commit

Permalink
Merge branch 'develop' into rcra_2021
Browse files Browse the repository at this point in the history
  • Loading branch information
bl-young committed Jun 10, 2024
2 parents ddfdde0 + 4662656 commit ec8f3bb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion stewi/GHGRP.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def get_row_count(table, report_year):
try:
count_request = make_url_request(count_url)
count_xml = minidom.parseString(count_request.text)
table_count = count_xml.getElementsByTagName('TOTALQUERYRESULTS')
table_count = count_xml.getElementsByTagName('REQUESTRECORDCOUNT')
table_count = int(table_count[0].firstChild.nodeValue)
except IndexError as e:
raise Exception(f'error accessing table count for {table}') from e
Expand Down
2 changes: 1 addition & 1 deletion stewi/data/eGRID/eGRID_required_fields.csv
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Nitrous oxide,1,,Plant annual N2O emissions (lbs),Plant annual N2O emissions (lb
Plant primary fuel,1,1,Plant primary fuel,Plant primary fuel,Plant primary fuel,Plant primary fuel,Plant primary fuel,Plant primary fuel
Plant nameplate capacity (MW),,,Plant nameplate capacity (MW),Plant nameplate capacity (MW),Plant nameplate capacity (MW),Plant nameplate capacity (MW),Plant nameplate capacity (MW),Plant nameplate capacity (MW)
Plant capacity factor,,,Plant capacity factor,Plant capacity factor,Plant capacity factor,Plant capacity factor,Plant capacity factor,Plant capacity factor
Plant primary coal/oil/gas/ other fossil fuel category,,1,Plant primary coal/oil/gas/ other fossil fuel category,Plant primary coal/oil/gas/ other fossil fuel category,Plant primary coal/oil/gas/ other fossil fuel category,Plant primary coal/oil/gas/ other fossil fuel category,,
Plant primary coal/oil/gas/ other fossil fuel category,,1,Plant primary coal/oil/gas/ other fossil fuel category,Plant primary coal/oil/gas/ other fossil fuel category,Plant primary coal/oil/gas/ other fossil fuel category,Plant primary coal/oil/gas/ other fossil fuel category,Plant primary fuel category,Plant primary fuel category
NERC region acronym,,1,NERC region acronym,NERC region acronym,NERC region acronym,NERC region acronym,NERC region acronym,NERC region acronym
eGRID subregion acronym,,1,eGRID subregion acronym,eGRID subregion acronym,eGRID subregion acronym,eGRID subregion acronym,eGRID subregion acronym,eGRID subregion acronym
Balancing Authority Name,,1,Balancing Authority Name,Balancing Authority Name,Balancing Authority Name,Balancing Authority Name,Balancing Authority Name,Balancing Authority Name
Expand Down

0 comments on commit ec8f3bb

Please sign in to comment.