MethaneAIR L4 Point Sources 2021

EDF/MethaneSAT/MethaneAIR/methaneair-L4point-2021
Dataset Availability
2021-08-07T00:00:00Z–2021-08-11T00:00:00Z
Dataset Provider
Earth Engine Snippet
FeatureCollection
ee.FeatureCollection("EDF/MethaneSAT/MethaneAIR/methaneair-L4point-2021")
FeatureView
ui.Map.FeatureViewLayer("EDF/MethaneSAT/MethaneAIR/methaneair-L4point-2021_FeatureView")
Tags
climate edf emissions ghg methane methaneair methanesat

Description

This dataset provides high-emitting methane point source detections (kg/hr) over the Permian Delaware sub-basin in southern New Mexico and western Texas as well as for the Uinta basin in Utah.

Methane is a potent greenhouse gas that has more than 80 times the warming power of carbon dioxide over the first 20 years after it reaches the atmosphere. At least 30% of today's global warming is driven by methane from human actions. Cutting methane emissions associated with human activities - including avoidable emissions from oil and gas operations, agriculture, and waste management - is the single fastest way to slow the rate of global warming.

This dataset was generated using MethaneAIR measurements taken on 8 August 2021 (research flight RF06) over the Permian and 11 August 2021 (RF08) over Uinta. MethaneAIR is an airborne precursor of the MethaneSAT satellite mission, managed by MethaneSAT LLC, a wholly owned subsidiary of Environmental Defense Fund.

For additional information about the MethaneAIR instrument, instrument calibration and emission detections, please refer to recent publications by Staebell et al. (2021), Conway et al. (2023), Chulakadabba et al. (2023), Abbadi et al. (2023), Omara et al. (2023), and Miller et al. (2023).

Contact the data provider for more information about the project at this link: https://www.methanesat.org/contact/

Table Schema

Table Schema

Name Type Description
Flux_kg_hr INT

Methane flux quantification, in kg/h.

flt STRING

Flight identifier.

plume_numb INT

Plume number.

sd INT

Standard deviation of methane flux quantification, in kg/h.

Terms of Use

Terms of Use

Use of this data is subject to MethaneSAT's Content License Terms of Use.

Explore with Earth Engine

Code Editor (JavaScript)

var dataset = ee.FeatureCollection("EDF/MethaneSAT/MethaneAIR/methaneair-L4point-2021");

// Add a `style` property with `pointSize` dependent on flux value.
dataset = dataset.map(function(feature) {
    var size = ee.Number(feature.get('Flux_kg_hr')).divide(150);
    return feature.set('style', { pointSize: size, color: 'red'});
  });
var datasetVis = dataset.style({styleProperty: 'style'});

// Center on one of the two available areas of interests.
// Map.setCenter(-109.6, 40, 9)
Map.setCenter(-103.71, 31.96, 9);
Map.addLayer(datasetVis, null, 'Methane point sources flux in kg/h');
Open in Code Editor

Visualize as a FeatureView

A FeatureView is a view-only, accelerated representation of a FeatureCollection. For more details, visit the FeatureView documentation.

Code Editor (JavaScript)

var fvLayer = ui.Map.FeatureViewLayer('EDF/MethaneSAT/MethaneAIR/methaneair-L4point-2021_FeatureView');

var visParams = {
  color: '00909F',
  fillColor: 'b5ffb4',
  opacity: 1,
  pointSize: 10
};

fvLayer.setVisParams(visParams);
fvLayer.setName('Feature view of methane point sources flux in kg/h');

// Center on one of the two available areas of interests.
// Map.setCenter(-109.6, 40, 9)
Map.setCenter(-103.71, 31.96, 9);
Map.add(fvLayer);
Open in Code Editor