GOSAT-based Top-down Total and Natural Methane Emissions

Total and natural methane emissions for 2019 summed to a 1° resolution grid. Methane values for both prior to and after inclusion of GOSAT data to the GEOS-Chem global chemistry transport model, version 1.0
Author

Siddharth Chaudhary, Vishal Gaur

Published

September 21, 2023

Run this notebook

You can launch this notebook in the US GHG Center JupyterHub by clicking the link below.

Launch in the US GHG Center JupyterHub (requires access)

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.jsonendpoint.
  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 NASA Carbon Monitoring System Flux (CMS-Flux) team analyzed remote sensing observations from Japan’s Greenhouse gases Observing SATellite (GOSAT) to produce the global Committee on Earth Observation Satellites (CEOS) CH₄ Emissions data product. They used an analytic Bayesian inversion approach and the GEOS-Chem global chemistry transport model to quantify annual methane (CH₄) emissions and their uncertainties at a spatial resolution of 1° by 1° and then projected these to each country for 2019.

For more information regarding this dataset, please visit the GOSAT-based Top-down Total and Natural Methane Emissions data overview page.

Install the Required Libraries

Required libraries are pre-installed on the GHG Center Hub. If you need to run this notebook elsewhere, please install them with this line in a code cell:

%pip install requests folium rasterstats pystac_client pandas matplotlib –quiet

Querying the STAC API

First, we are going to import the required libraries. Once imported, they allow better executing a query in the GHG Center Spatio Temporal Asset Catalog (STAC) Application Programming Interface (API) where the granules for this collection are stored.

