colab Open in SageMaker Studio Lab Open in Planetary Computer

Citation Tools for ANY RASTER DATASET in the GEE STAC

Tutorial created by **David Montero Loaiza**: GitHub | Twitter

Let’s start!

If required, please uncomment:

[1]:
#!pip install eemont
#!pip install geemap

Import the required packages.

[2]:
import ee, eemont, geemap

Authenticate and Initialize Earth Engine and geemap.

[3]:
Map = geemap.Map()

Let’s try 5 different datasets:

[4]:
S2 = ee.ImageCollection("COPERNICUS/S2_SR")
L8 = ee.ImageCollection("LANDSAT/LC08/C01/T1_SR")
MOD11A2 = ee.ImageCollection("MODIS/006/MOD11A2")
WAPOR_ET = ee.ImageCollection("FAO/WAPOR/2/L1_AETI_D")
NOAA_OCEAN_SURF_TEMP = ee.ImageCollection("NOAA/CDR/OISST/V2_1")

Retrieving DOI

You can get the DOI of ANY RASTER DATASET from the GEE STAC by using the getDOI method:

[5]:
S2.getDOI()
[5]:
'DOI not available'

If there is not an available DOI, the result will be a string reporting it. Let’s check the rest of the datasets:

[6]:
L8.getDOI()
[6]:
'DOI not available'
[7]:
MOD11A2.getDOI()
[7]:
'10.5067/MODIS/MOD11A2.006'
[8]:
WAPOR_ET.getDOI()
[8]:
'DOI not available'
[9]:
NOAA_OCEAN_SURF_TEMP.getDOI()
[9]:
'10.7289/V5SQ8XB5'

Retrieving Citation

You can get the Citation (in Markdown format) of ANY RASTER DATASET from the GEE STAC by using the getCitation method:

[10]:
S2.getCitation()
[10]:
'Citation not available'

If there is not an available citation, the result will be a string reporting it. Let’s check the rest of the datasets:

[11]:
L8.getCitation()
[11]:
'Citation not available'
[12]:
MOD11A2.getCitation()
[12]:
"Please visit [LP DAAC 'Citing Our Data' page](https://lpdaac.usgs.gov/citing_our_data)\nfor information on citing LP DAAC datasets."
[13]:
WAPOR_ET.getCitation()
[13]:
'FAO 2018. WaPOR Database Methodology: Level 1. Remote Sensing for Water Productivity\nTechnical Report: Methodology Series. Rome, FAO. 72 pages.'
[14]:
NOAA_OCEAN_SURF_TEMP.getCitation()
[14]:
'Richard W. Reynolds, Viva F. Banzon, and NOAA CDR Program (2008): NOAA\nOptimum Interpolation 1/4 Degree Daily Sea Surface Temperature (OISST)\nAnalysis, Version 2. [indicate subset used]. NOAA National Centers for\nEnvironmental Information. [doi:10.7289/V5SQ8XB5](https://doi.org/10.7289/V5SQ8XB5)\n[access date].'