Skip to content

Commit 6b70f60

Browse files
committed
add temperature data for paper
1 parent efbeed4 commit 6b70f60

6 files changed

Lines changed: 27 additions & 0 deletions

data-raw/bottom_temp_survey.rds

729 Bytes
Binary file not shown.
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
#' Create Lazy data for OISS bottom temp
2+
#'
3+
#' from ecodata::seasonal_oisst_anom
4+
#'
5+
6+
create_surface_temp_oisst_data <- function() {
7+
dataSet <- readRDS(
8+
here::here("data-raw", "surface_temp_oisst.rds")
9+
)
10+
11+
surface_temp_oisst <- dataSet
12+
usethis::use_data(surface_temp_oisst, overwrite = TRUE)
13+
}
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#' Create Lazy data for survey bottom temp
2+
#'
3+
#' from ecodata::bottom_temp_insitu
4+
#'
5+
6+
create_bottom_temp_survey_data <- function() {
7+
dataSet <- readRDS(
8+
here::here("data-raw", "bottom_temp_survey.rds")
9+
)
10+
11+
bottom_temp_survey <- dataSet |>
12+
dplyr::filter(Time > 2013)
13+
usethis::use_data(bottom_temp_survey, overwrite = TRUE)
14+
}

data-raw/surface_temp_oisst.rds

386 Bytes
Binary file not shown.

data/bottom_temp_survey.rda

859 Bytes
Binary file not shown.

data/surface_temp_oisst.rda

527 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)