# 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
/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(
# Provide STAC and RASTER API endpoints
STAC_API_URL = "https://earth.gov/ghgcenter/api/stac"
RASTER_API_URL = "https://earth.gov/ghgcenter/api/raster"

# Please use the collection name similar to the one used in STAC collection.

# Name of the collection for gosat budget methane. 
collection_name = "gosat-based-ch4budget-yeargrid-v1"
# Fetching the collection from STAC collections using appropriate endpoint.
collection = requests.get(f"{STAC_API_URL}/collections/{collection_name}").json()
collection
{'id': 'gosat-based-ch4budget-yeargrid-v1',
 'type': 'Collection',
 'links': [{'rel': 'items',
   'type': 'application/geo+json',
   'href': 'https://earth.gov/ghgcenter/api/stac/collections/gosat-based-ch4budget-yeargrid-v1/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/gosat-based-ch4budget-yeargrid-v1'}],
 'title': 'GOSAT-based Top-down Total and Natural Methane Emissions v1',
 'extent': {'spatial': {'bbox': [[-180.0, -90.0, 180.0, 90.0]]},
  'temporal': {'interval': [['2019-01-01T00:00:00+00:00',
     '2019-12-31T00:00:00+00:00']]}},
 'license': 'CC-BY-4.0',
 'renders': {'dashboard': {'assets': ['post-total'],
   'nodata': 9.96921e+36,
   'rescale': [[0, 0.3]],
   'colormap_name': 'spectral_r'},
  'post-total': {'assets': ['post-total'],
   'nodata': 9.96921e+36,
   'rescale': [[0, 0.3]],
   'colormap_name': 'spectral_r'},
  'prior-total': {'assets': ['prior-total'],
   'nodata': 9.96921e+36,
   'rescale': [[0, 0.3]],
   'colormap_name': 'spectral_r'},
  'post-wetland': {'assets': ['post-wetland'],
   'nodata': 9.96921e+36,
   'rescale': [[0, 0.1]],
   'colormap_name': 'spectral_r'},
  'prior-wetland': {'assets': ['prior-wetland'],
   'nodata': 9.96921e+36,
   'rescale': [[0, 0.1]],
   'colormap_name': 'spectral_r'},
  'post-wetland-uncertainty': {'assets': ['post-wetland-uncertainty'],
   'nodata': 9.96921e+36,
   'rescale': [[0, 0.05]],
   'colormap_name': 'purd'},
  'prior-wetland-uncertainty': {'assets': ['prior-wetland-uncertainty'],
   'nodata': 9.96921e+36,
   'rescale': [[0, 0.05]],
   'colormap_name': 'purd'}},
 'summaries': {'datetime': ['2019-01-01T00:00:00Z']},
 'description': "As part of the global stock take (GST), countries are asked to provide a record of their greenhouse gas (GHG) emissions to inform decisions on how to reduce GHG emissions. The NASA Carbon Monitoring System Flux (CMS-Flux) team has used remote sensing observations from Japan's Greenhouse gases Observing SATellite (GOSAT) to produce modeled total methane (CH₄) emissions and uncertainties on a 1 degree by 1 degree resolution grid for the year 2019. The GOSAT data is used in the model to inform total emission estimates, as well as wetland (the primary natural source of methane), and various human-related sources such as fossil fuel extraction, transport, agriculture, waste, and fires. A prior GHG emission estimate (and assocated uncertainty) is provided for each layer, which is the emissions estimate without GOSAT data. The posterior GHG emission layers are informed by GOSAT total column methane data. An advanced mathematical approach is used with a global chemistry transport model to quantify annual CH₄ emissions and uncertainties. These estimates are expressed in teragrams of CH₄ per year (Tg/yr). The source data can be found at https://doi.org/10.5281/zenodo.8306874 and more information can also be found on the CEOS website https://ceos.org/gst/methane.html",
 'item_assets': {'post-total': {'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Posterior Total Methane Emissions',
   'description': 'Estimated total methane emissions per grid cell informed by GOSAT satellite total column methane data.'},
  'prior-total': {'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Prior Total Methane Emissions',
   'description': 'Total methane emissions per grid cell estimated by various inventories or models, excluding satellite based observations from GOSAT.'},
  'post-wetland': {'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Wetland Posterior Methane Emissions',
   'description': 'Estimated methane emissions per grid cell from wetlands informed by GOSAT satellite total column methane data.'},
  'prior-wetland': {'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Wetland Prior Methane Emissions',
   'description': 'Methane emissions per grid cell from wetlands estimated by various inventories or models, excluding satellite based observations from GOSAT.'},
  'post-wetland-uncertainty': {'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Uncertainty - Wetland Posterior Methane Emissions',
   'description': 'Uncertainty in estimated methane emissions per grid cell from wetlands informed by GOSAT satellite total column methane data.'},
  'prior-wetland-uncertainty': {'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Uncertainty - Wetland Prior Methane Emissions',
   'description': 'Uncertainty in methane emissions per grid cell from wetlands estimated by various inventories or models, excluding satellite based observations from GOSAT.'}},
 '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': False,
 'dashboard:time_density': 'year'}

Examining the contents of our collection under the temporal variable, we see that the data is available from January 2012 to December 2018. By looking at the dashboard:time density, we observe that the data is available for only one year, i.e. 2019.

def get_item_count(collection_id):
    count = 0
    items_url = f"{STAC_API_URL}/collections/{collection_id}/items"

    while True:
        response = requests.get(items_url)

        if not response.ok:
            print("error getting items")
            exit()

        stac = response.json()
        count += int(stac["context"].get("returned", 0))
        next = [link for link in stac["links"] if link["rel"] == "next"]

        if not next:
            break
        items_url = next[0]["href"]

    return count
# Check total number of items available
number_of_items = get_item_count(collection_name)
items = requests.get(f"{STAC_API_URL}/collections/{collection_name}/items?limit={number_of_items}").json()["features"]
print(f"Found {len(items)} items")
Found 1 items
# Examining the first item in the collection
items[0]
{'id': 'gosat-based-ch4budget-yeargrid-v1-2019',
 'bbox': [-180.5, -90.5, 179.5, 89.5],
 'type': 'Feature',
 'links': [{'rel': 'collection',
   'type': 'application/json',
   'href': 'https://earth.gov/ghgcenter/api/stac/collections/gosat-based-ch4budget-yeargrid-v1'},
  {'rel': 'parent',
   'type': 'application/json',
   'href': 'https://earth.gov/ghgcenter/api/stac/collections/gosat-based-ch4budget-yeargrid-v1'},
  {'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/gosat-based-ch4budget-yeargrid-v1/items/gosat-based-ch4budget-yeargrid-v1-2019'},
  {'title': 'Map of Item',
   'href': 'https://earth.gov/ghgcenter/api/raster/collections/gosat-based-ch4budget-yeargrid-v1/items/gosat-based-ch4budget-yeargrid-v1-2019/map?assets=post-total&nodata=9.96921e%2B36&rescale=0%2C0.3&colormap_name=spectral_r',
   'rel': 'preview',
   'type': 'text/html'}],
 'assets': {'post-gas': {'href': 's3://ghgc-data-store/gosat-based-ch4budget-yeargrid-v1/TopDownEmissions_GOSAT_post_gas_GEOS_CHEM_2019.tif',
   'proj:bbox': [-180.5, -90.5, 179.5, 89.5],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 0.6140491962432861,
      'min': -0.4103066623210907,
      'count': 11.0,
      'buckets': [1.0, 0.0, 2.0, 23.0, 64734.0, 30.0, 7.0, 2.0, 0.0, 1.0]},
     'statistics': {'mean': 0.00043242290848866105,
      'stddev': 0.006180576980113983,
      'maximum': 0.6140491962432861,
      'minimum': -0.4103066623210907,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.5, -90.5],
      [179.5, -90.5],
      [179.5, 89.5],
      [-180.5, 89.5],
      [-180.5, -90.5]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.5, 0.0, -1.0, 89.5, 0.0, 0.0, 1.0]},
  'post-geo': {'href': 's3://ghgc-data-store/gosat-based-ch4budget-yeargrid-v1/TopDownEmissions_GOSAT_post_geo_GEOS_CHEM_2019.tif',
   'proj:bbox': [-180.5, -90.5, 179.5, 89.5],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 1.0034276247024536,
      'min': -1.0016025304794312,
      'count': 11.0,
      'buckets': [1.0, 0.0, 1.0, 5.0, 63425.0, 1354.0, 10.0, 2.0, 1.0, 1.0]},
     'statistics': {'mean': 0.0003479516308289021,
      'stddev': 0.0093332938849926,
      'maximum': 1.0034276247024536,
      'minimum': -1.0016025304794312,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.5, -90.5],
      [179.5, -90.5],
      [179.5, 89.5],
      [-180.5, 89.5],
      [-180.5, -90.5]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.5, 0.0, -1.0, 89.5, 0.0, 0.0, 1.0]},
  'post-oil': {'href': 's3://ghgc-data-store/gosat-based-ch4budget-yeargrid-v1/TopDownEmissions_GOSAT_post_oil_GEOS_CHEM_2019.tif',
   'proj:bbox': [-180.5, -90.5, 179.5, 89.5],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 3.457329273223877,
      'min': -0.7987076640129089,
      'count': 11.0,
      'buckets': [2.0, 64681.0, 108.0, 4.0, 3.0, 1.0, 0.0, 0.0, 0.0, 1.0]},
     'statistics': {'mean': 0.0004447368555702269,
      'stddev': 0.01879083551466465,
      'maximum': 3.457329273223877,
      'minimum': -0.7987076640129089,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.5, -90.5],
      [179.5, -90.5],
      [179.5, 89.5],
      [-180.5, 89.5],
      [-180.5, -90.5]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.5, 0.0, -1.0, 89.5, 0.0, 0.0, 1.0]},
  'post-coal': {'href': 's3://ghgc-data-store/gosat-based-ch4budget-yeargrid-v1/TopDownEmissions_GOSAT_post_coal_GEOS_CHEM_2019.tif',
   'proj:bbox': [-180.5, -90.5, 179.5, 89.5],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 1.1035711765289307,
      'min': -0.9143016934394836,
      'count': 11.0,
      'buckets': [1.0, 1.0, 1.0, 1.0, 64710.0, 62.0, 19.0, 3.0, 1.0, 1.0]},
     'statistics': {'mean': 0.0003904950572177768,
      'stddev': 0.01172551792114973,
      'maximum': 1.1035711765289307,
      'minimum': -0.9143016934394836,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.5, -90.5],
      [179.5, -90.5],
      [179.5, 89.5],
      [-180.5, 89.5],
      [-180.5, -90.5]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.5, 0.0, -1.0, 89.5, 0.0, 0.0, 1.0]},
  'post-fire': {'href': 's3://ghgc-data-store/gosat-based-ch4budget-yeargrid-v1/TopDownEmissions_GOSAT_post_fire_GEOS_CHEM_2019.tif',
   'proj:bbox': [-180.5, -90.5, 179.5, 89.5],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 0.7065173387527466,
      'min': -0.08211488276720047,
      'count': 11.0,
      'buckets': [103.0, 64685.0, 11.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0]},
     'statistics': {'mean': 0.00020585705351550132,
      'stddev': 0.00356540665961802,
      'maximum': 0.7065173387527466,
      'minimum': -0.08211488276720047,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.5, -90.5],
      [179.5, -90.5],
      [179.5, 89.5],
      [-180.5, 89.5],
      [-180.5, -90.5]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.5, 0.0, -1.0, 89.5, 0.0, 0.0, 1.0]},
  'post-rice': {'href': 's3://ghgc-data-store/gosat-based-ch4budget-yeargrid-v1/TopDownEmissions_GOSAT_post_rice_GEOS_CHEM_2019.tif',
   'proj:bbox': [-180.5, -90.5, 179.5, 89.5],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 1.3836066722869873,
      'min': -1.1384793519973755,
      'count': 11.0,
      'buckets': [1.0, 4.0, 12.0, 20.0, 64581.0, 132.0, 30.0, 11.0, 4.0, 5.0]},
     'statistics': {'mean': 0.0010437712771818042,
      'stddev': 0.024994080886244774,
      'maximum': 1.3836066722869873,
      'minimum': -1.1384793519973755,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.5, -90.5],
      [179.5, -90.5],
      [179.5, 89.5],
      [-180.5, 89.5],
      [-180.5, -90.5]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.5, 0.0, -1.0, 89.5, 0.0, 0.0, 1.0]},
  'prior-gas': {'href': 's3://ghgc-data-store/gosat-based-ch4budget-yeargrid-v1/TopDownEmissions_GOSAT_prior_gas_GEOS_CHEM_2019.tif',
   'proj:bbox': [-180.5, -90.5, 179.5, 89.5],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 0.2977725863456726,
      'min': 0.0,
      'count': 11.0,
      'buckets': [64659.0, 93.0, 27.0, 8.0, 2.0, 4.0, 2.0, 2.0, 2.0, 1.0]},
     'statistics': {'mean': 0.00037746498128399253,
      'stddev': 0.00403926195576787,
      'maximum': 0.2977725863456726,
      'minimum': 0.0,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.5, -90.5],
      [179.5, -90.5],
      [179.5, 89.5],
      [-180.5, 89.5],
      [-180.5, -90.5]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.5, 0.0, -1.0, 89.5, 0.0, 0.0, 1.0]},
  'prior-geo': {'href': 's3://ghgc-data-store/gosat-based-ch4budget-yeargrid-v1/TopDownEmissions_GOSAT_prior_geo_GEOS_CHEM_2019.tif',
   'proj:bbox': [-180.5, -90.5, 179.5, 89.5],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 1.8356599807739258,
      'min': 0.0,
      'count': 11.0,
      'buckets': [64780.0, 15.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0]},
     'statistics': {'mean': 0.0004932624287903309,
      'stddev': 0.009640775620937347,
      'maximum': 1.8356599807739258,
      'minimum': 0.0,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.5, -90.5],
      [179.5, -90.5],
      [179.5, 89.5],
      [-180.5, 89.5],
      [-180.5, -90.5]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.5, 0.0, -1.0, 89.5, 0.0, 0.0, 1.0]},
  'prior-oil': {'href': 's3://ghgc-data-store/gosat-based-ch4budget-yeargrid-v1/TopDownEmissions_GOSAT_prior_oil_GEOS_CHEM_2019.tif',
   'proj:bbox': [-180.5, -90.5, 179.5, 89.5],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 1.287477731704712,
      'min': 0.0,
      'count': 11.0,
      'buckets': [64734.0, 40.0, 15.0, 3.0, 1.0, 4.0, 0.0, 1.0, 1.0, 1.0]},
     'statistics': {'mean': 0.0006414719391614199,
      'stddev': 0.01284099742770195,
      'maximum': 1.287477731704712,
      'minimum': 0.0,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.5, -90.5],
      [179.5, -90.5],
      [179.5, 89.5],
      [-180.5, 89.5],
      [-180.5, -90.5]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.5, 0.0, -1.0, 89.5, 0.0, 0.0, 1.0]},
  'post-total': {'href': 's3://ghgc-data-store/gosat-based-ch4budget-yeargrid-v1/TopDownEmissions_GOSAT_post_total_GEOS_CHEM_2019.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Posterior Total Methane Emissions',
   'proj:bbox': [-180.5, -90.5, 179.5, 89.5],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'description': 'Estimated total methane emissions per grid cell informed by GOSAT satellite total column methane data.',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 3.621621608734131,
      'min': -1.157373309135437,
      'count': 11.0,
      'buckets': [8.0, 69.0, 64300.0, 366.0, 41.0, 13.0, 2.0, 0.0, 0.0, 1.0]},
     'statistics': {'mean': 0.008661163039505482,
      'stddev': 0.057076238095760345,
      'maximum': 3.621621608734131,
      'minimum': -1.157373309135437,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.5, -90.5],
      [179.5, -90.5],
      [179.5, 89.5],
      [-180.5, 89.5],
      [-180.5, -90.5]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.5, 0.0, -1.0, 89.5, 0.0, 0.0, 1.0]},
  'post-waste': {'href': 's3://ghgc-data-store/gosat-based-ch4budget-yeargrid-v1/TopDownEmissions_GOSAT_post_waste_GEOS_CHEM_2019.tif',
   'proj:bbox': [-180.5, -90.5, 179.5, 89.5],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 1.2296125888824463,
      'min': -0.5908117294311523,
      'count': 11.0,
      'buckets': [1.0, 2.0, 10.0, 64753.0, 26.0, 5.0, 1.0, 1.0, 0.0, 1.0]},
     'statistics': {'mean': 0.0007660945411771536,
      'stddev': 0.010033484548330307,
      'maximum': 1.2296125888824463,
      'minimum': -0.5908117294311523,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.5, -90.5],
      [179.5, -90.5],
      [179.5, 89.5],
      [-180.5, 89.5],
      [-180.5, -90.5]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.5, 0.0, -1.0, 89.5, 0.0, 0.0, 1.0]},
  'prior-coal': {'href': 's3://ghgc-data-store/gosat-based-ch4budget-yeargrid-v1/TopDownEmissions_GOSAT_prior_coal_GEOS_CHEM_2019.tif',
   'proj:bbox': [-180.5, -90.5, 179.5, 89.5],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 1.3838224411010742,
      'min': 0.0,
      'count': 11.0,
      'buckets': [64746.0, 29.0, 11.0, 2.0, 5.0, 2.0, 2.0, 2.0, 0.0, 1.0]},
     'statistics': {'mean': 0.0004846722586080432,
      'stddev': 0.01380141545087099,
      'maximum': 1.3838224411010742,
      'minimum': 0.0,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.5, -90.5],
      [179.5, -90.5],
      [179.5, 89.5],
      [-180.5, 89.5],
      [-180.5, -90.5]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.5, 0.0, -1.0, 89.5, 0.0, 0.0, 1.0]},
  'prior-fire': {'href': 's3://ghgc-data-store/gosat-based-ch4budget-yeargrid-v1/TopDownEmissions_GOSAT_prior_fire_GEOS_CHEM_2019.tif',
   'proj:bbox': [-180.5, -90.5, 179.5, 89.5],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 0.498909056186676,
      'min': 0.0,
      'count': 11.0,
      'buckets': [64786.0, 7.0, 1.0, 3.0, 1.0, 0.0, 0.0, 1.0, 0.0, 1.0]},
     'statistics': {'mean': 0.0002329142007511109,
      'stddev': 0.0032598471734672785,
      'maximum': 0.498909056186676,
      'minimum': 0.0,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.5, -90.5],
      [179.5, -90.5],
      [179.5, 89.5],
      [-180.5, 89.5],
      [-180.5, -90.5]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.5, 0.0, -1.0, 89.5, 0.0, 0.0, 1.0]},
  'prior-rice': {'href': 's3://ghgc-data-store/gosat-based-ch4budget-yeargrid-v1/TopDownEmissions_GOSAT_prior_rice_GEOS_CHEM_2019.tif',
   'proj:bbox': [-180.5, -90.5, 179.5, 89.5],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 0.5223113298416138,
      'min': 0.0,
      'count': 11.0,
      'buckets': [64539.0, 154.0, 55.0, 25.0, 16.0, 8.0, 2.0, 0.0, 0.0, 1.0]},
     'statistics': {'mean': 0.000768911384511739,
      'stddev': 0.008794998750090599,
      'maximum': 0.5223113298416138,
      'minimum': 0.0,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.5, -90.5],
      [179.5, -90.5],
      [179.5, 89.5],
      [-180.5, 89.5],
      [-180.5, -90.5]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.5, 0.0, -1.0, 89.5, 0.0, 0.0, 1.0]},
  'prior-total': {'href': 's3://ghgc-data-store/gosat-based-ch4budget-yeargrid-v1/TopDownEmissions_GOSAT_prior_total_GEOS_CHEM_2019.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Prior Total Methane Emissions',
   'proj:bbox': [-180.5, -90.5, 179.5, 89.5],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'description': 'Total methane emissions per grid cell estimated by various inventories or models, excluding satellite based observations from GOSAT.',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 2.121816635131836,
      'min': 0.0,
      'count': 11.0,
      'buckets': [64390.0, 297.0, 63.0, 26.0, 13.0, 7.0, 3.0, 0.0, 0.0, 1.0]},
     'statistics': {'mean': 0.008324408903717995,
      'stddev': 0.04165573790669441,
      'maximum': 2.121816635131836,
      'minimum': 0.0,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.5, -90.5],
      [179.5, -90.5],
      [179.5, 89.5],
      [-180.5, 89.5],
      [-180.5, -90.5]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.5, 0.0, -1.0, 89.5, 0.0, 0.0, 1.0]},
  'prior-waste': {'href': 's3://ghgc-data-store/gosat-based-ch4budget-yeargrid-v1/TopDownEmissions_GOSAT_prior_waste_GEOS_CHEM_2019.tif',
   'proj:bbox': [-180.5, -90.5, 179.5, 89.5],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 1.4146164655685425,
      'min': 0.0,
      'count': 11.0,
      'buckets': [64750.0, 36.0, 6.0, 4.0, 1.0, 1.0, 0.0, 0.0, 1.0, 1.0]},
     'statistics': {'mean': 0.0008899783715605736,
      'stddev': 0.011600765399634838,
      'maximum': 1.4146164655685425,
      'minimum': 0.0,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.5, -90.5],
      [179.5, -90.5],
      [179.5, 89.5],
      [-180.5, 89.5],
      [-180.5, -90.5]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.5, 0.0, -1.0, 89.5, 0.0, 0.0, 1.0]},
  'post-wetland': {'href': 's3://ghgc-data-store/gosat-based-ch4budget-yeargrid-v1/TopDownEmissions_GOSAT_post_wetland_GEOS_CHEM_2019.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Wetland Posterior Methane Emissions',
   'proj:bbox': [-180.5, -90.5, 179.5, 89.5],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'description': 'Estimated methane emissions per grid cell from wetlands informed by GOSAT satellite total column methane data.',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 2.0359816551208496,
      'min': -0.8375182747840881,
      'count': 11.0,
      'buckets': [5.0, 15.0, 63361.0, 1288.0, 94.0, 24.0, 7.0, 2.0, 2.0, 2.0]},
     'statistics': {'mean': 0.0027753026224672794,
      'stddev': 0.033493757247924805,
      'maximum': 2.0359816551208496,
      'minimum': -0.8375182747840881,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.5, -90.5],
      [179.5, -90.5],
      [179.5, 89.5],
      [-180.5, 89.5],
      [-180.5, -90.5]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.5, 0.0, -1.0, 89.5, 0.0, 0.0, 1.0]},
  'prior-wetland': {'href': 's3://ghgc-data-store/gosat-based-ch4budget-yeargrid-v1/TopDownEmissions_GOSAT_prior_wetland_GEOS_CHEM_2019.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Wetland Prior Methane Emissions',
   'proj:bbox': [-180.5, -90.5, 179.5, 89.5],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'description': 'Methane emissions per grid cell from wetlands estimated by various inventories or models, excluding satellite based observations from GOSAT.',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 1.2217899560928345,
      'min': 0.0,
      'count': 11.0,
      'buckets': [64489.0, 188.0, 52.0, 29.0, 17.0, 11.0, 3.0, 4.0, 3.0, 4.0]},
     'statistics': {'mean': 0.0030836397781968117,
      'stddev': 0.026006272062659264,
      'maximum': 1.2217899560928345,
      'minimum': 0.0,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.5, -90.5],
      [179.5, -90.5],
      [179.5, 89.5],
      [-180.5, 89.5],
      [-180.5, -90.5]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.5, 0.0, -1.0, 89.5, 0.0, 0.0, 1.0]},
  'post-livestock': {'href': 's3://ghgc-data-store/gosat-based-ch4budget-yeargrid-v1/TopDownEmissions_GOSAT_post_livestock_GEOS_CHEM_2019.tif',
   'proj:bbox': [-180.5, -90.5, 179.5, 89.5],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 0.4482361972332001,
      'min': -0.2484263777732849,
      'count': 11.0,
      'buckets': [2.0,
       10.0,
       56.0,
       63290.0,
       1110.0,
       239.0,
       61.0,
       14.0,
       13.0,
       5.0]},
     'statistics': {'mean': 0.0022545307874679565,
      'stddev': 0.014899863861501217,
      'maximum': 0.4482361972332001,
      'minimum': -0.2484263777732849,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.5, -90.5],
      [179.5, -90.5],
      [179.5, 89.5],
      [-180.5, 89.5],
      [-180.5, -90.5]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.5, 0.0, -1.0, 89.5, 0.0, 0.0, 1.0]},
  'prior-livestock': {'href': 's3://ghgc-data-store/gosat-based-ch4budget-yeargrid-v1/TopDownEmissions_GOSAT_prior_livestock_GEOS_CHEM_2019.tif',
   'proj:bbox': [-180.5, -90.5, 179.5, 89.5],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 0.1304568201303482,
      'min': 0.0,
      'count': 11.0,
      'buckets': [62701.0,
       1246.0,
       462.0,
       214.0,
       61.0,
       40.0,
       41.0,
       21.0,
       11.0,
       3.0]},
     'statistics': {'mean': 0.0013520935317501426,
      'stddev': 0.006176645867526531,
      'maximum': 0.1304568201303482,
      'minimum': 0.0,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.5, -90.5],
      [179.5, -90.5],
      [179.5, 89.5],
      [-180.5, 89.5],
      [-180.5, -90.5]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.5, 0.0, -1.0, 89.5, 0.0, 0.0, 1.0]},
  'post-gas-uncertainty': {'href': 's3://ghgc-data-store/gosat-based-ch4budget-yeargrid-v1/TopDownEmissions_GOSAT_post_unc_gas_GEOS_CHEM_2019.tif',
   'proj:bbox': [-180.5, -90.5, 179.5, 89.5],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 0.026829414069652557,
      'min': 0.0,
      'count': 11.0,
      'buckets': [64766.0, 20.0, 4.0, 6.0, 1.0, 0.0, 0.0, 1.0, 1.0, 1.0]},
     'statistics': {'mean': 8.39770473248791e-06,
      'stddev': 0.00022043172793928534,
      'maximum': 0.026829414069652557,
      'minimum': 0.0,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.5, -90.5],
      [179.5, -90.5],
      [179.5, 89.5],
      [-180.5, 89.5],
      [-180.5, -90.5]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.5, 0.0, -1.0, 89.5, 0.0, 0.0, 1.0]},
  'post-geo-uncertainty': {'href': 's3://ghgc-data-store/gosat-based-ch4budget-yeargrid-v1/TopDownEmissions_GOSAT_post_unc_geo_GEOS_CHEM_2019.tif',
   'proj:bbox': [-180.5, -90.5, 179.5, 89.5],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 0.25446972250938416,
      'min': 0.0,
      'count': 11.0,
      'buckets': [64793.0, 5.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0]},
     'statistics': {'mean': 1.9521785361575894e-05,
      'stddev': 0.0011142849689349532,
      'maximum': 0.25446972250938416,
      'minimum': 0.0,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.5, -90.5],
      [179.5, -90.5],
      [179.5, 89.5],
      [-180.5, 89.5],
      [-180.5, -90.5]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.5, 0.0, -1.0, 89.5, 0.0, 0.0, 1.0]},
  'post-oil-uncertainty': {'href': 's3://ghgc-data-store/gosat-based-ch4budget-yeargrid-v1/TopDownEmissions_GOSAT_post_unc_oil_GEOS_CHEM_2019.tif',
   'proj:bbox': [-180.5, -90.5, 179.5, 89.5],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 0.20816677808761597,
      'min': 0.0,
      'count': 11.0,
      'buckets': [64775.0, 15.0, 2.0, 5.0, 1.0, 0.0, 0.0, 0.0, 1.0, 1.0]},
     'statistics': {'mean': 3.7560705095529556e-05,
      'stddev': 0.0014476124197244644,
      'maximum': 0.20816677808761597,
      'minimum': 0.0,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.5, -90.5],
      [179.5, -90.5],
      [179.5, 89.5],
      [-180.5, 89.5],
      [-180.5, -90.5]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.5, 0.0, -1.0, 89.5, 0.0, 0.0, 1.0]},
  'post-coal-uncertainty': {'href': 's3://ghgc-data-store/gosat-based-ch4budget-yeargrid-v1/TopDownEmissions_GOSAT_post_unc_coal_GEOS_CHEM_2019.tif',
   'proj:bbox': [-180.5, -90.5, 179.5, 89.5],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 0.28081363439559937,
      'min': 0.0,
      'count': 11.0,
      'buckets': [64778.0, 7.0, 5.0, 1.0, 3.0, 3.0, 2.0, 0.0, 0.0, 1.0]},
     'statistics': {'mean': 4.5709952246397734e-05,
      'stddev': 0.0022045010700821877,
      'maximum': 0.28081363439559937,
      'minimum': 0.0,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.5, -90.5],
      [179.5, -90.5],
      [179.5, 89.5],
      [-180.5, 89.5],
      [-180.5, -90.5]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.5, 0.0, -1.0, 89.5, 0.0, 0.0, 1.0]},
  'post-fire-uncertainty': {'href': 's3://ghgc-data-store/gosat-based-ch4budget-yeargrid-v1/TopDownEmissions_GOSAT_post_unc_fire_GEOS_CHEM_2019.tif',
   'proj:bbox': [-180.5, -90.5, 179.5, 89.5],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 0.04287702962756157,
      'min': 0.0,
      'count': 11.0,
      'buckets': [64794.0, 3.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0]},
     'statistics': {'mean': 3.030148036486935e-06,
      'stddev': 0.00021067954367026687,
      'maximum': 0.04287702962756157,
      'minimum': 0.0,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.5, -90.5],
      [179.5, -90.5],
      [179.5, 89.5],
      [-180.5, 89.5],
      [-180.5, -90.5]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.5, 0.0, -1.0, 89.5, 0.0, 0.0, 1.0]},
  'post-rice-uncertainty': {'href': 's3://ghgc-data-store/gosat-based-ch4budget-yeargrid-v1/TopDownEmissions_GOSAT_post_unc_rice_GEOS_CHEM_2019.tif',
   'proj:bbox': [-180.5, -90.5, 179.5, 89.5],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 0.085321806371212,
      'min': 0.0,
      'count': 11.0,
      'buckets': [64609.0, 88.0, 42.0, 26.0, 15.0, 9.0, 2.0, 4.0, 3.0, 2.0]},
     'statistics': {'mean': 8.745533705223352e-05,
      'stddev': 0.0015292511088773608,
      'maximum': 0.085321806371212,
      'minimum': 0.0,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.5, -90.5],
      [179.5, -90.5],
      [179.5, 89.5],
      [-180.5, 89.5],
      [-180.5, -90.5]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.5, 0.0, -1.0, 89.5, 0.0, 0.0, 1.0]},
  'prior-gas-uncertainty': {'href': 's3://ghgc-data-store/gosat-based-ch4budget-yeargrid-v1/TopDownEmissions_GOSAT_prior_unc_gas_GEOS_CHEM_2019.tif',
   'proj:bbox': [-180.5, -90.5, 179.5, 89.5],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 0.035356033593416214,
      'min': 0.0,
      'count': 11.0,
      'buckets': [64766.0, 17.0, 5.0, 3.0, 3.0, 0.0, 1.0, 1.0, 0.0, 4.0]},
     'statistics': {'mean': 1.1367864317435306e-05,
      'stddev': 0.0003570150875020772,
      'maximum': 0.035356033593416214,
      'minimum': 0.0,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.5, -90.5],
      [179.5, -90.5],
      [179.5, 89.5],
      [-180.5, 89.5],
      [-180.5, -90.5]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.5, 0.0, -1.0, 89.5, 0.0, 0.0, 1.0]},
  'prior-geo-uncertainty': {'href': 's3://ghgc-data-store/gosat-based-ch4budget-yeargrid-v1/TopDownEmissions_GOSAT_prior_unc_geo_GEOS_CHEM_2019.tif',
   'proj:bbox': [-180.5, -90.5, 179.5, 89.5],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 1.6511273384094238,
      'min': 0.0,
      'count': 11.0,
      'buckets': [64799.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0]},
     'statistics': {'mean': 4.881064160144888e-05,
      'stddev': 0.006545887794345617,
      'maximum': 1.6511273384094238,
      'minimum': 0.0,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.5, -90.5],
      [179.5, -90.5],
      [179.5, 89.5],
      [-180.5, 89.5],
      [-180.5, -90.5]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.5, 0.0, -1.0, 89.5, 0.0, 0.0, 1.0]},
  'prior-oil-uncertainty': {'href': 's3://ghgc-data-store/gosat-based-ch4budget-yeargrid-v1/TopDownEmissions_GOSAT_prior_unc_oil_GEOS_CHEM_2019.tif',
   'proj:bbox': [-180.5, -90.5, 179.5, 89.5],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 0.8458506464958191,
      'min': 0.0,
      'count': 11.0,
      'buckets': [64787.0, 5.0, 5.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0]},
     'statistics': {'mean': 9.116153523791581e-05,
      'stddev': 0.00547912297770381,
      'maximum': 0.8458506464958191,
      'minimum': 0.0,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.5, -90.5],
      [179.5, -90.5],
      [179.5, 89.5],
      [-180.5, 89.5],
      [-180.5, -90.5]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.5, 0.0, -1.0, 89.5, 0.0, 0.0, 1.0]},
  'post-waste-uncertainty': {'href': 's3://ghgc-data-store/gosat-based-ch4budget-yeargrid-v1/TopDownEmissions_GOSAT_post_unc_waste_GEOS_CHEM_2019.tif',
   'proj:bbox': [-180.5, -90.5, 179.5, 89.5],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 0.10136520117521286,
      'min': 0.0,
      'count': 11.0,
      'buckets': [64759.0, 19.0, 6.0, 8.0, 2.0, 1.0, 2.0, 0.0, 1.0, 2.0]},
     'statistics': {'mean': 3.903839024133049e-05,
      'stddev': 0.0009961748728528619,
      'maximum': 0.10136520117521286,
      'minimum': 0.0,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.5, -90.5],
      [179.5, -90.5],
      [179.5, 89.5],
      [-180.5, 89.5],
      [-180.5, -90.5]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.5, 0.0, -1.0, 89.5, 0.0, 0.0, 1.0]},
  'prior-coal-uncertainty': {'href': 's3://ghgc-data-store/gosat-based-ch4budget-yeargrid-v1/TopDownEmissions_GOSAT_prior_unc_coal_GEOS_CHEM_2019.tif',
   'proj:bbox': [-180.5, -90.5, 179.5, 89.5],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 0.9433419704437256,
      'min': 0.0,
      'count': 11.0,
      'buckets': [64785.0, 5.0, 4.0, 2.0, 1.0, 2.0, 0.0, 0.0, 0.0, 1.0]},
     'statistics': {'mean': 9.546576620778069e-05,
      'stddev': 0.00589930871501565,
      'maximum': 0.9433419704437256,
      'minimum': 0.0,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.5, -90.5],
      [179.5, -90.5],
      [179.5, 89.5],
      [-180.5, 89.5],
      [-180.5, -90.5]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.5, 0.0, -1.0, 89.5, 0.0, 0.0, 1.0]},
  'prior-rice-uncertainty': {'href': 's3://ghgc-data-store/gosat-based-ch4budget-yeargrid-v1/TopDownEmissions_GOSAT_prior_unc_rice_GEOS_CHEM_2019.tif',
   'proj:bbox': [-180.5, -90.5, 179.5, 89.5],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 0.2505281865596771,
      'min': 0.0,
      'count': 11.0,
      'buckets': [64710.0, 52.0, 26.0, 5.0, 3.0, 3.0, 0.0, 0.0, 0.0, 1.0]},
     'statistics': {'mean': 0.00012143573985667899,
      'stddev': 0.002463066717609763,
      'maximum': 0.2505281865596771,
      'minimum': 0.0,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.5, -90.5],
      [179.5, -90.5],
      [179.5, 89.5],
      [-180.5, 89.5],
      [-180.5, -90.5]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.5, 0.0, -1.0, 89.5, 0.0, 0.0, 1.0]},
  'prior-waste-uncertainty': {'href': 's3://ghgc-data-store/gosat-based-ch4budget-yeargrid-v1/TopDownEmissions_GOSAT_prior_unc_waste_GEOS_CHEM_2019.tif',
   'proj:bbox': [-180.5, -90.5, 179.5, 89.5],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 1.3018296957015991,
      'min': 0.0,
      'count': 11.0,
      'buckets': [64793.0, 4.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 1.0]},
     'statistics': {'mean': 0.0001001738928607665,
      'stddev': 0.006979630794376135,
      'maximum': 1.3018296957015991,
      'minimum': 0.0,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.5, -90.5],
      [179.5, -90.5],
      [179.5, 89.5],
      [-180.5, 89.5],
      [-180.5, -90.5]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.5, 0.0, -1.0, 89.5, 0.0, 0.0, 1.0]},
  'post-wetland-uncertainty': {'href': 's3://ghgc-data-store/gosat-based-ch4budget-yeargrid-v1/TopDownEmissions_GOSAT_post_unc_wetland_GEOS_CHEM_2019.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Uncertainty - Wetland Posterior Methane Emissions',
   'proj:bbox': [-180.5, -90.5, 179.5, 89.5],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'description': 'Uncertainty in estimated methane emissions per grid cell from wetlands informed by GOSAT satellite total column methane data.',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 0.36633968353271484,
      'min': 0.0,
      'count': 11.0,
      'buckets': [64677.0, 68.0, 19.0, 14.0, 5.0, 8.0, 3.0, 4.0, 0.0, 2.0]},
     'statistics': {'mean': 0.00034577888436615467,
      'stddev': 0.005308355204761028,
      'maximum': 0.36633968353271484,
      'minimum': 0.0,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.5, -90.5],
      [179.5, -90.5],
      [179.5, 89.5],
      [-180.5, 89.5],
      [-180.5, -90.5]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.5, 0.0, -1.0, 89.5, 0.0, 0.0, 1.0]},
  'prior-wetland-uncertainty': {'href': 's3://ghgc-data-store/gosat-based-ch4budget-yeargrid-v1/TopDownEmissions_GOSAT_prior_unc_wetland_GEOS_CHEM_2019.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Uncertainty - Wetland Prior Methane Emissions',
   'proj:bbox': [-180.5, -90.5, 179.5, 89.5],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'description': 'Uncertainty in methane emissions per grid cell from wetlands estimated by various inventories or models, excluding satellite based observations from GOSAT.',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 1.5251290798187256,
      'min': 0.0,
      'count': 11.0,
      'buckets': [64704.0, 49.0, 21.0, 11.0, 2.0, 3.0, 3.0, 3.0, 1.0, 3.0]},
     'statistics': {'mean': 0.0009943766053766012,
      'stddev': 0.020392030477523804,
      'maximum': 1.5251290798187256,
      'minimum': 0.0,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.5, -90.5],
      [179.5, -90.5],
      [179.5, 89.5],
      [-180.5, 89.5],
      [-180.5, -90.5]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.5, 0.0, -1.0, 89.5, 0.0, 0.0, 1.0]},
  'post-livestock-uncertainty': {'href': 's3://ghgc-data-store/gosat-based-ch4budget-yeargrid-v1/TopDownEmissions_GOSAT_post_unc_livestock_GEOS_CHEM_2019.tif',
   'proj:bbox': [-180.5, -90.5, 179.5, 89.5],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 0.016047537326812744,
      'min': 0.0,
      'count': 11.0,
      'buckets': [64206.0,
       360.0,
       119.0,
       35.0,
       30.0,
       20.0,
       14.0,
       9.0,
       6.0,
       1.0]},
     'statistics': {'mean': 5.696367225027643e-05,
      'stddev': 0.00044628031901083887,
      'maximum': 0.016047537326812744,
      'minimum': 0.0,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.5, -90.5],
      [179.5, -90.5],
      [179.5, 89.5],
      [-180.5, 89.5],
      [-180.5, -90.5]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.5, 0.0, -1.0, 89.5, 0.0, 0.0, 1.0]},
  'prior-livestock-uncertainty': {'href': 's3://ghgc-data-store/gosat-based-ch4budget-yeargrid-v1/TopDownEmissions_GOSAT_prior_unc_livestock_GEOS_CHEM_2019.tif',
   'proj:bbox': [-180.5, -90.5, 179.5, 89.5],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 0.021834801882505417,
      'min': 0.0,
      'count': 11.0,
      'buckets': [64219.0,
       326.0,
       127.0,
       34.0,
       19.0,
       25.0,
       25.0,
       17.0,
       5.0,
       3.0]},
     'statistics': {'mean': 7.657577225472778e-05,
      'stddev': 0.0006582040223293006,
      'maximum': 0.021834801882505417,
      'minimum': 0.0,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.5, -90.5],
      [179.5, -90.5],
      [179.5, 89.5],
      [-180.5, 89.5],
      [-180.5, -90.5]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.5, 0.0, -1.0, 89.5, 0.0, 0.0, 1.0]},
  'rendered_preview': {'title': 'Rendered preview',
   'href': 'https://earth.gov/ghgcenter/api/raster/collections/gosat-based-ch4budget-yeargrid-v1/items/gosat-based-ch4budget-yeargrid-v1-2019/preview.png?assets=post-total&nodata=9.96921e%2B36&rescale=0%2C0.3&colormap_name=spectral_r',
   'rel': 'preview',
   'roles': ['overview'],
   'type': 'image/png'}},
 'geometry': {'type': 'Polygon',
  'coordinates': [[[-180.5, -90.5],
    [179.5, -90.5],
    [179.5, 89.5],
    [-180.5, 89.5],
    [-180.5, -90.5]]]},
 'collection': 'gosat-based-ch4budget-yeargrid-v1',
 'properties': {'end_datetime': '2019-12-31T00:00:00+00:00',
  'start_datetime': '2019-01-01T00:00:00+00:00'},
 'stac_version': '1.0.0',
 'stac_extensions': []}

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

