Identify Missing Information - Find records which lack coordinate information
Source:R/need_to_georeference.R
need_to_georeference.Rd
The need_to_georeference()
function allows you to find records that are missing coordinates
but contain locality information. These records can then be manually georeferenced.
Usage
need_to_georeference(
df,
longitude = "longitude",
latitude = "latitude",
locality = "locality"
)
Arguments
- df
A data frame downloaded with
gators_download()
.- longitude
Default = "longitude". The name of the longitude column in the data frame.
- latitude
Default = "latitude". The name of the latitude column in the data frame.
- locality
Default = "locality". The name of the locality column in the data frame.
Value
Returns a data frame of the points that need to be georeferenced.
Information about the columns in the returned data frame can be found in the documentation for gators_download()
.