Allows to delete occurrence records and to select occurrence points by classification levels or by drawing spatial polygons.
map_module( occ.cl, action = "clean", institution.code = "institutionCode", collection.code = "collectionCode", catalog.number = "catalogNumber", year = "year", date.identified = "dateIdentified", species = "species", identified.by = "identifiedBy", decimal.latitude = "decimalLatitude", decimal.longitude = "decimalLongitude", basis.of.record = "basisOfRecord", media.type = "mediaType", occurrence.id = "occurrenceID", institution.source, year.event, scientific.name, determined.by, latitude, longitude, basis.of.rec, occ.id )
occ.cl | Data frame with occurrence records information already
classified by |
---|---|
action | a string with `"clean"` or `"flag"` which defines the action of `map_module` function with the occurrence dataset. Default is `"clean"`. If the string is `"clean"` the dataset returned only the occurrences records selected by the user. If the string is `"flag"`, a column named `map_module_flag` is added in the output dataset, with tags `selected` and `deleted`, following the choices of the user in the application. |
institution.code | column name of |
collection.code | column name of |
catalog.number | column name of |
year | Column name of |
date.identified | Column name of |
species | column name of |
identified.by | column name of |
decimal.latitude | column name of |
decimal.longitude | column name of |
basis.of.record | column name with the specific nature of the data record. See details. |
media.type | column name of |
occurrence.id | column name of |
institution.source | deprecated, use |
year.event | deprecated, use |
scientific.name | deprecated, use |
determined.by | deprecated, use |
latitude | deprecated, use |
longitude | deprecated, use |
basis.of.rec | deprecated, use |
occ.id | deprecated, use |
Data frame with the same columns of occ.cl
.
Arthur V. Rodrigues
if (FALSE) { data("A.setosa") data("speciaLists") occ.class <- classify_occ(A.setosa, speciaLists) occ.selected <- map_module(occ.class) occ.selected }