Exploring Changes in GOSAT Methane budgets (CH4) Levels Using the Raster API

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

# To access the year value from each item more easily, this will let us query more explicity by year and month (e.g., 2020-02)
items = {item["properties"]["start_datetime"][:10]: item for item in items} 
asset_name = "prior-total"
# 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.keys()
dict_keys(['2019-01-01'])

Now, we will pass the item id, collection name, and rescaling_factor to the Raster API endpoint. We will do this for first January 2019.

color_map = "rainbow" # please select the color ramp from matplotlib library.
january_2019_tile = requests.get(
    f"{RASTER_API_URL}/collections/{items['2019-01-01']['collection']}/items/{items['2019-01-01']['id']}/tilejson.json?"
    f"&assets={asset_name}"
    f"&color_formula=gamma+r+1.05&colormap_name={color_map}"
    f"&rescale={rescale_values['min']},{rescale_values['max']}", 
).json()
january_2019_tile
{'tilejson': '2.2.0',
 'version': '1.0.0',
 'scheme': 'xyz',
 'tiles': ['https://earth.gov/ghgcenter/api/raster/collections/gosat-based-ch4budget-yeargrid-v1/items/gosat-based-ch4budget-yeargrid-v1-2019/tiles/WebMercatorQuad/{z}/{x}/{y}@1x?assets=prior-total&color_formula=gamma+r+1.05&colormap_name=rainbow&rescale=0.0%2C2.121816635131836'],
 'minzoom': 0,
 'maxzoom': 24,
 'bounds': [-180.5, -90.5, 179.5, 89.5],
 'center': [-0.5, -0.5, 0]}

