-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheck_missing_dates.Rd
31 lines (27 loc) · 984 Bytes
/
check_missing_dates.Rd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/check_missing_dates.R
\name{check_missing_dates}
\alias{check_missing_dates}
\title{Check missing dates}
\usage{
check_missing_dates(folder, start_date, end_date)
}
\arguments{
\item{folder}{input folder}
\item{start_date}{start date (YYYY-MM-DD)}
\item{end_date}{end date (YYYY-MM-DD)}
}
\value{
Vector of filenames that are missing or "No missing dates"
}
\description{
Function to check missing files by date in a folder
}
\examples{
\dontrun{
check_missing_dates(start_date="1981-09-01", end_date="2024-04-30", "/Volumes/Extreme_SSD/dhw/OISST/gbr")
check_missing_dates(start_date="1981-09-01", end_date="2024-04-30", "/Volumes/Extreme_SSD/dhw/OISST/global" )
check_missing_dates(start_date="1985-06-01", end_date="2024-04-30", "/Volumes/Extreme_SSD/dhw/CRW/global/CRW_SST")
check_missing_dates(start_date="1985-06-01", end_date="2024-04-30", "/Volumes/Extreme_SSD/dhw/CRW/global/CRW_SSTA")
}
}