Leveraging the U.S. Gridded Anthropogenic Methane Emissions Inventory for Monitoring Trends in Methane Emissions

Spatially disaggregated 0.1°x 0.1° annual maps of U.S. anthropogenic methane emissions, consistent with the U.S. Inventory of Greenhouse Gas Emissions and Sinks
Author

Siddharth Chaudhary, Vishal Gaur, Farnaz Bayat

Access this Notebook

You can launch this notebook in the US GHG Center JupyterHub by clicking the link below. If you are a new user, you should first sign up for the hub by filling out this request form and providing the required information.

Access the U.S. Gridded Anthropogenic Methane Emissions Inventory notebook in the US GHG Center JupyterHub.

Table of Contents

Data Summary and Application

  • Spatial coverage: Contiguous United States
  • Spatial resolution: 0.1° x 0.1°
  • Temporal extent: 2012 - 2020
  • Temporal resolution: Annual
  • Unit: Megagrams of methane per square kilometer per year (Mg CH₄/km²/yr)
  • Utility: Methane Monitoring, Anthropogenic Emissions Analysis, Climate Research

For more, visit the U.S. Gridded Anthropogenic Methane Emissions Inventory data overview page.

Approach

  1. Identify available dates and temporal frequency of observations for the given collection using the GHGC API /stac endpoint. The collection processed in this notebook is the gridded methane emissions data product.
  2. Pass the STAC item into the raster API /collections/{collection_id}/items/{item_id}/tilejson.json endpoint.
  3. Using folium.plugins.DualMap, we will visualize two tiles (side-by-side), allowing us to compare time points.
  4. After the visualization, we will perform zonal statistics for a given polygon.

About the Data

The gridded EPA U.S. anthropogenic methane greenhouse gas inventory (gridded GHGI) includes spatially disaggregated (0.1 deg x 0.1 deg or approximately 10 x 10 km resolution) maps of annual anthropogenic methane emissions (for the contiguous United States (CONUS)), consistent with national annual U.S. anthropogenic methane emissions reported in the U.S. EPA Inventory of U.S. Greenhouse Gas Emissions and Sinks (U.S. GHGI).

This V2 Express Extension dataset contains methane emissions provided as fluxes, in units of molecules of methane per square cm per second, for over 25 individual emission source categories, including those from agriculture, petroleum and natural gas systems, coal mining, and waste. The data have been converted from their original NetCDF format to Cloud-Optimized GeoTIFF (COG) for use in the US GHG Center, thereby enabling user exploration of spatial anthropogenic methane emissions and their trends.

The gridded dataset currently includes 34 data layers. The first data layer includes annual 2012-2020 gridded methane emissions fluxes from all anthropogenic sources of methane in the U.S. GHGI (excluding Land Use, Land-Use Change and Forestry (LULUCF) sources, which are not included in the gridded GHGI). The next six data layers include annual 2012-2020 gridded methane fluxes from sources within the aggregate Agriculture, Natural Gas, Petroleum, Waste, Industry, and ‘Other’ source categories. The remaining 27 data layers include annual 2012-2020 gridded methane emissions fluxes from individual emission sectors within each of the aggregate categories.

For more information regarding this dataset, please visit the U.S. Gridded Anthropogenic Methane Emissions Inventory data overview page.

Install the Required Libraries

Required libraries are pre-installed on the GHG Center Hub, except the tabulate library. If you need to run this notebook elsewhere, please install the libraries by running the following command line:

%pip install requests folium rasterstats pystac_client pandas matplotlib tabulate –quiet