Visualizing CH₄ Emissions

# Set initial zoom and center of map for CH₄ Layer
# Centre of map [latitude,longitude]
map_ = folium.Map(location=(34, -118), zoom_start=6)

# January 2019
map_layer_2019 = TileLayer(
    tiles=january_2019_tile["tiles"][0],
    attr="GHG",
    opacity=0.7,
)
map_layer_2019.add_to(map_)

# # January 2012
# map_layer_2012 = TileLayer(
#     tiles=january_2012_tile["tiles"][0],
#     attr="GHG",
#     opacity=0.7,
# )
# map_layer_2012.add_to(map_.m2)

# visualising the map
map_
Make this Notebook Trusted to load map: File -> Trust Notebook

Calculating Zonal Statistics

To perform zonal statistics, first we need to create a polygon. In this use case we are creating a polygon in Texas (USA).

# Texas, USA
texas_aoi = {
    "type": "Feature",
    "properties": {},
    "geometry": {
        "coordinates": [
            [
                # [13.686159004559698, -21.700046934333145],
                # [13.686159004559698, -23.241974326585833],
                # [14.753560168039911, -23.241974326585833],
                # [14.753560168039911, -21.700046934333145],
                # [13.686159004559698, -21.700046934333145],
                [-95, 29],
                [-95, 33],
                [-104, 33],
                [-104,29],
                [-95, 29]
            ]
        ],
        "type": "Polygon",
    },
}
# We will plug in the coordinates for a location inside the the polygon and a zoom level

