process_flagged {gatoRs} | R Documentation |
Locality Cleaning - Find possibly problematic occurrence records
Description
The process_flagged()
function allows you to visualize and inspect possible problematic points, as well as
manually remove these points, if desired. By default, this function is interactive. When running the function interactively you can
hover over a point to see the record's scientific name, and click on a point to see the record's coordinates.The interactive option plots flagged points in red and non-flagged points in blue.
Usage
process_flagged(
df,
interactive = TRUE,
latitude = "latitude",
longitude = "longitude",
scientific.name = "scientificName"
)
Arguments
df |
Data frame of occurrence records returned from |
interactive |
Default = TRUE. The interactive option allows for a visual display
of possible problematic points and the ability to manually remove these points.
Setting |
latitude |
Default = "latitude". The name of the latitude column in the data frame. |
longitude |
Default = "longitude". The name of the longitude column in the data frame. |
scientific.name |
Default = "scientificName". The name of the scientificName column in the data frame. |
Details
This function is a wrapper to visualize results for the CoordinateCleaner::clean_coordinates()
function.
Briefly, CoordinateCleaner::clean_coordinates()
flags records with coordinates that are unlikely valid,
spatial outliers, or in certain locations including the ocean, state capitals, country centroids,
the GBIF headquarters, and biodiversity institutions (including botanical gardens, museums, herbaria, etc.).
This function requires packages CoordinateCleaner, leaflet, and magrittr.
This function requires interactive user input.
Value
Return cleaned data frame.
Information about the columns in the returned data frame can be found in the documentation for gators_download()
.
Examples
cleaned_data <- process_flagged(data, interactive = FALSE)