- q
a RSTACQuery
object expressing a STAC query
criteria.
- feature_id
a character
with item id to be fetched.
Only works if the collection_id
is informed. This is equivalent to
the endpoint /collections/{collectionId}/items/{featureId}
.
- datetime
a character
with a date-time or an interval.
Date and time strings needs to conform RFC 3339. Intervals are
expressed by separating two date-time strings by '/'
character.
Open intervals are expressed by using '..'
in place of date-time.
Examples:
A date-time: "2018-02-12T23:20:50Z"
A closed interval: "2018-02-12T00:00:00Z/2018-03-18T12:31:12Z"
Open intervals: "2018-02-12T00:00:00Z/.."
or
"../2018-03-18T12:31:12Z"
Only features that have a datetime
property that intersects
the interval or date-time informed in datetime
are selected.
- bbox
a numeric
vector with only features that have a
geometry that intersects the bounding box are selected. The bounding box is
provided as four or six numbers, depending on whether the coordinate
reference system includes a vertical axis (elevation or depth):
Lower left corner, coordinate axis 1
Lower left corner, coordinate axis 2
Lower left corner, coordinate axis 3 (optional)
Upper right corner, coordinate axis 1
Upper right corner, coordinate axis 2
Upper right corner, coordinate axis 3 (optional)
The coordinate reference system of the values is WGS84
longitude/latitude (http://www.opengis.net/def/crs/OGC/1.3/CRS84).
The values are in most cases the sequence of minimum longitude,
minimum latitude, maximum longitude and maximum latitude. However,
in cases where the box spans the antimeridian the first value
(west-most box edge) is larger than the third value
(east-most box edge).
- limit
an integer
defining the maximum number of results
to return. If not informed it defaults to the service implementation.