aoi_map = Map(
    tiles="OpenStreetMap",
    location=[
        30,-100
    ],
    zoom_start=6,
)

folium.GeoJson(texas_aoi, name="Texas, USA").add_to(aoi_map)
aoi_map
Make this Notebook Trusted to load map: File -> Trust Notebook
# Check total number of items available
items = requests.get(
    f"{STAC_API_URL}/collections/{collection_name}/items?limit=300"
).json()["features"]
print(f"Found {len(items)} items")
Found 1 items
# Explore the first item
items[0]
{'id': 'gosat-based-ch4budget-yeargrid-v1-2019',
 'bbox': [-180.5, -90.5, 179.5, 89.5],
 'type': 'Feature',
 'links': [{'rel': 'collection',
   'type': 'application/json',
   'href': 'https://earth.gov/ghgcenter/api/stac/collections/gosat-based-ch4budget-yeargrid-v1'},
  {'rel': 'parent',
   'type': 'application/json',
   'href': 'https://earth.gov/ghgcenter/api/stac/collections/gosat-based-ch4budget-yeargrid-v1'},
  {'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/gosat-based-ch4budget-yeargrid-v1/items/gosat-based-ch4budget-yeargrid-v1-2019'},
  {'title': 'Map of Item',
   'href': 'https://earth.gov/ghgcenter/api/raster/collections/gosat-based-ch4budget-yeargrid-v1/items/gosat-based-ch4budget-yeargrid-v1-2019/map?assets=post-total&nodata=9.96921e%2B36&rescale=0%2C0.3&colormap_name=spectral_r',
   'rel': 'preview',
   'type': 'text/html'}],
 'assets': {'post-gas': {'href': 's3://ghgc-data-store/gosat-based-ch4budget-yeargrid-v1/TopDownEmissions_GOSAT_post_gas_GEOS_CHEM_2019.tif',
   'proj:bbox': [-180.5, -90.5, 179.5, 89.5],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 0.6140491962432861,
      'min': -0.4103066623210907,
      'count': 11.0,
      'buckets': [1.0, 0.0, 2.0, 23.0, 64734.0, 30.0, 7.0, 2.0, 0.0, 1.0]},
     'statistics': {'mean': 0.00043242290848866105,
      'stddev': 0.006180576980113983,
      'maximum': 0.6140491962432861,
      'minimum': -0.4103066623210907,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.5, -90.5],
      [179.5, -90.5],
      [179.5, 89.5],
      [-180.5, 89.5],
      [-180.5, -90.5]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.5, 0.0, -1.0, 89.5, 0.0, 0.0, 1.0]},
  'post-geo': {'href': 's3://ghgc-data-store/gosat-based-ch4budget-yeargrid-v1/TopDownEmissions_GOSAT_post_geo_GEOS_CHEM_2019.tif',
   'proj:bbox': [-180.5, -90.5, 179.5, 89.5],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 1.0034276247024536,
      'min': -1.0016025304794312,
      'count': 11.0,
      'buckets': [1.0, 0.0, 1.0, 5.0, 63425.0, 1354.0, 10.0, 2.0, 1.0, 1.0]},
     'statistics': {'mean': 0.0003479516308289021,
      'stddev': 0.0093332938849926,
      'maximum': 1.0034276247024536,
      'minimum': -1.0016025304794312,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.5, -90.5],
      [179.5, -90.5],
      [179.5, 89.5],
      [-180.5, 89.5],
      [-180.5, -90.5]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.5, 0.0, -1.0, 89.5, 0.0, 0.0, 1.0]},
  'post-oil': {'href': 's3://ghgc-data-store/gosat-based-ch4budget-yeargrid-v1/TopDownEmissions_GOSAT_post_oil_GEOS_CHEM_2019.tif',
   'proj:bbox': [-180.5, -90.5, 179.5, 89.5],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 3.457329273223877,
      'min': -0.7987076640129089,
      'count': 11.0,
      'buckets': [2.0, 64681.0, 108.0, 4.0, 3.0, 1.0, 0.0, 0.0, 0.0, 1.0]},
     'statistics': {'mean': 0.0004447368555702269,
      'stddev': 0.01879083551466465,
      'maximum': 3.457329273223877,
      'minimum': -0.7987076640129089,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.5, -90.5],
      [179.5, -90.5],
      [179.5, 89.5],
      [-180.5, 89.5],
      [-180.5, -90.5]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.5, 0.0, -1.0, 89.5, 0.0, 0.0, 1.0]},
  'post-coal': {'href': 's3://ghgc-data-store/gosat-based-ch4budget-yeargrid-v1/TopDownEmissions_GOSAT_post_coal_GEOS_CHEM_2019.tif',
   'proj:bbox': [-180.5, -90.5, 179.5, 89.5],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 1.1035711765289307,
      'min': -0.9143016934394836,
      'count': 11.0,
      'buckets': [1.0, 1.0, 1.0, 1.0, 64710.0, 62.0, 19.0, 3.0, 1.0, 1.0]},
     'statistics': {'mean': 0.0003904950572177768,
      'stddev': 0.01172551792114973,
      'maximum': 1.1035711765289307,
      'minimum': -0.9143016934394836,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.5, -90.5],
      [179.5, -90.5],
      [179.5, 89.5],
      [-180.5, 89.5],
      [-180.5, -90.5]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.5, 0.0, -1.0, 89.5, 0.0, 0.0, 1.0]},
  'post-fire': {'href': 's3://ghgc-data-store/gosat-based-ch4budget-yeargrid-v1/TopDownEmissions_GOSAT_post_fire_GEOS_CHEM_2019.tif',
   'proj:bbox': [-180.5, -90.5, 179.5, 89.5],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 0.7065173387527466,
      'min': -0.08211488276720047,
      'count': 11.0,
      'buckets': [103.0, 64685.0, 11.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0]},
     'statistics': {'mean': 0.00020585705351550132,
      'stddev': 0.00356540665961802,
      'maximum': 0.7065173387527466,
      'minimum': -0.08211488276720047,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.5, -90.5],
      [179.5, -90.5],
      [179.5, 89.5],
      [-180.5, 89.5],
      [-180.5, -90.5]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.5, 0.0, -1.0, 89.5, 0.0, 0.0, 1.0]},
  'post-rice': {'href': 's3://ghgc-data-store/gosat-based-ch4budget-yeargrid-v1/TopDownEmissions_GOSAT_post_rice_GEOS_CHEM_2019.tif',
   'proj:bbox': [-180.5, -90.5, 179.5, 89.5],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 1.3836066722869873,
      'min': -1.1384793519973755,
      'count': 11.0,
      'buckets': [1.0, 4.0, 12.0, 20.0, 64581.0, 132.0, 30.0, 11.0, 4.0, 5.0]},
     'statistics': {'mean': 0.0010437712771818042,
      'stddev': 0.024994080886244774,
      'maximum': 1.3836066722869873,
      'minimum': -1.1384793519973755,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.5, -90.5],
      [179.5, -90.5],
      [179.5, 89.5],
      [-180.5, 89.5],
      [-180.5, -90.5]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.5, 0.0, -1.0, 89.5, 0.0, 0.0, 1.0]},
  'prior-gas': {'href': 's3://ghgc-data-store/gosat-based-ch4budget-yeargrid-v1/TopDownEmissions_GOSAT_prior_gas_GEOS_CHEM_2019.tif',
   'proj:bbox': [-180.5, -90.5, 179.5, 89.5],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 0.2977725863456726,
      'min': 0.0,
      'count': 11.0,
      'buckets': [64659.0, 93.0, 27.0, 8.0, 2.0, 4.0, 2.0, 2.0, 2.0, 1.0]},
     'statistics': {'mean': 0.00037746498128399253,
      'stddev': 0.00403926195576787,
      'maximum': 0.2977725863456726,
      'minimum': 0.0,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.5, -90.5],
      [179.5, -90.5],
      [179.5, 89.5],
      [-180.5, 89.5],
      [-180.5, -90.5]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.5, 0.0, -1.0, 89.5, 0.0, 0.0, 1.0]},
  'prior-geo': {'href': 's3://ghgc-data-store/gosat-based-ch4budget-yeargrid-v1/TopDownEmissions_GOSAT_prior_geo_GEOS_CHEM_2019.tif',
   'proj:bbox': [-180.5, -90.5, 179.5, 89.5],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 1.8356599807739258,
      'min': 0.0,
      'count': 11.0,
      'buckets': [64780.0, 15.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0]},
     'statistics': {'mean': 0.0004932624287903309,
      'stddev': 0.009640775620937347,
      'maximum': 1.8356599807739258,
      'minimum': 0.0,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.5, -90.5],
      [179.5, -90.5],
      [179.5, 89.5],
      [-180.5, 89.5],
      [-180.5, -90.5]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.5, 0.0, -1.0, 89.5, 0.0, 0.0, 1.0]},
  'prior-oil': {'href': 's3://ghgc-data-store/gosat-based-ch4budget-yeargrid-v1/TopDownEmissions_GOSAT_prior_oil_GEOS_CHEM_2019.tif',
   'proj:bbox': [-180.5, -90.5, 179.5, 89.5],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 1.287477731704712,
      'min': 0.0,
      'count': 11.0,
      'buckets': [64734.0, 40.0, 15.0, 3.0, 1.0, 4.0, 0.0, 1.0, 1.0, 1.0]},
     'statistics': {'mean': 0.0006414719391614199,
      'stddev': 0.01284099742770195,
      'maximum': 1.287477731704712,
      'minimum': 0.0,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.5, -90.5],
      [179.5, -90.5],
      [179.5, 89.5],
      [-180.5, 89.5],
      [-180.5, -90.5]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.5, 0.0, -1.0, 89.5, 0.0, 0.0, 1.0]},
  'post-total': {'href': 's3://ghgc-data-store/gosat-based-ch4budget-yeargrid-v1/TopDownEmissions_GOSAT_post_total_GEOS_CHEM_2019.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Posterior Total Methane Emissions',
   'proj:bbox': [-180.5, -90.5, 179.5, 89.5],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'description': 'Estimated total methane emissions per grid cell informed by GOSAT satellite total column methane data.',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 3.621621608734131,
      'min': -1.157373309135437,
      'count': 11.0,
      'buckets': [8.0, 69.0, 64300.0, 366.0, 41.0, 13.0, 2.0, 0.0, 0.0, 1.0]},
     'statistics': {'mean': 0.008661163039505482,
      'stddev': 0.057076238095760345,
      'maximum': 3.621621608734131,
      'minimum': -1.157373309135437,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.5, -90.5],
      [179.5, -90.5],
      [179.5, 89.5],
      [-180.5, 89.5],
      [-180.5, -90.5]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.5, 0.0, -1.0, 89.5, 0.0, 0.0, 1.0]},
  'post-waste': {'href': 's3://ghgc-data-store/gosat-based-ch4budget-yeargrid-v1/TopDownEmissions_GOSAT_post_waste_GEOS_CHEM_2019.tif',
   'proj:bbox': [-180.5, -90.5, 179.5, 89.5],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 1.2296125888824463,
      'min': -0.5908117294311523,
      'count': 11.0,
      'buckets': [1.0, 2.0, 10.0, 64753.0, 26.0, 5.0, 1.0, 1.0, 0.0, 1.0]},
     'statistics': {'mean': 0.0007660945411771536,
      'stddev': 0.010033484548330307,
      'maximum': 1.2296125888824463,
      'minimum': -0.5908117294311523,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.5, -90.5],
      [179.5, -90.5],
      [179.5, 89.5],
      [-180.5, 89.5],
      [-180.5, -90.5]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.5, 0.0, -1.0, 89.5, 0.0, 0.0, 1.0]},
  'prior-coal': {'href': 's3://ghgc-data-store/gosat-based-ch4budget-yeargrid-v1/TopDownEmissions_GOSAT_prior_coal_GEOS_CHEM_2019.tif',
   'proj:bbox': [-180.5, -90.5, 179.5, 89.5],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 1.3838224411010742,
      'min': 0.0,
      'count': 11.0,
      'buckets': [64746.0, 29.0, 11.0, 2.0, 5.0, 2.0, 2.0, 2.0, 0.0, 1.0]},
     'statistics': {'mean': 0.0004846722586080432,
      'stddev': 0.01380141545087099,
      'maximum': 1.3838224411010742,
      'minimum': 0.0,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.5, -90.5],
      [179.5, -90.5],
      [179.5, 89.5],
      [-180.5, 89.5],
      [-180.5, -90.5]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.5, 0.0, -1.0, 89.5, 0.0, 0.0, 1.0]},
  'prior-fire': {'href': 's3://ghgc-data-store/gosat-based-ch4budget-yeargrid-v1/TopDownEmissions_GOSAT_prior_fire_GEOS_CHEM_2019.tif',
   'proj:bbox': [-180.5, -90.5, 179.5, 89.5],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 0.498909056186676,
      'min': 0.0,
      'count': 11.0,
      'buckets': [64786.0, 7.0, 1.0, 3.0, 1.0, 0.0, 0.0, 1.0, 0.0, 1.0]},
     'statistics': {'mean': 0.0002329142007511109,
      'stddev': 0.0032598471734672785,
      'maximum': 0.498909056186676,
      'minimum': 0.0,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.5, -90.5],
      [179.5, -90.5],
      [179.5, 89.5],
      [-180.5, 89.5],
      [-180.5, -90.5]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.5, 0.0, -1.0, 89.5, 0.0, 0.0, 1.0]},
  'prior-rice': {'href': 's3://ghgc-data-store/gosat-based-ch4budget-yeargrid-v1/TopDownEmissions_GOSAT_prior_rice_GEOS_CHEM_2019.tif',
   'proj:bbox': [-180.5, -90.5, 179.5, 89.5],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 0.5223113298416138,
      'min': 0.0,
      'count': 11.0,
      'buckets': [64539.0, 154.0, 55.0, 25.0, 16.0, 8.0, 2.0, 0.0, 0.0, 1.0]},
     'statistics': {'mean': 0.000768911384511739,
      'stddev': 0.008794998750090599,
      'maximum': 0.5223113298416138,
      'minimum': 0.0,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.5, -90.5],
      [179.5, -90.5],
      [179.5, 89.5],
      [-180.5, 89.5],
      [-180.5, -90.5]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.5, 0.0, -1.0, 89.5, 0.0, 0.0, 1.0]},
  'prior-total': {'href': 's3://ghgc-data-store/gosat-based-ch4budget-yeargrid-v1/TopDownEmissions_GOSAT_prior_total_GEOS_CHEM_2019.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Prior Total Methane Emissions',
   'proj:bbox': [-180.5, -90.5, 179.5, 89.5],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'description': 'Total methane emissions per grid cell estimated by various inventories or models, excluding satellite based observations from GOSAT.',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 2.121816635131836,
      'min': 0.0,
      'count': 11.0,
      'buckets': [64390.0, 297.0, 63.0, 26.0, 13.0, 7.0, 3.0, 0.0, 0.0, 1.0]},
     'statistics': {'mean': 0.008324408903717995,
      'stddev': 0.04165573790669441,
      'maximum': 2.121816635131836,
      'minimum': 0.0,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.5, -90.5],
      [179.5, -90.5],
      [179.5, 89.5],
      [-180.5, 89.5],
      [-180.5, -90.5]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.5, 0.0, -1.0, 89.5, 0.0, 0.0, 1.0]},
  'prior-waste': {'href': 's3://ghgc-data-store/gosat-based-ch4budget-yeargrid-v1/TopDownEmissions_GOSAT_prior_waste_GEOS_CHEM_2019.tif',
   'proj:bbox': [-180.5, -90.5, 179.5, 89.5],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 1.4146164655685425,
      'min': 0.0,
      'count': 11.0,
      'buckets': [64750.0, 36.0, 6.0, 4.0, 1.0, 1.0, 0.0, 0.0, 1.0, 1.0]},
     'statistics': {'mean': 0.0008899783715605736,
      'stddev': 0.011600765399634838,
      'maximum': 1.4146164655685425,
      'minimum': 0.0,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.5, -90.5],
      [179.5, -90.5],
      [179.5, 89.5],
      [-180.5, 89.5],
      [-180.5, -90.5]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.5, 0.0, -1.0, 89.5, 0.0, 0.0, 1.0]},
  'post-wetland': {'href': 's3://ghgc-data-store/gosat-based-ch4budget-yeargrid-v1/TopDownEmissions_GOSAT_post_wetland_GEOS_CHEM_2019.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Wetland Posterior Methane Emissions',
   'proj:bbox': [-180.5, -90.5, 179.5, 89.5],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'description': 'Estimated methane emissions per grid cell from wetlands informed by GOSAT satellite total column methane data.',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 2.0359816551208496,
      'min': -0.8375182747840881,
      'count': 11.0,
      'buckets': [5.0, 15.0, 63361.0, 1288.0, 94.0, 24.0, 7.0, 2.0, 2.0, 2.0]},
     'statistics': {'mean': 0.0027753026224672794,
      'stddev': 0.033493757247924805,
      'maximum': 2.0359816551208496,
      'minimum': -0.8375182747840881,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.5, -90.5],
      [179.5, -90.5],
      [179.5, 89.5],
      [-180.5, 89.5],
      [-180.5, -90.5]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.5, 0.0, -1.0, 89.5, 0.0, 0.0, 1.0]},
  'prior-wetland': {'href': 's3://ghgc-data-store/gosat-based-ch4budget-yeargrid-v1/TopDownEmissions_GOSAT_prior_wetland_GEOS_CHEM_2019.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Wetland Prior Methane Emissions',
   'proj:bbox': [-180.5, -90.5, 179.5, 89.5],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'description': 'Methane emissions per grid cell from wetlands estimated by various inventories or models, excluding satellite based observations from GOSAT.',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 1.2217899560928345,
      'min': 0.0,
      'count': 11.0,
      'buckets': [64489.0, 188.0, 52.0, 29.0, 17.0, 11.0, 3.0, 4.0, 3.0, 4.0]},
     'statistics': {'mean': 0.0030836397781968117,
      'stddev': 0.026006272062659264,
      'maximum': 1.2217899560928345,
      'minimum': 0.0,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.5, -90.5],
      [179.5, -90.5],
      [179.5, 89.5],
      [-180.5, 89.5],
      [-180.5, -90.5]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.5, 0.0, -1.0, 89.5, 0.0, 0.0, 1.0]},
  'post-livestock': {'href': 's3://ghgc-data-store/gosat-based-ch4budget-yeargrid-v1/TopDownEmissions_GOSAT_post_livestock_GEOS_CHEM_2019.tif',
   'proj:bbox': [-180.5, -90.5, 179.5, 89.5],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 0.4482361972332001,
      'min': -0.2484263777732849,
      'count': 11.0,
      'buckets': [2.0,
       10.0,
       56.0,
       63290.0,
       1110.0,
       239.0,
       61.0,
       14.0,
       13.0,
       5.0]},
     'statistics': {'mean': 0.0022545307874679565,
      'stddev': 0.014899863861501217,
      'maximum': 0.4482361972332001,
      'minimum': -0.2484263777732849,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.5, -90.5],
      [179.5, -90.5],
      [179.5, 89.5],
      [-180.5, 89.5],
      [-180.5, -90.5]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.5, 0.0, -1.0, 89.5, 0.0, 0.0, 1.0]},
  'prior-livestock': {'href': 's3://ghgc-data-store/gosat-based-ch4budget-yeargrid-v1/TopDownEmissions_GOSAT_prior_livestock_GEOS_CHEM_2019.tif',
   'proj:bbox': [-180.5, -90.5, 179.5, 89.5],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 0.1304568201303482,
      'min': 0.0,
      'count': 11.0,
      'buckets': [62701.0,
       1246.0,
       462.0,
       214.0,
       61.0,
       40.0,
       41.0,
       21.0,
       11.0,
       3.0]},
     'statistics': {'mean': 0.0013520935317501426,
      'stddev': 0.006176645867526531,
      'maximum': 0.1304568201303482,
      'minimum': 0.0,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.5, -90.5],
      [179.5, -90.5],
      [179.5, 89.5],
      [-180.5, 89.5],
      [-180.5, -90.5]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.5, 0.0, -1.0, 89.5, 0.0, 0.0, 1.0]},
  'post-gas-uncertainty': {'href': 's3://ghgc-data-store/gosat-based-ch4budget-yeargrid-v1/TopDownEmissions_GOSAT_post_unc_gas_GEOS_CHEM_2019.tif',
   'proj:bbox': [-180.5, -90.5, 179.5, 89.5],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 0.026829414069652557,
      'min': 0.0,
      'count': 11.0,
      'buckets': [64766.0, 20.0, 4.0, 6.0, 1.0, 0.0, 0.0, 1.0, 1.0, 1.0]},
     'statistics': {'mean': 8.39770473248791e-06,
      'stddev': 0.00022043172793928534,
      'maximum': 0.026829414069652557,
      'minimum': 0.0,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.5, -90.5],
      [179.5, -90.5],
      [179.5, 89.5],
      [-180.5, 89.5],
      [-180.5, -90.5]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.5, 0.0, -1.0, 89.5, 0.0, 0.0, 1.0]},
  'post-geo-uncertainty': {'href': 's3://ghgc-data-store/gosat-based-ch4budget-yeargrid-v1/TopDownEmissions_GOSAT_post_unc_geo_GEOS_CHEM_2019.tif',
   'proj:bbox': [-180.5, -90.5, 179.5, 89.5],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 0.25446972250938416,
      'min': 0.0,
      'count': 11.0,
      'buckets': [64793.0, 5.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0]},
     'statistics': {'mean': 1.9521785361575894e-05,
      'stddev': 0.0011142849689349532,
      'maximum': 0.25446972250938416,
      'minimum': 0.0,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.5, -90.5],
      [179.5, -90.5],
      [179.5, 89.5],
      [-180.5, 89.5],
      [-180.5, -90.5]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.5, 0.0, -1.0, 89.5, 0.0, 0.0, 1.0]},
  'post-oil-uncertainty': {'href': 's3://ghgc-data-store/gosat-based-ch4budget-yeargrid-v1/TopDownEmissions_GOSAT_post_unc_oil_GEOS_CHEM_2019.tif',
   'proj:bbox': [-180.5, -90.5, 179.5, 89.5],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 0.20816677808761597,
      'min': 0.0,
      'count': 11.0,
      'buckets': [64775.0, 15.0, 2.0, 5.0, 1.0, 0.0, 0.0, 0.0, 1.0, 1.0]},
     'statistics': {'mean': 3.7560705095529556e-05,
      'stddev': 0.0014476124197244644,
      'maximum': 0.20816677808761597,
      'minimum': 0.0,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.5, -90.5],
      [179.5, -90.5],
      [179.5, 89.5],
      [-180.5, 89.5],
      [-180.5, -90.5]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.5, 0.0, -1.0, 89.5, 0.0, 0.0, 1.0]},
  'post-coal-uncertainty': {'href': 's3://ghgc-data-store/gosat-based-ch4budget-yeargrid-v1/TopDownEmissions_GOSAT_post_unc_coal_GEOS_CHEM_2019.tif',
   'proj:bbox': [-180.5, -90.5, 179.5, 89.5],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 0.28081363439559937,
      'min': 0.0,
      'count': 11.0,
      'buckets': [64778.0, 7.0, 5.0, 1.0, 3.0, 3.0, 2.0, 0.0, 0.0, 1.0]},
     'statistics': {'mean': 4.5709952246397734e-05,
      'stddev': 0.0022045010700821877,
      'maximum': 0.28081363439559937,
      'minimum': 0.0,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.5, -90.5],
      [179.5, -90.5],
      [179.5, 89.5],
      [-180.5, 89.5],
      [-180.5, -90.5]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.5, 0.0, -1.0, 89.5, 0.0, 0.0, 1.0]},
  'post-fire-uncertainty': {'href': 's3://ghgc-data-store/gosat-based-ch4budget-yeargrid-v1/TopDownEmissions_GOSAT_post_unc_fire_GEOS_CHEM_2019.tif',
   'proj:bbox': [-180.5, -90.5, 179.5, 89.5],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 0.04287702962756157,
      'min': 0.0,
      'count': 11.0,
      'buckets': [64794.0, 3.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0]},
     'statistics': {'mean': 3.030148036486935e-06,
      'stddev': 0.00021067954367026687,
      'maximum': 0.04287702962756157,
      'minimum': 0.0,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.5, -90.5],
      [179.5, -90.5],
      [179.5, 89.5],
      [-180.5, 89.5],
      [-180.5, -90.5]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.5, 0.0, -1.0, 89.5, 0.0, 0.0, 1.0]},
  'post-rice-uncertainty': {'href': 's3://ghgc-data-store/gosat-based-ch4budget-yeargrid-v1/TopDownEmissions_GOSAT_post_unc_rice_GEOS_CHEM_2019.tif',
   'proj:bbox': [-180.5, -90.5, 179.5, 89.5],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 0.085321806371212,
      'min': 0.0,
      'count': 11.0,
      'buckets': [64609.0, 88.0, 42.0, 26.0, 15.0, 9.0, 2.0, 4.0, 3.0, 2.0]},
     'statistics': {'mean': 8.745533705223352e-05,
      'stddev': 0.0015292511088773608,
      'maximum': 0.085321806371212,
      'minimum': 0.0,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.5, -90.5],
      [179.5, -90.5],
      [179.5, 89.5],
      [-180.5, 89.5],
      [-180.5, -90.5]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.5, 0.0, -1.0, 89.5, 0.0, 0.0, 1.0]},
  'prior-gas-uncertainty': {'href': 's3://ghgc-data-store/gosat-based-ch4budget-yeargrid-v1/TopDownEmissions_GOSAT_prior_unc_gas_GEOS_CHEM_2019.tif',
   'proj:bbox': [-180.5, -90.5, 179.5, 89.5],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 0.035356033593416214,
      'min': 0.0,
      'count': 11.0,
      'buckets': [64766.0, 17.0, 5.0, 3.0, 3.0, 0.0, 1.0, 1.0, 0.0, 4.0]},
     'statistics': {'mean': 1.1367864317435306e-05,
      'stddev': 0.0003570150875020772,
      'maximum': 0.035356033593416214,
      'minimum': 0.0,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.5, -90.5],
      [179.5, -90.5],
      [179.5, 89.5],
      [-180.5, 89.5],
      [-180.5, -90.5]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.5, 0.0, -1.0, 89.5, 0.0, 0.0, 1.0]},
  'prior-geo-uncertainty': {'href': 's3://ghgc-data-store/gosat-based-ch4budget-yeargrid-v1/TopDownEmissions_GOSAT_prior_unc_geo_GEOS_CHEM_2019.tif',
   'proj:bbox': [-180.5, -90.5, 179.5, 89.5],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 1.6511273384094238,
      'min': 0.0,
      'count': 11.0,
      'buckets': [64799.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0]},
     'statistics': {'mean': 4.881064160144888e-05,
      'stddev': 0.006545887794345617,
      'maximum': 1.6511273384094238,
      'minimum': 0.0,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.5, -90.5],
      [179.5, -90.5],
      [179.5, 89.5],
      [-180.5, 89.5],
      [-180.5, -90.5]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.5, 0.0, -1.0, 89.5, 0.0, 0.0, 1.0]},
  'prior-oil-uncertainty': {'href': 's3://ghgc-data-store/gosat-based-ch4budget-yeargrid-v1/TopDownEmissions_GOSAT_prior_unc_oil_GEOS_CHEM_2019.tif',
   'proj:bbox': [-180.5, -90.5, 179.5, 89.5],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 0.8458506464958191,
      'min': 0.0,
      'count': 11.0,
      'buckets': [64787.0, 5.0, 5.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0]},
     'statistics': {'mean': 9.116153523791581e-05,
      'stddev': 0.00547912297770381,
      'maximum': 0.8458506464958191,
      'minimum': 0.0,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.5, -90.5],
      [179.5, -90.5],
      [179.5, 89.5],
      [-180.5, 89.5],
      [-180.5, -90.5]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.5, 0.0, -1.0, 89.5, 0.0, 0.0, 1.0]},
  'post-waste-uncertainty': {'href': 's3://ghgc-data-store/gosat-based-ch4budget-yeargrid-v1/TopDownEmissions_GOSAT_post_unc_waste_GEOS_CHEM_2019.tif',
   'proj:bbox': [-180.5, -90.5, 179.5, 89.5],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 0.10136520117521286,
      'min': 0.0,
      'count': 11.0,
      'buckets': [64759.0, 19.0, 6.0, 8.0, 2.0, 1.0, 2.0, 0.0, 1.0, 2.0]},
     'statistics': {'mean': 3.903839024133049e-05,
      'stddev': 0.0009961748728528619,
      'maximum': 0.10136520117521286,
      'minimum': 0.0,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.5, -90.5],
      [179.5, -90.5],
      [179.5, 89.5],
      [-180.5, 89.5],
      [-180.5, -90.5]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.5, 0.0, -1.0, 89.5, 0.0, 0.0, 1.0]},
  'prior-coal-uncertainty': {'href': 's3://ghgc-data-store/gosat-based-ch4budget-yeargrid-v1/TopDownEmissions_GOSAT_prior_unc_coal_GEOS_CHEM_2019.tif',
   'proj:bbox': [-180.5, -90.5, 179.5, 89.5],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 0.9433419704437256,
      'min': 0.0,
      'count': 11.0,
      'buckets': [64785.0, 5.0, 4.0, 2.0, 1.0, 2.0, 0.0, 0.0, 0.0, 1.0]},
     'statistics': {'mean': 9.546576620778069e-05,
      'stddev': 0.00589930871501565,
      'maximum': 0.9433419704437256,
      'minimum': 0.0,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.5, -90.5],
      [179.5, -90.5],
      [179.5, 89.5],
      [-180.5, 89.5],
      [-180.5, -90.5]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.5, 0.0, -1.0, 89.5, 0.0, 0.0, 1.0]},
  'prior-rice-uncertainty': {'href': 's3://ghgc-data-store/gosat-based-ch4budget-yeargrid-v1/TopDownEmissions_GOSAT_prior_unc_rice_GEOS_CHEM_2019.tif',
   'proj:bbox': [-180.5, -90.5, 179.5, 89.5],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 0.2505281865596771,
      'min': 0.0,
      'count': 11.0,
      'buckets': [64710.0, 52.0, 26.0, 5.0, 3.0, 3.0, 0.0, 0.0, 0.0, 1.0]},
     'statistics': {'mean': 0.00012143573985667899,
      'stddev': 0.002463066717609763,
      'maximum': 0.2505281865596771,
      'minimum': 0.0,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.5, -90.5],
      [179.5, -90.5],
      [179.5, 89.5],
      [-180.5, 89.5],
      [-180.5, -90.5]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.5, 0.0, -1.0, 89.5, 0.0, 0.0, 1.0]},
  'prior-waste-uncertainty': {'href': 's3://ghgc-data-store/gosat-based-ch4budget-yeargrid-v1/TopDownEmissions_GOSAT_prior_unc_waste_GEOS_CHEM_2019.tif',
   'proj:bbox': [-180.5, -90.5, 179.5, 89.5],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 1.3018296957015991,
      'min': 0.0,
      'count': 11.0,
      'buckets': [64793.0, 4.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 1.0]},
     'statistics': {'mean': 0.0001001738928607665,
      'stddev': 0.006979630794376135,
      'maximum': 1.3018296957015991,
      'minimum': 0.0,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.5, -90.5],
      [179.5, -90.5],
      [179.5, 89.5],
      [-180.5, 89.5],
      [-180.5, -90.5]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.5, 0.0, -1.0, 89.5, 0.0, 0.0, 1.0]},
  'post-wetland-uncertainty': {'href': 's3://ghgc-data-store/gosat-based-ch4budget-yeargrid-v1/TopDownEmissions_GOSAT_post_unc_wetland_GEOS_CHEM_2019.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Uncertainty - Wetland Posterior Methane Emissions',
   'proj:bbox': [-180.5, -90.5, 179.5, 89.5],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'description': 'Uncertainty in estimated methane emissions per grid cell from wetlands informed by GOSAT satellite total column methane data.',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 0.36633968353271484,
      'min': 0.0,
      'count': 11.0,
      'buckets': [64677.0, 68.0, 19.0, 14.0, 5.0, 8.0, 3.0, 4.0, 0.0, 2.0]},
     'statistics': {'mean': 0.00034577888436615467,
      'stddev': 0.005308355204761028,
      'maximum': 0.36633968353271484,
      'minimum': 0.0,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.5, -90.5],
      [179.5, -90.5],
      [179.5, 89.5],
      [-180.5, 89.5],
      [-180.5, -90.5]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.5, 0.0, -1.0, 89.5, 0.0, 0.0, 1.0]},
  'prior-wetland-uncertainty': {'href': 's3://ghgc-data-store/gosat-based-ch4budget-yeargrid-v1/TopDownEmissions_GOSAT_prior_unc_wetland_GEOS_CHEM_2019.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Uncertainty - Wetland Prior Methane Emissions',
   'proj:bbox': [-180.5, -90.5, 179.5, 89.5],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'description': 'Uncertainty in methane emissions per grid cell from wetlands estimated by various inventories or models, excluding satellite based observations from GOSAT.',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 1.5251290798187256,
      'min': 0.0,
      'count': 11.0,
      'buckets': [64704.0, 49.0, 21.0, 11.0, 2.0, 3.0, 3.0, 3.0, 1.0, 3.0]},
     'statistics': {'mean': 0.0009943766053766012,
      'stddev': 0.020392030477523804,
      'maximum': 1.5251290798187256,
      'minimum': 0.0,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.5, -90.5],
      [179.5, -90.5],
      [179.5, 89.5],
      [-180.5, 89.5],
      [-180.5, -90.5]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.5, 0.0, -1.0, 89.5, 0.0, 0.0, 1.0]},
  'post-livestock-uncertainty': {'href': 's3://ghgc-data-store/gosat-based-ch4budget-yeargrid-v1/TopDownEmissions_GOSAT_post_unc_livestock_GEOS_CHEM_2019.tif',
   'proj:bbox': [-180.5, -90.5, 179.5, 89.5],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 0.016047537326812744,
      'min': 0.0,
      'count': 11.0,
      'buckets': [64206.0,
       360.0,
       119.0,
       35.0,
       30.0,
       20.0,
       14.0,
       9.0,
       6.0,
       1.0]},
     'statistics': {'mean': 5.696367225027643e-05,
      'stddev': 0.00044628031901083887,
      'maximum': 0.016047537326812744,
      'minimum': 0.0,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.5, -90.5],
      [179.5, -90.5],
      [179.5, 89.5],
      [-180.5, 89.5],
      [-180.5, -90.5]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.5, 0.0, -1.0, 89.5, 0.0, 0.0, 1.0]},
  'prior-livestock-uncertainty': {'href': 's3://ghgc-data-store/gosat-based-ch4budget-yeargrid-v1/TopDownEmissions_GOSAT_prior_unc_livestock_GEOS_CHEM_2019.tif',
   'proj:bbox': [-180.5, -90.5, 179.5, 89.5],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float32',
     'histogram': {'max': 0.021834801882505417,
      'min': 0.0,
      'count': 11.0,
      'buckets': [64219.0,
       326.0,
       127.0,
       34.0,
       19.0,
       25.0,
       25.0,
       17.0,
       5.0,
       3.0]},
     'statistics': {'mean': 7.657577225472778e-05,
      'stddev': 0.0006582040223293006,
      'maximum': 0.021834801882505417,
      'minimum': 0.0,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.5, -90.5],
      [179.5, -90.5],
      [179.5, 89.5],
      [-180.5, 89.5],
      [-180.5, -90.5]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.5, 0.0, -1.0, 89.5, 0.0, 0.0, 1.0]},
  'rendered_preview': {'title': 'Rendered preview',
   'href': 'https://earth.gov/ghgcenter/api/raster/collections/gosat-based-ch4budget-yeargrid-v1/items/gosat-based-ch4budget-yeargrid-v1-2019/preview.png?assets=post-total&nodata=9.96921e%2B36&rescale=0%2C0.3&colormap_name=spectral_r',
   'rel': 'preview',
   'roles': ['overview'],
   'type': 'image/png'}},
 'geometry': {'type': 'Polygon',
  'coordinates': [[[-180.5, -90.5],
    [179.5, -90.5],
    [179.5, 89.5],
    [-180.5, 89.5],
    [-180.5, -90.5]]]},
 'collection': 'gosat-based-ch4budget-yeargrid-v1',
 'properties': {'end_datetime': '2019-12-31T00:00:00+00:00',
  'start_datetime': '2019-01-01T00:00:00+00:00'},
 'stac_version': '1.0.0',
 'stac_extensions': []}
