Skip to contents

This function retrieves information about a specific oak tree based on its ID from the provided oak tree database.

Usage

get_info_chene(dbchene, theidoak)

Arguments

dbchene

Database containing information about oak trees.

theidoak

ID of the oak tree for which information is to be retrieved.

Value

A list containing information about the oak tree, including its type and date of plantation.

a list

Examples


conn <- DBI::dbConnect(
   RSQLite::SQLite(),
   system.file(dbname = "chenes_truffe.sqlite", package = "truffles")
 )
chene <- DBI::dbReadTable(conn, name = "chenes")

get_info_chene(dbchene = chene, theidoak = "162")
#> $type
#> character(0)
#> 
#> $planting_date
#> Date of length 0
#>