Note: This data source is also provided in the Global Names Index (GNI) (http://gni.globalnames.org/data_sources). The interface to the data is different among the two services though.
ipni_search(
family = NULL,
infrafamily = NULL,
genus = NULL,
infragenus = NULL,
species = NULL,
infraspecies = NULL,
publicationtitle = NULL,
authorabbrev = NULL,
includepublicationauthors = NULL,
includebasionymauthors = NULL,
geounit = NULL,
addedsince = NULL,
modifiedsince = NULL,
isapnirecord = NULL,
isgcirecord = NULL,
isikrecord = NULL,
ranktoreturn = NULL,
output = "minimal",
...
)
a tibble (data.frame)
Family name to search on (Optional)
Infrafamilial name to search on (Optional)
Genus name to search on (Optional)
Infrageneric name to search on (Optional)
Species name to search on (Optional) - Note, this is the epithet, not the full genus - epithet name combination.
Infraspecies name to search on (Optional)
Publication name or abbreviation to search on. Again, replace any spaces with a '+' (e.g. 'J.+Bot.') (Optional)
Author standard form to search on (publishing author, basionym author or both - see below) (Optional)
TRUE (default) to include the taxon author in the search or FALSE to exclude it
TRUE (default) to include the basionum author in the search or FALSE to exclude it
Country name or other geographical unit to search on (see the help pages for more information and warnings about the use of this option) (Optional)
Date to search on in the format 'yyyy-mm-dd', e.g. 2005-08-01 for all records added since the first of August, 2005. (see the help pages for more information and warnings about the use of this option) (Optional. If supplied must be in format YYYY-MM-DD and must be greater than or equal to 1984-01-01.)
Date to search on in the format 'yyyy-mm-dd', e.g. 2005-08-01 for all records edited since the first of August, 2005. (See the help pages for more information about the use of this option) (Optional. If supplied must be in format YYYY-MM-DD and must be greater than or equal to 1993-01-01.)
FALSE (default) to exclude records from the Australian Plant Name Index
FALSE (default) to exclude records from the Gray Cards Index
FALSE (default) to exclude records from the Index Kewensis
One of a few options to choose the ranks returned. See details.
One of minimal (default), classic, short, or extended
Curl options passed on to crul::verb-GET (Optional). Default: returns all ranks.
ranktoreturn
options:
"all" - all records
"fam" - family records
"infrafam" - infrafamilial records
"gen" - generic records
"infragen" - infrageneric records
"spec" - species records
"infraspec" - infraspecific records
https://web.archive.org/web/20190501132148/http://www.ipni.org/link_to_ipni.html
if (FALSE) {
ipni_search(genus='Brintonia', isapnirecord=TRUE, isgcirecord=TRUE,
isikrecord=TRUE)
ipni_search(genus='Ceanothus')
ipni_search(genus='Pinus', species='contorta')
# Different output formats
ipni_search(genus='Ceanothus')
ipni_search(genus='Ceanothus', output='short')
ipni_search(genus='Ceanothus', output='extended')
}
Run the code above in your browser using DataLab