forked from carlos-alberto-silva/rGEDI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgedifinder.Rd
44 lines (36 loc) · 1.3 KB
/
gedifinder.Rd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/gedifinder.R
\name{gedifinder}
\alias{gedifinder}
\title{GEDI finder}
\usage{
gedifinder(level, xmin, xmax, ymin, ymax)
}
\arguments{
\item{level}{GEDI data level; Options: "GEDI01_B", "GEDI02_A" or "GEDI02_B"}
\item{xmin}{Numeric. West longitude (x) coordinate of bounding rectangle, in decimal degrees.}
\item{xmax}{Numeric. East longitude (x) coordinate of bounding rectangle, in decimal degrees.}
\item{ymin}{Numeric. South latitude (y) coordinate of bounding rectangle, in decimal degrees.}
\item{ymax}{Numeric. North latitude (y) coordinate of bounding rectangle, in decimal degrees.}
}
\value{
vector object pointing out the path for download GEDI data within
the boundary box coordinates provided
}
\description{
This function finds the path to GEDI data within a boundary box coordinates provided
#'@usage gedifinder(level="GEDI02_B",xmin,xmax,ymin,ymax)
}
\examples{
# specify bounding box coordinates
xmin<- -44.17246
ymin<- -44.0654
xmax<- -13.76913
ymax<- -13.67646
# Getting the path to GEDI data for the specified boundary box coordinates
gedi02b_list<-gedifinder(level="GEDI02_B",xmin,xmax,ymin,ymax)
}
\seealso{
This function just call the gedifilder tool developted by LPDAAC:
https://lpdaacsvc.cr.usgs.gov/services/gedifinder
}