Skip to contents

This function retrieves the latest reseeding date for a specified oak tree ID from a dataframe containing reseeding information.

Usage

get_info_reensemence(dbreensemence, theidoak)

Arguments

dbreensemence

A data frame containing reseeding information with columns "idoak" and "date_reens".

theidoak

The ID of the oak tree for which to retrieve the reseeding date.

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)