df <- tibble::tibble(
scientificName = c("Crinia Signifera", "Crinia Signifera", "Litoria peronii"),
fam = c("Myobatrachidae", "Myobatrachidae", "Hylidae"),
ord = c("Anura", "Anura", "Anura"),
latitude = c(-35.27, -35.24, -35.83),
longitude = c(149.33, 149.34, 149.34),
eventDate = c("2010-10-14", "2010-10-14", "2010-10-14")
)
# Reformat columns to Darwin Core terms
df |>
set_scientific_name(
scientificName = scientificName
) |>
set_taxonomy(
family = fam,
order = ord
)
Run the code above in your browser using DataLab