# The bounding box should be passed to the geojson param as a geojson Feature or FeatureCollection
def generate_stats(item, geojson):
    result = requests.post(
        f"{RASTER_API_URL}/cog/statistics",
        params={"url": item["assets"][asset_name]["href"]},
        json=geojson,
    ).json()
    return {
        **result["properties"],
        "datetime": item["properties"]["start_datetime"][:10],
    }

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

%%time
stats = [generate_stats(item, texas_aoi) for item in items]
CPU times: user 2.87 ms, sys: 1.29 ms, total: 4.17 ms
Wall time: 844 ms
stats[0]
{'statistics': {'b1': {'min': 0.0002109968481818214,
   'max': 0.2379249483346939,
   'mean': 0.06609854102134705,
   'count': 36.0,
   'sum': 2.379547357559204,
   'std': 0.05244022027065174,
   'median': 0.06046847254037857,
   'majority': 0.0002109968481818214,
   'minority': 0.0002109968481818214,
   'unique': 50.0,
   'histogram': [[14.0, 7.0, 7.0, 10.0, 5.0, 3.0, 0.0, 1.0, 2.0, 1.0],
    [0.0002109968481818214,
     0.023982390761375427,
     0.04775378480553627,
     0.07152518630027771,
     0.09529657661914825,
     0.1190679669380188,
     0.14283937215805054,
     0.16661076247692108,
     0.19038215279579163,
     0.21415354311466217,
     0.2379249483346939]],
   'valid_percent': 100.0,
   'masked_pixels': 0.0,
   'valid_pixels': 50.0,
   'percentile_2': 0.002050149254500866,
   'percentile_98': 0.2056385725736618}},
 'datetime': '2019-01-01'}
