Microproduct Data GuideIntermediate

EPA Greenhouse Gas Reporting Program

Facility-level U.S. greenhouse-gas emissions reports for building industrial emissions maps and sector comparison tools.

Report a Problem

At a Glance

Difficulty
Intermediate — some data preparation helps
Size
Small · ≤0.5 GB
Formats
Excel, CSV, JSON
Access
Download or API
API Key
Not Required
Provider
U.S. Environmental Protection Agency
Updates
Annual
Last Verified
Aug 18, 2026
Source Type
Government Source
  • Python Syntax Checked

From Source to Product Signal

Test a Product Idea in Four Steps

GHGRP publishes annual facility emissions for large U.S. reporters. Start with one state and one reporting year from Envirofacts. Reported totals are self-reported under the rule, cover large emitters rather than every source, and are not the EPA Inventory of U.S. Greenhouse Gas Emissions.

1

Check the Setup

  • Python 3.10 or newer
  • A notebook environment such as Jupyter or Google Colab
  • An internet connection
2

Access the Data

  1. 1.Open the GHGRP data sets page and note that Envirofacts can return JSON.
  2. 2.Query one state and keep facility name, latitude, longitude, and CO2e.
  3. 3.Record the reporting year used in the query.
Open Official Source
3

Run the Python Example

Install the packages, then run the notebook cell.

python -m pip install pandas requests

import pandas as pd
import requests

response = requests.get(
    "https://data.epa.gov/efservice/PUB_DIM_FACILITY/STATE/CO/JSON",
    timeout=60,
)
response.raise_for_status()
facilities = pd.DataFrame(response.json())
print(facilities.head())
4

Test a Useful Signal

Map Colorado GHGRP Facilities

Test whether facility records can power a bounded industrial-emissions locator.

  1. 01Keep facility identifier, name, county, and coordinates from the bounded extract.
  2. 02Count reporters by county and list names missing coordinates.
  3. 03Explain that GHGRP covers large reporters for a reporting year and is not a complete emissions inventory.

Dataset Details

U.S. Environmental Protection Agency is a government source. Last verified 2026-08-18. Temporal coverage: 2010-present reporting years.

Geography

Provider

U.S. Environmental Protection Agency

Data Terms

U.S. Government public data / federal copyright guidance

Send Feedback