Get the latest reseeding date for a given oak tree ID.
get_info_reensemence.Rd
This function retrieves the latest reseeding date for a specified oak tree ID from a dataframe containing reseeding information.
Value
Returns the latest reseeding date for the specified oak tree ID. If no reseeding information is available for the given ID, returns "-".
Examples
conn <- DBI::dbConnect(
RSQLite::SQLite(),
system.file(dbname = "chenes_truffe.sqlite", package = "truffles")
)
reensemence <- DBI::dbReadTable(conn, name = "reens")
get_info_reensemence(dbreensemence = reensemence, theidoak = "150")
#> [1] "-"
DBI::dbDisconnect(conn)