Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions .claude/settings.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,19 @@
{
"permissions": {
"allow": [
"Bash(\"/c/Program Files/R/R-4.4.1/bin/Rscript.exe\" -e \":*)",
"Bash(\"/c/Program Files/R/R-4.4.1/bin/Rscript.exe\" --vanilla -e \"cat\\(''R works\\\\n''\\)\")",
"Bash(\"/c/Program Files/R/R-4.4.1/bin/Rscript.exe\" --vanilla check_maps.R)",
"Bash(/tmp/check_nhtsa.R:*)",
"Bash(\"/c/Program Files/R/R-4.4.1/bin/Rscript.exe\" --vanilla /tmp/check_nhtsa.R)",
"Bash(/tmp/check_nhtsa2.R:*)",
"Bash(\"/c/Program Files/R/R-4.4.1/bin/Rscript.exe\" --vanilla /tmp/check_nhtsa2.R)",
"Bash(/tmp/check_missing.R:*)",
"Bash(\"/c/Program Files/R/R-4.4.1/bin/Rscript.exe\" --vanilla /tmp/check_missing.R)",
"Bash(/tmp/check_missing2.R:*)",
"Bash(\"/c/Program Files/R/R-4.4.1/bin/Rscript.exe\" --vanilla /tmp/check_missing2.R)",
"Bash(/tmp/check_sd.R:*)",
"Bash(\"/c/Program Files/R/R-4.4.1/bin/Rscript.exe\" --vanilla /tmp/check_sd.R)",
"WebFetch(domain:crisistrends.org)",
"WebFetch(domain:mysolace.github.io)",
"WebFetch(domain:www.globenewswire.com)",
Expand All @@ -16,6 +29,9 @@
"Bash(curl -s \"https://app.sigmacomputing.com/static/js/index.CkWRZN0h.js\")",
"WebFetch(domain:help.sigmacomputing.com)",
"Bash(curl -s \"https://api.sigmacomputing.com/v2/workbooks?search=crisis\" -H \"Accept: application/json\")"
],
"additionalDirectories": [
"\\tmp"
]
}
}
27 changes: 2 additions & 25 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ renv/
*.Rdata
.DS_Store
data/vaers/raw/staging/
data/nhtsa_crash/raw/*.zip
data/abcs/raw/acs_cache/
pophive_data.db
nul
Expand Down Expand Up @@ -109,31 +110,7 @@ data_commons_export/wisqars/config.json
data_commons_export/wisqars/data.tmcf
data_commons_export/wisqars/variables.mcf
data_commons_export/wisqars/wisqars.csv
_ul
data/nhtsa_crash/raw/FARS2000NationalCSV.zip
data/nhtsa_crash/raw/FARS2001NationalCSV.zip
data/nhtsa_crash/raw/FARS2002NationalCSV.zip
data/nhtsa_crash/raw/FARS2003NationalCSV.zip
data/nhtsa_crash/raw/FARS2004NationalCSV.zip
data/nhtsa_crash/raw/FARS2005NationalCSV.zip
data/nhtsa_crash/raw/FARS2006NationalCSV.zip
data/nhtsa_crash/raw/FARS2007NationalCSV.zip
data/nhtsa_crash/raw/FARS2008NationalCSV.zip
data/nhtsa_crash/raw/FARS2009NationalCSV.zip
data/nhtsa_crash/raw/FARS2010NationalCSV.zip
data/nhtsa_crash/raw/FARS2011NationalCSV.zip
data/nhtsa_crash/raw/FARS2012NationalCSV.zip
data/nhtsa_crash/raw/FARS2013NationalCSV.zip
data/nhtsa_crash/raw/FARS2014NationalCSV.zip
data/nhtsa_crash/raw/FARS2015NationalCSV.zip
data/nhtsa_crash/raw/FARS2016NationalCSV.zip
data/nhtsa_crash/raw/FARS2017NationalCSV.zip
data/nhtsa_crash/raw/FARS2018NationalCSV.zip
data/nhtsa_crash/raw/FARS2019NationalCSV.zip
data/nhtsa_crash/raw/FARS2020NationalCSV.zip
data/nhtsa_crash/raw/FARS2021NationalCSV.zip
data/nhtsa_crash/raw/FARS2022NationalCSV.zip
data/nhtsa_crash/raw/FARS2023NationalCSV.zip
_ul*
_ul-MWMJ0G3P8D
raw/abcs_census_age_stratified_pop_pre2009.csv
raw/abcs_census_age_stratified_pop.csv
Expand Down
15 changes: 15 additions & 0 deletions data/nhtsa_crash/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# nhtsa_crash

This is a dcf data source project, initialized with `dcf::dcf_add_source`.

You can use the `dcf` package to check the project:

```R
dcf_check()
```

And process it:

```R
dcf_process()
```
Loading