# Import the following libraries
import requests
import folium
import folium.plugins
from folium import Map, TileLayer 
from pystac_client import Client 
import branca 
import pandas as pd
import matplotlib.pyplot as plt
from tabulate import tabulate
/Users/rrimal/Library/Python/3.9/lib/python/site-packages/urllib3/__init__.py:35: NotOpenSSLWarning: urllib3 v2 only supports OpenSSL 1.1.1+, currently the 'ssl' module is compiled with 'LibreSSL 2.8.3'. See: https://github.com/urllib3/urllib3/issues/3020
  warnings.warn(

Query the STAC API

First, you need to import the required libraries. Once imported, they allow better execution of a query in the GHG Center Spatio Temporal Asset Catalog (STAC) Application Programming Interface (API) where the granules for this collection are stored. You will learn the functionality of each library throughout the notebook.

# Provide the STAC and RASTER API endpoints
# The endpoint is referring to a location within the API that executes a request on a data collection nesting on the server.

# The STAC API is a catalog of all the existing data collections that are stored in the GHG Center.
STAC_API_URL = "https://earth.gov/ghgcenter/api/stac"

# The RASTER API is used to fetch collections for visualization
RASTER_API_URL = "https://earth.gov/ghgcenter/api/raster"

STAC API Collection Names

Now, you must fetch the dataset from the STAC API by defining its associated STAC API collection ID as a variable. The collection ID, also known as the collection name, for the U.S. Gridded Anthropogenic Methane Emissions Inventory dataset is epa-ch4emission-yeargrid-v2express

# The collection name is used to fetch the dataset from the STAC API. First, we define the collection name as a variable
# Name of the collection for gridded methane dataset 
collection_name = "epa-ch4emission-yeargrid-v2express"

# Fetch the collection from the STAC API using the appropriate endpoint
# The 'requests' library allows a HTTP request possible
collection = requests.get(f"{STAC_API_URL}/collections/{collection_name}").json()

# Print the properties of the collection in a table
# Adjust display settings
pd.set_option('display.max_colwidth', None)  # Set maximum column width to "None" to prevent cutting off text

# Extract the relevant information about the collection
collection_info = {
    "Title": collection.get("title", "N/A"), # Extract the title of the collection 
    "Description": collection.get("description", "N/A"), # Extract the dataset description
    "Temporal Extent": collection.get("extent", {}).get("temporal", {}).get("interval", "N/A"), # Extract the temporal coverage of the collection
    "Spatial Extent": collection.get("extent", {}).get("spatial", {}).get("bbox", "N/A"), # Extract the spatial coverage of the collection
}

# Convert the derived information into a DataFrame format
properties_table = pd.DataFrame(list(collection_info.items()), columns=["Collection Summary", ""])

# Display the properties in a table
collection_summary = properties_table.style.set_properties(**{'text-align': 'left'}) \
                                           .set_table_styles([
    {
        'selector': 'th.col0, td.col0',    # Select the first column
        'props': [('min-width', '200px'),  # Set a minimum width
                  ('text-align', 'left')]  # Align text to the left
    },
    {
        'selector': 'td.col1',             # Select the second column
        'props': [('text-align', 'left')]  # Align text to the left
    }
])

# Print the collection summary table
collection_summary
{'id': 'epa-ch4emission-yeargrid-v2express',
 'type': 'Collection',
 'links': [{'rel': 'items',
   'type': 'application/geo+json',
   'href': 'https://earth.gov/ghgcenter/api/stac/collections/epa-ch4emission-yeargrid-v2express/items'},
  {'rel': 'parent',
   'type': 'application/json',
   'href': 'https://earth.gov/ghgcenter/api/stac/'},
  {'rel': 'root',
   'type': 'application/json',
   'href': 'https://earth.gov/ghgcenter/api/stac/'},
  {'rel': 'self',
   'type': 'application/json',
   'href': 'https://earth.gov/ghgcenter/api/stac/collections/epa-ch4emission-yeargrid-v2express'}],
 'title': 'U.S. Gridded Anthropogenic Methane Emissions Inventory v2 Express Extension',
 'extent': {'spatial': {'bbox': [[-180.0, -90.0, 180.0, 90.0]]},
  'temporal': {'interval': [['2012-01-01T00:00:00+00:00',
     '2020-12-31T00:00:00+00:00']]}},
 'license': 'CC-BY-4.0',
 'renders': {'dashboard': {'assets': ['total-methane'],
   'maxzoom': 5,
   'minzoom': 0,
   'rescale': [[0, 20]],
   'colormap_name': 'epa-ghgi-ch4'},
  'dwtd-waste': {'assets': ['dwtd-waste'],
   'maxzoom': 5,
   'minzoom': 0,
   'rescale': [[0, 20]],
   'colormap_name': 'epa-ghgi-ch4'},
  'iwtd-waste': {'assets': ['iwtd-waste'],
   'maxzoom': 5,
   'minzoom': 0,
   'rescale': [[0, 20]],
   'colormap_name': 'epa-ghgi-ch4'},
  'post-meter': {'assets': ['post-meter'],
   'maxzoom': 5,
   'minzoom': 0,
   'rescale': [[0, 20]],
   'colormap_name': 'epa-ghgi-ch4'},
  'refining-ps': {'assets': ['refining-ps'],
   'maxzoom': 5,
   'minzoom': 0,
   'rescale': [[0, 20]],
   'colormap_name': 'epa-ghgi-ch4'},
  'total-other': {'assets': ['total-other'],
   'maxzoom': 5,
   'minzoom': 0,
   'rescale': [[0, 20]],
   'colormap_name': 'epa-ghgi-ch4'},
  'total-waste': {'assets': ['total-waste'],
   'maxzoom': 5,
   'minzoom': 0,
   'rescale': [[0, 20]],
   'colormap_name': 'epa-ghgi-ch4'},
  'surface-coal': {'assets': ['surface-coal'],
   'maxzoom': 5,
   'minzoom': 0,
   'rescale': [[0, 20]],
   'colormap_name': 'epa-ghgi-ch4'},
  'transport-ps': {'assets': ['transport-ps'],
   'maxzoom': 5,
   'minzoom': 0,
   'rescale': [[0, 20]],
   'colormap_name': 'epa-ghgi-ch4'},
  'abn-ong-other': {'assets': ['abn-ong-other'],
   'maxzoom': 5,
   'minzoom': 0,
   'rescale': [[0, 20]],
   'colormap_name': 'epa-ghgi-ch4'},
  'field-burning': {'assets': ['field-burning'],
   'maxzoom': 5,
   'minzoom': 0,
   'rescale': [[0, 20]],
   'colormap_name': 'epa-ghgi-ch4'},
  'production-ps': {'assets': ['production-ps'],
   'maxzoom': 5,
   'minzoom': 0,
   'rescale': [[0, 20]],
   'colormap_name': 'epa-ghgi-ch4'},
  'total-methane': {'assets': ['total-methane'],
   'maxzoom': 5,
   'minzoom': 0,
   'rescale': [[0, 20]],
   'colormap_name': 'epa-ghgi-ch4'},
  'exploration-ps': {'assets': ['exploration-ps'],
   'maxzoom': 5,
   'minzoom': 0,
   'rescale': [[0, 20]],
   'colormap_name': 'epa-ghgi-ch4'},
  'processing-ngs': {'assets': ['processing-ngs'],
   'maxzoom': 5,
   'minzoom': 0,
   'rescale': [[0, 20]],
   'colormap_name': 'epa-ghgi-ch4'},
  'production-ngs': {'assets': ['production-ngs'],
   'maxzoom': 5,
   'minzoom': 0,
   'rescale': [[0, 20]],
   'colormap_name': 'epa-ghgi-ch4'},
  'exploration-ngs': {'assets': ['exploration-ngs'],
   'maxzoom': 5,
   'minzoom': 0,
   'rescale': [[0, 20]],
   'colormap_name': 'epa-ghgi-ch4'},
  'composting-waste': {'assets': ['composting-waste'],
   'maxzoom': 5,
   'minzoom': 0,
   'rescale': [[0, 20]],
   'colormap_name': 'epa-ghgi-ch4'},
  'distribution-ngs': {'assets': ['distribution-ngs'],
   'maxzoom': 5,
   'minzoom': 0,
   'rescale': [[0, 20]],
   'colormap_name': 'epa-ghgi-ch4'},
  'rice-cultivation': {'assets': ['rice-cultivation'],
   'maxzoom': 5,
   'minzoom': 0,
   'rescale': [[0, 20]],
   'colormap_name': 'epa-ghgi-ch4'},
  'total-coal-mines': {'assets': ['total-coal-mines'],
   'maxzoom': 5,
   'minzoom': 0,
   'rescale': [[0, 20]],
   'colormap_name': 'epa-ghgi-ch4'},
  'underground-coal': {'assets': ['underground-coal'],
   'maxzoom': 5,
   'minzoom': 0,
   'rescale': [[0, 20]],
   'colormap_name': 'epa-ghgi-ch4'},
  'manure-management': {'assets': ['manure-management'],
   'maxzoom': 5,
   'minzoom': 0,
   'rescale': [[0, 20]],
   'colormap_name': 'epa-ghgi-ch4'},
  'total-agriculture': {'assets': ['total-agriculture'],
   'maxzoom': 5,
   'minzoom': 0,
   'rescale': [[0, 20]],
   'colormap_name': 'epa-ghgi-ch4'},
  'msw-landfill-waste': {'assets': ['msw-landfill-waste'],
   'maxzoom': 5,
   'minzoom': 0,
   'rescale': [[0, 20]],
   'colormap_name': 'epa-ghgi-ch4'},
  'abn-underground-coal': {'assets': ['abn-underground-coal'],
   'maxzoom': 5,
   'minzoom': 0,
   'rescale': [[0, 20]],
   'colormap_name': 'epa-ghgi-ch4'},
  'enteric-fermentation': {'assets': ['enteric-fermentation'],
   'maxzoom': 5,
   'minzoom': 0,
   'rescale': [[0, 20]],
   'colormap_name': 'epa-ghgi-ch4'},
  'petro-production-other': {'assets': ['petro-production-other'],
   'maxzoom': 5,
   'minzoom': 0,
   'rescale': [[0, 20]],
   'colormap_name': 'epa-ghgi-ch4'},
  'mobile-combustion-other': {'assets': ['mobile-combustion-other'],
   'maxzoom': 5,
   'minzoom': 0,
   'rescale': [[0, 20]],
   'colormap_name': 'epa-ghgi-ch4'},
  'total-petroleum-systems': {'assets': ['total-petroleum-systems'],
   'maxzoom': 5,
   'minzoom': 0,
   'rescale': [[0, 20]],
   'colormap_name': 'epa-ghgi-ch4'},
  'transmission-storage-ngs': {'assets': ['transmission-storage-ngs'],
   'maxzoom': 5,
   'minzoom': 0,
   'rescale': [[0, 20]],
   'colormap_name': 'epa-ghgi-ch4'},
  'industrial-landfill-waste': {'assets': ['industrial-landfill-waste'],
   'maxzoom': 5,
   'minzoom': 0,
   'rescale': [[0, 20]],
   'colormap_name': 'epa-ghgi-ch4'},
  'total-natural-gas-systems': {'assets': ['total-natural-gas-systems'],
   'maxzoom': 5,
   'minzoom': 0,
   'rescale': [[0, 20]],
   'colormap_name': 'epa-ghgi-ch4'},
  'ferroalloy-production-other': {'assets': ['ferroalloy-production-other'],
   'nodata': -9999,
   'rescale': [[0, 20]],
   'colormap_name': 'epa-ghgi-ch4'},
  'stationary-combustion-other': {'assets': ['stationary-combustion-other'],
   'maxzoom': 5,
   'minzoom': 0,
   'rescale': [[0, 20]],
   'colormap_name': 'epa-ghgi-ch4'}},
 'summaries': {'datetime': ['2012-01-01T00:00:00Z', '2020-01-01T00:00:00Z']},
 'description': "The gridded EPA U.S. anthropogenic methane greenhouse gas inventory (gridded GHGI) includes spatially disaggregated (0.1 deg x 0.1 deg or approximately 10 x 10 km resolution) maps of annual anthropogenic methane emissions for the contiguous United States (CONUS) from 2012 - 2020, consistent with national annual U.S. anthropogenic methane emissions reported in the U.S. EPA Inventory of U.S. Greenhouse Gas Emissions and Sinks (U.S. GHGI). This dataset contains methane emissions provided as fluxes, in units of megagrams of methane per square kilometer per year (Mg CH₄/km²/yr). It contains 34 data layers including a 'Total' layer with emissions fluxes from all anthropogenic sources of methane in the U.S. GHGI; 6 aggregate layers with emission fluxes from Agriculture, Natural Gas, Petroleum, Waste, Industry, and ‘Other’ source categories; and 27 layers representing methane emission fluxes from individual sector categories (i.e. the individual layers that make up each of the aggregate layers and the 'Total' layer). The data have been converted from their original NetCDF format to Cloud-Optimized GeoTIFF (COG) and scaled to Mg/km²/yr for use in the US GHG Center, thereby enabling user exploration of spatial anthropogenic methane emissions and their trends. The source data and addition information can be found at https://doi.org/10.5281/zenodo.8367082",
 'item_assets': {'dwtd-waste': {'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Waste - Domestic Wastewater Treatment & Discharge (annual)',
   'description': 'Annual methane emissions from Domestic Wastewater Treatment and Discharge (inventory Waste 5D sub-category).'},
  'iwtd-waste': {'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Waste - Industrial Wastewater Treatment & Discharge (annual)',
   'description': 'Annual methane emissions from Industrial Wastewater Treatment and Discharge (inventory Waste 5D sub-category).'},
  'post-meter': {'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Natural Gas - Post Meter (annual)',
   'description': 'Annual methane emissions downstream of residential, commercial, industrial natural gas distribution meters (i.e., “Post Meter”) (inventory Energy 1B2b sub-category).'},
  'refining-ps': {'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Petroleum - Refining (annual)',
   'description': 'Annual methane emissions from Petroleum Refining (inventory Energy 1B2a sub-category).'},
  'total-other': {'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Total Other (annual)',
   'description': 'Total annual methane emission fluxes from ‘Other’ remaining sources (sum of inventory categories 1A (Energy Combustion), 2B8 & 2C2 (Petrochemical & Ferroalloy Production) and 1B2a & 1B2b (Abandoned Oil & Gas Well Emissions)).'},
  'total-waste': {'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Total Waste (annual)',
   'description': 'Total annual methane emission fluxes from Waste (sum of inventory Waste categories: Municipal Solid Waste (MSW) and Industrial Landfills (5A1), Composting (5B1), Domestic and Industrial Wastewater Treatment and Discharge (5D)).'},
  'surface-coal': {'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Coal Mining - Surface Mining (annual)',
   'description': 'Annual methane emissions from active Surface Coal Mining (inventory Energy 1B1a sub-category).'},
  'transport-ps': {'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Petroleum - Transportation (annual)',
   'description': 'Annual methane emissions from Petroleum Transportation (inventory Energy 1B2a sub-category).'},
  'abn-ong-other': {'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Other - Abandoned Oil and Gas Wells (annual)',
   'description': 'Annual methane emissions from Abandoned Oil and Gas Wells (inventory Energy 1B2a and 1B2b sub-categories).'},
  'field-burning': {'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Agriculture - Field Burning (annual)',
   'description': 'Annual methane emissions from field burning of agricultural residues (inventory Agriculture category 3F).'},
  'production-ps': {'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Petroleum - Production (annual)',
   'description': 'Annual methane emissions from Petroleum Production (inventory Energy 1B2a sub-category).'},
  'total-methane': {'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Total Methane (annual)',
   'description': 'Total annual methane emission fluxes from all Agriculture, Energy, Waste, and ‘Other’ sources included in this dataset.'},
  'exploration-ps': {'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Petroleum - Exploration (annual)',
   'description': 'Annual methane emissions from Petroleum Exploration (inventory Energy 1B2a sub-category).'},
  'processing-ngs': {'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Natural Gas - Processing (annual)',
   'description': 'Annual methane emissions from Natural Gas Processing (inventory Energy 1B2b sub-category).'},
  'production-ngs': {'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Natural Gas - Production (annual)',
   'description': 'Annual methane emissions from Natural Gas Production (inventory Energy 1B2b sub-category).'},
  'exploration-ngs': {'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Natural Gas - Exploration (annual)',
   'description': 'Annual methane emissions from Natural Gas Exploration (inventory Energy 1B2b sub-category).'},
  'composting-waste': {'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Waste - Composting (annual)',
   'description': 'Annual methane emissions from Composting (inventory Waste category 5B1).'},
  'distribution-ngs': {'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Natural Gas - Distribution (annual)',
   'description': 'Annual methane emissions from Natural Gas Distribution (inventory Energy 1B2b sub-category).'},
  'rice-cultivation': {'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Agriculture - Rice Cultivation (annual)',
   'description': 'Annual methane emissions from rice cultivation (inventory Agriculture category 3C).'},
  'total-coal-mines': {'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Total Coal Mines (annual)',
   'description': 'Total annual methane emission fluxes from Coal Mines (sum of inventory 1B1a sub-categories which includes Underground Coal Mining, Surface Coal Mining and Abandoned Underground Coal Mines).'},
  'underground-coal': {'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Coal Mining - Underground Mining (annual)',
   'description': 'Annual methane emissions from active Underground Coal Mining (inventory Energy 1B1a sub-category).'},
  'manure-management': {'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Agriculture - Manure Management (annual)',
   'description': 'Annual methane emissions from livestock manure management (inventory Agriculture category 3B).'},
  'total-agriculture': {'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Total Agriculture (annual)',
   'description': 'Total annual methane emission fluxes from Agriculture sources (sum of inventory categories: Enteric Fermentation (3A), Manure Management (3B), Rice Cultivation (3C), Field Burning of Agricultural Residues (3F)).'},
  'msw-landfill-waste': {'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Waste - Municipal Solid Waste (MSW) Landfills (annual)',
   'description': 'Annual methane emissions from Municipal Solid Waste Landfills (inventory Waste 5A1 sub-category).'},
  'abn-underground-coal': {'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Coal Mining - Abandoned Underground Mines (annual)',
   'description': 'Annual methane emissions from Abandoned Underground Coal Mines (inventory Energy 1B1a sub-category).'},
  'enteric-fermentation': {'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Agriculture - Enteric Fermentation (annual)',
   'description': 'Annual methane emissions from enteric fermentation which is methane emitted as a by-product of the normal livestock digestive process (inventory Agriculture category 3A).'},
  'petro-production-other': {'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Other - Petrochemical Production (annual)',
   'description': 'Annual methane emissions from Petrochemical Production (inventory Industrial Processes and Product Use category 2B8).'},
  'mobile-combustion-other': {'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Other - Mobile Combustion (annual)',
   'description': 'Annual methane emissions from Mobile Combustion (inventory Energy 1A sub-category).'},
  'total-petroleum-systems': {'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Total Petroleum Systems (annual)',
   'description': 'Total annual methane emission fluxes from Petroleum Systems (sum of inventory Energy 1B2a sub-categories which includes Petroleum Production, Refining, Exploration and Transport).'},
  'transmission-storage-ngs': {'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Natural Gas - Transmission and Storage (annual)',
   'description': 'Annual methane emissions from Natural Gas Transmission and Storage (inventory Energy 1B2b sub-category).'},
  'industrial-landfill-waste': {'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Waste - Industrial Landfills (annual)',
   'description': 'Annual methane emissions from Industrial Landfills (inventory Waste 5A1 sub-category).'},
  'total-natural-gas-systems': {'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Total Natural Gas Systems (annual)',
   'description': 'Total annual methane emission fluxes from Natural Gas Systems (sum of inventory Energy 1B2b sub-categories which includes Natural Gas Production, Transmission & Storage, Processing, Distribution and Exploration).'},
  'ferroalloy-production-other': {'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Other - Ferroalloy Production (annual)',
   'description': 'Annual methane emissions from Ferroalloy Production (inventory Industrial Processes and Product Use category 2C2).'},
  'stationary-combustion-other': {'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Other - Stationary Combustion (annual)',
   'description': 'Annual methane emissions from Stationary Combustion (inventory Energy 1A sub-category).'}},
 'stac_version': '1.0.0',
 'stac_extensions': ['https://stac-extensions.github.io/render/v1.0.0/schema.json',
  'https://stac-extensions.github.io/item-assets/v1.0.0/schema.json'],
 'dashboard:is_periodic': True,
 'dashboard:time_density': 'year'}

Next, you will examine the contents of the collection under the temporal variable. You’ll see that the data is available from January 2012 to December 2020. By looking at the dashboard:time density, you can observe that the periodic frequency of these observations is yearly.

# Create a function that would search for a data collection in the US GHG Center STAC API

# First, we need to define the function
# The name of the function = "get_item_count"
# The argument that will be passed through the defined function = "collection_id"
def get_item_count(collection_id):

    # Set a counter for the number of items existing in the collection
    count = 0

    # Define the path to retrieve the granules (items) of the collection of interest in the STAC API
    items_url = f"{STAC_API_URL}/collections/{collection_id}/items"

    # Run a while loop to make HTTP requests until there are no more URLs associated with the collection in the STAC API
    while True:

        # Retrieve information about the granules by sending a "get" request to the STAC API using the defined collection path
        response = requests.get(items_url)

        # If the items do not exist, print an error message and quit the loop
        if not response.ok:
            print("error getting items")
            exit()

        # Return the results of the HTTP response as JSON
        stac = response.json()

        # Increase the "count" by the number of items (granules) returned in the response
        count += int(stac["context"].get("returned", 0))

        # Retrieve information about the next URL associated with the collection in the STAC API (if applicable)
        next = [link for link in stac["links"] if link["rel"] == "next"]

        # Exit the loop if there are no other URLs
        if not next:
            break
        
        # Ensure the information gathered by other STAC API links associated with the collection are added to the original path
        # "href" is the identifier for each of the tiles stored in the STAC API
        items_url = next[0]["href"]

    # Return the information about the total number of granules found associated with the collection
    return count
# Apply the function created above "get_item_count" to the data collection
number_of_items = get_item_count(collection_name)

# Get the information about the number of granules found in the collection
items = requests.get(f"{STAC_API_URL}/collections/{collection_name}/items?limit={number_of_items}").json()["features"]

# Print the total number of items (granules) found
print(f"Found {len(items)} items")

# Sort the items based on their date-time attribute
items_sorted = sorted(items, key=lambda x: x["properties"]["datetime"])

# Create an empty list
table_data = []
# Extract the ID and date-time information for each granule and add them to the list
# By default, only the first 5 items in the collection are extracted to be displayed in the table. 
# To see the date-time of all existing granules in this collection, remove "5" from "item_sorted[:5]" in the line below. 
for item in items_sorted[:5]:
    table_data.append([item['id'], item['properties']['datetime']])

# Define the table headers
headers = ["Item ID", "Start Date-Time"]

print("Below you see the first 5 items in the collection, along with their item IDs and corresponding Start Date-Time.")

# Print the table using tabulate
print(tabulate(table_data, headers=headers, tablefmt="fancy_grid"))
Found 9 items

This makes sense as there are 9 years between 2012 - 2020, meaning 9 records in total.

# Examine the first item in the collection
# Keep in mind that a list starts from 0, 1, 2... therefore items[0] is referring to the first item in the list/collection
items_sorted[0]
{'id': 'epa-ch4emission-yeargrid-v2express-2020',
 'bbox': [-129.99999694387628,
  19.99999923487448,
  -60.00000305612369,
  55.00000076512553],
 'type': 'Feature',
 'links': [{'rel': 'collection',
   'type': 'application/json',
   'href': 'https://earth.gov/ghgcenter/api/stac/collections/epa-ch4emission-yeargrid-v2express'},
  {'rel': 'parent',
   'type': 'application/json',
   'href': 'https://earth.gov/ghgcenter/api/stac/collections/epa-ch4emission-yeargrid-v2express'},
  {'rel': 'root',
   'type': 'application/json',
   'href': 'https://earth.gov/ghgcenter/api/stac/'},
  {'rel': 'self',
   'type': 'application/geo+json',
   'href': 'https://earth.gov/ghgcenter/api/stac/collections/epa-ch4emission-yeargrid-v2express/items/epa-ch4emission-yeargrid-v2express-2020'},
  {'title': 'Map of Item',
   'href': 'https://earth.gov/ghgcenter/api/raster/collections/epa-ch4emission-yeargrid-v2express/items/epa-ch4emission-yeargrid-v2express-2020/map?assets=total-methane&maxzoom=5&minzoom=0&rescale=0%2C20&colormap_name=epa-ghgi-ch4',
   'rel': 'preview',
   'type': 'text/html'}],
 'assets': {'dwtd-waste': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_5D_Wastewater_Treatment_Domestic_Gridded_GHGI_Methane_v2_2020.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Waste - Domestic Wastewater Treatment & Discharge (annual)',
   'proj:bbox': [-129.99999694387628,
    19.99999923487448,
    -60.00000305612369,
    55.00000076512553],
   'proj:epsg': 4326.0,
   'proj:shape': [350.0, 700.0],
   'description': 'Annual methane emissions from Domestic Wastewater Treatment and Discharge (inventory Waste 5D sub-category).',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 250.26608276367188,
      'min': -9999.0,
      'count': 11.0,
      'buckets': [169028.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 75972.0]},
     'statistics': {'mean': -6898.392578125,
      'stddev': 4624.86865234375,
      'maximum': 250.26608276367188,
      'minimum': -9999.0,
      'valid_percent': 0.0004081632653061224}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-129.99999694387628, 19.99999923487448],
      [-60.00000305612369, 19.99999923487448],
      [-60.00000305612369, 55.00000076512553],
      [-129.99999694387628, 55.00000076512553],
      [-129.99999694387628, 19.99999923487448]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [0.09999999126821799,
    0.0,
    -129.99999694387628,
    0.0,
    -0.10000000437214586,
    55.00000076512553,
    0.0,
    0.0,
    1.0]},
  'iwtd-waste': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_5D_Wastewater_Treatment_Industrial_Gridded_GHGI_Methane_v2_2020.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Waste - Industrial Wastewater Treatment & Discharge (annual)',
   'proj:bbox': [-129.99999694387628,
    19.99999923487448,
    -60.00000305612369,
    55.00000076512553],
   'proj:epsg': 4326.0,
   'proj:shape': [350.0, 700.0],
   'description': 'Annual methane emissions from Industrial Wastewater Treatment and Discharge (inventory Waste 5D sub-category).',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 552.8455200195312,
      'min': -9999.0,
      'count': 11.0,
      'buckets': [244120.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 880.0]},
     'statistics': {'mean': -9963.07421875,
      'stddev': 598.360107421875,
      'maximum': 552.8455200195312,
      'minimum': -9999.0,
      'valid_percent': 0.0004081632653061224}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-129.99999694387628, 19.99999923487448],
      [-60.00000305612369, 19.99999923487448],
      [-60.00000305612369, 55.00000076512553],
      [-129.99999694387628, 55.00000076512553],
      [-129.99999694387628, 19.99999923487448]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [0.09999999126821799,
    0.0,
    -129.99999694387628,
    0.0,
    -0.10000000437214586,
    55.00000076512553,
    0.0,
    0.0,
    1.0]},
  'post-meter': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_Supp_1B2b_PostMeter_Gridded_GHGI_Methane_v2_2020.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Natural Gas - Post Meter (annual)',
   'proj:bbox': [-129.99999694387628,
    19.99999923487448,
    -60.00000305612369,
    55.00000076512553],
   'proj:epsg': 4326.0,
   'proj:shape': [350.0, 700.0],
   'description': 'Annual methane emissions downstream of residential, commercial, industrial natural gas distribution meters (i.e., “Post Meter”) (inventory Energy 1B2b sub-category).',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 32.81692123413086,
      'min': -9999.0,
      'count': 11.0,
      'buckets': [169110.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 75890.0]},
     'statistics': {'mean': -6901.73974609375,
      'stddev': 4623.49169921875,
      'maximum': 32.81692123413086,
      'minimum': -9999.0,
      'valid_percent': 0.0004081632653061224}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-129.99999694387628, 19.99999923487448],
      [-60.00000305612369, 19.99999923487448],
      [-60.00000305612369, 55.00000076512553],
      [-129.99999694387628, 55.00000076512553],
      [-129.99999694387628, 19.99999923487448]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [0.09999999126821799,
    0.0,
    -129.99999694387628,
    0.0,
    -0.10000000437214586,
    55.00000076512553,
    0.0,
    0.0,
    1.0]},
  'refining-ps': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2a_Petroleum_Systems_Refining_Gridded_GHGI_Methane_v2_2020.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Petroleum - Refining (annual)',
   'proj:bbox': [-129.99999694387628,
    19.99999923487448,
    -60.00000305612369,
    55.00000076512553],
   'proj:epsg': 4326.0,
   'proj:shape': [350.0, 700.0],
   'description': 'Annual methane emissions from Petroleum Refining (inventory Energy 1B2a sub-category).',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 22.515766143798828,
      'min': -9999.0,
      'count': 11.0,
      'buckets': [244892.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 108.0]},
     'statistics': {'mean': -9994.5908203125,
      'stddev': 209.9478759765625,
      'maximum': 22.515766143798828,
      'minimum': -9999.0,
      'valid_percent': 0.0004081632653061224}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-129.99999694387628, 19.99999923487448],
      [-60.00000305612369, 19.99999923487448],
      [-60.00000305612369, 55.00000076512553],
      [-129.99999694387628, 55.00000076512553],
      [-129.99999694387628, 19.99999923487448]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [0.09999999126821799,
    0.0,
    -129.99999694387628,
    0.0,
    -0.10000000437214586,
    55.00000076512553,
    0.0,
    0.0,
    1.0]},
  'total-other': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_other_Gridded_GHGI_Methane_v2_2020.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Total Other (annual)',
   'proj:bbox': [-129.99999694387628,
    19.99999923487448,
    -60.00000305612369,
    55.00000076512553],
   'proj:epsg': 4326.0,
   'proj:shape': [350.0, 700.0],
   'description': 'Total annual methane emission fluxes from ‘Other’ remaining sources (sum of inventory categories 1A (Energy Combustion), 2B8 & 2C2 (Petrochemical & Ferroalloy Production) and 1B2a & 1B2b (Abandoned Oil & Gas Well Emissions)).',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 43.67214584350586,
      'min': -9999.0,
      'count': 11.0,
      'buckets': [157503.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 87497.0]},
     'statistics': {'mean': -6428.02197265625,
      'stddev': 4791.09814453125,
      'maximum': 43.67214584350586,
      'minimum': -9999.0,
      'valid_percent': 0.0004081632653061224}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-129.99999694387628, 19.99999923487448],
      [-60.00000305612369, 19.99999923487448],
      [-60.00000305612369, 55.00000076512553],
      [-129.99999694387628, 55.00000076512553],
      [-129.99999694387628, 19.99999923487448]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [0.09999999126821799,
    0.0,
    -129.99999694387628,
    0.0,
    -0.10000000437214586,
    55.00000076512553,
    0.0,
    0.0,
    1.0]},
  'total-waste': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_waste_Gridded_GHGI_Methane_v2_2020.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Total Waste (annual)',
   'proj:bbox': [-129.99999694387628,
    19.99999923487448,
    -60.00000305612369,
    55.00000076512553],
   'proj:epsg': 4326.0,
   'proj:shape': [350.0, 700.0],
   'description': 'Total annual methane emission fluxes from Waste (sum of inventory Waste categories: Municipal Solid Waste (MSW) and Industrial Landfills (5A1), Composting (5B1), Domestic and Industrial Wastewater Treatment and Discharge (5D)).',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 552.9092407226562,
      'min': -9999.0,
      'count': 11.0,
      'buckets': [169000.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 76000.0]},
     'statistics': {'mean': -6897.05615234375,
      'stddev': 4625.62646484375,
      'maximum': 552.9092407226562,
      'minimum': -9999.0,
      'valid_percent': 0.0004081632653061224}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-129.99999694387628, 19.99999923487448],
      [-60.00000305612369, 19.99999923487448],
      [-60.00000305612369, 55.00000076512553],
      [-129.99999694387628, 55.00000076512553],
      [-129.99999694387628, 19.99999923487448]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [0.09999999126821799,
    0.0,
    -129.99999694387628,
    0.0,
    -0.10000000437214586,
    55.00000076512553,
    0.0,
    0.0,
    1.0]},
  'surface-coal': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B1a_Surface_Coal_Gridded_GHGI_Methane_v2_2020.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Coal Mining - Surface Mining (annual)',
   'proj:bbox': [-129.99999694387628,
    19.99999923487448,
    -60.00000305612369,
    55.00000076512553],
   'proj:epsg': 4326.0,
   'proj:shape': [350.0, 700.0],
   'description': 'Annual methane emissions from active Surface Coal Mining (inventory Energy 1B1a sub-category).',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 569.109130859375,
      'min': -9999.0,
      'count': 11.0,
      'buckets': [244705.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 295.0]},
     'statistics': {'mean': -9986.9501953125,
      'stddev': 347.0617370605469,
      'maximum': 569.109130859375,
      'minimum': -9999.0,
      'valid_percent': 0.0004081632653061224}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-129.99999694387628, 19.99999923487448],
      [-60.00000305612369, 19.99999923487448],
      [-60.00000305612369, 55.00000076512553],
      [-129.99999694387628, 55.00000076512553],
      [-129.99999694387628, 19.99999923487448]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [0.09999999126821799,
    0.0,
    -129.99999694387628,
    0.0,
    -0.10000000437214586,
    55.00000076512553,
    0.0,
    0.0,
    1.0]},
  'transport-ps': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2a_Petroleum_Systems_Transport_Gridded_GHGI_Methane_v2_2020.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Petroleum - Transportation (annual)',
   'proj:bbox': [-129.99999694387628,
    19.99999923487448,
    -60.00000305612369,
    55.00000076512553],
   'proj:epsg': 4326.0,
   'proj:shape': [350.0, 700.0],
   'description': 'Annual methane emissions from Petroleum Transportation (inventory Energy 1B2a sub-category).',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 2.4141974449157715,
      'min': -9999.0,
      'count': 11.0,
      'buckets': [233570.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11430.0]},
     'statistics': {'mean': -9532.515625,
      'stddev': 2108.737060546875,
      'maximum': 2.4141974449157715,
      'minimum': -9999.0,
      'valid_percent': 0.0004081632653061224}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-129.99999694387628, 19.99999923487448],
      [-60.00000305612369, 19.99999923487448],
      [-60.00000305612369, 55.00000076512553],
      [-129.99999694387628, 55.00000076512553],
      [-129.99999694387628, 19.99999923487448]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [0.09999999126821799,
    0.0,
    -129.99999694387628,
    0.0,
    -0.10000000437214586,
    55.00000076512553,
    0.0,
    0.0,
    1.0]},
  'abn-ong-other': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2ab_Abandoned_Oil_Gas_Gridded_GHGI_Methane_v2_2020.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Other - Abandoned Oil and Gas Wells (annual)',
   'proj:bbox': [-129.99999694387628,
    19.99999923487448,
    -60.00000305612369,
    55.00000076512553],
   'proj:epsg': 4326.0,
   'proj:shape': [350.0, 700.0],
   'description': 'Annual methane emissions from Abandoned Oil and Gas Wells (inventory Energy 1B2a and 1B2b sub-categories).',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 35.77754211425781,
      'min': -9999.0,
      'count': 11.0,
      'buckets': [213344.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 31656.0]},
     'statistics': {'mean': -8707.0361328125,
      'stddev': 3353.996337890625,
      'maximum': 35.77754211425781,
      'minimum': -9999.0,
      'valid_percent': 0.0004081632653061224}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-129.99999694387628, 19.99999923487448],
      [-60.00000305612369, 19.99999923487448],
      [-60.00000305612369, 55.00000076512553],
      [-129.99999694387628, 55.00000076512553],
      [-129.99999694387628, 19.99999923487448]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [0.09999999126821799,
    0.0,
    -129.99999694387628,
    0.0,
    -0.10000000437214586,
    55.00000076512553,
    0.0,
    0.0,
    1.0]},
  'field-burning': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_3F_Field_Burning_Gridded_GHGI_Methane_v2_2020.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Agriculture - Field Burning (annual)',
   'proj:bbox': [-129.99999694387628,
    19.99999923487448,
    -60.00000305612369,
    55.00000076512553],
   'proj:epsg': 4326.0,
   'proj:shape': [350.0, 700.0],
   'description': 'Annual methane emissions from field burning of agricultural residues (inventory Agriculture category 3F).',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 0.24409635365009308,
      'min': -9999.0,
      'count': 11.0,
      'buckets': [225969.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 19031.0]},
     'statistics': {'mean': -9222.2998046875,
      'stddev': 2676.369873046875,
      'maximum': 0.24409635365009308,
      'minimum': -9999.0,
      'valid_percent': 0.0004081632653061224}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-129.99999694387628, 19.99999923487448],
      [-60.00000305612369, 19.99999923487448],
      [-60.00000305612369, 55.00000076512553],
      [-129.99999694387628, 55.00000076512553],
      [-129.99999694387628, 19.99999923487448]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [0.09999999126821799,
    0.0,
    -129.99999694387628,
    0.0,
    -0.10000000437214586,
    55.00000076512553,
    0.0,
    0.0,
    1.0]},
  'production-ps': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2a_Petroleum_Systems_Production_Gridded_GHGI_Methane_v2_2020.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Petroleum - Production (annual)',
   'proj:bbox': [-129.99999694387628,
    19.99999923487448,
    -60.00000305612369,
    55.00000076512553],
   'proj:epsg': 4326.0,
   'proj:shape': [350.0, 700.0],
   'description': 'Annual methane emissions from Petroleum Production (inventory Energy 1B2a sub-category).',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 140.06321716308594,
      'min': -9999.0,
      'count': 11.0,
      'buckets': [233515.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11485.0]},
     'statistics': {'mean': -9530.2080078125,
      'stddev': 2113.833251953125,
      'maximum': 140.06321716308594,
      'minimum': -9999.0,
      'valid_percent': 0.0004081632653061224}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-129.99999694387628, 19.99999923487448],
      [-60.00000305612369, 19.99999923487448],
      [-60.00000305612369, 55.00000076512553],
      [-129.99999694387628, 55.00000076512553],
      [-129.99999694387628, 19.99999923487448]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [0.09999999126821799,
    0.0,
    -129.99999694387628,
    0.0,
    -0.10000000437214586,
    55.00000076512553,
    0.0,
    0.0,
    1.0]},
  'total-methane': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_all-variables_Gridded_GHGI_Methane_v2_2020.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Total Methane (annual)',
   'proj:bbox': [-129.99999694387628,
    19.99999923487448,
    -60.00000305612369,
    55.00000076512553],
   'proj:epsg': 4326.0,
   'proj:shape': [350.0, 700.0],
   'description': 'Total annual methane emission fluxes from all Agriculture, Energy, Waste, and ‘Other’ sources included in this dataset.',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 1317.5279541015625,
      'min': -9999.0,
      'count': 11.0,
      'buckets': [153603.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 91349.0, 48.0]},
     'statistics': {'mean': -6267.79736328125,
      'stddev': 4837.07958984375,
      'maximum': 1317.5279541015625,
      'minimum': -9999.0,
      'valid_percent': 0.0004081632653061224}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-129.99999694387628, 19.99999923487448],
      [-60.00000305612369, 19.99999923487448],
      [-60.00000305612369, 55.00000076512553],
      [-129.99999694387628, 55.00000076512553],
      [-129.99999694387628, 19.99999923487448]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [0.09999999126821799,
    0.0,
    -129.99999694387628,
    0.0,
    -0.10000000437214586,
    55.00000076512553,
    0.0,
    0.0,
    1.0]},
  'exploration-ps': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2a_Petroleum_Systems_Exploration_Gridded_GHGI_Methane_v2_2020.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Petroleum - Exploration (annual)',
   'proj:bbox': [-129.99999694387628,
    19.99999923487448,
    -60.00000305612369,
    55.00000076512553],
   'proj:epsg': 4326.0,
   'proj:shape': [350.0, 700.0],
   'description': 'Annual methane emissions from Petroleum Exploration (inventory Energy 1B2a sub-category).',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 1.2649693489074707,
      'min': -9999.0,
      'count': 11.0,
      'buckets': [233941.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11059.0]},
     'statistics': {'mean': -9547.6572265625,
      'stddev': 2075.879150390625,
      'maximum': 1.2649693489074707,
      'minimum': -9999.0,
      'valid_percent': 0.0004081632653061224}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-129.99999694387628, 19.99999923487448],
      [-60.00000305612369, 19.99999923487448],
      [-60.00000305612369, 55.00000076512553],
      [-129.99999694387628, 55.00000076512553],
      [-129.99999694387628, 19.99999923487448]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [0.09999999126821799,
    0.0,
    -129.99999694387628,
    0.0,
    -0.10000000437214586,
    55.00000076512553,
    0.0,
    0.0,
    1.0]},
  'processing-ngs': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2b_Natural_Gas_Processing_Gridded_GHGI_Methane_v2_2020.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Natural Gas - Processing (annual)',
   'proj:bbox': [-129.99999694387628,
    19.99999923487448,
    -60.00000305612369,
    55.00000076512553],
   'proj:epsg': 4326.0,
   'proj:shape': [350.0, 700.0],
   'description': 'Annual methane emissions from Natural Gas Processing (inventory Energy 1B2b sub-category).',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 535.3031005859375,
      'min': -9999.0,
      'count': 11.0,
      'buckets': [244329.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 671.0]},
     'statistics': {'mean': -9971.5947265625,
      'stddev': 522.9393920898438,
      'maximum': 535.3031005859375,
      'minimum': -9999.0,
      'valid_percent': 0.0004081632653061224}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-129.99999694387628, 19.99999923487448],
      [-60.00000305612369, 19.99999923487448],
      [-60.00000305612369, 55.00000076512553],
      [-129.99999694387628, 55.00000076512553],
      [-129.99999694387628, 19.99999923487448]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [0.09999999126821799,
    0.0,
    -129.99999694387628,
    0.0,
    -0.10000000437214586,
    55.00000076512553,
    0.0,
    0.0,
    1.0]},
  'production-ngs': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2b_Natural_Gas_Production_Gridded_GHGI_Methane_v2_2020.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Natural Gas - Production (annual)',
   'proj:bbox': [-129.99999694387628,
    19.99999923487448,
    -60.00000305612369,
    55.00000076512553],
   'proj:epsg': 4326.0,
   'proj:shape': [350.0, 700.0],
   'description': 'Annual methane emissions from Natural Gas Production (inventory Energy 1B2b sub-category).',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 190.11717224121094,
      'min': -9999.0,
      'count': 11.0,
      'buckets': [232277.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12723.0]},
     'statistics': {'mean': -9479.6015625,
      'stddev': 2219.260498046875,
      'maximum': 190.11717224121094,
      'minimum': -9999.0,
      'valid_percent': 0.0004081632653061224}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-129.99999694387628, 19.99999923487448],
      [-60.00000305612369, 19.99999923487448],
      [-60.00000305612369, 55.00000076512553],
      [-129.99999694387628, 55.00000076512553],
      [-129.99999694387628, 19.99999923487448]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [0.09999999126821799,
    0.0,
    -129.99999694387628,
    0.0,
    -0.10000000437214586,
    55.00000076512553,
    0.0,
    0.0,
    1.0]},
  'exploration-ngs': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2b_Natural_Gas_Exploration_Gridded_GHGI_Methane_v2_2020.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Natural Gas - Exploration (annual)',
   'proj:bbox': [-129.99999694387628,
    19.99999923487448,
    -60.00000305612369,
    55.00000076512553],
   'proj:epsg': 4326.0,
   'proj:shape': [350.0, 700.0],
   'description': 'Annual methane emissions from Natural Gas Exploration (inventory Energy 1B2b sub-category).',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 3.1922497749328613,
      'min': -9999.0,
      'count': 11.0,
      'buckets': [235806.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9194.0]},
     'statistics': {'mean': -9623.7705078125,
      'stddev': 1900.2930908203125,
      'maximum': 3.1922497749328613,
      'minimum': -9999.0,
      'valid_percent': 0.0004081632653061224}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-129.99999694387628, 19.99999923487448],
      [-60.00000305612369, 19.99999923487448],
      [-60.00000305612369, 55.00000076512553],
      [-129.99999694387628, 55.00000076512553],
      [-129.99999694387628, 19.99999923487448]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [0.09999999126821799,
    0.0,
    -129.99999694387628,
    0.0,
    -0.10000000437214586,
    55.00000076512553,
    0.0,
    0.0,
    1.0]},
  'composting-waste': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_5B1_Composting_Gridded_GHGI_Methane_v2_2020.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Waste - Composting (annual)',
   'proj:bbox': [-129.99999694387628,
    19.99999923487448,
    -60.00000305612369,
    55.00000076512553],
   'proj:epsg': 4326.0,
   'proj:shape': [350.0, 700.0],
   'description': 'Annual methane emissions from Composting (inventory Waste category 5B1).',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 5.681565761566162,
      'min': -9999.0,
      'count': 11.0,
      'buckets': [241655.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3345.0]},
     'statistics': {'mean': -9862.478515625,
      'stddev': 1160.3760986328125,
      'maximum': 5.681565761566162,
      'minimum': -9999.0,
      'valid_percent': 0.0004081632653061224}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-129.99999694387628, 19.99999923487448],
      [-60.00000305612369, 19.99999923487448],
      [-60.00000305612369, 55.00000076512553],
      [-129.99999694387628, 55.00000076512553],
      [-129.99999694387628, 19.99999923487448]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [0.09999999126821799,
    0.0,
    -129.99999694387628,
    0.0,
    -0.10000000437214586,
    55.00000076512553,
    0.0,
    0.0,
    1.0]},
  'distribution-ngs': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2b_Natural_Gas_Distribution_Gridded_GHGI_Methane_v2_2020.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Natural Gas - Distribution (annual)',
   'proj:bbox': [-129.99999694387628,
    19.99999923487448,
    -60.00000305612369,
    55.00000076512553],
   'proj:epsg': 4326.0,
   'proj:shape': [350.0, 700.0],
   'description': 'Annual methane emissions from Natural Gas Distribution (inventory Energy 1B2b sub-category).',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 32.086830139160156,
      'min': -9999.0,
      'count': 11.0,
      'buckets': [169148.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 75852.0]},
     'statistics': {'mean': -6903.2861328125,
      'stddev': 4622.859375,
      'maximum': 32.086830139160156,
      'minimum': -9999.0,
      'valid_percent': 0.0004081632653061224}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-129.99999694387628, 19.99999923487448],
      [-60.00000305612369, 19.99999923487448],
      [-60.00000305612369, 55.00000076512553],
      [-129.99999694387628, 55.00000076512553],
      [-129.99999694387628, 19.99999923487448]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [0.09999999126821799,
    0.0,
    -129.99999694387628,
    0.0,
    -0.10000000437214586,
    55.00000076512553,
    0.0,
    0.0,
    1.0]},
  'rice-cultivation': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_3C_Rice_Cultivation_Gridded_GHGI_Methane_v2_2020.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Agriculture - Rice Cultivation (annual)',
   'proj:bbox': [-129.99999694387628,
    19.99999923487448,
    -60.00000305612369,
    55.00000076512553],
   'proj:epsg': 4326.0,
   'proj:shape': [350.0, 700.0],
   'description': 'Annual methane emissions from rice cultivation (inventory Agriculture category 3C).',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 62.76310348510742,
      'min': -9999.0,
      'count': 11.0,
      'buckets': [239929.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5071.0]},
     'statistics': {'mean': -9792.015625,
      'stddev': 1423.7451171875,
      'maximum': 62.76310348510742,
      'minimum': -9999.0,
      'valid_percent': 0.0004081632653061224}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-129.99999694387628, 19.99999923487448],
      [-60.00000305612369, 19.99999923487448],
      [-60.00000305612369, 55.00000076512553],
      [-129.99999694387628, 55.00000076512553],
      [-129.99999694387628, 19.99999923487448]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [0.09999999126821799,
    0.0,
    -129.99999694387628,
    0.0,
    -0.10000000437214586,
    55.00000076512553,
    0.0,
    0.0,
    1.0]},
  'total-coal-mines': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_coal-mines_Gridded_GHGI_Methane_v2_2020.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Total Coal Mines (annual)',
   'proj:bbox': [-129.99999694387628,
    19.99999923487448,
    -60.00000305612369,
    55.00000076512553],
   'proj:epsg': 4326.0,
   'proj:shape': [350.0, 700.0],
   'description': 'Total annual methane emission fluxes from Coal Mines (sum of inventory 1B1a sub-categories which includes Underground Coal Mining, Surface Coal Mining and Abandoned Underground Coal Mines).',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 1312.8009033203125,
      'min': -9999.0,
      'count': 11.0,
      'buckets': [243327.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1644.0, 29.0]},
     'statistics': {'mean': -9930.6416015625,
      'stddev': 824.4235229492188,
      'maximum': 1312.8009033203125,
      'minimum': -9999.0,
      'valid_percent': 0.0004081632653061224}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-129.99999694387628, 19.99999923487448],
      [-60.00000305612369, 19.99999923487448],
      [-60.00000305612369, 55.00000076512553],
      [-129.99999694387628, 55.00000076512553],
      [-129.99999694387628, 19.99999923487448]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [0.09999999126821799,
    0.0,
    -129.99999694387628,
    0.0,
    -0.10000000437214586,
    55.00000076512553,
    0.0,
    0.0,
    1.0]},
  'underground-coal': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B1a_Underground_Coal_Gridded_GHGI_Methane_v2_2020.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Coal Mining - Underground Mining (annual)',
   'proj:bbox': [-129.99999694387628,
    19.99999923487448,
    -60.00000305612369,
    55.00000076512553],
   'proj:epsg': 4326.0,
   'proj:shape': [350.0, 700.0],
   'description': 'Annual methane emissions from active Underground Coal Mining (inventory Energy 1B1a sub-category).',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 1312.8009033203125,
      'min': -9999.0,
      'count': 11.0,
      'buckets': [244819.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 156.0, 25.0]},
     'statistics': {'mean': -9991.5537109375,
      'stddev': 273.90582275390625,
      'maximum': 1312.8009033203125,
      'minimum': -9999.0,
      'valid_percent': 0.0004081632653061224}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-129.99999694387628, 19.99999923487448],
      [-60.00000305612369, 19.99999923487448],
      [-60.00000305612369, 55.00000076512553],
      [-129.99999694387628, 55.00000076512553],
      [-129.99999694387628, 19.99999923487448]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [0.09999999126821799,
    0.0,
    -129.99999694387628,
    0.0,
    -0.10000000437214586,
    55.00000076512553,
    0.0,
    0.0,
    1.0]},
  'manure-management': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_3B_Manure_Management_Gridded_GHGI_Methane_v2_2020.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Agriculture - Manure Management (annual)',
   'proj:bbox': [-129.99999694387628,
    19.99999923487448,
    -60.00000305612369,
    55.00000076512553],
   'proj:epsg': 4326.0,
   'proj:shape': [350.0, 700.0],
   'description': 'Annual methane emissions from livestock manure management (inventory Agriculture category 3B).',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 24.9133243560791,
      'min': -9999.0,
      'count': 11.0,
      'buckets': [161630.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 83370.0]},
     'statistics': {'mean': -6596.38037109375,
      'stddev': 4737.72119140625,
      'maximum': 24.9133243560791,
      'minimum': -9999.0,
      'valid_percent': 0.0004081632653061224}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-129.99999694387628, 19.99999923487448],
      [-60.00000305612369, 19.99999923487448],
      [-60.00000305612369, 55.00000076512553],
      [-129.99999694387628, 55.00000076512553],
      [-129.99999694387628, 19.99999923487448]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [0.09999999126821799,
    0.0,
    -129.99999694387628,
    0.0,
    -0.10000000437214586,
    55.00000076512553,
    0.0,
    0.0,
    1.0]},
  'total-agriculture': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_agriculture_Gridded_GHGI_Methane_v2_2020.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Total Agriculture (annual)',
   'proj:bbox': [-129.99999694387628,
    19.99999923487448,
    -60.00000305612369,
    55.00000076512553],
   'proj:epsg': 4326.0,
   'proj:shape': [350.0, 700.0],
   'description': 'Total annual methane emission fluxes from Agriculture sources (sum of inventory categories: Enteric Fermentation (3A), Manure Management (3B), Rice Cultivation (3C), Field Burning of Agricultural Residues (3F)).',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 64.48854064941406,
      'min': -9999.0,
      'count': 11.0,
      'buckets': [161625.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 83375.0]},
     'statistics': {'mean': -6595.85009765625,
      'stddev': 4738.24462890625,
      'maximum': 64.48854064941406,
      'minimum': -9999.0,
      'valid_percent': 0.0004081632653061224}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-129.99999694387628, 19.99999923487448],
      [-60.00000305612369, 19.99999923487448],
      [-60.00000305612369, 55.00000076512553],
      [-129.99999694387628, 55.00000076512553],
      [-129.99999694387628, 19.99999923487448]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [0.09999999126821799,
    0.0,
    -129.99999694387628,
    0.0,
    -0.10000000437214586,
    55.00000076512553,
    0.0,
    0.0,
    1.0]},
  'msw-landfill-waste': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_5A1_Landfills_MSW_Gridded_GHGI_Methane_v2_2020.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Waste - Municipal Solid Waste (MSW) Landfills (annual)',
   'proj:bbox': [-129.99999694387628,
    19.99999923487448,
    -60.00000305612369,
    55.00000076512553],
   'proj:epsg': 4326.0,
   'proj:shape': [350.0, 700.0],
   'description': 'Annual methane emissions from Municipal Solid Waste Landfills (inventory Waste 5A1 sub-category).',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 381.43365478515625,
      'min': -9999.0,
      'count': 11.0,
      'buckets': [242963.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2037.0]},
     'statistics': {'mean': -9915.712890625,
      'stddev': 909.60986328125,
      'maximum': 381.43365478515625,
      'minimum': -9999.0,
      'valid_percent': 0.0004081632653061224}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-129.99999694387628, 19.99999923487448],
      [-60.00000305612369, 19.99999923487448],
      [-60.00000305612369, 55.00000076512553],
      [-129.99999694387628, 55.00000076512553],
      [-129.99999694387628, 19.99999923487448]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [0.09999999126821799,
    0.0,
    -129.99999694387628,
    0.0,
    -0.10000000437214586,
    55.00000076512553,
    0.0,
    0.0,
    1.0]},
  'abn-underground-coal': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B1a_Abandoned_Coal_Gridded_GHGI_Methane_v2_2020.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Coal Mining - Abandoned Underground Mines (annual)',
   'proj:bbox': [-129.99999694387628,
    19.99999923487448,
    -60.00000305612369,
    55.00000076512553],
   'proj:epsg': 4326.0,
   'proj:shape': [350.0, 700.0],
   'description': 'Annual methane emissions from Abandoned Underground Coal Mines (inventory Energy 1B1a sub-category).',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 92.65714263916016,
      'min': -9999.0,
      'count': 11.0,
      'buckets': [243504.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1496.0]},
     'statistics': {'mean': -9937.9345703125,
      'stddev': 779.0745849609375,
      'maximum': 92.65714263916016,
      'minimum': -9999.0,
      'valid_percent': 0.0004081632653061224}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-129.99999694387628, 19.99999923487448],
      [-60.00000305612369, 19.99999923487448],
      [-60.00000305612369, 55.00000076512553],
      [-129.99999694387628, 55.00000076512553],
      [-129.99999694387628, 19.99999923487448]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [0.09999999126821799,
    0.0,
    -129.99999694387628,
    0.0,
    -0.10000000437214586,
    55.00000076512553,
    0.0,
    0.0,
    1.0]},
  'enteric-fermentation': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_3A_Enteric_Fermentation_Gridded_GHGI_Methane_v2_2020.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Agriculture - Enteric Fermentation (annual)',
   'proj:bbox': [-129.99999694387628,
    19.99999923487448,
    -60.00000305612369,
    55.00000076512553],
   'proj:epsg': 4326.0,
   'proj:shape': [350.0, 700.0],
   'description': 'Annual methane emissions from enteric fermentation which is methane emitted as a by-product of the normal livestock digestive process (inventory Agriculture category 3A).',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 34.75341796875,
      'min': -9999.0,
      'count': 11.0,
      'buckets': [161630.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 83370.0]},
     'statistics': {'mean': -6596.18310546875,
      'stddev': 4737.99560546875,
      'maximum': 34.75341796875,
      'minimum': -9999.0,
      'valid_percent': 0.0004081632653061224}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-129.99999694387628, 19.99999923487448],
      [-60.00000305612369, 19.99999923487448],
      [-60.00000305612369, 55.00000076512553],
      [-129.99999694387628, 55.00000076512553],
      [-129.99999694387628, 19.99999923487448]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [0.09999999126821799,
    0.0,
    -129.99999694387628,
    0.0,
    -0.10000000437214586,
    55.00000076512553,
    0.0,
    0.0,
    1.0]},
  'petro-production-other': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_2B8_Industry_Petrochemical_Gridded_GHGI_Methane_v2_2020.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Other - Petrochemical Production (annual)',
   'proj:bbox': [-129.99999694387628,
    19.99999923487448,
    -60.00000305612369,
    55.00000076512553],
   'proj:epsg': 4326.0,
   'proj:shape': [350.0, 700.0],
   'description': 'Annual methane emissions from Petrochemical Production (inventory Industrial Processes and Product Use category 2B8).',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 39.25223159790039,
      'min': -9999.0,
      'count': 11.0,
      'buckets': [244974.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 26.0]},
     'statistics': {'mean': -9997.9384765625,
      'stddev': 103.04502868652344,
      'maximum': 39.25223159790039,
      'minimum': -9999.0,
      'valid_percent': 0.0004081632653061224}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-129.99999694387628, 19.99999923487448],
      [-60.00000305612369, 19.99999923487448],
      [-60.00000305612369, 55.00000076512553],
      [-129.99999694387628, 55.00000076512553],
      [-129.99999694387628, 19.99999923487448]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [0.09999999126821799,
    0.0,
    -129.99999694387628,
    0.0,
    -0.10000000437214586,
    55.00000076512553,
    0.0,
    0.0,
    1.0]},
  'mobile-combustion-other': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1A_Combustion_Mobile_Gridded_GHGI_Methane_v2_2020.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Other - Mobile Combustion (annual)',
   'proj:bbox': [-129.99999694387628,
    19.99999923487448,
    -60.00000305612369,
    55.00000076512553],
   'proj:epsg': 4326.0,
   'proj:shape': [350.0, 700.0],
   'description': 'Annual methane emissions from Mobile Combustion (inventory Energy 1A sub-category).',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 1.7823798656463623,
      'min': -9999.0,
      'count': 11.0,
      'buckets': [158134.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 86866.0]},
     'statistics': {'mean': -6453.80078125,
      'stddev': 4783.30908203125,
      'maximum': 1.7823798656463623,
      'minimum': -9999.0,
      'valid_percent': 0.0004081632653061224}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-129.99999694387628, 19.99999923487448],
      [-60.00000305612369, 19.99999923487448],
      [-60.00000305612369, 55.00000076512553],
      [-129.99999694387628, 55.00000076512553],
      [-129.99999694387628, 19.99999923487448]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [0.09999999126821799,
    0.0,
    -129.99999694387628,
    0.0,
    -0.10000000437214586,
    55.00000076512553,
    0.0,
    0.0,
    1.0]},
  'total-petroleum-systems': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_petroleum-systems_Gridded_GHGI_Methane_v2_2020.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Total Petroleum Systems (annual)',
   'proj:bbox': [-129.99999694387628,
    19.99999923487448,
    -60.00000305612369,
    55.00000076512553],
   'proj:epsg': 4326.0,
   'proj:shape': [350.0, 700.0],
   'description': 'Total annual methane emission fluxes from Petroleum Systems (sum of inventory Energy 1B2a sub-categories which includes Petroleum Production, Refining, Exploration and Transport).',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 140.2111053466797,
      'min': -9999.0,
      'count': 11.0,
      'buckets': [233456.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11544.0]},
     'statistics': {'mean': -9527.798828125,
      'stddev': 2118.995849609375,
      'maximum': 140.2111053466797,
      'minimum': -9999.0,
      'valid_percent': 0.0004081632653061224}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-129.99999694387628, 19.99999923487448],
      [-60.00000305612369, 19.99999923487448],
      [-60.00000305612369, 55.00000076512553],
      [-129.99999694387628, 55.00000076512553],
      [-129.99999694387628, 19.99999923487448]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [0.09999999126821799,
    0.0,
    -129.99999694387628,
    0.0,
    -0.10000000437214586,
    55.00000076512553,
    0.0,
    0.0,
    1.0]},
  'transmission-storage-ngs': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2b_Natural_Gas_TransmissionStorage_Gridded_GHGI_Methane_v2_2020.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Natural Gas - Transmission and Storage (annual)',
   'proj:bbox': [-129.99999694387628,
    19.99999923487448,
    -60.00000305612369,
    55.00000076512553],
   'proj:epsg': 4326.0,
   'proj:shape': [350.0, 700.0],
   'description': 'Annual methane emissions from Natural Gas Transmission and Storage (inventory Energy 1B2b sub-category).',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 174.0918426513672,
      'min': -9999.0,
      'count': 11.0,
      'buckets': [215921.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 29079.0]},
     'statistics': {'mean': -8812.154296875,
      'stddev': 3234.086669921875,
      'maximum': 174.0918426513672,
      'minimum': -9999.0,
      'valid_percent': 0.0004081632653061224}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-129.99999694387628, 19.99999923487448],
      [-60.00000305612369, 19.99999923487448],
      [-60.00000305612369, 55.00000076512553],
      [-129.99999694387628, 55.00000076512553],
      [-129.99999694387628, 19.99999923487448]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [0.09999999126821799,
    0.0,
    -129.99999694387628,
    0.0,
    -0.10000000437214586,
    55.00000076512553,
    0.0,
    0.0,
    1.0]},
  'industrial-landfill-waste': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_5A1_Landfills_Industrial_Gridded_GHGI_Methane_v2_2020.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Waste - Industrial Landfills (annual)',
   'proj:bbox': [-129.99999694387628,
    19.99999923487448,
    -60.00000305612369,
    55.00000076512553],
   'proj:epsg': 4326.0,
   'proj:shape': [350.0, 700.0],
   'description': 'Annual methane emissions from Industrial Landfills (inventory Waste 5A1 sub-category).',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 362.9629211425781,
      'min': -9999.0,
      'count': 11.0,
      'buckets': [240762.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4238.0]},
     'statistics': {'mean': -9826.0126953125,
      'stddev': 1303.853515625,
      'maximum': 362.9629211425781,
      'minimum': -9999.0,
      'valid_percent': 0.0004081632653061224}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-129.99999694387628, 19.99999923487448],
      [-60.00000305612369, 19.99999923487448],
      [-60.00000305612369, 55.00000076512553],
      [-129.99999694387628, 55.00000076512553],
      [-129.99999694387628, 19.99999923487448]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [0.09999999126821799,
    0.0,
    -129.99999694387628,
    0.0,
    -0.10000000437214586,
    55.00000076512553,
    0.0,
    0.0,
    1.0]},
  'total-natural-gas-systems': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_natural-gas-systems_Gridded_GHGI_Methane_v2_2020.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Total Natural Gas Systems (annual)',
   'proj:bbox': [-129.99999694387628,
    19.99999923487448,
    -60.00000305612369,
    55.00000076512553],
   'proj:epsg': 4326.0,
   'proj:shape': [350.0, 700.0],
   'description': 'Total annual methane emission fluxes from Natural Gas Systems (sum of inventory Energy 1B2b sub-categories which includes Natural Gas Production, Transmission & Storage, Processing, Distribution and Exploration).',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 539.842529296875,
      'min': -9999.0,
      'count': 11.0,
      'buckets': [167033.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 77967.0]},
     'statistics': {'mean': -6816.72021484375,
      'stddev': 4657.83544921875,
      'maximum': 539.842529296875,
      'minimum': -9999.0,
      'valid_percent': 0.0004081632653061224}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-129.99999694387628, 19.99999923487448],
      [-60.00000305612369, 19.99999923487448],
      [-60.00000305612369, 55.00000076512553],
      [-129.99999694387628, 55.00000076512553],
      [-129.99999694387628, 19.99999923487448]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [0.09999999126821799,
    0.0,
    -129.99999694387628,
    0.0,
    -0.10000000437214586,
    55.00000076512553,
    0.0,
    0.0,
    1.0]},
  'ferroalloy-production-other': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_2C2_Industry_Ferroalloy_Gridded_GHGI_Methane_v2_2020.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Other - Ferroalloy Production (annual)',
   'proj:bbox': [-129.99999694387628,
    19.99999923487448,
    -60.00000305612369,
    55.00000076512553],
   'proj:epsg': 4326.0,
   'proj:shape': [350.0, 700.0],
   'description': 'Annual methane emissions from Ferroalloy Production (inventory Industrial Processes and Product Use category 2C2).',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 17.590591430664062,
      'min': -9999.0,
      'count': 11.0,
      'buckets': [244990.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0]},
     'statistics': {'mean': -9998.5908203125,
      'stddev': 63.95193862915039,
      'maximum': 17.590591430664062,
      'minimum': -9999.0,
      'valid_percent': 0.0004081632653061224}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-129.99999694387628, 19.99999923487448],
      [-60.00000305612369, 19.99999923487448],
      [-60.00000305612369, 55.00000076512553],
      [-129.99999694387628, 55.00000076512553],
      [-129.99999694387628, 19.99999923487448]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [0.09999999126821799,
    0.0,
    -129.99999694387628,
    0.0,
    -0.10000000437214586,
    55.00000076512553,
    0.0,
    0.0,
    1.0]},
  'stationary-combustion-other': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1A_Combustion_Stationary_Gridded_GHGI_Methane_v2_2020.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Other - Stationary Combustion (annual)',
   'proj:bbox': [-129.99999694387628,
    19.99999923487448,
    -60.00000305612369,
    55.00000076512553],
   'proj:epsg': 4326.0,
   'proj:shape': [350.0, 700.0],
   'description': 'Annual methane emissions from Stationary Combustion (inventory Energy 1A sub-category).',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 8.104816436767578,
      'min': -9999.0,
      'count': 11.0,
      'buckets': [169107.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 75893.0]},
     'statistics': {'mean': -6901.62255859375,
      'stddev': 4623.533203125,
      'maximum': 8.104816436767578,
      'minimum': -9999.0,
      'valid_percent': 0.0004081632653061224}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-129.99999694387628, 19.99999923487448],
      [-60.00000305612369, 19.99999923487448],
      [-60.00000305612369, 55.00000076512553],
      [-129.99999694387628, 55.00000076512553],
      [-129.99999694387628, 19.99999923487448]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [0.09999999126821799,
    0.0,
    -129.99999694387628,
    0.0,
    -0.10000000437214586,
    55.00000076512553,
    0.0,
    0.0,
    1.0]},
  'rendered_preview': {'title': 'Rendered preview',
   'href': 'https://earth.gov/ghgcenter/api/raster/collections/epa-ch4emission-yeargrid-v2express/items/epa-ch4emission-yeargrid-v2express-2020/preview.png?assets=total-methane&maxzoom=5&minzoom=0&rescale=0%2C20&colormap_name=epa-ghgi-ch4',
   'rel': 'preview',
   'roles': ['overview'],
   'type': 'image/png'}},
 'geometry': {'type': 'Polygon',
  'coordinates': [[[-129.99999694387628, 19.99999923487448],
    [-60.00000305612369, 19.99999923487448],
    [-60.00000305612369, 55.00000076512553],
    [-129.99999694387628, 55.00000076512553],
    [-129.99999694387628, 19.99999923487448]]]},
 'collection': 'epa-ch4emission-yeargrid-v2express',
 'properties': {'datetime': '2020-01-01T00:00:00+00:00'},
 'stac_version': '1.0.0',
 'stac_extensions': ['https://stac-extensions.github.io/projection/v1.0.0/schema.json',
  'https://stac-extensions.github.io/raster/v1.1.0/schema.json']}

