-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path00_dates.R
41 lines (27 loc) · 1.24 KB
/
00_dates.R
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
32
33
34
35
36
37
38
39
40
# COHHIO_HMIS
# Copyright (C) 2021 Coalition on Homelessness and Housing in Ohio (COHHIO)
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details at
# <https://www.gnu.org/licenses/>.
library(lubridate)
library(here)
# hc = hard-coded here, used elsewhere
# Hard-coded Dates --------------------------------------------------------
hc_bos_start_vaccine_data <- mdy("02052021")
hc_psh_started_collecting_move_in_date <- mdy("10012017")
hc_began_collecting_covid_data <- mdy("04012020")
hc_outreach_to_cls <- mdy("10012019")
hc_began_requiring_spdats <- mdy("01012019")
hc_unsheltered_data_start <- mdy("01012019")
hc_prior_living_situation_required <- mdy("10012016")
hc_check_eligibility_back_to <- mdy("10012016")
hc_no_more_svcs_on_hh_members <- mdy("02012019")
hc_first_vaccine_administered_in_us <- mdy("12142020")