Skip to contents

extracts the environmental data from the logs

Usage

eo_env(logs)

Arguments

logs

as provided by eo_import_logs

Value

a dataframe with the datetime, air temperature (celsius), and pressure (atm) for all chambers

Examples

path <- system.file("extdata/ex_logs", package = "readosense")
eo_import_logs(path) |>
eo_env()
#> # A tibble: 3,728 × 3
#>    datetime            air_temp pressure
#>    <dttm>                 <dbl>    <dbl>
#>  1 2024-12-12 17:13:00     6.96     1.02
#>  2 2024-12-12 17:13:04     6.96     1.02
#>  3 2024-12-12 17:13:08     6.95     1.02
#>  4 2024-12-12 17:13:12     6.95     1.02
#>  5 2024-12-12 17:13:16     6.94     1.02
#>  6 2024-12-12 17:13:20     6.94     1.02
#>  7 2024-12-12 17:13:24     6.93     1.02
#>  8 2024-12-12 17:13:28     6.93     1.02
#>  9 2024-12-12 17:13:32     6.92     1.02
#> 10 2024-12-12 17:13:36     6.91     1.02
#> # ℹ 3,718 more rows