Visual Comparison Across Time Periods

In this notebook, you will explore the impacts of methane emissions and by examining changes over time in urban regions. You will visualize the outputs on a map using folium.

# Now we create a dictionary where the start datetime values for each granule is queried more explicitly by year and month (e.g., 2020-02)
items = {item["properties"]["datetime"][:7]: item for item in items} 

# Next, we need to specify the asset name for this collection
# The asset name is referring to the raster band containing the pixel values for the parameter of interest
# For the case of the U.S. Gridded Anthropogenic Methane Emissions Inventory collection, the parameter of interest is “surface-coal”
asset_name = "surface-coal"

Below, you will enter the minimum and maximum values to provide our upper and lower bounds in the rescale_values.

# Fetching the min and max values for a specific item
rescale_values = {"max":items[list(items.keys())[0]]["assets"][asset_name]["raster:bands"][0]["histogram"]["max"], "min":items[list(items.keys())[0]]["assets"][asset_name]["raster:bands"][0]["histogram"]["min"]}
items
{'2020-01': {'id': 'epa-ch4emission-yeargrid-v2express-2020',
  'bbox': [-129.99999694387628,
   19.99999923487448,
   -60.00000305612369,
   55.00000076512553],
  'type': 'Feature',
  'links': [{'rel': 'collection',
    'type': 'application/json',
    'href': 'https://earth.gov/ghgcenter/api/stac/collections/epa-ch4emission-yeargrid-v2express'},
   {'rel': 'parent',
    'type': 'application/json',
    'href': 'https://earth.gov/ghgcenter/api/stac/collections/epa-ch4emission-yeargrid-v2express'},
   {'rel': 'root',
    'type': 'application/json',
    'href': 'https://earth.gov/ghgcenter/api/stac/'},
   {'rel': 'self',
    'type': 'application/geo+json',
    'href': 'https://earth.gov/ghgcenter/api/stac/collections/epa-ch4emission-yeargrid-v2express/items/epa-ch4emission-yeargrid-v2express-2020'},
   {'title': 'Map of Item',
    'href': 'https://earth.gov/ghgcenter/api/raster/collections/epa-ch4emission-yeargrid-v2express/items/epa-ch4emission-yeargrid-v2express-2020/map?assets=total-methane&maxzoom=5&minzoom=0&rescale=0%2C20&colormap_name=epa-ghgi-ch4',
    'rel': 'preview',
    'type': 'text/html'}],
  'assets': {'dwtd-waste': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_5D_Wastewater_Treatment_Domestic_Gridded_GHGI_Methane_v2_2020.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Waste - Domestic Wastewater Treatment & Discharge (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Domestic Wastewater Treatment and Discharge (inventory Waste 5D sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 250.26608276367188,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [169028.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 75972.0]},
      'statistics': {'mean': -6898.392578125,
       'stddev': 4624.86865234375,
       'maximum': 250.26608276367188,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'iwtd-waste': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_5D_Wastewater_Treatment_Industrial_Gridded_GHGI_Methane_v2_2020.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Waste - Industrial Wastewater Treatment & Discharge (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Industrial Wastewater Treatment and Discharge (inventory Waste 5D sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 552.8455200195312,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [244120.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 880.0]},
      'statistics': {'mean': -9963.07421875,
       'stddev': 598.360107421875,
       'maximum': 552.8455200195312,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'post-meter': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_Supp_1B2b_PostMeter_Gridded_GHGI_Methane_v2_2020.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Natural Gas - Post Meter (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions downstream of residential, commercial, industrial natural gas distribution meters (i.e., “Post Meter”) (inventory Energy 1B2b sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 32.81692123413086,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [169110.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 75890.0]},
      'statistics': {'mean': -6901.73974609375,
       'stddev': 4623.49169921875,
       'maximum': 32.81692123413086,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'refining-ps': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2a_Petroleum_Systems_Refining_Gridded_GHGI_Methane_v2_2020.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Petroleum - Refining (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Petroleum Refining (inventory Energy 1B2a sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 22.515766143798828,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [244892.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 108.0]},
      'statistics': {'mean': -9994.5908203125,
       'stddev': 209.9478759765625,
       'maximum': 22.515766143798828,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'total-other': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_other_Gridded_GHGI_Methane_v2_2020.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Total Other (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Total annual methane emission fluxes from ‘Other’ remaining sources (sum of inventory categories 1A (Energy Combustion), 2B8 & 2C2 (Petrochemical & Ferroalloy Production) and 1B2a & 1B2b (Abandoned Oil & Gas Well Emissions)).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 43.67214584350586,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [157503.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 87497.0]},
      'statistics': {'mean': -6428.02197265625,
       'stddev': 4791.09814453125,
       'maximum': 43.67214584350586,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'total-waste': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_waste_Gridded_GHGI_Methane_v2_2020.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Total Waste (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Total annual methane emission fluxes from Waste (sum of inventory Waste categories: Municipal Solid Waste (MSW) and Industrial Landfills (5A1), Composting (5B1), Domestic and Industrial Wastewater Treatment and Discharge (5D)).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 552.9092407226562,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [169000.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 76000.0]},
      'statistics': {'mean': -6897.05615234375,
       'stddev': 4625.62646484375,
       'maximum': 552.9092407226562,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'surface-coal': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B1a_Surface_Coal_Gridded_GHGI_Methane_v2_2020.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Coal Mining - Surface Mining (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from active Surface Coal Mining (inventory Energy 1B1a sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 569.109130859375,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [244705.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 295.0]},
      'statistics': {'mean': -9986.9501953125,
       'stddev': 347.0617370605469,
       'maximum': 569.109130859375,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'transport-ps': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2a_Petroleum_Systems_Transport_Gridded_GHGI_Methane_v2_2020.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Petroleum - Transportation (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Petroleum Transportation (inventory Energy 1B2a sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 2.4141974449157715,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [233570.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11430.0]},
      'statistics': {'mean': -9532.515625,
       'stddev': 2108.737060546875,
       'maximum': 2.4141974449157715,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'abn-ong-other': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2ab_Abandoned_Oil_Gas_Gridded_GHGI_Methane_v2_2020.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Other - Abandoned Oil and Gas Wells (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Abandoned Oil and Gas Wells (inventory Energy 1B2a and 1B2b sub-categories).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 35.77754211425781,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [213344.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 31656.0]},
      'statistics': {'mean': -8707.0361328125,
       'stddev': 3353.996337890625,
       'maximum': 35.77754211425781,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'field-burning': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_3F_Field_Burning_Gridded_GHGI_Methane_v2_2020.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Agriculture - Field Burning (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from field burning of agricultural residues (inventory Agriculture category 3F).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 0.24409635365009308,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [225969.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 19031.0]},
      'statistics': {'mean': -9222.2998046875,
       'stddev': 2676.369873046875,
       'maximum': 0.24409635365009308,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'production-ps': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2a_Petroleum_Systems_Production_Gridded_GHGI_Methane_v2_2020.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Petroleum - Production (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Petroleum Production (inventory Energy 1B2a sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 140.06321716308594,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [233515.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11485.0]},
      'statistics': {'mean': -9530.2080078125,
       'stddev': 2113.833251953125,
       'maximum': 140.06321716308594,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'total-methane': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_all-variables_Gridded_GHGI_Methane_v2_2020.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Total Methane (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Total annual methane emission fluxes from all Agriculture, Energy, Waste, and ‘Other’ sources included in this dataset.',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 1317.5279541015625,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [153603.0,
        0.0,
        0.0,
        0.0,
        0.0,
        0.0,
        0.0,
        0.0,
        91349.0,
        48.0]},
      'statistics': {'mean': -6267.79736328125,
       'stddev': 4837.07958984375,
       'maximum': 1317.5279541015625,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'exploration-ps': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2a_Petroleum_Systems_Exploration_Gridded_GHGI_Methane_v2_2020.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Petroleum - Exploration (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Petroleum Exploration (inventory Energy 1B2a sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 1.2649693489074707,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [233941.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11059.0]},
      'statistics': {'mean': -9547.6572265625,
       'stddev': 2075.879150390625,
       'maximum': 1.2649693489074707,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'processing-ngs': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2b_Natural_Gas_Processing_Gridded_GHGI_Methane_v2_2020.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Natural Gas - Processing (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Natural Gas Processing (inventory Energy 1B2b sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 535.3031005859375,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [244329.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 671.0]},
      'statistics': {'mean': -9971.5947265625,
       'stddev': 522.9393920898438,
       'maximum': 535.3031005859375,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'production-ngs': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2b_Natural_Gas_Production_Gridded_GHGI_Methane_v2_2020.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Natural Gas - Production (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Natural Gas Production (inventory Energy 1B2b sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 190.11717224121094,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [232277.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12723.0]},
      'statistics': {'mean': -9479.6015625,
       'stddev': 2219.260498046875,
       'maximum': 190.11717224121094,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'exploration-ngs': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2b_Natural_Gas_Exploration_Gridded_GHGI_Methane_v2_2020.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Natural Gas - Exploration (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Natural Gas Exploration (inventory Energy 1B2b sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 3.1922497749328613,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [235806.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9194.0]},
      'statistics': {'mean': -9623.7705078125,
       'stddev': 1900.2930908203125,
       'maximum': 3.1922497749328613,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'composting-waste': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_5B1_Composting_Gridded_GHGI_Methane_v2_2020.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Waste - Composting (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Composting (inventory Waste category 5B1).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 5.681565761566162,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [241655.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3345.0]},
      'statistics': {'mean': -9862.478515625,
       'stddev': 1160.3760986328125,
       'maximum': 5.681565761566162,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'distribution-ngs': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2b_Natural_Gas_Distribution_Gridded_GHGI_Methane_v2_2020.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Natural Gas - Distribution (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Natural Gas Distribution (inventory Energy 1B2b sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 32.086830139160156,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [169148.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 75852.0]},
      'statistics': {'mean': -6903.2861328125,
       'stddev': 4622.859375,
       'maximum': 32.086830139160156,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'rice-cultivation': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_3C_Rice_Cultivation_Gridded_GHGI_Methane_v2_2020.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Agriculture - Rice Cultivation (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from rice cultivation (inventory Agriculture category 3C).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 62.76310348510742,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [239929.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5071.0]},
      'statistics': {'mean': -9792.015625,
       'stddev': 1423.7451171875,
       'maximum': 62.76310348510742,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'total-coal-mines': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_coal-mines_Gridded_GHGI_Methane_v2_2020.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Total Coal Mines (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Total annual methane emission fluxes from Coal Mines (sum of inventory 1B1a sub-categories which includes Underground Coal Mining, Surface Coal Mining and Abandoned Underground Coal Mines).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 1312.8009033203125,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [243327.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1644.0, 29.0]},
      'statistics': {'mean': -9930.6416015625,
       'stddev': 824.4235229492188,
       'maximum': 1312.8009033203125,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'underground-coal': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B1a_Underground_Coal_Gridded_GHGI_Methane_v2_2020.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Coal Mining - Underground Mining (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from active Underground Coal Mining (inventory Energy 1B1a sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 1312.8009033203125,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [244819.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 156.0, 25.0]},
      'statistics': {'mean': -9991.5537109375,
       'stddev': 273.90582275390625,
       'maximum': 1312.8009033203125,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'manure-management': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_3B_Manure_Management_Gridded_GHGI_Methane_v2_2020.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Agriculture - Manure Management (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from livestock manure management (inventory Agriculture category 3B).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 24.9133243560791,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [161630.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 83370.0]},
      'statistics': {'mean': -6596.38037109375,
       'stddev': 4737.72119140625,
       'maximum': 24.9133243560791,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'total-agriculture': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_agriculture_Gridded_GHGI_Methane_v2_2020.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Total Agriculture (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Total annual methane emission fluxes from Agriculture sources (sum of inventory categories: Enteric Fermentation (3A), Manure Management (3B), Rice Cultivation (3C), Field Burning of Agricultural Residues (3F)).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 64.48854064941406,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [161625.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 83375.0]},
      'statistics': {'mean': -6595.85009765625,
       'stddev': 4738.24462890625,
       'maximum': 64.48854064941406,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'msw-landfill-waste': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_5A1_Landfills_MSW_Gridded_GHGI_Methane_v2_2020.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Waste - Municipal Solid Waste (MSW) Landfills (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Municipal Solid Waste Landfills (inventory Waste 5A1 sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 381.43365478515625,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [242963.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2037.0]},
      'statistics': {'mean': -9915.712890625,
       'stddev': 909.60986328125,
       'maximum': 381.43365478515625,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'abn-underground-coal': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B1a_Abandoned_Coal_Gridded_GHGI_Methane_v2_2020.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Coal Mining - Abandoned Underground Mines (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Abandoned Underground Coal Mines (inventory Energy 1B1a sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 92.65714263916016,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [243504.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1496.0]},
      'statistics': {'mean': -9937.9345703125,
       'stddev': 779.0745849609375,
       'maximum': 92.65714263916016,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'enteric-fermentation': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_3A_Enteric_Fermentation_Gridded_GHGI_Methane_v2_2020.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Agriculture - Enteric Fermentation (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from enteric fermentation which is methane emitted as a by-product of the normal livestock digestive process (inventory Agriculture category 3A).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 34.75341796875,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [161630.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 83370.0]},
      'statistics': {'mean': -6596.18310546875,
       'stddev': 4737.99560546875,
       'maximum': 34.75341796875,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'petro-production-other': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_2B8_Industry_Petrochemical_Gridded_GHGI_Methane_v2_2020.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Other - Petrochemical Production (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Petrochemical Production (inventory Industrial Processes and Product Use category 2B8).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 39.25223159790039,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [244974.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 26.0]},
      'statistics': {'mean': -9997.9384765625,
       'stddev': 103.04502868652344,
       'maximum': 39.25223159790039,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'mobile-combustion-other': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1A_Combustion_Mobile_Gridded_GHGI_Methane_v2_2020.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Other - Mobile Combustion (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Mobile Combustion (inventory Energy 1A sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 1.7823798656463623,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [158134.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 86866.0]},
      'statistics': {'mean': -6453.80078125,
       'stddev': 4783.30908203125,
       'maximum': 1.7823798656463623,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'total-petroleum-systems': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_petroleum-systems_Gridded_GHGI_Methane_v2_2020.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Total Petroleum Systems (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Total annual methane emission fluxes from Petroleum Systems (sum of inventory Energy 1B2a sub-categories which includes Petroleum Production, Refining, Exploration and Transport).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 140.2111053466797,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [233456.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11544.0]},
      'statistics': {'mean': -9527.798828125,
       'stddev': 2118.995849609375,
       'maximum': 140.2111053466797,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'transmission-storage-ngs': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2b_Natural_Gas_TransmissionStorage_Gridded_GHGI_Methane_v2_2020.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Natural Gas - Transmission and Storage (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Natural Gas Transmission and Storage (inventory Energy 1B2b sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 174.0918426513672,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [215921.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 29079.0]},
      'statistics': {'mean': -8812.154296875,
       'stddev': 3234.086669921875,
       'maximum': 174.0918426513672,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'industrial-landfill-waste': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_5A1_Landfills_Industrial_Gridded_GHGI_Methane_v2_2020.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Waste - Industrial Landfills (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Industrial Landfills (inventory Waste 5A1 sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 362.9629211425781,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [240762.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4238.0]},
      'statistics': {'mean': -9826.0126953125,
       'stddev': 1303.853515625,
       'maximum': 362.9629211425781,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'total-natural-gas-systems': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_natural-gas-systems_Gridded_GHGI_Methane_v2_2020.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Total Natural Gas Systems (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Total annual methane emission fluxes from Natural Gas Systems (sum of inventory Energy 1B2b sub-categories which includes Natural Gas Production, Transmission & Storage, Processing, Distribution and Exploration).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 539.842529296875,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [167033.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 77967.0]},
      'statistics': {'mean': -6816.72021484375,
       'stddev': 4657.83544921875,
       'maximum': 539.842529296875,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'ferroalloy-production-other': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_2C2_Industry_Ferroalloy_Gridded_GHGI_Methane_v2_2020.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Other - Ferroalloy Production (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Ferroalloy Production (inventory Industrial Processes and Product Use category 2C2).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 17.590591430664062,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [244990.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0]},
      'statistics': {'mean': -9998.5908203125,
       'stddev': 63.95193862915039,
       'maximum': 17.590591430664062,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'stationary-combustion-other': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1A_Combustion_Stationary_Gridded_GHGI_Methane_v2_2020.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Other - Stationary Combustion (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Stationary Combustion (inventory Energy 1A sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 8.104816436767578,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [169107.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 75893.0]},
      'statistics': {'mean': -6901.62255859375,
       'stddev': 4623.533203125,
       'maximum': 8.104816436767578,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'rendered_preview': {'title': 'Rendered preview',
    'href': 'https://earth.gov/ghgcenter/api/raster/collections/epa-ch4emission-yeargrid-v2express/items/epa-ch4emission-yeargrid-v2express-2020/preview.png?assets=total-methane&maxzoom=5&minzoom=0&rescale=0%2C20&colormap_name=epa-ghgi-ch4',
    'rel': 'preview',
    'roles': ['overview'],
    'type': 'image/png'}},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-129.99999694387628, 19.99999923487448],
     [-60.00000305612369, 19.99999923487448],
     [-60.00000305612369, 55.00000076512553],
     [-129.99999694387628, 55.00000076512553],
     [-129.99999694387628, 19.99999923487448]]]},
  'collection': 'epa-ch4emission-yeargrid-v2express',
  'properties': {'datetime': '2020-01-01T00:00:00+00:00'},
  'stac_version': '1.0.0',
  'stac_extensions': ['https://stac-extensions.github.io/projection/v1.0.0/schema.json',
   'https://stac-extensions.github.io/raster/v1.1.0/schema.json']},
 '2019-01': {'id': 'epa-ch4emission-yeargrid-v2express-2019',
  'bbox': [-129.99999694387628,
   19.99999923487448,
   -60.00000305612369,
   55.00000076512553],
  'type': 'Feature',
  'links': [{'rel': 'collection',
    'type': 'application/json',
    'href': 'https://earth.gov/ghgcenter/api/stac/collections/epa-ch4emission-yeargrid-v2express'},
   {'rel': 'parent',
    'type': 'application/json',
    'href': 'https://earth.gov/ghgcenter/api/stac/collections/epa-ch4emission-yeargrid-v2express'},
   {'rel': 'root',
    'type': 'application/json',
    'href': 'https://earth.gov/ghgcenter/api/stac/'},
   {'rel': 'self',
    'type': 'application/geo+json',
    'href': 'https://earth.gov/ghgcenter/api/stac/collections/epa-ch4emission-yeargrid-v2express/items/epa-ch4emission-yeargrid-v2express-2019'},
   {'title': 'Map of Item',
    'href': 'https://earth.gov/ghgcenter/api/raster/collections/epa-ch4emission-yeargrid-v2express/items/epa-ch4emission-yeargrid-v2express-2019/map?assets=total-methane&maxzoom=5&minzoom=0&rescale=0%2C20&colormap_name=epa-ghgi-ch4',
    'rel': 'preview',
    'type': 'text/html'}],
  'assets': {'dwtd-waste': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_5D_Wastewater_Treatment_Domestic_Gridded_GHGI_Methane_v2_2019.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Waste - Domestic Wastewater Treatment & Discharge (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Domestic Wastewater Treatment and Discharge (inventory Waste 5D sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 259.6906433105469,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [169028.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 75972.0]},
      'statistics': {'mean': -6898.392578125,
       'stddev': 4624.86767578125,
       'maximum': 259.6906433105469,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'iwtd-waste': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_5D_Wastewater_Treatment_Industrial_Gridded_GHGI_Methane_v2_2019.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Waste - Industrial Wastewater Treatment & Discharge (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Industrial Wastewater Treatment and Discharge (inventory Waste 5D sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 546.7366333007812,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [244120.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 880.0]},
      'statistics': {'mean': -9963.07421875,
       'stddev': 598.359375,
       'maximum': 546.7366333007812,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'post-meter': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_Supp_1B2b_PostMeter_Gridded_GHGI_Methane_v2_2019.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Natural Gas - Post Meter (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions downstream of residential, commercial, industrial natural gas distribution meters (i.e., “Post Meter”) (inventory Energy 1B2b sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 33.75249099731445,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [169110.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 75890.0]},
      'statistics': {'mean': -6901.73974609375,
       'stddev': 4623.4912109375,
       'maximum': 33.75249099731445,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'refining-ps': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2a_Petroleum_Systems_Refining_Gridded_GHGI_Methane_v2_2019.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Petroleum - Refining (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Petroleum Refining (inventory Energy 1B2a sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 25.954729080200195,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [244892.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 108.0]},
      'statistics': {'mean': -9994.5908203125,
       'stddev': 209.9568634033203,
       'maximum': 25.954729080200195,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'total-other': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_other_Gridded_GHGI_Methane_v2_2019.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Total Other (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Total annual methane emission fluxes from ‘Other’ remaining sources (sum of inventory categories 1A (Energy Combustion), 2B8 & 2C2 (Petrochemical & Ferroalloy Production) and 1B2a & 1B2b (Abandoned Oil & Gas Well Emissions)).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 47.795475006103516,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [157503.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 87497.0]},
      'statistics': {'mean': -6428.01904296875,
       'stddev': 4791.1015625,
       'maximum': 47.795475006103516,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'total-waste': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_waste_Gridded_GHGI_Methane_v2_2019.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Total Waste (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Total annual methane emission fluxes from Waste (sum of inventory Waste categories: Municipal Solid Waste (MSW) and Industrial Landfills (5A1), Composting (5B1), Domestic and Industrial Wastewater Treatment and Discharge (5D)).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 546.7963256835938,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [169000.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 76000.0]},
      'statistics': {'mean': -6897.05029296875,
       'stddev': 4625.63623046875,
       'maximum': 546.7963256835938,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'surface-coal': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B1a_Surface_Coal_Gridded_GHGI_Methane_v2_2019.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Coal Mining - Surface Mining (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from active Surface Coal Mining (inventory Energy 1B1a sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 748.3150024414062,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [244705.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 295.0]},
      'statistics': {'mean': -9986.9462890625,
       'stddev': 347.1594543457031,
       'maximum': 748.3150024414062,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'transport-ps': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2a_Petroleum_Systems_Transport_Gridded_GHGI_Methane_v2_2019.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Petroleum - Transportation (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Petroleum Transportation (inventory Energy 1B2a sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 2.6680405139923096,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [233570.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11430.0]},
      'statistics': {'mean': -9532.515625,
       'stddev': 2108.737060546875,
       'maximum': 2.6680405139923096,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'abn-ong-other': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2ab_Abandoned_Oil_Gas_Gridded_GHGI_Methane_v2_2019.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Other - Abandoned Oil and Gas Wells (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Abandoned Oil and Gas Wells (inventory Energy 1B2a and 1B2b sub-categories).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 36.12725830078125,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [213344.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 31656.0]},
      'statistics': {'mean': -8707.0361328125,
       'stddev': 3353.996337890625,
       'maximum': 36.12725830078125,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'field-burning': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_3F_Field_Burning_Gridded_GHGI_Methane_v2_2019.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Agriculture - Field Burning (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from field burning of agricultural residues (inventory Agriculture category 3F).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 0.24124547839164734,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [225969.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 19031.0]},
      'statistics': {'mean': -9222.2998046875,
       'stddev': 2676.369873046875,
       'maximum': 0.24124547839164734,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'production-ps': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2a_Petroleum_Systems_Production_Gridded_GHGI_Methane_v2_2019.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Petroleum - Production (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Petroleum Production (inventory Energy 1B2a sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 128.49893188476562,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [233515.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11485.0]},
      'statistics': {'mean': -9530.2080078125,
       'stddev': 2113.8330078125,
       'maximum': 128.49893188476562,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'total-methane': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_all-variables_Gridded_GHGI_Methane_v2_2019.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Total Methane (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Total annual methane emission fluxes from all Agriculture, Energy, Waste, and ‘Other’ sources included in this dataset.',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 1476.3248291015625,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [153603.0,
        0.0,
        0.0,
        0.0,
        0.0,
        0.0,
        0.0,
        0.0,
        91371.0,
        26.0]},
      'statistics': {'mean': -6267.7666015625,
       'stddev': 4837.12109375,
       'maximum': 1476.3248291015625,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'exploration-ps': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2a_Petroleum_Systems_Exploration_Gridded_GHGI_Methane_v2_2019.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Petroleum - Exploration (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Petroleum Exploration (inventory Energy 1B2a sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 1.7577203512191772,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [233941.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11059.0]},
      'statistics': {'mean': -9547.6572265625,
       'stddev': 2075.8798828125,
       'maximum': 1.7577203512191772,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'processing-ngs': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2b_Natural_Gas_Processing_Gridded_GHGI_Methane_v2_2019.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Natural Gas - Processing (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Natural Gas Processing (inventory Energy 1B2b sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 546.4526977539062,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [244329.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 671.0]},
      'statistics': {'mean': -9971.59375,
       'stddev': 522.947265625,
       'maximum': 546.4526977539062,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'production-ngs': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2b_Natural_Gas_Production_Gridded_GHGI_Methane_v2_2019.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Natural Gas - Production (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Natural Gas Production (inventory Energy 1B2b sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 215.4100799560547,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [232277.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12723.0]},
      'statistics': {'mean': -9479.5908203125,
       'stddev': 2219.306396484375,
       'maximum': 215.4100799560547,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'exploration-ngs': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2b_Natural_Gas_Exploration_Gridded_GHGI_Methane_v2_2019.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Natural Gas - Exploration (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Natural Gas Exploration (inventory Energy 1B2b sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 469.3768615722656,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [235806.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9194.0]},
      'statistics': {'mean': -9623.7685546875,
       'stddev': 1900.3067626953125,
       'maximum': 469.3768615722656,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'composting-waste': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_5B1_Composting_Gridded_GHGI_Methane_v2_2019.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Waste - Composting (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Composting (inventory Waste category 5B1).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 5.681565761566162,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [241655.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3345.0]},
      'statistics': {'mean': -9862.478515625,
       'stddev': 1160.3760986328125,
       'maximum': 5.681565761566162,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'distribution-ngs': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2b_Natural_Gas_Distribution_Gridded_GHGI_Methane_v2_2019.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Natural Gas - Distribution (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Natural Gas Distribution (inventory Energy 1B2b sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 32.444305419921875,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [169148.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 75852.0]},
      'statistics': {'mean': -6903.2861328125,
       'stddev': 4622.859375,
       'maximum': 32.444305419921875,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'rice-cultivation': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_3C_Rice_Cultivation_Gridded_GHGI_Methane_v2_2019.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Agriculture - Rice Cultivation (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from rice cultivation (inventory Agriculture category 3C).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 60.05049514770508,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [239929.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5071.0]},
      'statistics': {'mean': -9792.015625,
       'stddev': 1423.737548828125,
       'maximum': 60.05049514770508,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'total-coal-mines': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_coal-mines_Gridded_GHGI_Methane_v2_2019.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Total Coal Mines (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Total annual methane emission fluxes from Coal Mines (sum of inventory 1B1a sub-categories which includes Underground Coal Mining, Surface Coal Mining and Abandoned Underground Coal Mines).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 1470.9576416015625,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [243327.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1655.0, 18.0]},
      'statistics': {'mean': -9930.6318359375,
       'stddev': 824.5597534179688,
       'maximum': 1470.9576416015625,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'underground-coal': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B1a_Underground_Coal_Gridded_GHGI_Methane_v2_2019.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Coal Mining - Underground Mining (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from active Underground Coal Mining (inventory Energy 1B1a sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 1470.9576416015625,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [244819.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 164.0, 17.0]},
      'statistics': {'mean': -9991.5458984375,
       'stddev': 274.185302734375,
       'maximum': 1470.9576416015625,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'manure-management': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_3B_Manure_Management_Gridded_GHGI_Methane_v2_2019.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Agriculture - Manure Management (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from livestock manure management (inventory Agriculture category 3B).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 24.54741668701172,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [161630.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 83370.0]},
      'statistics': {'mean': -6596.3818359375,
       'stddev': 4737.71875,
       'maximum': 24.54741668701172,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'total-agriculture': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_agriculture_Gridded_GHGI_Methane_v2_2019.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Total Agriculture (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Total annual methane emission fluxes from Agriculture sources (sum of inventory categories: Enteric Fermentation (3A), Manure Management (3B), Rice Cultivation (3C), Field Burning of Agricultural Residues (3F)).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 61.77078628540039,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [161625.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 83375.0]},
      'statistics': {'mean': -6595.85107421875,
       'stddev': 4738.2431640625,
       'maximum': 61.77078628540039,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'msw-landfill-waste': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_5A1_Landfills_MSW_Gridded_GHGI_Methane_v2_2019.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Waste - Municipal Solid Waste (MSW) Landfills (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Municipal Solid Waste Landfills (inventory Waste 5A1 sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 399.14886474609375,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [242963.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2037.0]},
      'statistics': {'mean': -9915.705078125,
       'stddev': 909.6876220703125,
       'maximum': 399.14886474609375,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'abn-underground-coal': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B1a_Abandoned_Coal_Gridded_GHGI_Methane_v2_2019.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Coal Mining - Abandoned Underground Mines (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Abandoned Underground Coal Mines (inventory Energy 1B1a sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 94.96485900878906,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [243504.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1496.0]},
      'statistics': {'mean': -9937.9345703125,
       'stddev': 779.0776977539062,
       'maximum': 94.96485900878906,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'enteric-fermentation': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_3A_Enteric_Fermentation_Gridded_GHGI_Methane_v2_2019.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Agriculture - Enteric Fermentation (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from enteric fermentation which is methane emitted as a by-product of the normal livestock digestive process (inventory Agriculture category 3A).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 34.94684982299805,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [161630.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 83370.0]},
      'statistics': {'mean': -6596.18115234375,
       'stddev': 4737.99853515625,
       'maximum': 34.94684982299805,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'petro-production-other': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_2B8_Industry_Petrochemical_Gridded_GHGI_Methane_v2_2019.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Other - Petrochemical Production (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Petrochemical Production (inventory Industrial Processes and Product Use category 2B8).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 43.28406524658203,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [244974.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 26.0]},
      'statistics': {'mean': -9997.9375,
       'stddev': 103.04966735839844,
       'maximum': 43.28406524658203,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'mobile-combustion-other': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1A_Combustion_Mobile_Gridded_GHGI_Methane_v2_2019.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Other - Mobile Combustion (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Mobile Combustion (inventory Energy 1A sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 2.1038007736206055,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [158134.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 86866.0]},
      'statistics': {'mean': -6453.7998046875,
       'stddev': 4783.31005859375,
       'maximum': 2.1038007736206055,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'total-petroleum-systems': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_petroleum-systems_Gridded_GHGI_Methane_v2_2019.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Total Petroleum Systems (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Total annual methane emission fluxes from Petroleum Systems (sum of inventory Energy 1B2a sub-categories which includes Petroleum Production, Refining, Exploration and Transport).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 128.6352996826172,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [233456.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11544.0]},
      'statistics': {'mean': -9527.796875,
       'stddev': 2118.997314453125,
       'maximum': 128.6352996826172,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'transmission-storage-ngs': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2b_Natural_Gas_TransmissionStorage_Gridded_GHGI_Methane_v2_2019.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Natural Gas - Transmission and Storage (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Natural Gas Transmission and Storage (inventory Energy 1B2b sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 181.0616455078125,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [215921.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 29079.0]},
      'statistics': {'mean': -8812.1572265625,
       'stddev': 3234.08203125,
       'maximum': 181.0616455078125,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'industrial-landfill-waste': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_5A1_Landfills_Industrial_Gridded_GHGI_Methane_v2_2019.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Waste - Industrial Landfills (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Industrial Landfills (inventory Waste 5A1 sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 361.1631164550781,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [240762.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4238.0]},
      'statistics': {'mean': -9826.0126953125,
       'stddev': 1303.8525390625,
       'maximum': 361.1631164550781,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'total-natural-gas-systems': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_natural-gas-systems_Gridded_GHGI_Methane_v2_2019.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Total Natural Gas Systems (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Total annual methane emission fluxes from Natural Gas Systems (sum of inventory Energy 1B2b sub-categories which includes Natural Gas Production, Transmission & Storage, Processing, Distribution and Exploration).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 550.9807739257812,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [167033.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 77967.0]},
      'statistics': {'mean': -6816.708984375,
       'stddev': 4657.85302734375,
       'maximum': 550.9807739257812,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'ferroalloy-production-other': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_2C2_Industry_Ferroalloy_Gridded_GHGI_Methane_v2_2019.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Other - Ferroalloy Production (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Ferroalloy Production (inventory Industrial Processes and Product Use category 2C2).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 19.397430419921875,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [244990.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0]},
      'statistics': {'mean': -9998.5908203125,
       'stddev': 63.95933532714844,
       'maximum': 19.397430419921875,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'stationary-combustion-other': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1A_Combustion_Stationary_Gridded_GHGI_Methane_v2_2019.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Other - Stationary Combustion (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Stationary Combustion (inventory Energy 1A sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 8.471172332763672,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [169107.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 75893.0]},
      'statistics': {'mean': -6901.62109375,
       'stddev': 4623.53564453125,
       'maximum': 8.471172332763672,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'rendered_preview': {'title': 'Rendered preview',
    'href': 'https://earth.gov/ghgcenter/api/raster/collections/epa-ch4emission-yeargrid-v2express/items/epa-ch4emission-yeargrid-v2express-2019/preview.png?assets=total-methane&maxzoom=5&minzoom=0&rescale=0%2C20&colormap_name=epa-ghgi-ch4',
    'rel': 'preview',
    'roles': ['overview'],
    'type': 'image/png'}},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-129.99999694387628, 19.99999923487448],
     [-60.00000305612369, 19.99999923487448],
     [-60.00000305612369, 55.00000076512553],
     [-129.99999694387628, 55.00000076512553],
     [-129.99999694387628, 19.99999923487448]]]},
  'collection': 'epa-ch4emission-yeargrid-v2express',
  'properties': {'datetime': '2019-01-01T00:00:00+00:00'},
  'stac_version': '1.0.0',
  'stac_extensions': ['https://stac-extensions.github.io/projection/v1.0.0/schema.json',
   'https://stac-extensions.github.io/raster/v1.1.0/schema.json']},
 '2018-01': {'id': 'epa-ch4emission-yeargrid-v2express-2018',
  'bbox': [-129.99999694387628,
   19.99999923487448,
   -60.00000305612369,
   55.00000076512553],
  'type': 'Feature',
  'links': [{'rel': 'collection',
    'type': 'application/json',
    'href': 'https://earth.gov/ghgcenter/api/stac/collections/epa-ch4emission-yeargrid-v2express'},
   {'rel': 'parent',
    'type': 'application/json',
    'href': 'https://earth.gov/ghgcenter/api/stac/collections/epa-ch4emission-yeargrid-v2express'},
   {'rel': 'root',
    'type': 'application/json',
    'href': 'https://earth.gov/ghgcenter/api/stac/'},
   {'rel': 'self',
    'type': 'application/geo+json',
    'href': 'https://earth.gov/ghgcenter/api/stac/collections/epa-ch4emission-yeargrid-v2express/items/epa-ch4emission-yeargrid-v2express-2018'},
   {'title': 'Map of Item',
    'href': 'https://earth.gov/ghgcenter/api/raster/collections/epa-ch4emission-yeargrid-v2express/items/epa-ch4emission-yeargrid-v2express-2018/map?assets=total-methane&maxzoom=5&minzoom=0&rescale=0%2C20&colormap_name=epa-ghgi-ch4',
    'rel': 'preview',
    'type': 'text/html'}],
  'assets': {'dwtd-waste': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_5D_Wastewater_Treatment_Domestic_Gridded_GHGI_Methane_v2_2018.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Waste - Domestic Wastewater Treatment & Discharge (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Domestic Wastewater Treatment and Discharge (inventory Waste 5D sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 266.81304931640625,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [169028.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 75972.0]},
      'statistics': {'mean': -6898.3916015625,
       'stddev': 4624.869140625,
       'maximum': 266.81304931640625,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'iwtd-waste': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_5D_Wastewater_Treatment_Industrial_Gridded_GHGI_Methane_v2_2018.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Waste - Industrial Wastewater Treatment & Discharge (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Industrial Wastewater Treatment and Discharge (inventory Waste 5D sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 532.082275390625,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [244120.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 880.0]},
      'statistics': {'mean': -9963.07421875,
       'stddev': 598.3563842773438,
       'maximum': 532.082275390625,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'post-meter': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_Supp_1B2b_PostMeter_Gridded_GHGI_Methane_v2_2018.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Natural Gas - Post Meter (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions downstream of residential, commercial, industrial natural gas distribution meters (i.e., “Post Meter”) (inventory Energy 1B2b sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 33.33045196533203,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [169110.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 75890.0]},
      'statistics': {'mean': -6901.74072265625,
       'stddev': 4623.4912109375,
       'maximum': 33.33045196533203,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'refining-ps': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2a_Petroleum_Systems_Refining_Gridded_GHGI_Methane_v2_2018.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Petroleum - Refining (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Petroleum Refining (inventory Energy 1B2a sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 22.483346939086914,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [244892.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 108.0]},
      'statistics': {'mean': -9994.5908203125,
       'stddev': 209.94778442382812,
       'maximum': 22.483346939086914,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'total-other': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_other_Gridded_GHGI_Methane_v2_2018.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Total Other (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Total annual methane emission fluxes from ‘Other’ remaining sources (sum of inventory categories 1A (Energy Combustion), 2B8 & 2C2 (Petrochemical & Ferroalloy Production) and 1B2a & 1B2b (Abandoned Oil & Gas Well Emissions)).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 43.8990478515625,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [157503.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 87497.0]},
      'statistics': {'mean': -6428.02001953125,
       'stddev': 4791.10009765625,
       'maximum': 43.8990478515625,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'total-waste': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_waste_Gridded_GHGI_Methane_v2_2018.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Total Waste (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Total annual methane emission fluxes from Waste (sum of inventory Waste categories: Municipal Solid Waste (MSW) and Industrial Landfills (5A1), Composting (5B1), Domestic and Industrial Wastewater Treatment and Discharge (5D)).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 532.1444091796875,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [169000.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 76000.0]},
      'statistics': {'mean': -6897.05322265625,
       'stddev': 4625.6318359375,
       'maximum': 532.1444091796875,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'surface-coal': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B1a_Surface_Coal_Gridded_GHGI_Methane_v2_2018.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Coal Mining - Surface Mining (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from active Surface Coal Mining (inventory Energy 1B1a sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 821.3478393554688,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [244705.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 295.0]},
      'statistics': {'mean': -9986.9443359375,
       'stddev': 347.19940185546875,
       'maximum': 821.3478393554688,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'transport-ps': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2a_Petroleum_Systems_Transport_Gridded_GHGI_Methane_v2_2018.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Petroleum - Transportation (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Petroleum Transportation (inventory Energy 1B2a sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 2.7061657905578613,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [233570.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11430.0]},
      'statistics': {'mean': -9532.515625,
       'stddev': 2108.737060546875,
       'maximum': 2.7061657905578613,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'abn-ong-other': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2ab_Abandoned_Oil_Gas_Gridded_GHGI_Methane_v2_2018.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Other - Abandoned Oil and Gas Wells (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Abandoned Oil and Gas Wells (inventory Energy 1B2a and 1B2b sub-categories).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 35.97785949707031,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [213344.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 31656.0]},
      'statistics': {'mean': -8707.0361328125,
       'stddev': 3353.996337890625,
       'maximum': 35.97785949707031,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'field-burning': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_3F_Field_Burning_Gridded_GHGI_Methane_v2_2018.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Agriculture - Field Burning (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from field burning of agricultural residues (inventory Agriculture category 3F).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 0.24458743631839752,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [225969.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 19031.0]},
      'statistics': {'mean': -9222.2998046875,
       'stddev': 2676.369873046875,
       'maximum': 0.24458743631839752,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'production-ps': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2a_Petroleum_Systems_Production_Gridded_GHGI_Methane_v2_2018.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Petroleum - Production (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Petroleum Production (inventory Energy 1B2a sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 127.7465591430664,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [233515.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11485.0]},
      'statistics': {'mean': -9530.2119140625,
       'stddev': 2113.82080078125,
       'maximum': 127.7465591430664,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'total-methane': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_all-variables_Gridded_GHGI_Methane_v2_2018.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Total Methane (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Total annual methane emission fluxes from all Agriculture, Energy, Waste, and ‘Other’ sources included in this dataset.',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 1648.813232421875,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [153603.0,
        0.0,
        0.0,
        0.0,
        0.0,
        0.0,
        0.0,
        0.0,
        91384.0,
        13.0]},
      'statistics': {'mean': -6267.7626953125,
       'stddev': 4837.12841796875,
       'maximum': 1648.813232421875,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'exploration-ps': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2a_Petroleum_Systems_Exploration_Gridded_GHGI_Methane_v2_2018.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Petroleum - Exploration (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Petroleum Exploration (inventory Energy 1B2a sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 2.1090662479400635,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [233941.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11059.0]},
      'statistics': {'mean': -9547.65625,
       'stddev': 2075.880615234375,
       'maximum': 2.1090662479400635,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'processing-ngs': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2b_Natural_Gas_Processing_Gridded_GHGI_Methane_v2_2018.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Natural Gas - Processing (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Natural Gas Processing (inventory Energy 1B2b sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 522.415283203125,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [244329.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 671.0]},
      'statistics': {'mean': -9971.5947265625,
       'stddev': 522.9302978515625,
       'maximum': 522.415283203125,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'production-ngs': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2b_Natural_Gas_Production_Gridded_GHGI_Methane_v2_2018.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Natural Gas - Production (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Natural Gas Production (inventory Energy 1B2b sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 202.47592163085938,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [232277.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12723.0]},
      'statistics': {'mean': -9479.58984375,
       'stddev': 2219.313720703125,
       'maximum': 202.47592163085938,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'exploration-ngs': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2b_Natural_Gas_Exploration_Gridded_GHGI_Methane_v2_2018.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Natural Gas - Exploration (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Natural Gas Exploration (inventory Energy 1B2b sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 634.9048461914062,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [235806.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9194.0]},
      'statistics': {'mean': -9623.7666015625,
       'stddev': 1900.311767578125,
       'maximum': 634.9048461914062,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'composting-waste': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_5B1_Composting_Gridded_GHGI_Methane_v2_2018.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Waste - Composting (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Composting (inventory Waste category 5B1).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 5.619130611419678,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [241655.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3345.0]},
      'statistics': {'mean': -9862.478515625,
       'stddev': 1160.375732421875,
       'maximum': 5.619130611419678,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'distribution-ngs': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2b_Natural_Gas_Distribution_Gridded_GHGI_Methane_v2_2018.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Natural Gas - Distribution (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Natural Gas Distribution (inventory Energy 1B2b sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 33.04241943359375,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [169148.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 75852.0]},
      'statistics': {'mean': -6903.28515625,
       'stddev': 4622.85986328125,
       'maximum': 33.04241943359375,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'rice-cultivation': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_3C_Rice_Cultivation_Gridded_GHGI_Methane_v2_2018.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Agriculture - Rice Cultivation (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from rice cultivation (inventory Agriculture category 3C).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 62.11245346069336,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [239929.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5071.0]},
      'statistics': {'mean': -9792.015625,
       'stddev': 1423.743408203125,
       'maximum': 62.11245346069336,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'total-coal-mines': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_coal-mines_Gridded_GHGI_Methane_v2_2018.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Total Coal Mines (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Total annual methane emission fluxes from Coal Mines (sum of inventory 1B1a sub-categories which includes Underground Coal Mining, Surface Coal Mining and Abandoned Underground Coal Mines).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 1642.84814453125,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [243327.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1663.0, 10.0]},
      'statistics': {'mean': -9930.62109375,
       'stddev': 824.6806640625,
       'maximum': 1642.84814453125,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'underground-coal': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B1a_Underground_Coal_Gridded_GHGI_Methane_v2_2018.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Coal Mining - Underground Mining (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from active Underground Coal Mining (inventory Energy 1B1a sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 1642.84814453125,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [244819.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 172.0, 9.0]},
      'statistics': {'mean': -9991.5390625,
       'stddev': 274.4832458496094,
       'maximum': 1642.84814453125,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'manure-management': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_3B_Manure_Management_Gridded_GHGI_Methane_v2_2018.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Agriculture - Manure Management (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from livestock manure management (inventory Agriculture category 3B).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 24.829689025878906,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [161630.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 83370.0]},
      'statistics': {'mean': -6596.38037109375,
       'stddev': 4737.720703125,
       'maximum': 24.829689025878906,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'total-agriculture': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_agriculture_Gridded_GHGI_Methane_v2_2018.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Total Agriculture (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Total annual methane emission fluxes from Agriculture sources (sum of inventory categories: Enteric Fermentation (3A), Manure Management (3B), Rice Cultivation (3C), Field Burning of Agricultural Residues (3F)).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 63.838356018066406,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [161625.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 83375.0]},
      'statistics': {'mean': -6595.84912109375,
       'stddev': 4738.2451171875,
       'maximum': 63.838356018066406,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'msw-landfill-waste': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_5A1_Landfills_MSW_Gridded_GHGI_Methane_v2_2018.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Waste - Municipal Solid Waste (MSW) Landfills (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Municipal Solid Waste Landfills (inventory Waste 5A1 sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 391.40478515625,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [242963.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2037.0]},
      'statistics': {'mean': -9915.708984375,
       'stddev': 909.6536865234375,
       'maximum': 391.40478515625,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'abn-underground-coal': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B1a_Abandoned_Coal_Gridded_GHGI_Methane_v2_2018.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Coal Mining - Abandoned Underground Mines (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Abandoned Underground Coal Mines (inventory Energy 1B1a sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 99.21646881103516,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [243504.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1496.0]},
      'statistics': {'mean': -9937.9345703125,
       'stddev': 779.0834350585938,
       'maximum': 99.21646881103516,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'enteric-fermentation': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_3A_Enteric_Fermentation_Gridded_GHGI_Methane_v2_2018.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Agriculture - Enteric Fermentation (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from enteric fermentation which is methane emitted as a by-product of the normal livestock digestive process (inventory Agriculture category 3A).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 34.857574462890625,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [161630.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 83370.0]},
      'statistics': {'mean': -6596.1826171875,
       'stddev': 4737.9970703125,
       'maximum': 34.857574462890625,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'petro-production-other': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_2B8_Industry_Petrochemical_Gridded_GHGI_Methane_v2_2018.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Other - Petrochemical Production (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Petrochemical Production (inventory Industrial Processes and Product Use category 2B8).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 39.48554611206055,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [244974.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 26.0]},
      'statistics': {'mean': -9997.9384765625,
       'stddev': 103.04530334472656,
       'maximum': 39.48554611206055,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'mobile-combustion-other': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1A_Combustion_Mobile_Gridded_GHGI_Methane_v2_2018.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Other - Mobile Combustion (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Mobile Combustion (inventory Energy 1A sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 2.004904270172119,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [158134.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 86866.0]},
      'statistics': {'mean': -6453.7998046875,
       'stddev': 4783.31005859375,
       'maximum': 2.004904270172119,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'total-petroleum-systems': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_petroleum-systems_Gridded_GHGI_Methane_v2_2018.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Total Petroleum Systems (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Total annual methane emission fluxes from Petroleum Systems (sum of inventory Energy 1B2a sub-categories which includes Petroleum Production, Refining, Exploration and Transport).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 127.91582489013672,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [233456.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11544.0]},
      'statistics': {'mean': -9527.80078125,
       'stddev': 2118.98486328125,
       'maximum': 127.91582489013672,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'transmission-storage-ngs': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2b_Natural_Gas_TransmissionStorage_Gridded_GHGI_Methane_v2_2018.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Natural Gas - Transmission and Storage (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Natural Gas Transmission and Storage (inventory Energy 1B2b sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 180.53976440429688,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [215921.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 29079.0]},
      'statistics': {'mean': -8812.158203125,
       'stddev': 3234.077392578125,
       'maximum': 180.53976440429688,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'industrial-landfill-waste': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_5A1_Landfills_Industrial_Gridded_GHGI_Methane_v2_2018.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Waste - Industrial Landfills (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Industrial Landfills (inventory Waste 5A1 sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 360.26318359375,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [240762.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4238.0]},
      'statistics': {'mean': -9826.0126953125,
       'stddev': 1303.8521728515625,
       'maximum': 360.26318359375,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'total-natural-gas-systems': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_natural-gas-systems_Gridded_GHGI_Methane_v2_2018.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Total Natural Gas Systems (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Total annual methane emission fluxes from Natural Gas Systems (sum of inventory Energy 1B2b sub-categories which includes Natural Gas Production, Transmission & Storage, Processing, Distribution and Exploration).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 678.646484375,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [167033.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 77967.0]},
      'statistics': {'mean': -6816.70849609375,
       'stddev': 4657.8525390625,
       'maximum': 678.646484375,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'ferroalloy-production-other': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_2C2_Industry_Ferroalloy_Gridded_GHGI_Methane_v2_2018.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Other - Ferroalloy Production (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Ferroalloy Production (inventory Industrial Processes and Product Use category 2C2).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 17.69515037536621,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [244990.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0]},
      'statistics': {'mean': -9998.5908203125,
       'stddev': 63.95236587524414,
       'maximum': 17.69515037536621,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'stationary-combustion-other': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1A_Combustion_Stationary_Gridded_GHGI_Methane_v2_2018.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Other - Stationary Combustion (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Stationary Combustion (inventory Energy 1A sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 8.650629997253418,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [169107.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 75893.0]},
      'statistics': {'mean': -6901.62109375,
       'stddev': 4623.53564453125,
       'maximum': 8.650629997253418,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'rendered_preview': {'title': 'Rendered preview',
    'href': 'https://earth.gov/ghgcenter/api/raster/collections/epa-ch4emission-yeargrid-v2express/items/epa-ch4emission-yeargrid-v2express-2018/preview.png?assets=total-methane&maxzoom=5&minzoom=0&rescale=0%2C20&colormap_name=epa-ghgi-ch4',
    'rel': 'preview',
    'roles': ['overview'],
    'type': 'image/png'}},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-129.99999694387628, 19.99999923487448],
     [-60.00000305612369, 19.99999923487448],
     [-60.00000305612369, 55.00000076512553],
     [-129.99999694387628, 55.00000076512553],
     [-129.99999694387628, 19.99999923487448]]]},
  'collection': 'epa-ch4emission-yeargrid-v2express',
  'properties': {'datetime': '2018-01-01T00:00:00+00:00'},
  'stac_version': '1.0.0',
  'stac_extensions': ['https://stac-extensions.github.io/projection/v1.0.0/schema.json',
   'https://stac-extensions.github.io/raster/v1.1.0/schema.json']},
 '2017-01': {'id': 'epa-ch4emission-yeargrid-v2express-2017',
  'bbox': [-129.99999694387628,
   19.99999923487448,
   -60.00000305612369,
   55.00000076512553],
  'type': 'Feature',
  'links': [{'rel': 'collection',
    'type': 'application/json',
    'href': 'https://earth.gov/ghgcenter/api/stac/collections/epa-ch4emission-yeargrid-v2express'},
   {'rel': 'parent',
    'type': 'application/json',
    'href': 'https://earth.gov/ghgcenter/api/stac/collections/epa-ch4emission-yeargrid-v2express'},
   {'rel': 'root',
    'type': 'application/json',
    'href': 'https://earth.gov/ghgcenter/api/stac/'},
   {'rel': 'self',
    'type': 'application/geo+json',
    'href': 'https://earth.gov/ghgcenter/api/stac/collections/epa-ch4emission-yeargrid-v2express/items/epa-ch4emission-yeargrid-v2express-2017'},
   {'title': 'Map of Item',
    'href': 'https://earth.gov/ghgcenter/api/raster/collections/epa-ch4emission-yeargrid-v2express/items/epa-ch4emission-yeargrid-v2express-2017/map?assets=total-methane&maxzoom=5&minzoom=0&rescale=0%2C20&colormap_name=epa-ghgi-ch4',
    'rel': 'preview',
    'type': 'text/html'}],
  'assets': {'dwtd-waste': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_5D_Wastewater_Treatment_Domestic_Gridded_GHGI_Methane_v2_2017.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Waste - Domestic Wastewater Treatment & Discharge (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Domestic Wastewater Treatment and Discharge (inventory Waste 5D sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 405.3661804199219,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [169028.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 75972.0]},
      'statistics': {'mean': -6898.3916015625,
       'stddev': 4624.8701171875,
       'maximum': 405.3661804199219,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'iwtd-waste': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_5D_Wastewater_Treatment_Industrial_Gridded_GHGI_Methane_v2_2017.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Waste - Industrial Wastewater Treatment & Discharge (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Industrial Wastewater Treatment and Discharge (inventory Waste 5D sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 943.6309204101562,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [244134.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 866.0]},
      'statistics': {'mean': -9963.646484375,
       'stddev': 593.5928344726562,
       'maximum': 943.6309204101562,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'post-meter': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_Supp_1B2b_PostMeter_Gridded_GHGI_Methane_v2_2017.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Natural Gas - Post Meter (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions downstream of residential, commercial, industrial natural gas distribution meters (i.e., “Post Meter”) (inventory Energy 1B2b sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 33.521629333496094,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [169113.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 75887.0]},
      'statistics': {'mean': -6901.86328125,
       'stddev': 4623.43896484375,
       'maximum': 33.521629333496094,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'refining-ps': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2a_Petroleum_Systems_Refining_Gridded_GHGI_Methane_v2_2017.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Petroleum - Refining (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Petroleum Refining (inventory Energy 1B2a sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 23.37965965270996,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [244890.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 110.0]},
      'statistics': {'mean': -9994.509765625,
       'stddev': 211.88641357421875,
       'maximum': 23.37965965270996,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'total-other': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_other_Gridded_GHGI_Methane_v2_2017.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Total Other (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Total annual methane emission fluxes from ‘Other’ remaining sources (sum of inventory categories 1A (Energy Combustion), 2B8 & 2C2 (Petrochemical & Ferroalloy Production) and 1B2a & 1B2b (Abandoned Oil & Gas Well Emissions)).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 43.46516799926758,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [157362.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 87638.0]},
      'statistics': {'mean': -6422.2666015625,
       'stddev': 4792.81005859375,
       'maximum': 43.46516799926758,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'total-waste': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_waste_Gridded_GHGI_Methane_v2_2017.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Total Waste (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Total annual methane emission fluxes from Waste (sum of inventory Waste categories: Municipal Solid Waste (MSW) and Industrial Landfills (5A1), Composting (5B1), Domestic and Industrial Wastewater Treatment and Discharge (5D)).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 943.6954956054688,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [169000.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 76000.0]},
      'statistics': {'mean': -6897.05859375,
       'stddev': 4625.62451171875,
       'maximum': 943.6954956054688,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'surface-coal': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B1a_Surface_Coal_Gridded_GHGI_Methane_v2_2017.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Coal Mining - Surface Mining (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from active Surface Coal Mining (inventory Energy 1B1a sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 812.1929321289062,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [244706.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 294.0]},
      'statistics': {'mean': -9986.9853515625,
       'stddev': 346.6272277832031,
       'maximum': 812.1929321289062,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'transport-ps': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2a_Petroleum_Systems_Transport_Gridded_GHGI_Methane_v2_2017.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Petroleum - Transportation (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Petroleum Transportation (inventory Energy 1B2a sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 2.5500385761260986,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [233565.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11435.0]},
      'statistics': {'mean': -9532.3115234375,
       'stddev': 2109.175537109375,
       'maximum': 2.5500385761260986,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'abn-ong-other': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2ab_Abandoned_Oil_Gas_Gridded_GHGI_Methane_v2_2017.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Other - Abandoned Oil and Gas Wells (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Abandoned Oil and Gas Wells (inventory Energy 1B2a and 1B2b sub-categories).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 35.24586868286133,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [213105.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 31895.0]},
      'statistics': {'mean': -8697.283203125,
       'stddev': 3364.7470703125,
       'maximum': 35.24586868286133,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'field-burning': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_3F_Field_Burning_Gridded_GHGI_Methane_v2_2017.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Agriculture - Field Burning (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from field burning of agricultural residues (inventory Agriculture category 3F).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 0.2404104769229889,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [225969.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 19031.0]},
      'statistics': {'mean': -9222.2998046875,
       'stddev': 2676.369873046875,
       'maximum': 0.2404104769229889,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'production-ps': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2a_Petroleum_Systems_Production_Gridded_GHGI_Methane_v2_2017.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Petroleum - Production (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Petroleum Production (inventory Energy 1B2a sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 178.37728881835938,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [233519.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11481.0]},
      'statistics': {'mean': -9530.3720703125,
       'stddev': 2113.4833984375,
       'maximum': 178.37728881835938,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'total-methane': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_all-variables_Gridded_GHGI_Methane_v2_2017.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Total Methane (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Total annual methane emission fluxes from all Agriculture, Energy, Waste, and ‘Other’ sources included in this dataset.',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 1509.8631591796875,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [153522.0,
        0.0,
        0.0,
        0.0,
        0.0,
        0.0,
        0.0,
        0.0,
        91455.0,
        23.0]},
      'statistics': {'mean': -6264.470703125,
       'stddev': 4837.97509765625,
       'maximum': 1509.8631591796875,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'exploration-ps': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2a_Petroleum_Systems_Exploration_Gridded_GHGI_Methane_v2_2017.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Petroleum - Exploration (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Petroleum Exploration (inventory Energy 1B2a sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 1.9067853689193726,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [233947.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11053.0]},
      'statistics': {'mean': -9547.900390625,
       'stddev': 2075.343505859375,
       'maximum': 1.9067853689193726,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'processing-ngs': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2b_Natural_Gas_Processing_Gridded_GHGI_Methane_v2_2017.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Natural Gas - Processing (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Natural Gas Processing (inventory Energy 1B2b sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 253.4911346435547,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [244336.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 664.0]},
      'statistics': {'mean': -9971.8818359375,
       'stddev': 520.1878662109375,
       'maximum': 253.4911346435547,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'production-ngs': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2b_Natural_Gas_Production_Gridded_GHGI_Methane_v2_2017.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Natural Gas - Production (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Natural Gas Production (inventory Energy 1B2b sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 121.22686767578125,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [231924.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13076.0]},
      'statistics': {'mean': -9465.185546875,
       'stddev': 2248.15380859375,
       'maximum': 121.22686767578125,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'exploration-ngs': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2b_Natural_Gas_Exploration_Gridded_GHGI_Methane_v2_2017.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Natural Gas - Exploration (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Natural Gas Exploration (inventory Energy 1B2b sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 19.78657341003418,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [235373.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9627.0]},
      'statistics': {'mean': -9606.09765625,
       'stddev': 1942.748291015625,
       'maximum': 19.78657341003418,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'composting-waste': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_5B1_Composting_Gridded_GHGI_Methane_v2_2017.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Waste - Composting (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Composting (inventory Waste category 5B1).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 5.751418590545654,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [241655.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3345.0]},
      'statistics': {'mean': -9862.478515625,
       'stddev': 1160.3785400390625,
       'maximum': 5.751418590545654,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'distribution-ngs': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2b_Natural_Gas_Distribution_Gridded_GHGI_Methane_v2_2017.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Natural Gas - Distribution (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Natural Gas Distribution (inventory Energy 1B2b sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 33.750099182128906,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [169148.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 75852.0]},
      'statistics': {'mean': -6903.28515625,
       'stddev': 4622.85986328125,
       'maximum': 33.750099182128906,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'rice-cultivation': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_3C_Rice_Cultivation_Gridded_GHGI_Methane_v2_2017.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Agriculture - Rice Cultivation (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from rice cultivation (inventory Agriculture category 3C).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 61.49955749511719,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [240035.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4965.0]},
      'statistics': {'mean': -9796.3427734375,
       'stddev': 1409.0911865234375,
       'maximum': 61.49955749511719,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'total-coal-mines': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_coal-mines_Gridded_GHGI_Methane_v2_2017.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Total Coal Mines (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Total annual methane emission fluxes from Coal Mines (sum of inventory 1B1a sub-categories which includes Underground Coal Mining, Surface Coal Mining and Abandoned Underground Coal Mines).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 1504.9259033203125,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [243326.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1655.0, 19.0]},
      'statistics': {'mean': -9930.5751953125,
       'stddev': 824.9721069335938,
       'maximum': 1504.9259033203125,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'underground-coal': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B1a_Underground_Coal_Gridded_GHGI_Methane_v2_2017.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Coal Mining - Underground Mining (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from active Underground Coal Mining (inventory Energy 1B1a sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 1504.9259033203125,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [244815.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 168.0, 17.0]},
      'statistics': {'mean': -9991.3720703125,
       'stddev': 277.5445251464844,
       'maximum': 1504.9259033203125,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'manure-management': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_3B_Manure_Management_Gridded_GHGI_Methane_v2_2017.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Agriculture - Manure Management (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from livestock manure management (inventory Agriculture category 3B).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 25.18667221069336,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [161630.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 83370.0]},
      'statistics': {'mean': -6596.3837890625,
       'stddev': 4737.71630859375,
       'maximum': 25.18667221069336,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'total-agriculture': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_agriculture_Gridded_GHGI_Methane_v2_2017.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Total Agriculture (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Total annual methane emission fluxes from Agriculture sources (sum of inventory categories: Enteric Fermentation (3A), Manure Management (3B), Rice Cultivation (3C), Field Burning of Agricultural Residues (3F)).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 62.917728424072266,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [161625.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 83375.0]},
      'statistics': {'mean': -6595.85546875,
       'stddev': 4738.23681640625,
       'maximum': 62.917728424072266,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'msw-landfill-waste': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_5A1_Landfills_MSW_Gridded_GHGI_Methane_v2_2017.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Waste - Municipal Solid Waste (MSW) Landfills (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Municipal Solid Waste Landfills (inventory Waste 5A1 sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 397.95758056640625,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [242960.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2040.0]},
      'statistics': {'mean': -9915.5908203125,
       'stddev': 910.2601928710938,
       'maximum': 397.95758056640625,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'abn-underground-coal': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B1a_Abandoned_Coal_Gridded_GHGI_Methane_v2_2017.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Coal Mining - Abandoned Underground Mines (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Abandoned Underground Coal Mines (inventory Energy 1B1a sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 102.9301528930664,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [243504.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1496.0]},
      'statistics': {'mean': -9937.93359375,
       'stddev': 779.0892333984375,
       'maximum': 102.9301528930664,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'enteric-fermentation': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_3A_Enteric_Fermentation_Gridded_GHGI_Methane_v2_2017.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Agriculture - Enteric Fermentation (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from enteric fermentation which is methane emitted as a by-product of the normal livestock digestive process (inventory Agriculture category 3A).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 35.74574279785156,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [161630.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 83370.0]},
      'statistics': {'mean': -6596.18359375,
       'stddev': 4737.9951171875,
       'maximum': 35.74574279785156,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'petro-production-other': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_2B8_Industry_Petrochemical_Gridded_GHGI_Methane_v2_2017.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Other - Petrochemical Production (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Petrochemical Production (inventory Industrial Processes and Product Use category 2B8).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 37.938323974609375,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [244974.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 26.0]},
      'statistics': {'mean': -9997.9384765625,
       'stddev': 103.0373764038086,
       'maximum': 37.938323974609375,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'mobile-combustion-other': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1A_Combustion_Mobile_Gridded_GHGI_Methane_v2_2017.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Other - Mobile Combustion (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Mobile Combustion (inventory Energy 1A sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 2.166745901107788,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [158001.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 86999.0]},
      'statistics': {'mean': -6448.37158203125,
       'stddev': 4784.95751953125,
       'maximum': 2.166745901107788,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'total-petroleum-systems': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_petroleum-systems_Gridded_GHGI_Methane_v2_2017.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Total Petroleum Systems (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Total annual methane emission fluxes from Petroleum Systems (sum of inventory Energy 1B2a sub-categories which includes Petroleum Production, Refining, Exploration and Transport).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 178.6848907470703,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [233460.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11540.0]},
      'statistics': {'mean': -9527.962890625,
       'stddev': 2118.648193359375,
       'maximum': 178.6848907470703,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'transmission-storage-ngs': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2b_Natural_Gas_TransmissionStorage_Gridded_GHGI_Methane_v2_2017.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Natural Gas - Transmission and Storage (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Natural Gas Transmission and Storage (inventory Energy 1B2b sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 130.8253631591797,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [215919.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 29081.0]},
      'statistics': {'mean': -8812.080078125,
       'stddev': 3234.163330078125,
       'maximum': 130.8253631591797,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'industrial-landfill-waste': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_5A1_Landfills_Industrial_Gridded_GHGI_Methane_v2_2017.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Waste - Industrial Landfills (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Industrial Landfills (inventory Waste 5A1 sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 356.7368469238281,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [240762.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4238.0]},
      'statistics': {'mean': -9826.0126953125,
       'stddev': 1303.8504638671875,
       'maximum': 356.7368469238281,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'total-natural-gas-systems': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_natural-gas-systems_Gridded_GHGI_Methane_v2_2017.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Total Natural Gas Systems (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Total annual methane emission fluxes from Natural Gas Systems (sum of inventory Energy 1B2b sub-categories which includes Natural Gas Production, Transmission & Storage, Processing, Distribution and Exploration).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 262.78814697265625,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [167027.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 77973.0]},
      'statistics': {'mean': -6816.47216796875,
       'stddev': 4657.9345703125,
       'maximum': 262.78814697265625,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'ferroalloy-production-other': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_2C2_Industry_Ferroalloy_Gridded_GHGI_Methane_v2_2017.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Other - Ferroalloy Production (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Ferroalloy Production (inventory Industrial Processes and Product Use category 2C2).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 23.565710067749023,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [244990.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0]},
      'statistics': {'mean': -9998.5908203125,
       'stddev': 63.94001007080078,
       'maximum': 23.565710067749023,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'stationary-combustion-other': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1A_Combustion_Stationary_Gridded_GHGI_Methane_v2_2017.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Other - Stationary Combustion (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Stationary Combustion (inventory Energy 1A sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 9.625041007995605,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [169110.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 75890.0]},
      'statistics': {'mean': -6901.74609375,
       'stddev': 4623.48291015625,
       'maximum': 9.625041007995605,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'rendered_preview': {'title': 'Rendered preview',
    'href': 'https://earth.gov/ghgcenter/api/raster/collections/epa-ch4emission-yeargrid-v2express/items/epa-ch4emission-yeargrid-v2express-2017/preview.png?assets=total-methane&maxzoom=5&minzoom=0&rescale=0%2C20&colormap_name=epa-ghgi-ch4',
    'rel': 'preview',
    'roles': ['overview'],
    'type': 'image/png'}},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-129.99999694387628, 19.99999923487448],
     [-60.00000305612369, 19.99999923487448],
     [-60.00000305612369, 55.00000076512553],
     [-129.99999694387628, 55.00000076512553],
     [-129.99999694387628, 19.99999923487448]]]},
  'collection': 'epa-ch4emission-yeargrid-v2express',
  'properties': {'datetime': '2017-01-01T00:00:00+00:00'},
  'stac_version': '1.0.0',
  'stac_extensions': ['https://stac-extensions.github.io/projection/v1.0.0/schema.json',
   'https://stac-extensions.github.io/raster/v1.1.0/schema.json']},
 '2016-01': {'id': 'epa-ch4emission-yeargrid-v2express-2016',
  'bbox': [-129.99999694387628,
   19.99999923487448,
   -60.00000305612369,
   55.00000076512553],
  'type': 'Feature',
  'links': [{'rel': 'collection',
    'type': 'application/json',
    'href': 'https://earth.gov/ghgcenter/api/stac/collections/epa-ch4emission-yeargrid-v2express'},
   {'rel': 'parent',
    'type': 'application/json',
    'href': 'https://earth.gov/ghgcenter/api/stac/collections/epa-ch4emission-yeargrid-v2express'},
   {'rel': 'root',
    'type': 'application/json',
    'href': 'https://earth.gov/ghgcenter/api/stac/'},
   {'rel': 'self',
    'type': 'application/geo+json',
    'href': 'https://earth.gov/ghgcenter/api/stac/collections/epa-ch4emission-yeargrid-v2express/items/epa-ch4emission-yeargrid-v2express-2016'},
   {'title': 'Map of Item',
    'href': 'https://earth.gov/ghgcenter/api/raster/collections/epa-ch4emission-yeargrid-v2express/items/epa-ch4emission-yeargrid-v2express-2016/map?assets=total-methane&maxzoom=5&minzoom=0&rescale=0%2C20&colormap_name=epa-ghgi-ch4',
    'rel': 'preview',
    'type': 'text/html'}],
  'assets': {'dwtd-waste': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_5D_Wastewater_Treatment_Domestic_Gridded_GHGI_Methane_v2_2016.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Waste - Domestic Wastewater Treatment & Discharge (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Domestic Wastewater Treatment and Discharge (inventory Waste 5D sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 373.3284606933594,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [169028.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 75972.0]},
      'statistics': {'mean': -6898.390625,
       'stddev': 4624.87060546875,
       'maximum': 373.3284606933594,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'iwtd-waste': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_5D_Wastewater_Treatment_Industrial_Gridded_GHGI_Methane_v2_2016.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Waste - Industrial Wastewater Treatment & Discharge (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Industrial Wastewater Treatment and Discharge (inventory Waste 5D sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 932.1803588867188,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [244167.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 833.0]},
      'statistics': {'mean': -9964.9921875,
       'stddev': 582.2156372070312,
       'maximum': 932.1803588867188,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'post-meter': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_Supp_1B2b_PostMeter_Gridded_GHGI_Methane_v2_2016.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Natural Gas - Post Meter (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions downstream of residential, commercial, industrial natural gas distribution meters (i.e., “Post Meter”) (inventory Energy 1B2b sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 31.37076759338379,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [169111.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 75889.0]},
      'statistics': {'mean': -6901.78125,
       'stddev': 4623.47265625,
       'maximum': 31.37076759338379,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'refining-ps': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2a_Petroleum_Systems_Refining_Gridded_GHGI_Methane_v2_2016.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Petroleum - Refining (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Petroleum Refining (inventory Energy 1B2a sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 23.480388641357422,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [244890.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 110.0]},
      'statistics': {'mean': -9994.509765625,
       'stddev': 211.88548278808594,
       'maximum': 23.480388641357422,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'total-other': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_other_Gridded_GHGI_Methane_v2_2016.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Total Other (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Total annual methane emission fluxes from ‘Other’ remaining sources (sum of inventory categories 1A (Energy Combustion), 2B8 & 2C2 (Petrochemical & Ferroalloy Production) and 1B2a & 1B2b (Abandoned Oil & Gas Well Emissions)).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 34.80271911621094,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [157362.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 87638.0]},
      'statistics': {'mean': -6422.267578125,
       'stddev': 4792.810546875,
       'maximum': 34.80271911621094,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'total-waste': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_waste_Gridded_GHGI_Methane_v2_2016.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Total Waste (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Total annual methane emission fluxes from Waste (sum of inventory Waste categories: Municipal Solid Waste (MSW) and Industrial Landfills (5A1), Composting (5B1), Domestic and Industrial Wastewater Treatment and Discharge (5D)).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 932.2478637695312,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [169000.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 76000.0]},
      'statistics': {'mean': -6897.0595703125,
       'stddev': 4625.62158203125,
       'maximum': 932.2478637695312,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'surface-coal': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B1a_Surface_Coal_Gridded_GHGI_Methane_v2_2016.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Coal Mining - Surface Mining (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from active Surface Coal Mining (inventory Energy 1B1a sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 769.2369384765625,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [244703.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 297.0]},
      'statistics': {'mean': -9986.8642578125,
       'stddev': 348.356201171875,
       'maximum': 769.2369384765625,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'transport-ps': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2a_Petroleum_Systems_Transport_Gridded_GHGI_Methane_v2_2016.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Petroleum - Transportation (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Petroleum Transportation (inventory Energy 1B2a sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 2.528172731399536,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [233494.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11506.0]},
      'statistics': {'mean': -9529.4130859375,
       'stddev': 2115.391845703125,
       'maximum': 2.528172731399536,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'abn-ong-other': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2ab_Abandoned_Oil_Gas_Gridded_GHGI_Methane_v2_2016.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Other - Abandoned Oil and Gas Wells (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Abandoned Oil and Gas Wells (inventory Energy 1B2a and 1B2b sub-categories).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 34.76121520996094,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [213116.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 31884.0]},
      'statistics': {'mean': -8697.73046875,
       'stddev': 3364.253662109375,
       'maximum': 34.76121520996094,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'field-burning': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_3F_Field_Burning_Gridded_GHGI_Methane_v2_2016.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Agriculture - Field Burning (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from field burning of agricultural residues (inventory Agriculture category 3F).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 0.24409876763820648,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [225969.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 19031.0]},
      'statistics': {'mean': -9222.2998046875,
       'stddev': 2676.369873046875,
       'maximum': 0.24409876763820648,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'production-ps': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2a_Petroleum_Systems_Production_Gridded_GHGI_Methane_v2_2016.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Petroleum - Production (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Petroleum Production (inventory Energy 1B2a sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 175.54722595214844,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [233446.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11554.0]},
      'statistics': {'mean': -9527.3935546875,
       'stddev': 2119.8564453125,
       'maximum': 175.54722595214844,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'total-methane': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_all-variables_Gridded_GHGI_Methane_v2_2016.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Total Methane (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Total annual methane emission fluxes from all Agriculture, Energy, Waste, and ‘Other’ sources included in this dataset.',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 1293.581787109375,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [153520.0,
        0.0,
        0.0,
        0.0,
        0.0,
        0.0,
        0.0,
        0.0,
        91423.0,
        57.0]},
      'statistics': {'mean': -6264.40087890625,
       'stddev': 4837.97998046875,
       'maximum': 1293.581787109375,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'exploration-ps': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2a_Petroleum_Systems_Exploration_Gridded_GHGI_Methane_v2_2016.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Petroleum - Exploration (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Petroleum Exploration (inventory Energy 1B2a sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 2.157834529876709,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [233889.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11111.0]},
      'statistics': {'mean': -9545.5322265625,
       'stddev': 2080.5244140625,
       'maximum': 2.157834529876709,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'processing-ngs': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2b_Natural_Gas_Processing_Gridded_GHGI_Methane_v2_2016.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Natural Gas - Processing (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Natural Gas Processing (inventory Energy 1B2b sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 150.030517578125,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [244334.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 666.0]},
      'statistics': {'mean': -9971.80078125,
       'stddev': 520.95361328125,
       'maximum': 150.030517578125,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'production-ngs': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2b_Natural_Gas_Production_Gridded_GHGI_Methane_v2_2016.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Natural Gas - Production (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Natural Gas Production (inventory Energy 1B2b sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 113.0058822631836,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [231852.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13148.0]},
      'statistics': {'mean': -9462.2509765625,
       'stddev': 2253.961669921875,
       'maximum': 113.0058822631836,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'exploration-ngs': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2b_Natural_Gas_Exploration_Gridded_GHGI_Methane_v2_2016.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Natural Gas - Exploration (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Natural Gas Exploration (inventory Energy 1B2b sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 7.016038417816162,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [235294.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9706.0]},
      'statistics': {'mean': -9602.875,
       'stddev': 1950.3712158203125,
       'maximum': 7.016038417816162,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'composting-waste': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_5B1_Composting_Gridded_GHGI_Methane_v2_2016.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Waste - Composting (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Composting (inventory Waste category 5B1).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 4.985980033874512,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [241781.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3219.0]},
      'statistics': {'mean': -9867.62109375,
       'stddev': 1138.6094970703125,
       'maximum': 4.985980033874512,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'distribution-ngs': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2b_Natural_Gas_Distribution_Gridded_GHGI_Methane_v2_2016.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Natural Gas - Distribution (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Natural Gas Distribution (inventory Energy 1B2b sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 34.337257385253906,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [169148.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 75852.0]},
      'statistics': {'mean': -6903.28515625,
       'stddev': 4622.8603515625,
       'maximum': 34.337257385253906,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'rice-cultivation': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_3C_Rice_Cultivation_Gridded_GHGI_Methane_v2_2016.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Agriculture - Rice Cultivation (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from rice cultivation (inventory Agriculture category 3C).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 59.34138488769531,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [241074.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3926.0]},
      'statistics': {'mean': -9838.7431640625,
       'stddev': 1255.7698974609375,
       'maximum': 59.34138488769531,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'total-coal-mines': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_coal-mines_Gridded_GHGI_Methane_v2_2016.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Total Coal Mines (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Total annual methane emission fluxes from Coal Mines (sum of inventory 1B1a sub-categories which includes Underground Coal Mining, Surface Coal Mining and Abandoned Underground Coal Mines).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 1290.3424072265625,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [243325.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1636.0, 39.0]},
      'statistics': {'mean': -9930.5361328125,
       'stddev': 825.1943969726562,
       'maximum': 1290.3424072265625,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'underground-coal': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B1a_Underground_Coal_Gridded_GHGI_Methane_v2_2016.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Coal Mining - Underground Mining (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from active Underground Coal Mining (inventory Energy 1B1a sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 1290.3424072265625,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [244798.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 171.0, 31.0]},
      'statistics': {'mean': -9990.6796875,
       'stddev': 289.7117919921875,
       'maximum': 1290.3424072265625,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'manure-management': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_3B_Manure_Management_Gridded_GHGI_Methane_v2_2016.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Agriculture - Manure Management (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from livestock manure management (inventory Agriculture category 3B).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 24.811965942382812,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [161630.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 83370.0]},
      'statistics': {'mean': -6596.384765625,
       'stddev': 4737.71484375,
       'maximum': 24.811965942382812,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'total-agriculture': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_agriculture_Gridded_GHGI_Methane_v2_2016.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Total Agriculture (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Total annual methane emission fluxes from Agriculture sources (sum of inventory categories: Enteric Fermentation (3A), Manure Management (3B), Rice Cultivation (3C), Field Burning of Agricultural Residues (3F)).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 61.24696350097656,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [161625.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 83375.0]},
      'statistics': {'mean': -6595.8623046875,
       'stddev': 4738.22802734375,
       'maximum': 61.24696350097656,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'msw-landfill-waste': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_5A1_Landfills_MSW_Gridded_GHGI_Methane_v2_2016.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Waste - Municipal Solid Waste (MSW) Landfills (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Municipal Solid Waste Landfills (inventory Waste 5A1 sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 463.92315673828125,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [242951.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2049.0]},
      'statistics': {'mean': -9915.224609375,
       'stddev': 912.22021484375,
       'maximum': 463.92315673828125,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'abn-underground-coal': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B1a_Abandoned_Coal_Gridded_GHGI_Methane_v2_2016.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Coal Mining - Abandoned Underground Mines (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Abandoned Underground Coal Mines (inventory Energy 1B1a sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 106.80773162841797,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [243505.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1495.0]},
      'statistics': {'mean': -9937.9736328125,
       'stddev': 778.8355712890625,
       'maximum': 106.80773162841797,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'enteric-fermentation': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_3A_Enteric_Fermentation_Gridded_GHGI_Methane_v2_2016.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Agriculture - Enteric Fermentation (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from enteric fermentation which is methane emitted as a by-product of the normal livestock digestive process (inventory Agriculture category 3A).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 36.314796447753906,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [161630.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 83370.0]},
      'statistics': {'mean': -6596.19091796875,
       'stddev': 4737.98583984375,
       'maximum': 36.314796447753906,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'petro-production-other': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_2B8_Industry_Petrochemical_Gridded_GHGI_Methane_v2_2016.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Other - Petrochemical Production (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Petrochemical Production (inventory Industrial Processes and Product Use category 2B8).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 22.07904815673828,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [244976.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 24.0]},
      'statistics': {'mean': -9998.0205078125,
       'stddev': 98.99801635742188,
       'maximum': 22.07904815673828,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'mobile-combustion-other': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1A_Combustion_Mobile_Gridded_GHGI_Methane_v2_2016.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Other - Mobile Combustion (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Mobile Combustion (inventory Energy 1A sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 2.383587121963501,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [158023.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 86977.0]},
      'statistics': {'mean': -6449.26904296875,
       'stddev': 4784.68505859375,
       'maximum': 2.383587121963501,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'total-petroleum-systems': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_petroleum-systems_Gridded_GHGI_Methane_v2_2016.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Total Petroleum Systems (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Total annual methane emission fluxes from Petroleum Systems (sum of inventory Energy 1B2a sub-categories which includes Petroleum Production, Refining, Exploration and Transport).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 176.23045349121094,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [233387.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11613.0]},
      'statistics': {'mean': -9524.982421875,
       'stddev': 2125.00341796875,
       'maximum': 176.23045349121094,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'transmission-storage-ngs': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2b_Natural_Gas_TransmissionStorage_Gridded_GHGI_Methane_v2_2016.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Natural Gas - Transmission and Storage (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Natural Gas Transmission and Storage (inventory Energy 1B2b sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 203.2052001953125,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [215921.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 29079.0]},
      'statistics': {'mean': -8812.158203125,
       'stddev': 3234.0791015625,
       'maximum': 203.2052001953125,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'industrial-landfill-waste': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_5A1_Landfills_Industrial_Gridded_GHGI_Methane_v2_2016.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Waste - Industrial Landfills (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Industrial Landfills (inventory Waste 5A1 sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 355.3567810058594,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [240762.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4238.0]},
      'statistics': {'mean': -9826.0126953125,
       'stddev': 1303.85009765625,
       'maximum': 355.3567810058594,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'total-natural-gas-systems': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_natural-gas-systems_Gridded_GHGI_Methane_v2_2016.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Total Natural Gas Systems (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Total annual methane emission fluxes from Natural Gas Systems (sum of inventory Energy 1B2b sub-categories which includes Natural Gas Production, Transmission & Storage, Processing, Distribution and Exploration).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 204.84490966796875,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [167024.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 77976.0]},
      'statistics': {'mean': -6816.3525390625,
       'stddev': 4657.9794921875,
       'maximum': 204.84490966796875,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'ferroalloy-production-other': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_2C2_Industry_Ferroalloy_Gridded_GHGI_Methane_v2_2016.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Other - Ferroalloy Production (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Ferroalloy Production (inventory Industrial Processes and Product Use category 2C2).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 19.284345626831055,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [244991.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0]},
      'statistics': {'mean': -9998.6318359375,
       'stddev': 60.66428756713867,
       'maximum': 19.284345626831055,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'stationary-combustion-other': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1A_Combustion_Stationary_Gridded_GHGI_Methane_v2_2016.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Other - Stationary Combustion (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Stationary Combustion (inventory Energy 1A sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 10.009641647338867,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [169108.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 75892.0]},
      'statistics': {'mean': -6901.6640625,
       'stddev': 4623.51611328125,
       'maximum': 10.009641647338867,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'rendered_preview': {'title': 'Rendered preview',
    'href': 'https://earth.gov/ghgcenter/api/raster/collections/epa-ch4emission-yeargrid-v2express/items/epa-ch4emission-yeargrid-v2express-2016/preview.png?assets=total-methane&maxzoom=5&minzoom=0&rescale=0%2C20&colormap_name=epa-ghgi-ch4',
    'rel': 'preview',
    'roles': ['overview'],
    'type': 'image/png'}},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-129.99999694387628, 19.99999923487448],
     [-60.00000305612369, 19.99999923487448],
     [-60.00000305612369, 55.00000076512553],
     [-129.99999694387628, 55.00000076512553],
     [-129.99999694387628, 19.99999923487448]]]},
  'collection': 'epa-ch4emission-yeargrid-v2express',
  'properties': {'datetime': '2016-01-01T00:00:00+00:00'},
  'stac_version': '1.0.0',
  'stac_extensions': ['https://stac-extensions.github.io/projection/v1.0.0/schema.json',
   'https://stac-extensions.github.io/raster/v1.1.0/schema.json']},
 '2015-01': {'id': 'epa-ch4emission-yeargrid-v2express-2015',
  'bbox': [-129.99999694387628,
   19.99999923487448,
   -60.00000305612369,
   55.00000076512553],
  'type': 'Feature',
  'links': [{'rel': 'collection',
    'type': 'application/json',
    'href': 'https://earth.gov/ghgcenter/api/stac/collections/epa-ch4emission-yeargrid-v2express'},
   {'rel': 'parent',
    'type': 'application/json',
    'href': 'https://earth.gov/ghgcenter/api/stac/collections/epa-ch4emission-yeargrid-v2express'},
   {'rel': 'root',
    'type': 'application/json',
    'href': 'https://earth.gov/ghgcenter/api/stac/'},
   {'rel': 'self',
    'type': 'application/geo+json',
    'href': 'https://earth.gov/ghgcenter/api/stac/collections/epa-ch4emission-yeargrid-v2express/items/epa-ch4emission-yeargrid-v2express-2015'},
   {'title': 'Map of Item',
    'href': 'https://earth.gov/ghgcenter/api/raster/collections/epa-ch4emission-yeargrid-v2express/items/epa-ch4emission-yeargrid-v2express-2015/map?assets=total-methane&maxzoom=5&minzoom=0&rescale=0%2C20&colormap_name=epa-ghgi-ch4',
    'rel': 'preview',
    'type': 'text/html'}],
  'assets': {'dwtd-waste': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_5D_Wastewater_Treatment_Domestic_Gridded_GHGI_Methane_v2_2015.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Waste - Domestic Wastewater Treatment & Discharge (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Domestic Wastewater Treatment and Discharge (inventory Waste 5D sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 130.80709838867188,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [169028.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 75972.0]},
      'statistics': {'mean': -6898.390625,
       'stddev': 4624.87109375,
       'maximum': 130.80709838867188,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'iwtd-waste': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_5D_Wastewater_Treatment_Industrial_Gridded_GHGI_Methane_v2_2015.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Waste - Industrial Wastewater Treatment & Discharge (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Industrial Wastewater Treatment and Discharge (inventory Waste 5D sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 648.9139404296875,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [244183.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 817.0]},
      'statistics': {'mean': -9965.646484375,
       'stddev': 576.6207275390625,
       'maximum': 648.9139404296875,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'post-meter': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_Supp_1B2b_PostMeter_Gridded_GHGI_Methane_v2_2015.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Natural Gas - Post Meter (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions downstream of residential, commercial, industrial natural gas distribution meters (i.e., “Post Meter”) (inventory Energy 1B2b sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 29.55145263671875,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [169084.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 75916.0]},
      'statistics': {'mean': -6900.68017578125,
       'stddev': 4623.92529296875,
       'maximum': 29.55145263671875,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'refining-ps': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2a_Petroleum_Systems_Refining_Gridded_GHGI_Methane_v2_2015.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Petroleum - Refining (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Petroleum Refining (inventory Energy 1B2a sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 20.57094955444336,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [244890.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 110.0]},
      'statistics': {'mean': -9994.509765625,
       'stddev': 211.88528442382812,
       'maximum': 20.57094955444336,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'total-other': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_other_Gridded_GHGI_Methane_v2_2015.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Total Other (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Total annual methane emission fluxes from ‘Other’ remaining sources (sum of inventory categories 1A (Energy Combustion), 2B8 & 2C2 (Petrochemical & Ferroalloy Production) and 1B2a & 1B2b (Abandoned Oil & Gas Well Emissions)).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 37.06728744506836,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [157584.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 87416.0]},
      'statistics': {'mean': -6431.3271484375,
       'stddev': 4790.11279296875,
       'maximum': 37.06728744506836,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'total-waste': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_waste_Gridded_GHGI_Methane_v2_2015.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Total Waste (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Total annual methane emission fluxes from Waste (sum of inventory Waste categories: Municipal Solid Waste (MSW) and Industrial Landfills (5A1), Composting (5B1), Domestic and Industrial Wastewater Treatment and Discharge (5D)).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 682.870849609375,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [169000.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 76000.0]},
      'statistics': {'mean': -6897.05322265625,
       'stddev': 4625.6318359375,
       'maximum': 682.870849609375,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'surface-coal': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B1a_Surface_Coal_Gridded_GHGI_Methane_v2_2015.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Coal Mining - Surface Mining (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from active Surface Coal Mining (inventory Energy 1B1a sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 1098.6455078125,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [244654.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 346.0]},
      'statistics': {'mean': -9984.8603515625,
       'stddev': 376.0050354003906,
       'maximum': 1098.6455078125,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'transport-ps': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2a_Petroleum_Systems_Transport_Gridded_GHGI_Methane_v2_2015.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Petroleum - Transportation (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Petroleum Transportation (inventory Energy 1B2a sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 2.2425694465637207,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [233243.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11757.0]},
      'statistics': {'mean': -9519.1689453125,
       'stddev': 2137.19091796875,
       'maximum': 2.2425694465637207,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'abn-ong-other': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2ab_Abandoned_Oil_Gas_Gridded_GHGI_Methane_v2_2015.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Other - Abandoned Oil and Gas Wells (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Abandoned Oil and Gas Wells (inventory Energy 1B2a and 1B2b sub-categories).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 35.38062286376953,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [213033.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 31967.0]},
      'statistics': {'mean': -8694.3427734375,
       'stddev': 3367.9736328125,
       'maximum': 35.38062286376953,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'field-burning': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_3F_Field_Burning_Gridded_GHGI_Methane_v2_2015.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Agriculture - Field Burning (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from field burning of agricultural residues (inventory Agriculture category 3F).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 0.2510274052619934,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [225969.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 19031.0]},
      'statistics': {'mean': -9222.2998046875,
       'stddev': 2676.369873046875,
       'maximum': 0.2510274052619934,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'production-ps': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2a_Petroleum_Systems_Production_Gridded_GHGI_Methane_v2_2015.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Petroleum - Production (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Petroleum Production (inventory Energy 1B2a sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 176.6976318359375,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [233167.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11833.0]},
      'statistics': {'mean': -9516.00390625,
       'stddev': 2144.016357421875,
       'maximum': 176.6976318359375,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'total-methane': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_all-variables_Gridded_GHGI_Methane_v2_2015.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Total Methane (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Total annual methane emission fluxes from all Agriculture, Energy, Waste, and ‘Other’ sources included in this dataset.',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 1281.8486328125,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [153582.0,
        0.0,
        0.0,
        0.0,
        0.0,
        0.0,
        0.0,
        0.0,
        91349.0,
        69.0]},
      'statistics': {'mean': -6266.91455078125,
       'stddev': 4837.34130859375,
       'maximum': 1281.8486328125,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'exploration-ps': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2a_Petroleum_Systems_Exploration_Gridded_GHGI_Methane_v2_2015.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Petroleum - Exploration (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Petroleum Exploration (inventory Energy 1B2a sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 22.588895797729492,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [233666.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11334.0]},
      'statistics': {'mean': -9536.4287109375,
       'stddev': 2100.3115234375,
       'maximum': 22.588895797729492,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'processing-ngs': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2b_Natural_Gas_Processing_Gridded_GHGI_Methane_v2_2015.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Natural Gas - Processing (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Natural Gas Processing (inventory Energy 1B2b sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 187.31097412109375,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [244332.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 668.0]},
      'statistics': {'mean': -9971.7197265625,
       'stddev': 521.730712890625,
       'maximum': 187.31097412109375,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'production-ngs': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2b_Natural_Gas_Production_Gridded_GHGI_Methane_v2_2015.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Natural Gas - Production (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Natural Gas Production (inventory Energy 1B2b sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 114.9834976196289,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [231652.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13348.0]},
      'statistics': {'mean': -9454.083984375,
       'stddev': 2270.06787109375,
       'maximum': 114.9834976196289,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'exploration-ngs': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2b_Natural_Gas_Exploration_Gridded_GHGI_Methane_v2_2015.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Natural Gas - Exploration (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Natural Gas Exploration (inventory Energy 1B2b sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 15.978483200073242,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [235086.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9914.0]},
      'statistics': {'mean': -9594.3857421875,
       'stddev': 1970.2901611328125,
       'maximum': 15.978483200073242,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'composting-waste': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_5B1_Composting_Gridded_GHGI_Methane_v2_2015.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Waste - Composting (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Composting (inventory Waste category 5B1).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 4.711147785186768,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [241614.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3386.0]},
      'statistics': {'mean': -9860.8056640625,
       'stddev': 1167.364013671875,
       'maximum': 4.711147785186768,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'distribution-ngs': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2b_Natural_Gas_Distribution_Gridded_GHGI_Methane_v2_2015.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Natural Gas - Distribution (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Natural Gas Distribution (inventory Energy 1B2b sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 35.13219451904297,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [169148.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 75852.0]},
      'statistics': {'mean': -6903.28515625,
       'stddev': 4622.8603515625,
       'maximum': 35.13219451904297,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'rice-cultivation': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_3C_Rice_Cultivation_Gridded_GHGI_Methane_v2_2015.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Agriculture - Rice Cultivation (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from rice cultivation (inventory Agriculture category 3C).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 65.70611572265625,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [241106.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3894.0]},
      'statistics': {'mean': -9840.0498046875,
       'stddev': 1250.7320556640625,
       'maximum': 65.70611572265625,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'total-coal-mines': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_coal-mines_Gridded_GHGI_Methane_v2_2015.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Total Coal Mines (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Total annual methane emission fluxes from Coal Mines (sum of inventory 1B1a sub-categories which includes Underground Coal Mining, Surface Coal Mining and Abandoned Underground Coal Mines).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 1277.6651611328125,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [243302.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1654.0, 44.0]},
      'statistics': {'mean': -9929.5869140625,
       'stddev': 830.936767578125,
       'maximum': 1277.6651611328125,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'underground-coal': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B1a_Underground_Coal_Gridded_GHGI_Methane_v2_2015.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Coal Mining - Underground Mining (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from active Underground Coal Mining (inventory Energy 1B1a sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 1277.6651611328125,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [244765.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 199.0, 36.0]},
      'statistics': {'mean': -9989.32421875,
       'stddev': 312.3389587402344,
       'maximum': 1277.6651611328125,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'manure-management': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_3B_Manure_Management_Gridded_GHGI_Methane_v2_2015.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Agriculture - Manure Management (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from livestock manure management (inventory Agriculture category 3B).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 25.349428176879883,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [161630.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 83370.0]},
      'statistics': {'mean': -6596.38818359375,
       'stddev': 4737.71044921875,
       'maximum': 25.349428176879883,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'total-agriculture': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_agriculture_Gridded_GHGI_Methane_v2_2015.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Total Agriculture (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Total annual methane emission fluxes from Agriculture sources (sum of inventory categories: Enteric Fermentation (3A), Manure Management (3B), Rice Cultivation (3C), Field Burning of Agricultural Residues (3F)).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 67.56539916992188,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [161625.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 83375.0]},
      'statistics': {'mean': -6595.873046875,
       'stddev': 4738.212890625,
       'maximum': 67.56539916992188,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'msw-landfill-waste': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_5A1_Landfills_MSW_Gridded_GHGI_Methane_v2_2015.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Waste - Municipal Solid Waste (MSW) Landfills (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Municipal Solid Waste Landfills (inventory Waste 5A1 sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 409.67901611328125,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [242930.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2070.0]},
      'statistics': {'mean': -9914.3623046875,
       'stddev': 916.895263671875,
       'maximum': 409.67901611328125,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'abn-underground-coal': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B1a_Abandoned_Coal_Gridded_GHGI_Methane_v2_2015.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Coal Mining - Abandoned Underground Mines (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Abandoned Underground Coal Mines (inventory Energy 1B1a sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 102.31292724609375,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [243506.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1494.0]},
      'statistics': {'mean': -9938.0146484375,
       'stddev': 778.57080078125,
       'maximum': 102.31292724609375,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'enteric-fermentation': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_3A_Enteric_Fermentation_Gridded_GHGI_Methane_v2_2015.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Agriculture - Enteric Fermentation (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from enteric fermentation which is methane emitted as a by-product of the normal livestock digestive process (inventory Agriculture category 3A).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 36.259727478027344,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [161630.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 83370.0]},
      'statistics': {'mean': -6596.1982421875,
       'stddev': 4737.97412109375,
       'maximum': 36.259727478027344,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'petro-production-other': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_2B8_Industry_Petrochemical_Gridded_GHGI_Methane_v2_2015.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Other - Petrochemical Production (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Petrochemical Production (inventory Industrial Processes and Product Use category 2B8).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 31.93041229248047,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [244976.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 24.0]},
      'statistics': {'mean': -9998.0205078125,
       'stddev': 98.98760986328125,
       'maximum': 31.93041229248047,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'mobile-combustion-other': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1A_Combustion_Mobile_Gridded_GHGI_Methane_v2_2015.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Other - Mobile Combustion (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Mobile Combustion (inventory Energy 1A sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 2.6217808723449707,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [158262.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 86738.0]},
      'statistics': {'mean': -6459.02294921875,
       'stddev': 4781.71923828125,
       'maximum': 2.6217808723449707,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'total-petroleum-systems': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_petroleum-systems_Gridded_GHGI_Methane_v2_2015.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Total Petroleum Systems (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Total annual methane emission fluxes from Petroleum Systems (sum of inventory Energy 1B2a sub-categories which includes Petroleum Production, Refining, Exploration and Transport).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 178.30459594726562,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [233109.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11891.0]},
      'statistics': {'mean': -9513.6318359375,
       'stddev': 2149.021484375,
       'maximum': 178.30459594726562,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'transmission-storage-ngs': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2b_Natural_Gas_TransmissionStorage_Gridded_GHGI_Methane_v2_2015.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Natural Gas - Transmission and Storage (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Natural Gas Transmission and Storage (inventory Energy 1B2b sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 762.5398559570312,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [215919.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 29081.0]},
      'statistics': {'mean': -8812.078125,
       'stddev': 3234.171875,
       'maximum': 762.5398559570312,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'industrial-landfill-waste': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_5A1_Landfills_Industrial_Gridded_GHGI_Methane_v2_2015.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Waste - Industrial Landfills (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Industrial Landfills (inventory Waste 5A1 sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 356.34381103515625,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [240761.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4239.0]},
      'statistics': {'mean': -9825.9716796875,
       'stddev': 1304.0018310546875,
       'maximum': 356.34381103515625,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'total-natural-gas-systems': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_natural-gas-systems_Gridded_GHGI_Methane_v2_2015.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Total Natural Gas Systems (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Total annual methane emission fluxes from Natural Gas Systems (sum of inventory Energy 1B2b sub-categories which includes Natural Gas Production, Transmission & Storage, Processing, Distribution and Exploration).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 764.241455078125,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [166996.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 78004.0]},
      'statistics': {'mean': -6815.20703125,
       'stddev': 4658.43017578125,
       'maximum': 764.241455078125,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'ferroalloy-production-other': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_2C2_Industry_Ferroalloy_Gridded_GHGI_Methane_v2_2015.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Other - Ferroalloy Production (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Ferroalloy Production (inventory Industrial Processes and Product Use category 2C2).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 11.368054389953613,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [244991.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0]},
      'statistics': {'mean': -9998.6318359375,
       'stddev': 60.647396087646484,
       'maximum': 11.368054389953613,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'stationary-combustion-other': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1A_Combustion_Stationary_Gridded_GHGI_Methane_v2_2015.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Other - Stationary Combustion (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Stationary Combustion (inventory Energy 1A sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 10.980327606201172,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [169081.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 75919.0]},
      'statistics': {'mean': -6900.56103515625,
       'stddev': 4623.97119140625,
       'maximum': 10.980327606201172,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'rendered_preview': {'title': 'Rendered preview',
    'href': 'https://earth.gov/ghgcenter/api/raster/collections/epa-ch4emission-yeargrid-v2express/items/epa-ch4emission-yeargrid-v2express-2015/preview.png?assets=total-methane&maxzoom=5&minzoom=0&rescale=0%2C20&colormap_name=epa-ghgi-ch4',
    'rel': 'preview',
    'roles': ['overview'],
    'type': 'image/png'}},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-129.99999694387628, 19.99999923487448],
     [-60.00000305612369, 19.99999923487448],
     [-60.00000305612369, 55.00000076512553],
     [-129.99999694387628, 55.00000076512553],
     [-129.99999694387628, 19.99999923487448]]]},
  'collection': 'epa-ch4emission-yeargrid-v2express',
  'properties': {'datetime': '2015-01-01T00:00:00+00:00'},
  'stac_version': '1.0.0',
  'stac_extensions': ['https://stac-extensions.github.io/projection/v1.0.0/schema.json',
   'https://stac-extensions.github.io/raster/v1.1.0/schema.json']},
 '2014-01': {'id': 'epa-ch4emission-yeargrid-v2express-2014',
  'bbox': [-129.99999694387628,
   19.99999923487448,
   -60.00000305612369,
   55.00000076512553],
  'type': 'Feature',
  'links': [{'rel': 'collection',
    'type': 'application/json',
    'href': 'https://earth.gov/ghgcenter/api/stac/collections/epa-ch4emission-yeargrid-v2express'},
   {'rel': 'parent',
    'type': 'application/json',
    'href': 'https://earth.gov/ghgcenter/api/stac/collections/epa-ch4emission-yeargrid-v2express'},
   {'rel': 'root',
    'type': 'application/json',
    'href': 'https://earth.gov/ghgcenter/api/stac/'},
   {'rel': 'self',
    'type': 'application/geo+json',
    'href': 'https://earth.gov/ghgcenter/api/stac/collections/epa-ch4emission-yeargrid-v2express/items/epa-ch4emission-yeargrid-v2express-2014'},
   {'title': 'Map of Item',
    'href': 'https://earth.gov/ghgcenter/api/raster/collections/epa-ch4emission-yeargrid-v2express/items/epa-ch4emission-yeargrid-v2express-2014/map?assets=total-methane&maxzoom=5&minzoom=0&rescale=0%2C20&colormap_name=epa-ghgi-ch4',
    'rel': 'preview',
    'type': 'text/html'}],
  'assets': {'dwtd-waste': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_5D_Wastewater_Treatment_Domestic_Gridded_GHGI_Methane_v2_2014.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Waste - Domestic Wastewater Treatment & Discharge (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Domestic Wastewater Treatment and Discharge (inventory Waste 5D sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 115.42922973632812,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [169028.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 75972.0]},
      'statistics': {'mean': -6898.390625,
       'stddev': 4624.87060546875,
       'maximum': 115.42922973632812,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'iwtd-waste': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_5D_Wastewater_Treatment_Industrial_Gridded_GHGI_Methane_v2_2014.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Waste - Industrial Wastewater Treatment & Discharge (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Industrial Wastewater Treatment and Discharge (inventory Waste 5D sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 410.7450256347656,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [244188.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 812.0]},
      'statistics': {'mean': -9965.8515625,
       'stddev': 574.8560791015625,
       'maximum': 410.7450256347656,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'post-meter': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_Supp_1B2b_PostMeter_Gridded_GHGI_Methane_v2_2014.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Natural Gas - Post Meter (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions downstream of residential, commercial, industrial natural gas distribution meters (i.e., “Post Meter”) (inventory Energy 1B2b sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 31.550294876098633,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [169089.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 75911.0]},
      'statistics': {'mean': -6900.8857421875,
       'stddev': 4623.8388671875,
       'maximum': 31.550294876098633,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'refining-ps': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2a_Petroleum_Systems_Refining_Gridded_GHGI_Methane_v2_2014.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Petroleum - Refining (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Petroleum Refining (inventory Energy 1B2a sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 22.332012176513672,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [244890.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 110.0]},
      'statistics': {'mean': -9994.5087890625,
       'stddev': 211.87799072265625,
       'maximum': 22.332012176513672,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'total-other': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_other_Gridded_GHGI_Methane_v2_2014.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Total Other (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Total annual methane emission fluxes from ‘Other’ remaining sources (sum of inventory categories 1A (Energy Combustion), 2B8 & 2C2 (Petrochemical & Ferroalloy Production) and 1B2a & 1B2b (Abandoned Oil & Gas Well Emissions)).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 40.05666732788086,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [157633.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 87367.0]},
      'statistics': {'mean': -6433.32470703125,
       'stddev': 4789.515625,
       'maximum': 40.05666732788086,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'total-waste': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_waste_Gridded_GHGI_Methane_v2_2014.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Total Waste (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Total annual methane emission fluxes from Waste (sum of inventory Waste categories: Municipal Solid Waste (MSW) and Industrial Landfills (5A1), Composting (5B1), Domestic and Industrial Wastewater Treatment and Discharge (5D)).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 435.7950134277344,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [169001.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 75999.0]},
      'statistics': {'mean': -6897.0908203125,
       'stddev': 4625.61767578125,
       'maximum': 435.7950134277344,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'surface-coal': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B1a_Surface_Coal_Gridded_GHGI_Methane_v2_2014.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Coal Mining - Surface Mining (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from active Surface Coal Mining (inventory Energy 1B1a sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 1126.3037109375,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [244606.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 346.0, 48.0]},
      'statistics': {'mean': -9982.8984375,
       'stddev': 401.1851806640625,
       'maximum': 1126.3037109375,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'transport-ps': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2a_Petroleum_Systems_Transport_Gridded_GHGI_Methane_v2_2014.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Petroleum - Transportation (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Petroleum Transportation (inventory Energy 1B2a sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 2.6367530822753906,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [233106.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11894.0]},
      'statistics': {'mean': -9513.578125,
       'stddev': 2148.975341796875,
       'maximum': 2.6367530822753906,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'abn-ong-other': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2ab_Abandoned_Oil_Gas_Gridded_GHGI_Methane_v2_2014.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Other - Abandoned Oil and Gas Wells (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Abandoned Oil and Gas Wells (inventory Energy 1B2a and 1B2b sub-categories).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 36.203712463378906,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [213346.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 31654.0]},
      'statistics': {'mean': -8707.1181640625,
       'stddev': 3353.90576171875,
       'maximum': 36.203712463378906,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'field-burning': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_3F_Field_Burning_Gridded_GHGI_Methane_v2_2014.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Agriculture - Field Burning (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from field burning of agricultural residues (inventory Agriculture category 3F).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 0.271496057510376,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [225969.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 19031.0]},
      'statistics': {'mean': -9222.2998046875,
       'stddev': 2676.369873046875,
       'maximum': 0.271496057510376,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'production-ps': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2a_Petroleum_Systems_Production_Gridded_GHGI_Methane_v2_2014.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Petroleum - Production (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Petroleum Production (inventory Energy 1B2a sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 180.45787048339844,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [233053.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11947.0]},
      'statistics': {'mean': -9511.3515625,
       'stddev': 2153.791748046875,
       'maximum': 180.45787048339844,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'total-methane': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_all-variables_Gridded_GHGI_Methane_v2_2014.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Total Methane (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Total annual methane emission fluxes from all Agriculture, Energy, Waste, and ‘Other’ sources included in this dataset.',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 1569.3553466796875,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [153584.0,
        0.0,
        0.0,
        0.0,
        0.0,
        0.0,
        0.0,
        0.0,
        91400.0,
        16.0]},
      'statistics': {'mean': -6266.998046875,
       'stddev': 4837.318359375,
       'maximum': 1569.3553466796875,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'exploration-ps': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2a_Petroleum_Systems_Exploration_Gridded_GHGI_Methane_v2_2014.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Petroleum - Exploration (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Petroleum Exploration (inventory Energy 1B2a sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 19.061586380004883,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [233552.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11448.0]},
      'statistics': {'mean': -9531.7705078125,
       'stddev': 2110.361083984375,
       'maximum': 19.061586380004883,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'processing-ngs': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2b_Natural_Gas_Processing_Gridded_GHGI_Methane_v2_2014.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Natural Gas - Processing (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Natural Gas Processing (inventory Energy 1B2b sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 107.79277801513672,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [244337.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 663.0]},
      'statistics': {'mean': -9971.923828125,
       'stddev': 519.7811889648438,
       'maximum': 107.79277801513672,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'production-ngs': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2b_Natural_Gas_Production_Gridded_GHGI_Methane_v2_2014.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Natural Gas - Production (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Natural Gas Production (inventory Energy 1B2b sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 115.03480529785156,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [231603.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13397.0]},
      'statistics': {'mean': -9452.0849609375,
       'stddev': 2273.990234375,
       'maximum': 115.03480529785156,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'exploration-ngs': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2b_Natural_Gas_Exploration_Gridded_GHGI_Methane_v2_2014.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Natural Gas - Exploration (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Natural Gas Exploration (inventory Energy 1B2b sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 14.834802627563477,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [235059.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9941.0]},
      'statistics': {'mean': -9593.2822265625,
       'stddev': 1972.85693359375,
       'maximum': 14.834802627563477,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'composting-waste': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_5B1_Composting_Gridded_GHGI_Methane_v2_2014.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Waste - Composting (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Composting (inventory Waste category 5B1).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 4.696389675140381,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [241614.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3386.0]},
      'statistics': {'mean': -9860.8056640625,
       'stddev': 1167.3636474609375,
       'maximum': 4.696389675140381,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'distribution-ngs': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2b_Natural_Gas_Distribution_Gridded_GHGI_Methane_v2_2014.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Natural Gas - Distribution (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Natural Gas Distribution (inventory Energy 1B2b sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 35.533111572265625,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [169148.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 75852.0]},
      'statistics': {'mean': -6903.28515625,
       'stddev': 4622.86083984375,
       'maximum': 35.533111572265625,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'rice-cultivation': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_3C_Rice_Cultivation_Gridded_GHGI_Methane_v2_2014.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Agriculture - Rice Cultivation (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from rice cultivation (inventory Agriculture category 3C).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 56.475067138671875,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [241111.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3889.0]},
      'statistics': {'mean': -9840.2568359375,
       'stddev': 1249.931640625,
       'maximum': 56.475067138671875,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'total-coal-mines': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_coal-mines_Gridded_GHGI_Methane_v2_2014.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Total Coal Mines (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Total annual methane emission fluxes from Coal Mines (sum of inventory 1B1a sub-categories which includes Underground Coal Mining, Surface Coal Mining and Abandoned Underground Coal Mines).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 1546.9144287109375,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [243279.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1705.0, 16.0]},
      'statistics': {'mean': -9928.6416015625,
       'stddev': 836.5563354492188,
       'maximum': 1546.9144287109375,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'underground-coal': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B1a_Underground_Coal_Gridded_GHGI_Methane_v2_2014.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Coal Mining - Underground Mining (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from active Underground Coal Mining (inventory Energy 1B1a sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 1546.455078125,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [244750.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 236.0, 14.0]},
      'statistics': {'mean': -9988.708984375,
       'stddev': 322.0914611816406,
       'maximum': 1546.455078125,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'manure-management': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_3B_Manure_Management_Gridded_GHGI_Methane_v2_2014.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Agriculture - Manure Management (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from livestock manure management (inventory Agriculture category 3B).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 25.88896942138672,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [161630.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 83370.0]},
      'statistics': {'mean': -6596.3935546875,
       'stddev': 4737.7021484375,
       'maximum': 25.88896942138672,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'total-agriculture': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_agriculture_Gridded_GHGI_Methane_v2_2014.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Total Agriculture (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Total annual methane emission fluxes from Agriculture sources (sum of inventory categories: Enteric Fermentation (3A), Manure Management (3B), Rice Cultivation (3C), Field Burning of Agricultural Residues (3F)).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 60.68502426147461,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [161625.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 83375.0]},
      'statistics': {'mean': -6595.884765625,
       'stddev': 4738.19580078125,
       'maximum': 60.68502426147461,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'msw-landfill-waste': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_5A1_Landfills_MSW_Gridded_GHGI_Methane_v2_2014.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Waste - Municipal Solid Waste (MSW) Landfills (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Municipal Solid Waste Landfills (inventory Waste 5A1 sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 434.8089294433594,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [242870.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2130.0]},
      'statistics': {'mean': -9911.9111328125,
       'stddev': 929.9494018554688,
       'maximum': 434.8089294433594,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'abn-underground-coal': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B1a_Abandoned_Coal_Gridded_GHGI_Methane_v2_2014.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Coal Mining - Abandoned Underground Mines (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Abandoned Underground Coal Mines (inventory Energy 1B1a sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 113.11469268798828,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [243507.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1493.0]},
      'statistics': {'mean': -9938.056640625,
       'stddev': 778.3099975585938,
       'maximum': 113.11469268798828,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'enteric-fermentation': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_3A_Enteric_Fermentation_Gridded_GHGI_Methane_v2_2014.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Agriculture - Enteric Fermentation (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from enteric fermentation which is methane emitted as a by-product of the normal livestock digestive process (inventory Agriculture category 3A).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 35.412269592285156,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [161630.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 83370.0]},
      'statistics': {'mean': -6596.20361328125,
       'stddev': 4737.966796875,
       'maximum': 35.412269592285156,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'petro-production-other': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_2B8_Industry_Petrochemical_Gridded_GHGI_Methane_v2_2014.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Other - Petrochemical Production (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Petrochemical Production (inventory Industrial Processes and Product Use category 2B8).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 28.535207748413086,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [244976.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 24.0]},
      'statistics': {'mean': -9998.0205078125,
       'stddev': 98.97913360595703,
       'maximum': 28.535207748413086,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'mobile-combustion-other': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1A_Combustion_Mobile_Gridded_GHGI_Methane_v2_2014.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Other - Mobile Combustion (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Mobile Combustion (inventory Energy 1A sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 3.001227378845215,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [158244.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 86756.0]},
      'statistics': {'mean': -6458.28857421875,
       'stddev': 4781.943359375,
       'maximum': 3.001227378845215,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'total-petroleum-systems': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_petroleum-systems_Gridded_GHGI_Methane_v2_2014.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Total Petroleum Systems (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Total annual methane emission fluxes from Petroleum Systems (sum of inventory Energy 1B2a sub-categories which includes Petroleum Production, Refining, Exploration and Transport).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 182.16783142089844,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [232993.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12007.0]},
      'statistics': {'mean': -9508.892578125,
       'stddev': 2158.96630859375,
       'maximum': 182.16783142089844,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'transmission-storage-ngs': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2b_Natural_Gas_TransmissionStorage_Gridded_GHGI_Methane_v2_2014.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Natural Gas - Transmission and Storage (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Natural Gas Transmission and Storage (inventory Energy 1B2b sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 1120.2628173828125,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [215920.0,
        0.0,
        0.0,
        0.0,
        0.0,
        0.0,
        0.0,
        0.0,
        28762.0,
        318.0]},
      'statistics': {'mean': -8812.1220703125,
       'stddev': 3234.114990234375,
       'maximum': 1120.2628173828125,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'industrial-landfill-waste': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_5A1_Landfills_Industrial_Gridded_GHGI_Methane_v2_2014.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Waste - Industrial Landfills (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Industrial Landfills (inventory Waste 5A1 sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 355.0783386230469,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [240760.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4240.0]},
      'statistics': {'mean': -9825.9306640625,
       'stddev': 1304.15234375,
       'maximum': 355.0783386230469,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'total-natural-gas-systems': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_natural-gas-systems_Gridded_GHGI_Methane_v2_2014.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Total Natural Gas Systems (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Total annual methane emission fluxes from Natural Gas Systems (sum of inventory Energy 1B2b sub-categories which includes Natural Gas Production, Transmission & Storage, Processing, Distribution and Exploration).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 1120.334228515625,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [166989.0,
        0.0,
        0.0,
        0.0,
        0.0,
        0.0,
        0.0,
        0.0,
        76114.0,
        1897.0]},
      'statistics': {'mean': -6814.92578125,
       'stddev': 4658.53515625,
       'maximum': 1120.334228515625,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'ferroalloy-production-other': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_2C2_Industry_Ferroalloy_Gridded_GHGI_Methane_v2_2014.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Other - Ferroalloy Production (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Ferroalloy Production (inventory Industrial Processes and Product Use category 2C2).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 9.656103134155273,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [244991.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0]},
      'statistics': {'mean': -9998.6318359375,
       'stddev': 60.63356018066406,
       'maximum': 9.656103134155273,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'stationary-combustion-other': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1A_Combustion_Stationary_Gridded_GHGI_Methane_v2_2014.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Other - Stationary Combustion (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Stationary Combustion (inventory Energy 1A sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 10.486770629882812,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [169086.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 75914.0]},
      'statistics': {'mean': -6900.7646484375,
       'stddev': 4623.88818359375,
       'maximum': 10.486770629882812,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'rendered_preview': {'title': 'Rendered preview',
    'href': 'https://earth.gov/ghgcenter/api/raster/collections/epa-ch4emission-yeargrid-v2express/items/epa-ch4emission-yeargrid-v2express-2014/preview.png?assets=total-methane&maxzoom=5&minzoom=0&rescale=0%2C20&colormap_name=epa-ghgi-ch4',
    'rel': 'preview',
    'roles': ['overview'],
    'type': 'image/png'}},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-129.99999694387628, 19.99999923487448],
     [-60.00000305612369, 19.99999923487448],
     [-60.00000305612369, 55.00000076512553],
     [-129.99999694387628, 55.00000076512553],
     [-129.99999694387628, 19.99999923487448]]]},
  'collection': 'epa-ch4emission-yeargrid-v2express',
  'properties': {'datetime': '2014-01-01T00:00:00+00:00'},
  'stac_version': '1.0.0',
  'stac_extensions': ['https://stac-extensions.github.io/projection/v1.0.0/schema.json',
   'https://stac-extensions.github.io/raster/v1.1.0/schema.json']},
 '2013-01': {'id': 'epa-ch4emission-yeargrid-v2express-2013',
  'bbox': [-129.99999694387628,
   19.99999923487448,
   -60.00000305612369,
   55.00000076512553],
  'type': 'Feature',
  'links': [{'rel': 'collection',
    'type': 'application/json',
    'href': 'https://earth.gov/ghgcenter/api/stac/collections/epa-ch4emission-yeargrid-v2express'},
   {'rel': 'parent',
    'type': 'application/json',
    'href': 'https://earth.gov/ghgcenter/api/stac/collections/epa-ch4emission-yeargrid-v2express'},
   {'rel': 'root',
    'type': 'application/json',
    'href': 'https://earth.gov/ghgcenter/api/stac/'},
   {'rel': 'self',
    'type': 'application/geo+json',
    'href': 'https://earth.gov/ghgcenter/api/stac/collections/epa-ch4emission-yeargrid-v2express/items/epa-ch4emission-yeargrid-v2express-2013'},
   {'title': 'Map of Item',
    'href': 'https://earth.gov/ghgcenter/api/raster/collections/epa-ch4emission-yeargrid-v2express/items/epa-ch4emission-yeargrid-v2express-2013/map?assets=total-methane&maxzoom=5&minzoom=0&rescale=0%2C20&colormap_name=epa-ghgi-ch4',
    'rel': 'preview',
    'type': 'text/html'}],
  'assets': {'dwtd-waste': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_5D_Wastewater_Treatment_Domestic_Gridded_GHGI_Methane_v2_2013.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Waste - Domestic Wastewater Treatment & Discharge (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Domestic Wastewater Treatment and Discharge (inventory Waste 5D sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 123.90635681152344,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [169028.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 75972.0]},
      'statistics': {'mean': -6898.390625,
       'stddev': 4624.87109375,
       'maximum': 123.90635681152344,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'iwtd-waste': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_5D_Wastewater_Treatment_Industrial_Gridded_GHGI_Methane_v2_2013.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Waste - Industrial Wastewater Treatment & Discharge (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Industrial Wastewater Treatment and Discharge (inventory Waste 5D sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 116.2971420288086,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [244189.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 811.0]},
      'statistics': {'mean': -9965.890625,
       'stddev': 574.5055541992188,
       'maximum': 116.2971420288086,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'post-meter': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_Supp_1B2b_PostMeter_Gridded_GHGI_Methane_v2_2013.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Natural Gas - Post Meter (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions downstream of residential, commercial, industrial natural gas distribution meters (i.e., “Post Meter”) (inventory Energy 1B2b sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 26.718883514404297,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [169096.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 75904.0]},
      'statistics': {'mean': -6901.17236328125,
       'stddev': 4623.72119140625,
       'maximum': 26.718883514404297,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'refining-ps': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2a_Petroleum_Systems_Refining_Gridded_GHGI_Methane_v2_2013.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Petroleum - Refining (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Petroleum Refining (inventory Energy 1B2a sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 21.317737579345703,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [244888.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 112.0]},
      'statistics': {'mean': -9994.4267578125,
       'stddev': 213.79306030273438,
       'maximum': 21.317737579345703,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'total-other': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_other_Gridded_GHGI_Methane_v2_2013.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Total Other (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Total annual methane emission fluxes from ‘Other’ remaining sources (sum of inventory categories 1A (Energy Combustion), 2B8 & 2C2 (Petrochemical & Ferroalloy Production) and 1B2a & 1B2b (Abandoned Oil & Gas Well Emissions)).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 37.02518844604492,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [157695.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 87305.0]},
      'statistics': {'mean': -6435.85546875,
       'stddev': 4788.7568359375,
       'maximum': 37.02518844604492,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'total-waste': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_waste_Gridded_GHGI_Methane_v2_2013.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Total Waste (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Total annual methane emission fluxes from Waste (sum of inventory Waste categories: Municipal Solid Waste (MSW) and Industrial Landfills (5A1), Composting (5B1), Domestic and Industrial Wastewater Treatment and Discharge (5D)).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 458.09039306640625,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [169001.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 75999.0]},
      'statistics': {'mean': -6897.0908203125,
       'stddev': 4625.619140625,
       'maximum': 458.09039306640625,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'surface-coal': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B1a_Surface_Coal_Gridded_GHGI_Methane_v2_2013.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Coal Mining - Surface Mining (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from active Surface Coal Mining (inventory Energy 1B1a sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 1105.3885498046875,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [244585.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 415.0]},
      'statistics': {'mean': -9982.0419921875,
       'stddev': 411.69451904296875,
       'maximum': 1105.3885498046875,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'transport-ps': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2a_Petroleum_Systems_Transport_Gridded_GHGI_Methane_v2_2013.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Petroleum - Transportation (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Petroleum Transportation (inventory Energy 1B2a sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 2.4378771781921387,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [233161.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11839.0]},
      'statistics': {'mean': -9515.8232421875,
       'stddev': 2144.25390625,
       'maximum': 2.4378771781921387,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'abn-ong-other': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2ab_Abandoned_Oil_Gas_Gridded_GHGI_Methane_v2_2013.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Other - Abandoned Oil and Gas Wells (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Abandoned Oil and Gas Wells (inventory Energy 1B2a and 1B2b sub-categories).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 36.97425079345703,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [213385.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 31615.0]},
      'statistics': {'mean': -8708.7099609375,
       'stddev': 3352.145751953125,
       'maximum': 36.97425079345703,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'field-burning': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_3F_Field_Burning_Gridded_GHGI_Methane_v2_2013.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Agriculture - Field Burning (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from field burning of agricultural residues (inventory Agriculture category 3F).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 0.287362277507782,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [226320.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 18680.0]},
      'statistics': {'mean': -9236.625,
       'stddev': 2653.632568359375,
       'maximum': 0.287362277507782,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'production-ps': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2a_Petroleum_Systems_Production_Gridded_GHGI_Methane_v2_2013.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Petroleum - Production (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Petroleum Production (inventory Energy 1B2a sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 176.4376983642578,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [233104.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11896.0]},
      'statistics': {'mean': -9513.4365234375,
       'stddev': 2149.41259765625,
       'maximum': 176.4376983642578,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'total-methane': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_all-variables_Gridded_GHGI_Methane_v2_2013.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Total Methane (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Total annual methane emission fluxes from all Agriculture, Energy, Waste, and ‘Other’ sources included in this dataset.',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 1725.4105224609375,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [153576.0,
        0.0,
        0.0,
        0.0,
        0.0,
        0.0,
        0.0,
        0.0,
        91411.0,
        13.0]},
      'statistics': {'mean': -6266.6650390625,
       'stddev': 4837.4111328125,
       'maximum': 1725.4105224609375,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'exploration-ps': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2a_Petroleum_Systems_Exploration_Gridded_GHGI_Methane_v2_2013.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Petroleum - Exploration (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Petroleum Exploration (inventory Energy 1B2a sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 31.341127395629883,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [233615.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11385.0]},
      'statistics': {'mean': -9534.33984375,
       'stddev': 2104.843505859375,
       'maximum': 31.341127395629883,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'processing-ngs': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2b_Natural_Gas_Processing_Gridded_GHGI_Methane_v2_2013.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Natural Gas - Processing (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Natural Gas Processing (inventory Energy 1B2b sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 229.63604736328125,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [244339.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 661.0]},
      'statistics': {'mean': -9972.005859375,
       'stddev': 518.9930419921875,
       'maximum': 229.63604736328125,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'production-ngs': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2b_Natural_Gas_Production_Gridded_GHGI_Methane_v2_2013.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Natural Gas - Production (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Natural Gas Production (inventory Energy 1B2b sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 114.30866241455078,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [231521.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13479.0]},
      'statistics': {'mean': -9448.7333984375,
       'stddev': 2280.55029296875,
       'maximum': 114.30866241455078,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'exploration-ngs': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2b_Natural_Gas_Exploration_Gridded_GHGI_Methane_v2_2013.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Natural Gas - Exploration (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Natural Gas Exploration (inventory Energy 1B2b sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 36.715999603271484,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [234996.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10004.0]},
      'statistics': {'mean': -9590.7099609375,
       'stddev': 1978.8485107421875,
       'maximum': 36.715999603271484,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'composting-waste': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_5B1_Composting_Gridded_GHGI_Methane_v2_2013.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Waste - Composting (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Composting (inventory Waste category 5B1).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 4.567872524261475,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [241614.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3386.0]},
      'statistics': {'mean': -9860.8056640625,
       'stddev': 1167.3624267578125,
       'maximum': 4.567872524261475,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'distribution-ngs': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2b_Natural_Gas_Distribution_Gridded_GHGI_Methane_v2_2013.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Natural Gas - Distribution (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Natural Gas Distribution (inventory Energy 1B2b sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 35.8159294128418,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [169148.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 75852.0]},
      'statistics': {'mean': -6903.28515625,
       'stddev': 4622.861328125,
       'maximum': 35.8159294128418,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'rice-cultivation': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_3C_Rice_Cultivation_Gridded_GHGI_Methane_v2_2013.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Agriculture - Rice Cultivation (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from rice cultivation (inventory Agriculture category 3C).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 50.58477783203125,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [241210.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3790.0]},
      'statistics': {'mean': -9844.2978515625,
       'stddev': 1234.1571044921875,
       'maximum': 50.58477783203125,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'total-coal-mines': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_coal-mines_Gridded_GHGI_Methane_v2_2013.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Total Coal Mines (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Total annual methane emission fluxes from Coal Mines (sum of inventory 1B1a sub-categories which includes Underground Coal Mining, Surface Coal Mining and Abandoned Underground Coal Mines).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 1702.0435791015625,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [243269.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1719.0, 12.0]},
      'statistics': {'mean': -9928.232421875,
       'stddev': 838.955322265625,
       'maximum': 1702.0435791015625,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'underground-coal': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B1a_Underground_Coal_Gridded_GHGI_Methane_v2_2013.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Coal Mining - Underground Mining (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from active Underground Coal Mining (inventory Energy 1B1a sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 1702.0435791015625,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [244735.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 254.0, 11.0]},
      'statistics': {'mean': -9988.0966796875,
       'stddev': 331.434814453125,
       'maximum': 1702.0435791015625,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'manure-management': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_3B_Manure_Management_Gridded_GHGI_Methane_v2_2013.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Agriculture - Manure Management (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from livestock manure management (inventory Agriculture category 3B).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 27.094804763793945,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [161630.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 83370.0]},
      'statistics': {'mean': -6596.392578125,
       'stddev': 4737.703125,
       'maximum': 27.094804763793945,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'total-agriculture': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_agriculture_Gridded_GHGI_Methane_v2_2013.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Total Agriculture (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Total annual methane emission fluxes from Agriculture sources (sum of inventory categories: Enteric Fermentation (3A), Manure Management (3B), Rice Cultivation (3C), Field Burning of Agricultural Residues (3F)).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 64.92919921875,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [161625.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 83375.0]},
      'statistics': {'mean': -6595.8837890625,
       'stddev': 4738.19775390625,
       'maximum': 64.92919921875,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'msw-landfill-waste': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_5A1_Landfills_MSW_Gridded_GHGI_Methane_v2_2013.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Waste - Municipal Solid Waste (MSW) Landfills (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Municipal Solid Waste Landfills (inventory Waste 5A1 sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 457.1293640136719,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [242861.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2139.0]},
      'statistics': {'mean': -9911.54296875,
       'stddev': 931.893798828125,
       'maximum': 457.1293640136719,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'abn-underground-coal': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B1a_Abandoned_Coal_Gridded_GHGI_Methane_v2_2013.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Coal Mining - Abandoned Underground Mines (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Abandoned Underground Coal Mines (inventory Energy 1B1a sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 101.57100677490234,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [243508.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1492.0]},
      'statistics': {'mean': -9938.0966796875,
       'stddev': 778.0491333007812,
       'maximum': 101.57100677490234,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'enteric-fermentation': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_3A_Enteric_Fermentation_Gridded_GHGI_Methane_v2_2013.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Agriculture - Enteric Fermentation (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from enteric fermentation which is methane emitted as a by-product of the normal livestock digestive process (inventory Agriculture category 3A).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 37.817405700683594,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [161630.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 83370.0]},
      'statistics': {'mean': -6596.20068359375,
       'stddev': 4737.97216796875,
       'maximum': 37.817405700683594,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'petro-production-other': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_2B8_Industry_Petrochemical_Gridded_GHGI_Methane_v2_2013.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Other - Petrochemical Production (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Petrochemical Production (inventory Industrial Processes and Product Use category 2B8).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 6.107999324798584,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [244976.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 24.0]},
      'statistics': {'mean': -9998.0205078125,
       'stddev': 98.97135162353516,
       'maximum': 6.107999324798584,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'mobile-combustion-other': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1A_Combustion_Mobile_Gridded_GHGI_Methane_v2_2013.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Other - Mobile Combustion (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Mobile Combustion (inventory Energy 1A sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 4.136491298675537,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [158357.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 86643.0]},
      'statistics': {'mean': -6462.8994140625,
       'stddev': 4780.5341796875,
       'maximum': 4.136491298675537,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'total-petroleum-systems': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_petroleum-systems_Gridded_GHGI_Methane_v2_2013.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Total Petroleum Systems (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Total annual methane emission fluxes from Petroleum Systems (sum of inventory Energy 1B2a sub-categories which includes Petroleum Production, Refining, Exploration and Transport).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 178.14234924316406,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [233043.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11957.0]},
      'statistics': {'mean': -9510.9326171875,
       'stddev': 2154.6982421875,
       'maximum': 178.14234924316406,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'transmission-storage-ngs': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2b_Natural_Gas_TransmissionStorage_Gridded_GHGI_Methane_v2_2013.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Natural Gas - Transmission and Storage (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Natural Gas Transmission and Storage (inventory Energy 1B2b sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 1052.6846923828125,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [215921.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 29079.0]},
      'statistics': {'mean': -8812.1650390625,
       'stddev': 3234.06103515625,
       'maximum': 1052.6846923828125,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'industrial-landfill-waste': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_5A1_Landfills_Industrial_Gridded_GHGI_Methane_v2_2013.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Waste - Industrial Landfills (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Industrial Landfills (inventory Waste 5A1 sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 353.3255920410156,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [240759.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4241.0]},
      'statistics': {'mean': -9825.890625,
       'stddev': 1304.3028564453125,
       'maximum': 353.3255920410156,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'total-natural-gas-systems': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_natural-gas-systems_Gridded_GHGI_Methane_v2_2013.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Total Natural Gas Systems (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Total annual methane emission fluxes from Natural Gas Systems (sum of inventory Energy 1B2b sub-categories which includes Natural Gas Production, Transmission & Storage, Processing, Distribution and Exploration).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 1052.7557373046875,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [166978.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 78022.0]},
      'statistics': {'mean': -6814.470703125,
       'stddev': 4658.7177734375,
       'maximum': 1052.7557373046875,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'ferroalloy-production-other': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_2C2_Industry_Ferroalloy_Gridded_GHGI_Methane_v2_2013.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Other - Ferroalloy Production (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Ferroalloy Production (inventory Industrial Processes and Product Use category 2C2).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 6.902131080627441,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [244992.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0]},
      'statistics': {'mean': -9998.673828125,
       'stddev': 57.15646743774414,
       'maximum': 6.902131080627441,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'stationary-combustion-other': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1A_Combustion_Stationary_Gridded_GHGI_Methane_v2_2013.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Other - Stationary Combustion (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Stationary Combustion (inventory Energy 1A sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 11.00235366821289,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [169093.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 75907.0]},
      'statistics': {'mean': -6901.0498046875,
       'stddev': 4623.7705078125,
       'maximum': 11.00235366821289,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'rendered_preview': {'title': 'Rendered preview',
    'href': 'https://earth.gov/ghgcenter/api/raster/collections/epa-ch4emission-yeargrid-v2express/items/epa-ch4emission-yeargrid-v2express-2013/preview.png?assets=total-methane&maxzoom=5&minzoom=0&rescale=0%2C20&colormap_name=epa-ghgi-ch4',
    'rel': 'preview',
    'roles': ['overview'],
    'type': 'image/png'}},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-129.99999694387628, 19.99999923487448],
     [-60.00000305612369, 19.99999923487448],
     [-60.00000305612369, 55.00000076512553],
     [-129.99999694387628, 55.00000076512553],
     [-129.99999694387628, 19.99999923487448]]]},
  'collection': 'epa-ch4emission-yeargrid-v2express',
  'properties': {'datetime': '2013-01-01T00:00:00+00:00'},
  'stac_version': '1.0.0',
  'stac_extensions': ['https://stac-extensions.github.io/projection/v1.0.0/schema.json',
   'https://stac-extensions.github.io/raster/v1.1.0/schema.json']},
 '2012-01': {'id': 'epa-ch4emission-yeargrid-v2express-2012',
  'bbox': [-129.99999694387628,
   19.99999923487448,
   -60.00000305612369,
   55.00000076512553],
  'type': 'Feature',
  'links': [{'rel': 'collection',
    'type': 'application/json',
    'href': 'https://earth.gov/ghgcenter/api/stac/collections/epa-ch4emission-yeargrid-v2express'},
   {'rel': 'parent',
    'type': 'application/json',
    'href': 'https://earth.gov/ghgcenter/api/stac/collections/epa-ch4emission-yeargrid-v2express'},
   {'rel': 'root',
    'type': 'application/json',
    'href': 'https://earth.gov/ghgcenter/api/stac/'},
   {'rel': 'self',
    'type': 'application/geo+json',
    'href': 'https://earth.gov/ghgcenter/api/stac/collections/epa-ch4emission-yeargrid-v2express/items/epa-ch4emission-yeargrid-v2express-2012'},
   {'title': 'Map of Item',
    'href': 'https://earth.gov/ghgcenter/api/raster/collections/epa-ch4emission-yeargrid-v2express/items/epa-ch4emission-yeargrid-v2express-2012/map?assets=total-methane&maxzoom=5&minzoom=0&rescale=0%2C20&colormap_name=epa-ghgi-ch4',
    'rel': 'preview',
    'type': 'text/html'}],
  'assets': {'dwtd-waste': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_5D_Wastewater_Treatment_Domestic_Gridded_GHGI_Methane_v2_2012.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Waste - Domestic Wastewater Treatment & Discharge (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Domestic Wastewater Treatment and Discharge (inventory Waste 5D sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 131.3120574951172,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [169028.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 75972.0]},
      'statistics': {'mean': -6898.388671875,
       'stddev': 4624.87158203125,
       'maximum': 131.3120574951172,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'iwtd-waste': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_5D_Wastewater_Treatment_Industrial_Gridded_GHGI_Methane_v2_2012.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Waste - Industrial Wastewater Treatment & Discharge (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Industrial Wastewater Treatment and Discharge (inventory Waste 5D sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 105.04296875,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [244266.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 734.0]},
      'statistics': {'mean': -9969.033203125,
       'stddev': 546.6561279296875,
       'maximum': 105.04296875,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'post-meter': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_Supp_1B2b_PostMeter_Gridded_GHGI_Methane_v2_2012.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Natural Gas - Post Meter (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions downstream of residential, commercial, industrial natural gas distribution meters (i.e., “Post Meter”) (inventory Energy 1B2b sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 20.80799674987793,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [169094.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 75906.0]},
      'statistics': {'mean': -6901.09033203125,
       'stddev': 4623.75537109375,
       'maximum': 20.80799674987793,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'refining-ps': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2a_Petroleum_Systems_Refining_Gridded_GHGI_Methane_v2_2012.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Petroleum - Refining (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Petroleum Refining (inventory Energy 1B2a sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 18.562400817871094,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [244886.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 114.0]},
      'statistics': {'mean': -9994.345703125,
       'stddev': 215.68849182128906,
       'maximum': 18.562400817871094,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'total-other': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_other_Gridded_GHGI_Methane_v2_2012.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Total Other (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Total annual methane emission fluxes from ‘Other’ remaining sources (sum of inventory categories 1A (Energy Combustion), 2B8 & 2C2 (Petrochemical & Ferroalloy Production) and 1B2a & 1B2b (Abandoned Oil & Gas Well Emissions)).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 36.9874267578125,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [157235.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 87765.0]},
      'statistics': {'mean': -6417.08447265625,
       'stddev': 4794.34521484375,
       'maximum': 36.9874267578125,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'total-waste': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_waste_Gridded_GHGI_Methane_v2_2012.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Total Waste (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Total annual methane emission fluxes from Waste (sum of inventory Waste categories: Municipal Solid Waste (MSW) and Industrial Landfills (5A1), Composting (5B1), Domestic and Industrial Wastewater Treatment and Discharge (5D)).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 465.1289367675781,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [169001.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 75999.0]},
      'statistics': {'mean': -6897.08447265625,
       'stddev': 4625.62841796875,
       'maximum': 465.1289367675781,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'surface-coal': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B1a_Surface_Coal_Gridded_GHGI_Methane_v2_2012.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Coal Mining - Surface Mining (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from active Surface Coal Mining (inventory Energy 1B1a sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 994.0452880859375,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [244547.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 453.0]},
      'statistics': {'mean': -9980.490234375,
       'stddev': 430.07666015625,
       'maximum': 994.0452880859375,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'transport-ps': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2a_Petroleum_Systems_Transport_Gridded_GHGI_Methane_v2_2012.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Petroleum - Transportation (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Petroleum Transportation (inventory Energy 1B2a sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 2.1466116905212402,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [233173.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11827.0]},
      'statistics': {'mean': -9516.3134765625,
       'stddev': 2143.221923828125,
       'maximum': 2.1466116905212402,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'abn-ong-other': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2ab_Abandoned_Oil_Gas_Gridded_GHGI_Methane_v2_2012.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Other - Abandoned Oil and Gas Wells (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Abandoned Oil and Gas Wells (inventory Energy 1B2a and 1B2b sub-categories).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 36.94509506225586,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [213590.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 31410.0]},
      'statistics': {'mean': -8717.0771484375,
       'stddev': 3342.8642578125,
       'maximum': 36.94509506225586,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'field-burning': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_3F_Field_Burning_Gridded_GHGI_Methane_v2_2012.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Agriculture - Field Burning (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from field burning of agricultural residues (inventory Agriculture category 3F).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 0.26811718940734863,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [225487.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 19513.0]},
      'statistics': {'mean': -9202.62890625,
       'stddev': 2707.158203125,
       'maximum': 0.26811718940734863,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'production-ps': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2a_Petroleum_Systems_Production_Gridded_GHGI_Methane_v2_2012.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Petroleum - Production (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Petroleum Production (inventory Energy 1B2a sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 161.6470489501953,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [233076.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11924.0]},
      'statistics': {'mean': -9512.30078125,
       'stddev': 2151.78271484375,
       'maximum': 161.6470489501953,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'total-methane': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_all-variables_Gridded_GHGI_Methane_v2_2012.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Total Methane (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Total annual methane emission fluxes from all Agriculture, Energy, Waste, and ‘Other’ sources included in this dataset.',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 1910.80810546875,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [153469.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 91522.0, 9.0]},
      'statistics': {'mean': -6262.291015625,
       'stddev': 4838.56201171875,
       'maximum': 1910.80810546875,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'exploration-ps': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2a_Petroleum_Systems_Exploration_Gridded_GHGI_Methane_v2_2012.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Petroleum - Exploration (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Petroleum Exploration (inventory Energy 1B2a sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 60.874107360839844,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [233662.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11338.0]},
      'statistics': {'mean': -9536.25390625,
       'stddev': 2100.718505859375,
       'maximum': 60.874107360839844,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'processing-ngs': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2b_Natural_Gas_Processing_Gridded_GHGI_Methane_v2_2012.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Natural Gas - Processing (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Natural Gas Processing (inventory Energy 1B2b sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 253.72096252441406,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [244349.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 651.0]},
      'statistics': {'mean': -9972.4150390625,
       'stddev': 515.045166015625,
       'maximum': 253.72096252441406,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'production-ngs': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2b_Natural_Gas_Production_Gridded_GHGI_Methane_v2_2012.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Natural Gas - Production (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Natural Gas Production (inventory Energy 1B2b sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 124.75360107421875,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [231589.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13411.0]},
      'statistics': {'mean': -9451.5068359375,
       'stddev': 2275.126953125,
       'maximum': 124.75360107421875,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'exploration-ngs': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2b_Natural_Gas_Exploration_Gridded_GHGI_Methane_v2_2012.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Natural Gas - Exploration (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Natural Gas Exploration (inventory Energy 1B2b sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 25.08983612060547,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [235143.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9857.0]},
      'statistics': {'mean': -9596.7099609375,
       'stddev': 1964.8673095703125,
       'maximum': 25.08983612060547,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'composting-waste': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_5B1_Composting_Gridded_GHGI_Methane_v2_2012.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Waste - Composting (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Composting (inventory Waste category 5B1).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 10.551192283630371,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [241611.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3389.0]},
      'statistics': {'mean': -9860.6826171875,
       'stddev': 1167.8707275390625,
       'maximum': 10.551192283630371,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'distribution-ngs': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2b_Natural_Gas_Distribution_Gridded_GHGI_Methane_v2_2012.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Natural Gas - Distribution (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Natural Gas Distribution (inventory Energy 1B2b sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 36.85501480102539,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [169148.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 75852.0]},
      'statistics': {'mean': -6903.2841796875,
       'stddev': 4622.8623046875,
       'maximum': 36.85501480102539,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'rice-cultivation': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_3C_Rice_Cultivation_Gridded_GHGI_Methane_v2_2012.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Agriculture - Rice Cultivation (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from rice cultivation (inventory Agriculture category 3C).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 46.495235443115234,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [241305.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3695.0]},
      'statistics': {'mean': -9848.1728515625,
       'stddev': 1218.8536376953125,
       'maximum': 46.495235443115234,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'total-coal-mines': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_coal-mines_Gridded_GHGI_Methane_v2_2012.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Total Coal Mines (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Total annual methane emission fluxes from Coal Mines (sum of inventory 1B1a sub-categories which includes Underground Coal Mining, Surface Coal Mining and Abandoned Underground Coal Mines).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 1884.5418701171875,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [243246.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1746.0, 8.0]},
      'statistics': {'mean': -9927.2919921875,
       'stddev': 844.4795532226562,
       'maximum': 1884.5418701171875,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'underground-coal': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B1a_Underground_Coal_Gridded_GHGI_Methane_v2_2012.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Coal Mining - Underground Mining (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from active Underground Coal Mining (inventory Energy 1B1a sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 1884.4639892578125,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [244714.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 279.0, 7.0]},
      'statistics': {'mean': -9987.236328125,
       'stddev': 344.1312561035156,
       'maximum': 1884.4639892578125,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'manure-management': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_3B_Manure_Management_Gridded_GHGI_Methane_v2_2012.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Agriculture - Manure Management (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from livestock manure management (inventory Agriculture category 3B).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 27.62264633178711,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [161630.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 83370.0]},
      'statistics': {'mean': -6596.3896484375,
       'stddev': 4737.70751953125,
       'maximum': 27.62264633178711,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'total-agriculture': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_agriculture_Gridded_GHGI_Methane_v2_2012.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Total Agriculture (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Total annual methane emission fluxes from Agriculture sources (sum of inventory categories: Enteric Fermentation (3A), Manure Management (3B), Rice Cultivation (3C), Field Burning of Agricultural Residues (3F)).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 65.74567413330078,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [161625.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 83375.0]},
      'statistics': {'mean': -6595.87744140625,
       'stddev': 4738.2060546875,
       'maximum': 65.74567413330078,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'msw-landfill-waste': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_5A1_Landfills_MSW_Gridded_GHGI_Methane_v2_2012.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Waste - Municipal Solid Waste (MSW) Landfills (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Municipal Solid Waste Landfills (inventory Waste 5A1 sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 464.0804443359375,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [242848.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2152.0]},
      'statistics': {'mean': -9911.0078125,
       'stddev': 934.75,
       'maximum': 464.0804443359375,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'abn-underground-coal': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B1a_Abandoned_Coal_Gridded_GHGI_Methane_v2_2012.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Coal Mining - Abandoned Underground Mines (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Abandoned Underground Coal Mines (inventory Energy 1B1a sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 101.88721466064453,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [243509.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1491.0]},
      'statistics': {'mean': -9938.138671875,
       'stddev': 777.789306640625,
       'maximum': 101.88721466064453,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'enteric-fermentation': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_3A_Enteric_Fermentation_Gridded_GHGI_Methane_v2_2012.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Agriculture - Enteric Fermentation (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from enteric fermentation which is methane emitted as a by-product of the normal livestock digestive process (inventory Agriculture category 3A).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 38.10722351074219,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [161630.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 83370.0]},
      'statistics': {'mean': -6596.2001953125,
       'stddev': 4737.97314453125,
       'maximum': 38.10722351074219,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'petro-production-other': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_2B8_Industry_Petrochemical_Gridded_GHGI_Methane_v2_2012.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Other - Petrochemical Production (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Petrochemical Production (inventory Industrial Processes and Product Use category 2B8).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 2.9906651973724365,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [244976.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 24.0]},
      'statistics': {'mean': -9998.0205078125,
       'stddev': 98.96927642822266,
       'maximum': 2.9906651973724365,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'mobile-combustion-other': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1A_Combustion_Mobile_Gridded_GHGI_Methane_v2_2012.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Other - Mobile Combustion (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Mobile Combustion (inventory Energy 1A sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 1.8657997846603394,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [157770.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 87230.0]},
      'statistics': {'mean': -6438.94287109375,
       'stddev': 4787.802734375,
       'maximum': 1.8657997846603394,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'total-petroleum-systems': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_petroleum-systems_Gridded_GHGI_Methane_v2_2012.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Total Petroleum Systems (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Total annual methane emission fluxes from Petroleum Systems (sum of inventory Energy 1B2a sub-categories which includes Petroleum Production, Refining, Exploration and Transport).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 163.31410217285156,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [233014.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11986.0]},
      'statistics': {'mean': -9509.7529296875,
       'stddev': 2157.157958984375,
       'maximum': 163.31410217285156,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'transmission-storage-ngs': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2b_Natural_Gas_TransmissionStorage_Gridded_GHGI_Methane_v2_2012.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Natural Gas - Transmission and Storage (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Natural Gas Transmission and Storage (inventory Energy 1B2b sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 971.8997192382812,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [215923.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 29077.0]},
      'statistics': {'mean': -8812.2470703125,
       'stddev': 3233.96142578125,
       'maximum': 971.8997192382812,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'industrial-landfill-waste': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_5A1_Landfills_Industrial_Gridded_GHGI_Methane_v2_2012.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Waste - Industrial Landfills (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Industrial Landfills (inventory Waste 5A1 sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 351.3695983886719,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [240759.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4241.0]},
      'statistics': {'mean': -9825.890625,
       'stddev': 1304.30224609375,
       'maximum': 351.3695983886719,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'total-natural-gas-systems': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_natural-gas-systems_Gridded_GHGI_Methane_v2_2012.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Total Natural Gas Systems (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Total annual methane emission fluxes from Natural Gas Systems (sum of inventory Energy 1B2b sub-categories which includes Natural Gas Production, Transmission & Storage, Processing, Distribution and Exploration).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 971.9710083007812,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [166931.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 78069.0]},
      'statistics': {'mean': -6812.556640625,
       'stddev': 4659.45947265625,
       'maximum': 971.9710083007812,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'ferroalloy-production-other': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_2C2_Industry_Ferroalloy_Gridded_GHGI_Methane_v2_2012.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Other - Ferroalloy Production (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Ferroalloy Production (inventory Industrial Processes and Product Use category 2C2).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 4.439168930053711,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [244992.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0]},
      'statistics': {'mean': -9998.673828125,
       'stddev': 57.15283203125,
       'maximum': 4.439168930053711,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'stationary-combustion-other': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1A_Combustion_Stationary_Gridded_GHGI_Methane_v2_2012.tif',
    'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
    'roles': ['data', 'layer'],
    'title': 'Other - Stationary Combustion (annual)',
    'proj:bbox': [-129.99999694387628,
     19.99999923487448,
     -60.00000305612369,
     55.00000076512553],
    'proj:epsg': 4326.0,
    'proj:shape': [350.0, 700.0],
    'description': 'Annual methane emissions from Stationary Combustion (inventory Energy 1A sub-category).',
    'raster:bands': [{'scale': 1.0,
      'offset': 0.0,
      'sampling': 'area',
      'data_type': 'float32',
      'histogram': {'max': 8.125173568725586,
       'min': -9999.0,
       'count': 11.0,
       'buckets': [169091.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 75909.0]},
      'statistics': {'mean': -6900.970703125,
       'stddev': 4623.80078125,
       'maximum': 8.125173568725586,
       'minimum': -9999.0,
       'valid_percent': 0.0004081632653061224}}],
    'proj:geometry': {'type': 'Polygon',
     'coordinates': [[[-129.99999694387628, 19.99999923487448],
       [-60.00000305612369, 19.99999923487448],
       [-60.00000305612369, 55.00000076512553],
       [-129.99999694387628, 55.00000076512553],
       [-129.99999694387628, 19.99999923487448]]]},
    'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
     'name': 'WGS 84',
     'type': 'GeographicCRS',
     'datum': {'name': 'World Geodetic System 1984',
      'type': 'GeodeticReferenceFrame',
      'ellipsoid': {'name': 'WGS 84',
       'semi_major_axis': 6378137.0,
       'inverse_flattening': 298.257223563}},
     '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
     'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
        'unit': 'degree',
        'direction': 'north',
        'abbreviation': 'Lat'},
       {'name': 'Geodetic longitude',
        'unit': 'degree',
        'direction': 'east',
        'abbreviation': 'Lon'}],
      'subtype': 'ellipsoidal'}},
    'proj:transform': [0.09999999126821799,
     0.0,
     -129.99999694387628,
     0.0,
     -0.10000000437214586,
     55.00000076512553,
     0.0,
     0.0,
     1.0]},
   'rendered_preview': {'title': 'Rendered preview',
    'href': 'https://earth.gov/ghgcenter/api/raster/collections/epa-ch4emission-yeargrid-v2express/items/epa-ch4emission-yeargrid-v2express-2012/preview.png?assets=total-methane&maxzoom=5&minzoom=0&rescale=0%2C20&colormap_name=epa-ghgi-ch4',
    'rel': 'preview',
    'roles': ['overview'],
    'type': 'image/png'}},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-129.99999694387628, 19.99999923487448],
     [-60.00000305612369, 19.99999923487448],
     [-60.00000305612369, 55.00000076512553],
     [-129.99999694387628, 55.00000076512553],
     [-129.99999694387628, 19.99999923487448]]]},
  'collection': 'epa-ch4emission-yeargrid-v2express',
  'properties': {'datetime': '2012-01-01T00:00:00+00:00'},
  'stac_version': '1.0.0',
  'stac_extensions': ['https://stac-extensions.github.io/projection/v1.0.0/schema.json',
   'https://stac-extensions.github.io/raster/v1.1.0/schema.json']}}

Now, you will pass the item id, collection name, asset name, and the rescaling factor to the Raster API endpoint. This step is done twice, once for January 2018 and again for January 2012, so that you can visualize each event independently.

# Choose a color map for displaying the first observation (event)
# Please refer to matplotlib library if you'd prefer choosing a different color ramp.
# For more information on Colormaps in Matplotlib, please visit https://matplotlib.org/stable/users/explain/colors/colormaps.html
color_map = "rainbow" 

observation_date_1 = '2018'

# Don't change anything here
observation_1 = f'epa-ch4emission-yeargrid-v2express-{observation_date_1}'

# Make a GET request to retrieve information for the 2018 tile 
january_2018_tile = requests.get(

    # Pass the collection name, the item number in the list, and its ID
    f"{RASTER_API_URL}/collections/{items['2018-01']['collection']}/items/{items['2018-01']['id']}/tilejson.json?"

    # Pass the asset name
    f"&assets={asset_name}"

    # Pass the color formula and colormap for custom visualization
    f"&color_formula=gamma+r+1.05&colormap_name={color_map}"

    # Pass the minimum and maximum values for rescaling
    f"&rescale={rescale_values['min']},{rescale_values['max']}"), 

# Return the response in JSON format
).json()

# Print the properties of the retrieved granule to the console
january_2018_tile
{'tilejson': '2.2.0',
 'version': '1.0.0',
 'scheme': 'xyz',
 'tiles': ['https://earth.gov/ghgcenter/api/raster/collections/epa-ch4emission-yeargrid-v2express/items/epa-ch4emission-yeargrid-v2express-2018/tiles/WebMercatorQuad/{z}/{x}/{y}@1x?assets=surface-coal&color_formula=gamma+r+1.05&colormap_name=rainbow&rescale=-9999.0%2C569.109130859375'],
 'minzoom': 0,
 'maxzoom': 24,
 'bounds': [-129.99999694387628,
  19.99999923487448,
  -60.00000305612369,
  55.00000076512553],
 'center': [-94.99999999999999, 37.5, 0]}
# You will repeat the same approach used in the previous step to retrieve the second observation of interest
observation_date_2 = '2012'

# Don't change anything here
observation_2 = f'epa-ch4emission-yeargrid-v2express-{observation_date_2}'

# Make a GET request to retrieve information for the 2018 tile 
january_2012_tile = requests.get(

    # Pass the collection name, the item number in the list, and its ID
    f"{RASTER_API_URL}/collections/{items['2012-01']['collection']}/items/{items['2012-01']['id']}/tilejson.json?"

    # Pass the asset name
    f"&assets={asset_name}"

    # Pass the color formula and colormap for custom visualization
    f"&color_formula=gamma+r+1.05&colormap_name={color_map}"

    # Pass the minimum and maximum values for rescaling
    f"&rescale={rescale_values['min']},{rescale_values['max']}"), 

# Return the response in JSON format
).json()

# Print the properties of the retrieved granule to the console
january_2012_tile
{'tilejson': '2.2.0',
 'version': '1.0.0',
 'scheme': 'xyz',
 'tiles': ['https://earth.gov/ghgcenter/api/raster/collections/epa-ch4emission-yeargrid-v2express/items/epa-ch4emission-yeargrid-v2express-2012/tiles/WebMercatorQuad/{z}/{x}/{y}@1x?assets=surface-coal&color_formula=gamma+r+1.05&colormap_name=rainbow&rescale=-9999.0%2C569.109130859375'],
 'minzoom': 0,
 'maxzoom': 24,
 'bounds': [-129.99999694387628,
  19.99999923487448,
  -60.00000305612369,
  55.00000076512553],
 'center': [-94.99999999999999, 37.5, 0]}

Map Out Selected Tiles

# Set initial zoom and center of map for CH₄ Layer
# Centre of map [latitude,longitude]
# 'folium.plugins' allows mapping side-by-side
map_ = folium.plugins.DualMap(location=(38.9, -80.0), zoom_start=8)

# Define the first map layer (January 2018)
map_layer_2018 = TileLayer(
    tiles=january_2018_tile["tiles"][0], # Path to retrieve the tile
    attr="GHG", # Set the attribution
    name='January 2018', # Title for the layer
    overlay=True, # The layer can be overlaid on the map
    opacity=0.7, # Adjust the transparency of the layer
)

# Add the first layer to the Dual Map
map_layer_2018.add_to(map_.m1)

# Define the second map layer (January 2012)
map_layer_2012 = TileLayer(
    tiles=january_2012_tile["tiles"][0], # Path to retrieve the tile
    attr="GHG", # Set the attribution
    name='January 2012', # Title for the layer
    overlay=True, # The layer can be overlaid on the map
    opacity=0.7, # Adjust the transparency of the layer
)

# Add the second layer to the Dual Map
map_layer_2012.add_to(map_.m2)

# Display data markers (titles) on both maps
folium.Marker((40, 5.0), tooltip="both").add_to(map_)

# Add a layer control to switch between map layers
folium.LayerControl(collapsed=False).add_to(map_)

# Visualize the Dual Map
map_
Make this Notebook Trusted to load map: File -> Trust Notebook

Calculate Zonal Statistics

To perform zonal statistics, you first need to create a polygon. In this use case, you are creating a polygon for the Pittsburgh, Pennsylvania region.

# Texas, USA
Pittsburgh_aoi = {
    "type": "Feature", # Create a feature object
    "properties": {},
    "geometry": { # Set the bounding coordinates for the polygon
        "coordinates": [
            [
                [-79.4, 39.9], # South-east bounding coordinate
                [-79.4, 40.9], # North-east bounding coordinate
                [-80.5, 40.9], # North-west bounding coordinate
                [-80.5, 39.9], # South-west bounding coordinate
                [-79.4, 39.9]  # South-east bounding coordinate (closing the polygon)
            ]
        ],
        "type": "Polygon",
    },
}
# Create a new map to display the generated polygon
# We'll plug in the coordinates for a location
# Central to the study area and a reasonable zoom level
aoi_map = Map(

    # Base map is set to OpenStreetMap
    tiles="OpenStreetMap",

    # Define the spatial properties for the map
    location=[
        39.9,-79.4
    ],

    # Set the zoom value
    zoom_start=9,
)

# Insert the polygon to the map
folium.GeoJson(Pittsburgh_aoi, name="Pittsburgh, USA").add_to(aoi_map)

# Visualize the map
aoi_map
Make this Notebook Trusted to load map: File -> Trust Notebook
# Check total number of items available within the collection
items = requests.get(
    f"{STAC_API_URL}/collections/{collection_name}/items?limit=300"
).json()["features"]

# Print the total number of items (granules) found
print(f"Found {len(items)} items")
Found 9 items
# Examine the first item in the collection
items[0]
{'id': 'epa-ch4emission-yeargrid-v2express-2020',
 'bbox': [-129.99999694387628,
  19.99999923487448,
  -60.00000305612369,
  55.00000076512553],
 'type': 'Feature',
 'links': [{'rel': 'collection',
   'type': 'application/json',
   'href': 'https://earth.gov/ghgcenter/api/stac/collections/epa-ch4emission-yeargrid-v2express'},
  {'rel': 'parent',
   'type': 'application/json',
   'href': 'https://earth.gov/ghgcenter/api/stac/collections/epa-ch4emission-yeargrid-v2express'},
  {'rel': 'root',
   'type': 'application/json',
   'href': 'https://earth.gov/ghgcenter/api/stac/'},
  {'rel': 'self',
   'type': 'application/geo+json',
   'href': 'https://earth.gov/ghgcenter/api/stac/collections/epa-ch4emission-yeargrid-v2express/items/epa-ch4emission-yeargrid-v2express-2020'},
  {'title': 'Map of Item',
   'href': 'https://earth.gov/ghgcenter/api/raster/collections/epa-ch4emission-yeargrid-v2express/items/epa-ch4emission-yeargrid-v2express-2020/map?assets=total-methane&maxzoom=5&minzoom=0&rescale=0%2C20&colormap_name=epa-ghgi-ch4',
   'rel': 'preview',
   'type': 'text/html'}],
 'assets': {'dwtd-waste': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_5D_Wastewater_Treatment_Domestic_Gridded_GHGI_Methane_v2_2020.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Waste - Domestic Wastewater Treatment & Discharge (annual)',
   'proj:bbox': [-129.99999694387628,
    19.99999923487448,
    -60.00000305612369,
    55.00000076512553],
   'proj:epsg': 4326.0,
   'proj:shape': [350.0, 700.0],
   'description': 'Annual methane emissions from Domestic Wastewater Treatment and Discharge (inventory Waste 5D sub-category).',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 250.26608276367188,
      'min': -9999.0,
      'count': 11.0,
      'buckets': [169028.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 75972.0]},
     'statistics': {'mean': -6898.392578125,
      'stddev': 4624.86865234375,
      'maximum': 250.26608276367188,
      'minimum': -9999.0,
      'valid_percent': 0.0004081632653061224}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-129.99999694387628, 19.99999923487448],
      [-60.00000305612369, 19.99999923487448],
      [-60.00000305612369, 55.00000076512553],
      [-129.99999694387628, 55.00000076512553],
      [-129.99999694387628, 19.99999923487448]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [0.09999999126821799,
    0.0,
    -129.99999694387628,
    0.0,
    -0.10000000437214586,
    55.00000076512553,
    0.0,
    0.0,
    1.0]},
  'iwtd-waste': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_5D_Wastewater_Treatment_Industrial_Gridded_GHGI_Methane_v2_2020.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Waste - Industrial Wastewater Treatment & Discharge (annual)',
   'proj:bbox': [-129.99999694387628,
    19.99999923487448,
    -60.00000305612369,
    55.00000076512553],
   'proj:epsg': 4326.0,
   'proj:shape': [350.0, 700.0],
   'description': 'Annual methane emissions from Industrial Wastewater Treatment and Discharge (inventory Waste 5D sub-category).',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 552.8455200195312,
      'min': -9999.0,
      'count': 11.0,
      'buckets': [244120.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 880.0]},
     'statistics': {'mean': -9963.07421875,
      'stddev': 598.360107421875,
      'maximum': 552.8455200195312,
      'minimum': -9999.0,
      'valid_percent': 0.0004081632653061224}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-129.99999694387628, 19.99999923487448],
      [-60.00000305612369, 19.99999923487448],
      [-60.00000305612369, 55.00000076512553],
      [-129.99999694387628, 55.00000076512553],
      [-129.99999694387628, 19.99999923487448]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [0.09999999126821799,
    0.0,
    -129.99999694387628,
    0.0,
    -0.10000000437214586,
    55.00000076512553,
    0.0,
    0.0,
    1.0]},
  'post-meter': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_Supp_1B2b_PostMeter_Gridded_GHGI_Methane_v2_2020.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Natural Gas - Post Meter (annual)',
   'proj:bbox': [-129.99999694387628,
    19.99999923487448,
    -60.00000305612369,
    55.00000076512553],
   'proj:epsg': 4326.0,
   'proj:shape': [350.0, 700.0],
   'description': 'Annual methane emissions downstream of residential, commercial, industrial natural gas distribution meters (i.e., “Post Meter”) (inventory Energy 1B2b sub-category).',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 32.81692123413086,
      'min': -9999.0,
      'count': 11.0,
      'buckets': [169110.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 75890.0]},
     'statistics': {'mean': -6901.73974609375,
      'stddev': 4623.49169921875,
      'maximum': 32.81692123413086,
      'minimum': -9999.0,
      'valid_percent': 0.0004081632653061224}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-129.99999694387628, 19.99999923487448],
      [-60.00000305612369, 19.99999923487448],
      [-60.00000305612369, 55.00000076512553],
      [-129.99999694387628, 55.00000076512553],
      [-129.99999694387628, 19.99999923487448]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [0.09999999126821799,
    0.0,
    -129.99999694387628,
    0.0,
    -0.10000000437214586,
    55.00000076512553,
    0.0,
    0.0,
    1.0]},
  'refining-ps': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2a_Petroleum_Systems_Refining_Gridded_GHGI_Methane_v2_2020.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Petroleum - Refining (annual)',
   'proj:bbox': [-129.99999694387628,
    19.99999923487448,
    -60.00000305612369,
    55.00000076512553],
   'proj:epsg': 4326.0,
   'proj:shape': [350.0, 700.0],
   'description': 'Annual methane emissions from Petroleum Refining (inventory Energy 1B2a sub-category).',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 22.515766143798828,
      'min': -9999.0,
      'count': 11.0,
      'buckets': [244892.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 108.0]},
     'statistics': {'mean': -9994.5908203125,
      'stddev': 209.9478759765625,
      'maximum': 22.515766143798828,
      'minimum': -9999.0,
      'valid_percent': 0.0004081632653061224}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-129.99999694387628, 19.99999923487448],
      [-60.00000305612369, 19.99999923487448],
      [-60.00000305612369, 55.00000076512553],
      [-129.99999694387628, 55.00000076512553],
      [-129.99999694387628, 19.99999923487448]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [0.09999999126821799,
    0.0,
    -129.99999694387628,
    0.0,
    -0.10000000437214586,
    55.00000076512553,
    0.0,
    0.0,
    1.0]},
  'total-other': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_other_Gridded_GHGI_Methane_v2_2020.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Total Other (annual)',
   'proj:bbox': [-129.99999694387628,
    19.99999923487448,
    -60.00000305612369,
    55.00000076512553],
   'proj:epsg': 4326.0,
   'proj:shape': [350.0, 700.0],
   'description': 'Total annual methane emission fluxes from ‘Other’ remaining sources (sum of inventory categories 1A (Energy Combustion), 2B8 & 2C2 (Petrochemical & Ferroalloy Production) and 1B2a & 1B2b (Abandoned Oil & Gas Well Emissions)).',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 43.67214584350586,
      'min': -9999.0,
      'count': 11.0,
      'buckets': [157503.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 87497.0]},
     'statistics': {'mean': -6428.02197265625,
      'stddev': 4791.09814453125,
      'maximum': 43.67214584350586,
      'minimum': -9999.0,
      'valid_percent': 0.0004081632653061224}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-129.99999694387628, 19.99999923487448],
      [-60.00000305612369, 19.99999923487448],
      [-60.00000305612369, 55.00000076512553],
      [-129.99999694387628, 55.00000076512553],
      [-129.99999694387628, 19.99999923487448]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [0.09999999126821799,
    0.0,
    -129.99999694387628,
    0.0,
    -0.10000000437214586,
    55.00000076512553,
    0.0,
    0.0,
    1.0]},
  'total-waste': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_waste_Gridded_GHGI_Methane_v2_2020.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Total Waste (annual)',
   'proj:bbox': [-129.99999694387628,
    19.99999923487448,
    -60.00000305612369,
    55.00000076512553],
   'proj:epsg': 4326.0,
   'proj:shape': [350.0, 700.0],
   'description': 'Total annual methane emission fluxes from Waste (sum of inventory Waste categories: Municipal Solid Waste (MSW) and Industrial Landfills (5A1), Composting (5B1), Domestic and Industrial Wastewater Treatment and Discharge (5D)).',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 552.9092407226562,
      'min': -9999.0,
      'count': 11.0,
      'buckets': [169000.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 76000.0]},
     'statistics': {'mean': -6897.05615234375,
      'stddev': 4625.62646484375,
      'maximum': 552.9092407226562,
      'minimum': -9999.0,
      'valid_percent': 0.0004081632653061224}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-129.99999694387628, 19.99999923487448],
      [-60.00000305612369, 19.99999923487448],
      [-60.00000305612369, 55.00000076512553],
      [-129.99999694387628, 55.00000076512553],
      [-129.99999694387628, 19.99999923487448]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [0.09999999126821799,
    0.0,
    -129.99999694387628,
    0.0,
    -0.10000000437214586,
    55.00000076512553,
    0.0,
    0.0,
    1.0]},
  'surface-coal': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B1a_Surface_Coal_Gridded_GHGI_Methane_v2_2020.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Coal Mining - Surface Mining (annual)',
   'proj:bbox': [-129.99999694387628,
    19.99999923487448,
    -60.00000305612369,
    55.00000076512553],
   'proj:epsg': 4326.0,
   'proj:shape': [350.0, 700.0],
   'description': 'Annual methane emissions from active Surface Coal Mining (inventory Energy 1B1a sub-category).',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 569.109130859375,
      'min': -9999.0,
      'count': 11.0,
      'buckets': [244705.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 295.0]},
     'statistics': {'mean': -9986.9501953125,
      'stddev': 347.0617370605469,
      'maximum': 569.109130859375,
      'minimum': -9999.0,
      'valid_percent': 0.0004081632653061224}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-129.99999694387628, 19.99999923487448],
      [-60.00000305612369, 19.99999923487448],
      [-60.00000305612369, 55.00000076512553],
      [-129.99999694387628, 55.00000076512553],
      [-129.99999694387628, 19.99999923487448]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [0.09999999126821799,
    0.0,
    -129.99999694387628,
    0.0,
    -0.10000000437214586,
    55.00000076512553,
    0.0,
    0.0,
    1.0]},
  'transport-ps': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2a_Petroleum_Systems_Transport_Gridded_GHGI_Methane_v2_2020.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Petroleum - Transportation (annual)',
   'proj:bbox': [-129.99999694387628,
    19.99999923487448,
    -60.00000305612369,
    55.00000076512553],
   'proj:epsg': 4326.0,
   'proj:shape': [350.0, 700.0],
   'description': 'Annual methane emissions from Petroleum Transportation (inventory Energy 1B2a sub-category).',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 2.4141974449157715,
      'min': -9999.0,
      'count': 11.0,
      'buckets': [233570.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11430.0]},
     'statistics': {'mean': -9532.515625,
      'stddev': 2108.737060546875,
      'maximum': 2.4141974449157715,
      'minimum': -9999.0,
      'valid_percent': 0.0004081632653061224}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-129.99999694387628, 19.99999923487448],
      [-60.00000305612369, 19.99999923487448],
      [-60.00000305612369, 55.00000076512553],
      [-129.99999694387628, 55.00000076512553],
      [-129.99999694387628, 19.99999923487448]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [0.09999999126821799,
    0.0,
    -129.99999694387628,
    0.0,
    -0.10000000437214586,
    55.00000076512553,
    0.0,
    0.0,
    1.0]},
  'abn-ong-other': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2ab_Abandoned_Oil_Gas_Gridded_GHGI_Methane_v2_2020.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Other - Abandoned Oil and Gas Wells (annual)',
   'proj:bbox': [-129.99999694387628,
    19.99999923487448,
    -60.00000305612369,
    55.00000076512553],
   'proj:epsg': 4326.0,
   'proj:shape': [350.0, 700.0],
   'description': 'Annual methane emissions from Abandoned Oil and Gas Wells (inventory Energy 1B2a and 1B2b sub-categories).',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 35.77754211425781,
      'min': -9999.0,
      'count': 11.0,
      'buckets': [213344.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 31656.0]},
     'statistics': {'mean': -8707.0361328125,
      'stddev': 3353.996337890625,
      'maximum': 35.77754211425781,
      'minimum': -9999.0,
      'valid_percent': 0.0004081632653061224}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-129.99999694387628, 19.99999923487448],
      [-60.00000305612369, 19.99999923487448],
      [-60.00000305612369, 55.00000076512553],
      [-129.99999694387628, 55.00000076512553],
      [-129.99999694387628, 19.99999923487448]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [0.09999999126821799,
    0.0,
    -129.99999694387628,
    0.0,
    -0.10000000437214586,
    55.00000076512553,
    0.0,
    0.0,
    1.0]},
  'field-burning': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_3F_Field_Burning_Gridded_GHGI_Methane_v2_2020.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Agriculture - Field Burning (annual)',
   'proj:bbox': [-129.99999694387628,
    19.99999923487448,
    -60.00000305612369,
    55.00000076512553],
   'proj:epsg': 4326.0,
   'proj:shape': [350.0, 700.0],
   'description': 'Annual methane emissions from field burning of agricultural residues (inventory Agriculture category 3F).',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 0.24409635365009308,
      'min': -9999.0,
      'count': 11.0,
      'buckets': [225969.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 19031.0]},
     'statistics': {'mean': -9222.2998046875,
      'stddev': 2676.369873046875,
      'maximum': 0.24409635365009308,
      'minimum': -9999.0,
      'valid_percent': 0.0004081632653061224}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-129.99999694387628, 19.99999923487448],
      [-60.00000305612369, 19.99999923487448],
      [-60.00000305612369, 55.00000076512553],
      [-129.99999694387628, 55.00000076512553],
      [-129.99999694387628, 19.99999923487448]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [0.09999999126821799,
    0.0,
    -129.99999694387628,
    0.0,
    -0.10000000437214586,
    55.00000076512553,
    0.0,
    0.0,
    1.0]},
  'production-ps': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2a_Petroleum_Systems_Production_Gridded_GHGI_Methane_v2_2020.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Petroleum - Production (annual)',
   'proj:bbox': [-129.99999694387628,
    19.99999923487448,
    -60.00000305612369,
    55.00000076512553],
   'proj:epsg': 4326.0,
   'proj:shape': [350.0, 700.0],
   'description': 'Annual methane emissions from Petroleum Production (inventory Energy 1B2a sub-category).',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 140.06321716308594,
      'min': -9999.0,
      'count': 11.0,
      'buckets': [233515.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11485.0]},
     'statistics': {'mean': -9530.2080078125,
      'stddev': 2113.833251953125,
      'maximum': 140.06321716308594,
      'minimum': -9999.0,
      'valid_percent': 0.0004081632653061224}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-129.99999694387628, 19.99999923487448],
      [-60.00000305612369, 19.99999923487448],
      [-60.00000305612369, 55.00000076512553],
      [-129.99999694387628, 55.00000076512553],
      [-129.99999694387628, 19.99999923487448]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [0.09999999126821799,
    0.0,
    -129.99999694387628,
    0.0,
    -0.10000000437214586,
    55.00000076512553,
    0.0,
    0.0,
    1.0]},
  'total-methane': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_all-variables_Gridded_GHGI_Methane_v2_2020.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Total Methane (annual)',
   'proj:bbox': [-129.99999694387628,
    19.99999923487448,
    -60.00000305612369,
    55.00000076512553],
   'proj:epsg': 4326.0,
   'proj:shape': [350.0, 700.0],
   'description': 'Total annual methane emission fluxes from all Agriculture, Energy, Waste, and ‘Other’ sources included in this dataset.',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 1317.5279541015625,
      'min': -9999.0,
      'count': 11.0,
      'buckets': [153603.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 91349.0, 48.0]},
     'statistics': {'mean': -6267.79736328125,
      'stddev': 4837.07958984375,
      'maximum': 1317.5279541015625,
      'minimum': -9999.0,
      'valid_percent': 0.0004081632653061224}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-129.99999694387628, 19.99999923487448],
      [-60.00000305612369, 19.99999923487448],
      [-60.00000305612369, 55.00000076512553],
      [-129.99999694387628, 55.00000076512553],
      [-129.99999694387628, 19.99999923487448]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [0.09999999126821799,
    0.0,
    -129.99999694387628,
    0.0,
    -0.10000000437214586,
    55.00000076512553,
    0.0,
    0.0,
    1.0]},
  'exploration-ps': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2a_Petroleum_Systems_Exploration_Gridded_GHGI_Methane_v2_2020.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Petroleum - Exploration (annual)',
   'proj:bbox': [-129.99999694387628,
    19.99999923487448,
    -60.00000305612369,
    55.00000076512553],
   'proj:epsg': 4326.0,
   'proj:shape': [350.0, 700.0],
   'description': 'Annual methane emissions from Petroleum Exploration (inventory Energy 1B2a sub-category).',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 1.2649693489074707,
      'min': -9999.0,
      'count': 11.0,
      'buckets': [233941.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11059.0]},
     'statistics': {'mean': -9547.6572265625,
      'stddev': 2075.879150390625,
      'maximum': 1.2649693489074707,
      'minimum': -9999.0,
      'valid_percent': 0.0004081632653061224}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-129.99999694387628, 19.99999923487448],
      [-60.00000305612369, 19.99999923487448],
      [-60.00000305612369, 55.00000076512553],
      [-129.99999694387628, 55.00000076512553],
      [-129.99999694387628, 19.99999923487448]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [0.09999999126821799,
    0.0,
    -129.99999694387628,
    0.0,
    -0.10000000437214586,
    55.00000076512553,
    0.0,
    0.0,
    1.0]},
  'processing-ngs': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2b_Natural_Gas_Processing_Gridded_GHGI_Methane_v2_2020.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Natural Gas - Processing (annual)',
   'proj:bbox': [-129.99999694387628,
    19.99999923487448,
    -60.00000305612369,
    55.00000076512553],
   'proj:epsg': 4326.0,
   'proj:shape': [350.0, 700.0],
   'description': 'Annual methane emissions from Natural Gas Processing (inventory Energy 1B2b sub-category).',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 535.3031005859375,
      'min': -9999.0,
      'count': 11.0,
      'buckets': [244329.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 671.0]},
     'statistics': {'mean': -9971.5947265625,
      'stddev': 522.9393920898438,
      'maximum': 535.3031005859375,
      'minimum': -9999.0,
      'valid_percent': 0.0004081632653061224}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-129.99999694387628, 19.99999923487448],
      [-60.00000305612369, 19.99999923487448],
      [-60.00000305612369, 55.00000076512553],
      [-129.99999694387628, 55.00000076512553],
      [-129.99999694387628, 19.99999923487448]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [0.09999999126821799,
    0.0,
    -129.99999694387628,
    0.0,
    -0.10000000437214586,
    55.00000076512553,
    0.0,
    0.0,
    1.0]},
  'production-ngs': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2b_Natural_Gas_Production_Gridded_GHGI_Methane_v2_2020.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Natural Gas - Production (annual)',
   'proj:bbox': [-129.99999694387628,
    19.99999923487448,
    -60.00000305612369,
    55.00000076512553],
   'proj:epsg': 4326.0,
   'proj:shape': [350.0, 700.0],
   'description': 'Annual methane emissions from Natural Gas Production (inventory Energy 1B2b sub-category).',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 190.11717224121094,
      'min': -9999.0,
      'count': 11.0,
      'buckets': [232277.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12723.0]},
     'statistics': {'mean': -9479.6015625,
      'stddev': 2219.260498046875,
      'maximum': 190.11717224121094,
      'minimum': -9999.0,
      'valid_percent': 0.0004081632653061224}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-129.99999694387628, 19.99999923487448],
      [-60.00000305612369, 19.99999923487448],
      [-60.00000305612369, 55.00000076512553],
      [-129.99999694387628, 55.00000076512553],
      [-129.99999694387628, 19.99999923487448]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [0.09999999126821799,
    0.0,
    -129.99999694387628,
    0.0,
    -0.10000000437214586,
    55.00000076512553,
    0.0,
    0.0,
    1.0]},
  'exploration-ngs': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2b_Natural_Gas_Exploration_Gridded_GHGI_Methane_v2_2020.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Natural Gas - Exploration (annual)',
   'proj:bbox': [-129.99999694387628,
    19.99999923487448,
    -60.00000305612369,
    55.00000076512553],
   'proj:epsg': 4326.0,
   'proj:shape': [350.0, 700.0],
   'description': 'Annual methane emissions from Natural Gas Exploration (inventory Energy 1B2b sub-category).',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 3.1922497749328613,
      'min': -9999.0,
      'count': 11.0,
      'buckets': [235806.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9194.0]},
     'statistics': {'mean': -9623.7705078125,
      'stddev': 1900.2930908203125,
      'maximum': 3.1922497749328613,
      'minimum': -9999.0,
      'valid_percent': 0.0004081632653061224}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-129.99999694387628, 19.99999923487448],
      [-60.00000305612369, 19.99999923487448],
      [-60.00000305612369, 55.00000076512553],
      [-129.99999694387628, 55.00000076512553],
      [-129.99999694387628, 19.99999923487448]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [0.09999999126821799,
    0.0,
    -129.99999694387628,
    0.0,
    -0.10000000437214586,
    55.00000076512553,
    0.0,
    0.0,
    1.0]},
  'composting-waste': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_5B1_Composting_Gridded_GHGI_Methane_v2_2020.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Waste - Composting (annual)',
   'proj:bbox': [-129.99999694387628,
    19.99999923487448,
    -60.00000305612369,
    55.00000076512553],
   'proj:epsg': 4326.0,
   'proj:shape': [350.0, 700.0],
   'description': 'Annual methane emissions from Composting (inventory Waste category 5B1).',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 5.681565761566162,
      'min': -9999.0,
      'count': 11.0,
      'buckets': [241655.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3345.0]},
     'statistics': {'mean': -9862.478515625,
      'stddev': 1160.3760986328125,
      'maximum': 5.681565761566162,
      'minimum': -9999.0,
      'valid_percent': 0.0004081632653061224}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-129.99999694387628, 19.99999923487448],
      [-60.00000305612369, 19.99999923487448],
      [-60.00000305612369, 55.00000076512553],
      [-129.99999694387628, 55.00000076512553],
      [-129.99999694387628, 19.99999923487448]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [0.09999999126821799,
    0.0,
    -129.99999694387628,
    0.0,
    -0.10000000437214586,
    55.00000076512553,
    0.0,
    0.0,
    1.0]},
  'distribution-ngs': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2b_Natural_Gas_Distribution_Gridded_GHGI_Methane_v2_2020.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Natural Gas - Distribution (annual)',
   'proj:bbox': [-129.99999694387628,
    19.99999923487448,
    -60.00000305612369,
    55.00000076512553],
   'proj:epsg': 4326.0,
   'proj:shape': [350.0, 700.0],
   'description': 'Annual methane emissions from Natural Gas Distribution (inventory Energy 1B2b sub-category).',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 32.086830139160156,
      'min': -9999.0,
      'count': 11.0,
      'buckets': [169148.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 75852.0]},
     'statistics': {'mean': -6903.2861328125,
      'stddev': 4622.859375,
      'maximum': 32.086830139160156,
      'minimum': -9999.0,
      'valid_percent': 0.0004081632653061224}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-129.99999694387628, 19.99999923487448],
      [-60.00000305612369, 19.99999923487448],
      [-60.00000305612369, 55.00000076512553],
      [-129.99999694387628, 55.00000076512553],
      [-129.99999694387628, 19.99999923487448]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [0.09999999126821799,
    0.0,
    -129.99999694387628,
    0.0,
    -0.10000000437214586,
    55.00000076512553,
    0.0,
    0.0,
    1.0]},
  'rice-cultivation': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_3C_Rice_Cultivation_Gridded_GHGI_Methane_v2_2020.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Agriculture - Rice Cultivation (annual)',
   'proj:bbox': [-129.99999694387628,
    19.99999923487448,
    -60.00000305612369,
    55.00000076512553],
   'proj:epsg': 4326.0,
   'proj:shape': [350.0, 700.0],
   'description': 'Annual methane emissions from rice cultivation (inventory Agriculture category 3C).',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 62.76310348510742,
      'min': -9999.0,
      'count': 11.0,
      'buckets': [239929.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5071.0]},
     'statistics': {'mean': -9792.015625,
      'stddev': 1423.7451171875,
      'maximum': 62.76310348510742,
      'minimum': -9999.0,
      'valid_percent': 0.0004081632653061224}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-129.99999694387628, 19.99999923487448],
      [-60.00000305612369, 19.99999923487448],
      [-60.00000305612369, 55.00000076512553],
      [-129.99999694387628, 55.00000076512553],
      [-129.99999694387628, 19.99999923487448]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [0.09999999126821799,
    0.0,
    -129.99999694387628,
    0.0,
    -0.10000000437214586,
    55.00000076512553,
    0.0,
    0.0,
    1.0]},
  'total-coal-mines': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_coal-mines_Gridded_GHGI_Methane_v2_2020.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Total Coal Mines (annual)',
   'proj:bbox': [-129.99999694387628,
    19.99999923487448,
    -60.00000305612369,
    55.00000076512553],
   'proj:epsg': 4326.0,
   'proj:shape': [350.0, 700.0],
   'description': 'Total annual methane emission fluxes from Coal Mines (sum of inventory 1B1a sub-categories which includes Underground Coal Mining, Surface Coal Mining and Abandoned Underground Coal Mines).',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 1312.8009033203125,
      'min': -9999.0,
      'count': 11.0,
      'buckets': [243327.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1644.0, 29.0]},
     'statistics': {'mean': -9930.6416015625,
      'stddev': 824.4235229492188,
      'maximum': 1312.8009033203125,
      'minimum': -9999.0,
      'valid_percent': 0.0004081632653061224}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-129.99999694387628, 19.99999923487448],
      [-60.00000305612369, 19.99999923487448],
      [-60.00000305612369, 55.00000076512553],
      [-129.99999694387628, 55.00000076512553],
      [-129.99999694387628, 19.99999923487448]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [0.09999999126821799,
    0.0,
    -129.99999694387628,
    0.0,
    -0.10000000437214586,
    55.00000076512553,
    0.0,
    0.0,
    1.0]},
  'underground-coal': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B1a_Underground_Coal_Gridded_GHGI_Methane_v2_2020.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Coal Mining - Underground Mining (annual)',
   'proj:bbox': [-129.99999694387628,
    19.99999923487448,
    -60.00000305612369,
    55.00000076512553],
   'proj:epsg': 4326.0,
   'proj:shape': [350.0, 700.0],
   'description': 'Annual methane emissions from active Underground Coal Mining (inventory Energy 1B1a sub-category).',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 1312.8009033203125,
      'min': -9999.0,
      'count': 11.0,
      'buckets': [244819.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 156.0, 25.0]},
     'statistics': {'mean': -9991.5537109375,
      'stddev': 273.90582275390625,
      'maximum': 1312.8009033203125,
      'minimum': -9999.0,
      'valid_percent': 0.0004081632653061224}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-129.99999694387628, 19.99999923487448],
      [-60.00000305612369, 19.99999923487448],
      [-60.00000305612369, 55.00000076512553],
      [-129.99999694387628, 55.00000076512553],
      [-129.99999694387628, 19.99999923487448]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [0.09999999126821799,
    0.0,
    -129.99999694387628,
    0.0,
    -0.10000000437214586,
    55.00000076512553,
    0.0,
    0.0,
    1.0]},
  'manure-management': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_3B_Manure_Management_Gridded_GHGI_Methane_v2_2020.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Agriculture - Manure Management (annual)',
   'proj:bbox': [-129.99999694387628,
    19.99999923487448,
    -60.00000305612369,
    55.00000076512553],
   'proj:epsg': 4326.0,
   'proj:shape': [350.0, 700.0],
   'description': 'Annual methane emissions from livestock manure management (inventory Agriculture category 3B).',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 24.9133243560791,
      'min': -9999.0,
      'count': 11.0,
      'buckets': [161630.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 83370.0]},
     'statistics': {'mean': -6596.38037109375,
      'stddev': 4737.72119140625,
      'maximum': 24.9133243560791,
      'minimum': -9999.0,
      'valid_percent': 0.0004081632653061224}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-129.99999694387628, 19.99999923487448],
      [-60.00000305612369, 19.99999923487448],
      [-60.00000305612369, 55.00000076512553],
      [-129.99999694387628, 55.00000076512553],
      [-129.99999694387628, 19.99999923487448]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [0.09999999126821799,
    0.0,
    -129.99999694387628,
    0.0,
    -0.10000000437214586,
    55.00000076512553,
    0.0,
    0.0,
    1.0]},
  'total-agriculture': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_agriculture_Gridded_GHGI_Methane_v2_2020.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Total Agriculture (annual)',
   'proj:bbox': [-129.99999694387628,
    19.99999923487448,
    -60.00000305612369,
    55.00000076512553],
   'proj:epsg': 4326.0,
   'proj:shape': [350.0, 700.0],
   'description': 'Total annual methane emission fluxes from Agriculture sources (sum of inventory categories: Enteric Fermentation (3A), Manure Management (3B), Rice Cultivation (3C), Field Burning of Agricultural Residues (3F)).',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 64.48854064941406,
      'min': -9999.0,
      'count': 11.0,
      'buckets': [161625.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 83375.0]},
     'statistics': {'mean': -6595.85009765625,
      'stddev': 4738.24462890625,
      'maximum': 64.48854064941406,
      'minimum': -9999.0,
      'valid_percent': 0.0004081632653061224}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-129.99999694387628, 19.99999923487448],
      [-60.00000305612369, 19.99999923487448],
      [-60.00000305612369, 55.00000076512553],
      [-129.99999694387628, 55.00000076512553],
      [-129.99999694387628, 19.99999923487448]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [0.09999999126821799,
    0.0,
    -129.99999694387628,
    0.0,
    -0.10000000437214586,
    55.00000076512553,
    0.0,
    0.0,
    1.0]},
  'msw-landfill-waste': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_5A1_Landfills_MSW_Gridded_GHGI_Methane_v2_2020.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Waste - Municipal Solid Waste (MSW) Landfills (annual)',
   'proj:bbox': [-129.99999694387628,
    19.99999923487448,
    -60.00000305612369,
    55.00000076512553],
   'proj:epsg': 4326.0,
   'proj:shape': [350.0, 700.0],
   'description': 'Annual methane emissions from Municipal Solid Waste Landfills (inventory Waste 5A1 sub-category).',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 381.43365478515625,
      'min': -9999.0,
      'count': 11.0,
      'buckets': [242963.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2037.0]},
     'statistics': {'mean': -9915.712890625,
      'stddev': 909.60986328125,
      'maximum': 381.43365478515625,
      'minimum': -9999.0,
      'valid_percent': 0.0004081632653061224}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-129.99999694387628, 19.99999923487448],
      [-60.00000305612369, 19.99999923487448],
      [-60.00000305612369, 55.00000076512553],
      [-129.99999694387628, 55.00000076512553],
      [-129.99999694387628, 19.99999923487448]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [0.09999999126821799,
    0.0,
    -129.99999694387628,
    0.0,
    -0.10000000437214586,
    55.00000076512553,
    0.0,
    0.0,
    1.0]},
  'abn-underground-coal': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B1a_Abandoned_Coal_Gridded_GHGI_Methane_v2_2020.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Coal Mining - Abandoned Underground Mines (annual)',
   'proj:bbox': [-129.99999694387628,
    19.99999923487448,
    -60.00000305612369,
    55.00000076512553],
   'proj:epsg': 4326.0,
   'proj:shape': [350.0, 700.0],
   'description': 'Annual methane emissions from Abandoned Underground Coal Mines (inventory Energy 1B1a sub-category).',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 92.65714263916016,
      'min': -9999.0,
      'count': 11.0,
      'buckets': [243504.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1496.0]},
     'statistics': {'mean': -9937.9345703125,
      'stddev': 779.0745849609375,
      'maximum': 92.65714263916016,
      'minimum': -9999.0,
      'valid_percent': 0.0004081632653061224}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-129.99999694387628, 19.99999923487448],
      [-60.00000305612369, 19.99999923487448],
      [-60.00000305612369, 55.00000076512553],
      [-129.99999694387628, 55.00000076512553],
      [-129.99999694387628, 19.99999923487448]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [0.09999999126821799,
    0.0,
    -129.99999694387628,
    0.0,
    -0.10000000437214586,
    55.00000076512553,
    0.0,
    0.0,
    1.0]},
  'enteric-fermentation': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_3A_Enteric_Fermentation_Gridded_GHGI_Methane_v2_2020.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Agriculture - Enteric Fermentation (annual)',
   'proj:bbox': [-129.99999694387628,
    19.99999923487448,
    -60.00000305612369,
    55.00000076512553],
   'proj:epsg': 4326.0,
   'proj:shape': [350.0, 700.0],
   'description': 'Annual methane emissions from enteric fermentation which is methane emitted as a by-product of the normal livestock digestive process (inventory Agriculture category 3A).',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 34.75341796875,
      'min': -9999.0,
      'count': 11.0,
      'buckets': [161630.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 83370.0]},
     'statistics': {'mean': -6596.18310546875,
      'stddev': 4737.99560546875,
      'maximum': 34.75341796875,
      'minimum': -9999.0,
      'valid_percent': 0.0004081632653061224}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-129.99999694387628, 19.99999923487448],
      [-60.00000305612369, 19.99999923487448],
      [-60.00000305612369, 55.00000076512553],
      [-129.99999694387628, 55.00000076512553],
      [-129.99999694387628, 19.99999923487448]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [0.09999999126821799,
    0.0,
    -129.99999694387628,
    0.0,
    -0.10000000437214586,
    55.00000076512553,
    0.0,
    0.0,
    1.0]},
  'petro-production-other': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_2B8_Industry_Petrochemical_Gridded_GHGI_Methane_v2_2020.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Other - Petrochemical Production (annual)',
   'proj:bbox': [-129.99999694387628,
    19.99999923487448,
    -60.00000305612369,
    55.00000076512553],
   'proj:epsg': 4326.0,
   'proj:shape': [350.0, 700.0],
   'description': 'Annual methane emissions from Petrochemical Production (inventory Industrial Processes and Product Use category 2B8).',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 39.25223159790039,
      'min': -9999.0,
      'count': 11.0,
      'buckets': [244974.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 26.0]},
     'statistics': {'mean': -9997.9384765625,
      'stddev': 103.04502868652344,
      'maximum': 39.25223159790039,
      'minimum': -9999.0,
      'valid_percent': 0.0004081632653061224}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-129.99999694387628, 19.99999923487448],
      [-60.00000305612369, 19.99999923487448],
      [-60.00000305612369, 55.00000076512553],
      [-129.99999694387628, 55.00000076512553],
      [-129.99999694387628, 19.99999923487448]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [0.09999999126821799,
    0.0,
    -129.99999694387628,
    0.0,
    -0.10000000437214586,
    55.00000076512553,
    0.0,
    0.0,
    1.0]},
  'mobile-combustion-other': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1A_Combustion_Mobile_Gridded_GHGI_Methane_v2_2020.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Other - Mobile Combustion (annual)',
   'proj:bbox': [-129.99999694387628,
    19.99999923487448,
    -60.00000305612369,
    55.00000076512553],
   'proj:epsg': 4326.0,
   'proj:shape': [350.0, 700.0],
   'description': 'Annual methane emissions from Mobile Combustion (inventory Energy 1A sub-category).',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 1.7823798656463623,
      'min': -9999.0,
      'count': 11.0,
      'buckets': [158134.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 86866.0]},
     'statistics': {'mean': -6453.80078125,
      'stddev': 4783.30908203125,
      'maximum': 1.7823798656463623,
      'minimum': -9999.0,
      'valid_percent': 0.0004081632653061224}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-129.99999694387628, 19.99999923487448],
      [-60.00000305612369, 19.99999923487448],
      [-60.00000305612369, 55.00000076512553],
      [-129.99999694387628, 55.00000076512553],
      [-129.99999694387628, 19.99999923487448]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [0.09999999126821799,
    0.0,
    -129.99999694387628,
    0.0,
    -0.10000000437214586,
    55.00000076512553,
    0.0,
    0.0,
    1.0]},
  'total-petroleum-systems': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_petroleum-systems_Gridded_GHGI_Methane_v2_2020.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Total Petroleum Systems (annual)',
   'proj:bbox': [-129.99999694387628,
    19.99999923487448,
    -60.00000305612369,
    55.00000076512553],
   'proj:epsg': 4326.0,
   'proj:shape': [350.0, 700.0],
   'description': 'Total annual methane emission fluxes from Petroleum Systems (sum of inventory Energy 1B2a sub-categories which includes Petroleum Production, Refining, Exploration and Transport).',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 140.2111053466797,
      'min': -9999.0,
      'count': 11.0,
      'buckets': [233456.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11544.0]},
     'statistics': {'mean': -9527.798828125,
      'stddev': 2118.995849609375,
      'maximum': 140.2111053466797,
      'minimum': -9999.0,
      'valid_percent': 0.0004081632653061224}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-129.99999694387628, 19.99999923487448],
      [-60.00000305612369, 19.99999923487448],
      [-60.00000305612369, 55.00000076512553],
      [-129.99999694387628, 55.00000076512553],
      [-129.99999694387628, 19.99999923487448]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [0.09999999126821799,
    0.0,
    -129.99999694387628,
    0.0,
    -0.10000000437214586,
    55.00000076512553,
    0.0,
    0.0,
    1.0]},
  'transmission-storage-ngs': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1B2b_Natural_Gas_TransmissionStorage_Gridded_GHGI_Methane_v2_2020.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Natural Gas - Transmission and Storage (annual)',
   'proj:bbox': [-129.99999694387628,
    19.99999923487448,
    -60.00000305612369,
    55.00000076512553],
   'proj:epsg': 4326.0,
   'proj:shape': [350.0, 700.0],
   'description': 'Annual methane emissions from Natural Gas Transmission and Storage (inventory Energy 1B2b sub-category).',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 174.0918426513672,
      'min': -9999.0,
      'count': 11.0,
      'buckets': [215921.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 29079.0]},
     'statistics': {'mean': -8812.154296875,
      'stddev': 3234.086669921875,
      'maximum': 174.0918426513672,
      'minimum': -9999.0,
      'valid_percent': 0.0004081632653061224}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-129.99999694387628, 19.99999923487448],
      [-60.00000305612369, 19.99999923487448],
      [-60.00000305612369, 55.00000076512553],
      [-129.99999694387628, 55.00000076512553],
      [-129.99999694387628, 19.99999923487448]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [0.09999999126821799,
    0.0,
    -129.99999694387628,
    0.0,
    -0.10000000437214586,
    55.00000076512553,
    0.0,
    0.0,
    1.0]},
  'industrial-landfill-waste': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_5A1_Landfills_Industrial_Gridded_GHGI_Methane_v2_2020.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Waste - Industrial Landfills (annual)',
   'proj:bbox': [-129.99999694387628,
    19.99999923487448,
    -60.00000305612369,
    55.00000076512553],
   'proj:epsg': 4326.0,
   'proj:shape': [350.0, 700.0],
   'description': 'Annual methane emissions from Industrial Landfills (inventory Waste 5A1 sub-category).',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 362.9629211425781,
      'min': -9999.0,
      'count': 11.0,
      'buckets': [240762.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4238.0]},
     'statistics': {'mean': -9826.0126953125,
      'stddev': 1303.853515625,
      'maximum': 362.9629211425781,
      'minimum': -9999.0,
      'valid_percent': 0.0004081632653061224}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-129.99999694387628, 19.99999923487448],
      [-60.00000305612369, 19.99999923487448],
      [-60.00000305612369, 55.00000076512553],
      [-129.99999694387628, 55.00000076512553],
      [-129.99999694387628, 19.99999923487448]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [0.09999999126821799,
    0.0,
    -129.99999694387628,
    0.0,
    -0.10000000437214586,
    55.00000076512553,
    0.0,
    0.0,
    1.0]},
  'total-natural-gas-systems': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_natural-gas-systems_Gridded_GHGI_Methane_v2_2020.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Total Natural Gas Systems (annual)',
   'proj:bbox': [-129.99999694387628,
    19.99999923487448,
    -60.00000305612369,
    55.00000076512553],
   'proj:epsg': 4326.0,
   'proj:shape': [350.0, 700.0],
   'description': 'Total annual methane emission fluxes from Natural Gas Systems (sum of inventory Energy 1B2b sub-categories which includes Natural Gas Production, Transmission & Storage, Processing, Distribution and Exploration).',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 539.842529296875,
      'min': -9999.0,
      'count': 11.0,
      'buckets': [167033.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 77967.0]},
     'statistics': {'mean': -6816.72021484375,
      'stddev': 4657.83544921875,
      'maximum': 539.842529296875,
      'minimum': -9999.0,
      'valid_percent': 0.0004081632653061224}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-129.99999694387628, 19.99999923487448],
      [-60.00000305612369, 19.99999923487448],
      [-60.00000305612369, 55.00000076512553],
      [-129.99999694387628, 55.00000076512553],
      [-129.99999694387628, 19.99999923487448]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [0.09999999126821799,
    0.0,
    -129.99999694387628,
    0.0,
    -0.10000000437214586,
    55.00000076512553,
    0.0,
    0.0,
    1.0]},
  'ferroalloy-production-other': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_2C2_Industry_Ferroalloy_Gridded_GHGI_Methane_v2_2020.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Other - Ferroalloy Production (annual)',
   'proj:bbox': [-129.99999694387628,
    19.99999923487448,
    -60.00000305612369,
    55.00000076512553],
   'proj:epsg': 4326.0,
   'proj:shape': [350.0, 700.0],
   'description': 'Annual methane emissions from Ferroalloy Production (inventory Industrial Processes and Product Use category 2C2).',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 17.590591430664062,
      'min': -9999.0,
      'count': 11.0,
      'buckets': [244990.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0]},
     'statistics': {'mean': -9998.5908203125,
      'stddev': 63.95193862915039,
      'maximum': 17.590591430664062,
      'minimum': -9999.0,
      'valid_percent': 0.0004081632653061224}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-129.99999694387628, 19.99999923487448],
      [-60.00000305612369, 19.99999923487448],
      [-60.00000305612369, 55.00000076512553],
      [-129.99999694387628, 55.00000076512553],
      [-129.99999694387628, 19.99999923487448]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [0.09999999126821799,
    0.0,
    -129.99999694387628,
    0.0,
    -0.10000000437214586,
    55.00000076512553,
    0.0,
    0.0,
    1.0]},
  'stationary-combustion-other': {'href': 's3://ghgc-data-store/epa-ch4emission-yeargrid-v2express/Express_Extension_emi_ch4_1A_Combustion_Stationary_Gridded_GHGI_Methane_v2_2020.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Other - Stationary Combustion (annual)',
   'proj:bbox': [-129.99999694387628,
    19.99999923487448,
    -60.00000305612369,
    55.00000076512553],
   'proj:epsg': 4326.0,
   'proj:shape': [350.0, 700.0],
   'description': 'Annual methane emissions from Stationary Combustion (inventory Energy 1A sub-category).',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 8.104816436767578,
      'min': -9999.0,
      'count': 11.0,
      'buckets': [169107.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 75893.0]},
     'statistics': {'mean': -6901.62255859375,
      'stddev': 4623.533203125,
      'maximum': 8.104816436767578,
      'minimum': -9999.0,
      'valid_percent': 0.0004081632653061224}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-129.99999694387628, 19.99999923487448],
      [-60.00000305612369, 19.99999923487448],
      [-60.00000305612369, 55.00000076512553],
      [-129.99999694387628, 55.00000076512553],
      [-129.99999694387628, 19.99999923487448]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [0.09999999126821799,
    0.0,
    -129.99999694387628,
    0.0,
    -0.10000000437214586,
    55.00000076512553,
    0.0,
    0.0,
    1.0]},
  'rendered_preview': {'title': 'Rendered preview',
   'href': 'https://earth.gov/ghgcenter/api/raster/collections/epa-ch4emission-yeargrid-v2express/items/epa-ch4emission-yeargrid-v2express-2020/preview.png?assets=total-methane&maxzoom=5&minzoom=0&rescale=0%2C20&colormap_name=epa-ghgi-ch4',
   'rel': 'preview',
   'roles': ['overview'],
   'type': 'image/png'}},
 'geometry': {'type': 'Polygon',
  'coordinates': [[[-129.99999694387628, 19.99999923487448],
    [-60.00000305612369, 19.99999923487448],
    [-60.00000305612369, 55.00000076512553],
    [-129.99999694387628, 55.00000076512553],
    [-129.99999694387628, 19.99999923487448]]]},
 'collection': 'epa-ch4emission-yeargrid-v2express',
 'properties': {'datetime': '2020-01-01T00:00:00+00:00'},
 'stac_version': '1.0.0',
 'stac_extensions': ['https://stac-extensions.github.io/projection/v1.0.0/schema.json',
  'https://stac-extensions.github.io/raster/v1.1.0/schema.json']}

Now that you created the polygon for the area of interest, you need to develop a function that runs through the data collection and generates the statistics for a specific item (granule) within the boundaries of the AOI polygon.

# The bounding box should be passed to the geojson param as a geojson Feature or FeatureCollection
# Create a function that retrieves information regarding a specific granule using its asset name and raster identifier and generates the statistics for it
# The function takes an item (granule) and a JSON (polygon) as input parameters
def generate_stats(item, geojson):

    # A POST request is made to submit the data associated with the item of interest (specific observation) within the boundaries of the polygon to compute its statistics
    result = requests.post(

        # Raster API Endpoint for computing statistics
        f"{RASTER_API_URL}/cog/statistics",

        # Pass the URL to the item, asset name, and raster identifier as parameters
        params={"url": item["assets"][asset_name]["href"]},

        # Send the GeoJSON object (polygon) along with the request
        json=geojson,

    # Return the response in JSON format
    ).json()

    # Return a dictionary containing the computed statistics along with the item's datetime information.
    return {
        **result["properties"],
        "datetime": item["properties"]["datetime"],
    }

With the function above you can generate the statistics for the AOI.

%%time
# %%time = Wall time (execution time) for running the code below

# Generate statistics using the created function "generate_stats" within the bounding box defined by the polygon
stats = {}
for item in items: 
    date = item["properties"]["datetime"]  # Get the associated date
    year = date[:4]  # Convert datetime to year
    stats[year] = generate_stats(item, Pittsburgh_aoi)
CPU times: user 25 ms, sys: 7.31 ms, total: 32.3 ms
Wall time: 5.72 s
# Print the stats for the observation of interest
# For example, for printing the stats for the 2016 tile, you can change the date inside the bracket "['YYYY']" to "['2016']
stats['2016']
{'statistics': {'b1': {'min': 0.23683340847492218,
   'max': 22.17084503173828,
   'mean': 9.193570137023926,
   'count': 3.0,
   'sum': 27.580711364746094,
   'std': 9.39498967501574,
   'median': 5.173033714294434,
   'majority': 0.23683340847492218,
   'minority': 0.23683340847492218,
   'unique': 3.0,
   'histogram': [[1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0],
    [0.23683340847492218,
     2.430234432220459,
     4.623635768890381,
     6.8170366287231445,
     9.010437965393066,
     11.203839302062988,
     13.397239685058594,
     15.590641021728516,
     17.784042358398438,
     19.97744369506836,
     22.17084503173828]],
   'valid_percent': 0.08,
   'masked_pixels': 3728.0,
   'valid_pixels': 3.0,
   'percentile_2': 0.23683340847492218,
   'percentile_98': 22.17084503173828}},
 'datetime': '2020-01-01T00:00:00+00:00'}

Create a function that goes through every single item in the collection and populates their properties - including the minimum, maximum, and sum of their values - in a table.

# Create a function that converts statistics in JSON format into a pandas DataFrame
def clean_stats(stats_json) -> pd.DataFrame:
    pd.set_option('display.float_format', '{:.20f}'.format)
    stats_json_ = [stats_json[datetime] for datetime in stats_json]     
    # Normalize the JSON data
    df = pd.json_normalize(stats_json_)

    # Replace the naming "statistics.b1" in the columns
    df.columns = [col.replace("statistics.b1.", "") for col in df.columns]

    # Set the datetime format
    df["date"] = pd.to_datetime(df["datetime"])

    # Return the cleaned format
    return df

# Apply the generated function on the stats data
df = clean_stats(stats)

# Display the stats for the first 5 granules in the collection in the table
# Change the value in the parenthesis to show more or a smaller number of rows in the table
df.head(5)
datetime min max mean count sum std median majority minority unique histogram valid_percent masked_pixels valid_pixels percentile_2 percentile_98 date
0 2020-01-01T00:00:00+00:00 0.236833 22.170845 9.193570 3.0 27.580711 9.394990 5.173034 0.236833 0.236833 3.0 [[1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,... 0.08 3728.0 3.0 0.236833 22.170845 2020-01-01 00:00:00+00:00
1 2019-01-01T00:00:00+00:00 0.311410 29.152185 12.088519 3.0 36.265556 12.353363 6.801961 0.311410 0.311410 3.0 [[1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,... 0.08 3728.0 3.0 0.311410 29.152185 2019-01-01 00:00:00+00:00
2 2018-01-01T00:00:00+00:00 0.341802 31.997334 13.268314 3.0 39.804943 13.559006 7.465808 0.341802 0.341802 3.0 [[1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,... 0.08 3728.0 3.0 0.341802 31.997334 2018-01-01 00:00:00+00:00
3 2017-01-01T00:00:00+00:00 4.555885 40.591602 19.690639 4.0 78.762558 14.679013 7.337633 4.555885 4.555885 4.0 [[2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0,... 0.11 3727.0 4.0 4.555885 40.591602 2017-01-01 00:00:00+00:00
4 2016-01-01T00:00:00+00:00 4.969536 34.220993 17.191929 5.0 85.959641 11.040686 13.514935 4.969536 4.969536 5.0 [[2.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0,... 0.13 3726.0 5.0 4.969536 34.220993 2016-01-01 00:00:00+00:00

Time-Series Analysis

You can now explore the gridded methane emission (Domestic Wastewater Treatment & Discharge (5D)) time series (January 2000 -December 2021) available for the Pittsburgh Pennsylvania area of the U.S. You can plot the data set using the code below:

# Ensure 'datetime' column is in datetime format
df['datetime'] = pd.to_datetime(df['datetime'])

# Sort the DataFrame by the datetime column so the plot displays the values from left to right (2020 -> 2022)
df_sorted = df.sort_values(by="datetime")

# Figure size: 20 representing the width, 10 representing the height
fig = plt.figure(figsize=(20, 10))

plt.plot(
    df["date"], # X-axis: sorted date
    df["max"],  # Y-axis: maximum CH4 emission
    color="red", # Line color
    linestyle="-", # Line style
    linewidth=0.5, # Line width
    label="Max CH4 emissions", # Legend label
)

# Display legend
plt.legend()

# Insert label for the X-axis
plt.xlabel("Years")

# Insert label for the Y-axis
plt.ylabel("CH4 emissions Molecules CH₄/cm²/s")

# Insert title for the plot
plt.title("CH4 gridded methane emission from Domestic Wastewater Treatment & Discharge (5D) for Pittsburgh, PA (2012-2021)")


# Add data citation
plt.text(
    df_sorted["datetime"].iloc[0],           # X-coordinate of the text 
    df_sorted["max"].min(),                  # Y-coordinate of the text 

    # Text to be displayed
    "Source: EPA Gridded Anthropogenic Methane Emissions Inventory",                   
    fontsize=12,                             # Font size
    horizontalalignment="left",              # Horizontal alignment
    verticalalignment="bottom",              # Vertical alignment
    color="blue",                            # Text color
)

# Plot the time series
plt.show()
Text(0.5, 1.0, 'CH4 gridded methane emission from Domestic Wastewater Treatment & Discharge (5D) for Texas, Dallas (2012-202)')

# Print the properties for the 3rd item in the collection
print(items[2]["properties"]["datetime"])
2018-01-01T00:00:00+00:00
# You will repeat the same approach used in the previous step to retrieve the second observation of interest
observation_date_3 = '2016'

# Don't change anything here
observation_3 = f'epa-ch4emission-yeargrid-v2express-{observation_date_3}'

# Make a GET request to retrieve information for the 2018 tile 
tile_2016 = requests.get(

    # Pass the collection name, the item number in the list, and its ID
    f"{RASTER_API_URL}/collections/{items[2]['collection']}/items/{items[2]['id']}/tilejson.json?"

    # Pass the asset name
    f"&assets={asset_name}"

    # Pass the color formula and colormap for custom visualization
    f"&color_formula=gamma+r+1.05&colormap_name={color_map}"

    # Pass the minimum and maximum values for rescaling
    f"&rescale={rescale_values['min']},{rescale_values['max']}"), 

# Return the response in JSON format
).json()

# Print the properties of the retrieved granule to the console
tile_2016
{'tilejson': '2.2.0',
 'version': '1.0.0',
 'scheme': 'xyz',
 'tiles': ['https://earth.gov/ghgcenter/api/raster/collections/epa-ch4emission-yeargrid-v2express/items/epa-ch4emission-yeargrid-v2express-2018/tiles/WebMercatorQuad/{z}/{x}/{y}@1x?assets=surface-coal&color_formula=gamma+r+1.05&colormap_name=rainbow&rescale=-9999.0%2C569.109130859375'],
 'minzoom': 0,
 'maxzoom': 24,
 'bounds': [-129.99999694387628,
  19.99999923487448,
  -60.00000305612369,
  55.00000076512553],
 'center': [-94.99999999999999, 37.5, 0]}
# Create a new map to display the 2016 tile
aoi_map_bbox = Map(

    # Base map is set to OpenStreetMap
    tiles="OpenStreetMap",

    # Set the center of the map
    location=[
        39.9,-79.4
    ],

    # Set the zoom value
    zoom_start=9,
)

# Define the map layer
map_layer = TileLayer(

    # Path to retrieve the tile
    tiles=tile_2016["tiles"][0],

    # Set the attribution and adjust the transparency of the layer
    attr="GHG", opacity = 0.5
)

# Add the layer to the map
map_layer.add_to(aoi_map_bbox)

# Visualize the map
aoi_map_bbox
Make this Notebook Trusted to load map: File -> Trust Notebook

Summary

In this notebook we have successfully completed the following steps for the STAC collection for the U.S. Gridded Anthropogenic Methane Emissions Inventory dataset:

  1. Install and import the necessary libraries
  2. Fetch the collection from STAC collections using the appropriate endpoints
  3. Count the number of existing granules within the collection
  4. Map and compare the anthropogenic methane emissions for two distinctive months/years
  5. Generate zonal statistics for the area of interest (AOI)
  6. Generate a time-series graph of the anthropogenic methane emissions for a specified region

If you have any questions regarding this user notebook, please contact us using the feedback form.

Back to top