you can find details about every product extracted from this Sat. related to air quality such as Nitrogen Dioxide (NO2), Sulfur Dioxide (SO2), Carbon Monoxide (CO), Methane (CH4), Formaldehyde (HCHO), and Aerosol index.
Moreover for details on how to apply this to GE send your question to [email protected]
If you are looking for air quality data in GEE, it is best to use Sentinel-5 data with a resolution of about 1x1 km.
Sentinel-5 air quality datasets available from GEE can be found here: https://developers.google.com/earth-engine/datasets/tags/air-quality
There is a sample code in the GEE documentation for almost every dataset - mostly about how to add data to GEE and visualize it. You can find a tutorial for exporting images here: https://developers.google.com/earth-engine/guides/exporting.
I am sending a GEE example to add, visualize and download a Sentinel-5 Carbon Monoxide image - it represents average values from the last 7 days (click RUN on the Tasks panel to save the image to your Google Drive):
Various MODIS datasets are also available in GEE. I think this dataset should be useful for your needs (but with a poor resolution of about 111x111km): https://developers.google.com/earth-engine/datasets/catalog/MODIS_061_MOD08_M3#description
You can find a description of the bands here: https://developers.google.com/earth-engine/MOD08_bands.html
Daniel Paluba How can I extract data from the downloaded .tiff file image from satellite of a certain location? I have used matlab but I wanted to do this with arcmap. Thanks in advance.
var image = clipImages.select('tropospheric_NO2_column_number_density').toBands(); // Convert all the images into bands and download whole data as single image file
Assuming you are looking for tropospheric NO2 over a region given by geometry var. Though, it is not the best way get the data, since there might be missing data and you might want to take a median/mosaic. But at least you can try above code.
Change ee.geometry.Polygon with coordinates of your region and date as per your requirement.