gedifinder: GEDI finder

Description Usage Arguments Value See Also Examples

View source: R/gedifinder.R

Description

This function finds the exact granule(s) that contain GEDI data for a given region of interest and date range '

Usage

1
2
3
4
5
6
7
8
9
gedifinder(
  product,
  ul_lat,
  ul_lon,
  lr_lat,
  lr_lon,
  version = "001",
  daterange = NULL
)

Arguments

product

GEDI data level; Options: "GEDI01_B", "GEDI02_A" or "GEDI02_B"

ul_lat

Numeric. Upper left (ul) corner coordinates, in lat (decimal degrees) for the bounding box of the area of interest.

ul_lon

Numeric. Upper left (ul) corner coordinates, in lon (decimal degrees) for the bounding box of the area of interest.

lr_lat

Numeric. Lower right (ul) corner coordinates, in lat (decimal degrees) for the bounding box of the area of interest.

lr_lon

Numeric. Lower right (ul) corner coordinates, in lon (decimal degrees) for the bounding box of the area of interest.

version

Character. The version of the GEDI product files to be returned. Default "001".

daterange

Vector. Date range. Specify your start and end dates (year-month-day). Ex.: c("2019-07-01","2020-05-22"). If NULL (default), the date range filter will be not applied.

Value

Return a vector object pointing out the path saving the downloaded GEDI data within the boundary box coordinates provided

See Also

bbox: Defined by the upper left and lower right corner coordinates, in lat,lon ordering, for the bounding box of the area of interest (e.g. [ul_lat,ul_lon,lr_lat,lr_lon]). This function relies on the existing LP DAAC gedifinder tool: https://lpdaacsvc.cr.usgs.gov/services/gedifinder

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
# gedifinder is a web service provided by NASA
# usually the request takes more than 5 seconds

# Specifying bounding box coordinates
ul_lat<- 42.0
ul_lon<- -100
lr_lat<- 40.0
lr_lon<- -96.0

# Specifying the date range
daterange=c("2019-07-01","2020-05-22")

# Extracting the path to GEDI data for the specified boundary box coordinates
gedi02b_list<-gedifinder(product="GEDI02_B",
                                ul_lat,
                                ul_lon,
                                lr_lat,
                                lr_lon,
                                version="001",
                                daterange=daterange)

rGEDI documentation built on Jan. 21, 2021, 1:06 a.m.