Buoys

```{asis, echo = long_talk}

Sea surface temperature

Andrea Hilborn (IOS) maintains https://github.com/IOS-OSD-DPG/Pacific_SST_Monitoring which is updated weekly to show recent SST from various sources for the Northeast Pacific (and anomalies and marine heatwave information).

\

```r
knitr::include_graphics(paste0(here::here(),
                               "/inst/andrea-github.png"))

Sea surface temperature data from buoys

Data from r nrow(buoy_metadata) buoys maintained by DFO/ECCC (Environment and Climate Change Canada), hosted through CIOOS (Canadian Integrated Ocean Observing System).

knitr::include_graphics(paste0(here::here(),
                               "/man/figures/buoys_map.png"))
## Sea surface temperature data from buoys

Extensive data processing to calculate daily mean SST:

- Resolution is every 10 minutes or every hour

- Come with quality control flags (mostly)

- We decided that for a daily mean we require:
  - at least one measurement every 2 hours
  - $\geq 10$ 2-hour measurements every day

- Switch from DFO data stream to ECCC data stream when appropriate

- Time zones and daylight savings time

- Still working on fixing a few outliers in the high-resolution data (hard to automate)

Sea surface temperature data from buoys

The data are saved as a tibble in pacea:

buoy_sst

\pause

tail(buoy_sst)

Sea surface temperature data from buoys

Plot data from a single buoy for all years, the default is for buoy C46205:

plot(buoy_sst)

Sea surface temperature data from buoys

Easy to look at values for any buoy

plot(buoy_sst,
     stn_id = "C46185")

Help file for every object

?buoy_sst

Daily average sea surface temperatures for 19 buoys (yielding over
200,000 values) calculated with data from Environment and Climate
Change Canada (ECCC) and DFO.

Description:

     A tibble of daily average calculations of sea surface temperature
     in coastal Canadian Pacific waters. The earliest data are from
     September 1987, and 14 buoys were still providing data as of May
     2023. See the example code below to see the start and end dates
     for each buoy.

Usage:

     buoy_sst

Format:

     A tibble with columns:

     date: date (of class `Date`) used to calculate the `sst`, based on
          UTC -8 hours (i.e. Pacific Standard Time, not changing due to
          daylight savings)

    ...

Vignettes for each type of data

We have written vignettes for each type of data. Viewable directly on GitHub site (see the README).

knitr::include_graphics(paste0(here::here(),
                               "/inst/buoys-vignette-screenshot.png"))


pbs-assess/PACea documentation built on April 17, 2025, 11:36 p.m.