ns_search_comb {natserv} | R Documentation |
Combined search
Description
Combined search
Usage
ns_search_comb(
text = NULL,
text_adv = NULL,
status = NULL,
location = NULL,
record_type = NULL,
record_subtype = NULL,
modified_since = NULL,
page = NULL,
per_page = NULL,
...
)
Arguments
text |
(character) basic text search, equiavalent to |
text_adv |
(list) advanced search, must specify the following three
elements: |
status |
(character) conservation status, one of G1, G2, G3, G4, G5, GH, GX, GNR, GNA, GU. case insensitive |
location |
(list) location, country and sub-country. specify either
|
record_type |
(character) limit results by record type, one of "species" or "ecosystem" |
record_subtype |
(character) limit results by record sub-type, one of: "class", "subclass", "formation", "division", "macrogroup", "group", "alliance", "association", "terrestrial_ecological_system" |
modified_since |
(character) search for records modified since a given time. value must be a date and time with a UTC offset in ISO 8601 format. optional |
page |
(integer) Zero-indexed page number; default: 0. optional |
per_page |
(integer) Records per page; default: 20. optional |
... |
Curl options passed on to |
References
https://explorer.natureserve.org/api-docs/
See Also
Other search:
ns_search_eco()
,
ns_search_spp()
Examples
## Not run:
ns_search_comb(text = "robin")
ns_search_comb(text_adv = list(searchToken = "western",
matchAgainst="allScientificNames", operator="startsWith"))
ns_search_comb(status = "G1")
ns_search_comb(location = list(nation = "US"))
ns_search_comb(location = list(nation = "US", subnation = "VA"))
ns_search_comb(record_type = "species")
ns_search_comb(record_subtype = "macrogroup")
ns_search_comb(modified_since = "2020-04-30T00:00:00+0000")
ns_search_comb(page = 0, per_page = 2)
## End(Not run)