
- Catalog Owner
- Environmental Defense Fund - MethaneSAT
- Dataset Availability
- 2024-06-14T00:00:00Z–2025-01-17T00:00:00Z
- Dataset Provider
- Environmental Defense Fund - MethaneSAT
- Contact
- EDF-MethaneSAT
- Tags
Description
The methane emission fluxes were produced using a point source detection and emissions quantification framework specialized to exploit the high spatial resolution, wide spatial coverage, and high precision of MethaneSAT data (methodology is described in Chulakdabba et al. (2023).) The point source quantification framework was extensively tested in blind controlled-release experiments as detailed in Chulakdabba et al. (2023) and Abbadi et al. (2024). Not all data products are available for all collections. For additional information about the MethaneAIR instrument, instrument calibration and emission detections, please refer to recent publications by Loughner et al. (2021), 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 |
---|---|---|
collection_id | STRING | Satellite observation identifier. |
date | STRING | Data collection date format STRING (ISO 8601). |
flux | INT | Methane flux quantification. |
flux_sd | INT | Standard deviation of methane flux quantification, in kg/h. |
plume_id | STRING | Plume id (unique across satellite observations). |
plume_id_in_scene | INT | Plume id (unique per satellite observation). |
region | STRING | Region of scene. |
target_id | INT | Satellite Target ID. |
Terms of Use
Terms of Use
Use of this data is subject to MethaneSAT's Content License Terms of Use.
YOUR LICENSE TO ACCESS THE DATA
- We hereby grant you a limited, nonexclusive, nonassignable, nontransferable, revocable license to use, reproduce, publish, make derivative works, display and perform publicly any Data first made available through the Platform pursuant to the terms set forth herein, subject to your agreement to, compliance with and satisfaction of these Terms of Use (the “License”)
You agree to and acknowledge the following restrictions relating to the License:
- (1) To access the Data, you must complete this Request Form, which will ask for your contact information, intended use cases, target customers, and other details that will assist MethaneSAT’s understanding of how the Data is being used by you, and, upon submission of such form, MethaneSAT may (in its sole discretion) grant you access to the Data;
(2) With respect to certain aspects of the Data as described herein, you may use methane concentrations, in parts per billion or any other unit of concentration (“Level 3 Data” or “L3 Data”) and methane emission fluxes, in kilograms per hour (“Level 4 Data” or “L4 Data”) for:
- (i) internal business evaluation and testing,
- (ii) commercial applications, such as developing and selling derivative products and services that incorporate or are informed by the L3 Data or L4 Data,
- (iii) distribution of the Data made available herein to wholly controlled affiliates of which you will be responsible and liable on their behalf for adherence to these Terms of Use, or
- (iv) methane mitigation activities, including both commercial and non-commercial initiatives;
(3) You are strictly prohibited from using L3 Data to calculate or derive L4 Data or any similar outputs, except and exclusively for internal use purposes and not to distribute to any third party;
(4) You may not distribute, publish, sublicense, sell, or otherwise provide L3 Data or L4 Data in its raw form to any third parties, provided, however, that you may develop, commercialize, and sell derivative products and services based on your review of the L3 Data and L4 Data, provided, further (and for the avoidance of doubt), that the underlying L3 Data and L4 Data (in its raw form) shall not be shared nor made directly accessible to end users/third parties; and
(5) That you are not permitted to distribute the Data on any other platform that would make the Data available to third parties, other than to you and your wholly controlled affiliates.
As a condition of accessing the Data, you further agree and acknowledge that:
(1) MethaneSAT seeks information about how the Data will be used and, as such, you shall use best efforts, upon request by MethaneSAT, that you will
- (i) provide feedback on the quality of the Data and any proposed improvements thereto, and
- (ii) share anonymized insights on target customers and market applications;
(2) MethaneSAT may use aggregated or anonymized insights to refine its Data offerings.
ATTRIBUTION
If you share or use the Data in any manner with any third parties, you must:
- Explicitly state to these third parties that they are agreeing to be bound by the Terms of Use;
- Display a citation that states: “Data from MethaneSAT” and “Download the most current dataset at Google Earth Engine and/or Google Cloud”; and
- Explicitly state to these third parties that, if such third party creates a further project containing the Data, any such users of that project must also agree to be bound by these Terms of Use.
Citations
Chulakadabba, A., Sargent, M., Lauvaux, T., Benmergui, J. S., Franklin, J. E., Chan Miller, C., Wilzewski, J. S., Roche, S., Conway, E., Souri, A. H., Sun, K., Luo, B., Hawthrone, J., Samra, J., Daube, B. C., Liu, X., Chance, K., Li, Y., Gautam, R., Omara, M., Rutherford, J. S., Sherwin, E. D., Brandt, A., and Wofsy, S. C. 2023. Methane point source quantification using MethaneAIR: a new airborne imaging spectrometer, Atmos. Meas. Tech., 16, 5771-5785. doi:10.5194/amt-16-5771-2023,
Explore with Earth Engine
Code Editor (JavaScript)
// Request access to this data by filling out the form at: https://forms.gle/jqw4Mvr63dsV1fUF8 var dataset = ee.FeatureCollection("projects/edf-methanesat-ee/assets/public-preview/L4point"); // Add a `style` property with `pointSize` dependent on flux value. dataset = dataset.map(function(feature) { var size = ee.Number(feature.get('flux')).divide(150).min(25); return feature.set('style', { pointSize: size, color: 'red'}); }); var datasetVis = dataset.style({styleProperty: 'style'}); Map.setCenter(-43.03, 37.48, 3); Map.addLayer(datasetVis, null, 'Methane point sources flux in kg/h');
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)
// Request access to this data by filling out the form at: https://forms.gle/jqw4Mvr63dsV1fUF8 var fvLayer = ui.Map.FeatureViewLayer('FeatureViews/projects_edf-methanesat-ee_assets_public-preview_L4point_FeatureView'); var visParams = { color: 'red', fillColor: 'red', opacity: 1, pointSize: 5 }; fvLayer.setVisParams(visParams); fvLayer.setName('Feature view of methane point sources flux in kg/h'); Map.setCenter(-43.03, 37.48, 3); Map.add(fvLayer);