def clean_stats(stats_json) -> pd.DataFrame:
    df = pd.json_normalize(stats_json)
    df.columns = [col.replace("statistics.b1.", "") for col in df.columns]
    df["date"] = pd.to_datetime(df["datetime"])
    return df


df = clean_stats(stats)
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 2019-01-01 0.000211 0.237925 0.066099 36.0 2.379547 0.05244 0.060468 0.000211 0.000211 50.0 [[14.0, 7.0, 7.0, 10.0, 5.0, 3.0, 0.0, 1.0, 2.... 100.0 0.0 50.0 0.00205 0.205639 2019-01-01
print(items[0]["properties"]["start_datetime"][:10])
2019-01-01
tile_2016 = requests.get(
    f"{RASTER_API_URL}/collections/{items[0]['collection']}/items/{items[0]['id']}/tilejson.json?"
    f"&assets={asset_name}"
    f"&color_formula=gamma+r+1.05&colormap_name={color_map}"
    f"&rescale={rescale_values['min']},{rescale_values['max']}",
).json()
tile_2016
{'tilejson': '2.2.0',
 'version': '1.0.0',
 'scheme': 'xyz',
 'tiles': ['https://earth.gov/ghgcenter/api/raster/collections/gosat-based-ch4budget-yeargrid-v1/items/gosat-based-ch4budget-yeargrid-v1-2019/tiles/WebMercatorQuad/{z}/{x}/{y}@1x?assets=prior-total&color_formula=gamma+r+1.05&colormap_name=rainbow&rescale=0.0%2C2.121816635131836'],
 'minzoom': 0,
 'maxzoom': 24,
 'bounds': [-180.5, -90.5, 179.5, 89.5],
 'center': [-0.5, -0.5, 0]}
# Use bbox initial zoom and map
# Set up a map located w/in event bounds

aoi_map_bbox = Map(
    tiles="OpenStreetMap",
    location=[
        30,-100
    ],
    zoom_start=8,
)

map_layer = TileLayer(
    tiles=tile_2016["tiles"][0],
    attr="GHG", opacity = 0.5
)

map_layer.add_to(aoi_map_bbox)

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 GOSAT-based Top-down Total and Natural Methane Emissions 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 the methane emission levels
  5. Generate zonal statistics for the area of interest (AOI)

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

Back to top