Lookup issue definitions and short codes
gbif_issues_lookup(issue = NULL, code = NULL)
issue | Full name of issue, e.g, CONTINENT_COUNTRY_MISMATCH |
---|---|
code | An issue short code, e.g. 'ccm' |
gbif_issues_lookup(issue = 'CONTINENT_COUNTRY_MISMATCH')#> code issue #> 2 ccm CONTINENT_COUNTRY_MISMATCH #> description type #> 2 The interpreted continent and country do not match up. occurrencegbif_issues_lookup(code = 'ccm')#> code issue #> 2 ccm CONTINENT_COUNTRY_MISMATCH #> description type #> 2 The interpreted continent and country do not match up. occurrencegbif_issues_lookup(issue = 'COORDINATE_INVALID')#> code issue #> 5 cdiv COORDINATE_INVALID #> description #> 5 Coordinate value given in some form but GBIF is unable to interpret it. #> type #> 5 occurrencegbif_issues_lookup(code = 'cdiv')#> code issue #> 5 cdiv COORDINATE_INVALID #> description #> 5 Coordinate value given in some form but GBIF is unable to interpret it. #> type #> 5 occurrence