Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TADA_DataRetrieval updates for sf option, tribal options, big data options #566

Open
wants to merge 40 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
e089719
Add sf and tribal query options to TADA_DataRetrieval
mbrousil Aug 24, 2024
b268ce8
Add TADA_TribalOptions to R/GeospatialFunctions.R
mbrousil Aug 26, 2024
a96064f
Merge remote-tracking branch 'upstream/develop' into develop
mbrousil Nov 20, 2024
49ddc83
tribal options edits
mbrousil Nov 20, 2024
57e5a03
TADA_DR rewrite
mbrousil Nov 20, 2024
7d9ac2a
Helper function for large queries
mbrousil Nov 20, 2024
2b06dbd
Document bigdatahelper
mbrousil Nov 20, 2024
929dc37
update geospatial funs
mbrousil Nov 21, 2024
001c2eb
warning -> message & add dplyr::
mbrousil Nov 22, 2024
19d80a2
odds and ends
mbrousil Nov 22, 2024
a71a495
Add user prompts to data retrieval
mbrousil Jan 4, 2025
0d55e74
Add progress bar & change warnings to messages
mbrousil Jan 6, 2025
27038fb
Include progress bar internals
mbrousil Jan 9, 2025
02de221
Update DataDiscoveryRetrieval.R
mbrousil Jan 9, 2025
6e16a9b
Apply suggestions from code review
mbrousil Jan 10, 2025
0c42ea5
Apply suggestions from code review
mbrousil Jan 10, 2025
21cf9c5
Update DataDiscoveryRetrieval.R
mbrousil Jan 10, 2025
87150ea
Merge pull request #7 from mbrousil/develop
mbrousil Jan 10, 2025
152e979
http errors
mbrousil Jan 17, 2025
fd3019f
TADA_TribalOptions + vignette + logic
mbrousil Jan 17, 2025
a8dcb05
Vignette updates
mbrousil Jan 21, 2025
d8fe5f3
Update testing, build, etc.
mbrousil Jan 22, 2025
a0b1b4d
Run styler::style_pkg()
mbrousil Jan 22, 2025
8ab8857
Example housekeeping
mbrousil Jan 23, 2025
dfd0b3c
Remove bigdataretrieval
mbrousil Jan 24, 2025
abe653f
Apply suggestions from code review
mbrousil Jan 24, 2025
acab23e
Documentation and messaging
mbrousil Jan 24, 2025
4b3ec7f
Clarify tribe_name_parcel reqs
mbrousil Jan 24, 2025
c3e40e3
Redo tribal_area_type check
mbrousil Jan 24, 2025
f0de6b1
Catch clips with no sites
mbrousil Jan 24, 2025
cd05dfd
More quietly
mbrousil Jan 27, 2025
820f762
tigris
mbrousil Jan 27, 2025
77357be
Recheck/rebuild
mbrousil Jan 27, 2025
8e4b98a
Style
mbrousil Jan 27, 2025
fb1fc49
Update R/DataDiscoveryRetrieval.R
mbrousil Jan 28, 2025
1310736
Apply suggestions from code review
mbrousil Jan 28, 2025
7602fac
Update DataDiscoveryRetrieval.R
mbrousil Jan 28, 2025
1918de0
Merge pull request #8 from mbrousil/develop
mbrousil Jan 28, 2025
3493ee7
Merge remote-tracking branch 'upstream/develop' into develop
mbrousil Jan 28, 2025
6297335
Merge remote-tracking branch 'upstream/develop' into develop
mbrousil Jan 28, 2025
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
2 changes: 2 additions & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,5 @@ readme.html
.gitignore
^articles
^vignettes/articles$
^doc$
^Meta$
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,5 @@ testing_log.txt

# test data from AK
AK_EPATADA_troubleshooting
/doc/
/Meta/
5 changes: 3 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -85,13 +85,14 @@ Suggests:
tidyverse,
knitr,
testthat,
testthis,
testthis,
usethis,
devtools,
pkgdown,
spelling,
htmltools,
yaml
yaml,
tigris
VignetteBuilder: knitr, rmarkdown
Language: en-US
Config/testthat/edition: 3
Expand Down
2 changes: 1 addition & 1 deletion NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ export(TADA_AggregateMeasurements)
export(TADA_AnalysisDataFilter)
export(TADA_AutoClean)
export(TADA_AutoFilter)
export(TADA_BigDataRetrieval)
export(TADA_Boxplot)
export(TADA_CalculateTotalNP)
export(TADA_CharStringRemoveNA)
Expand Down Expand Up @@ -79,6 +78,7 @@ export(TADA_SimpleCensoredMethods)
export(TADA_Stats)
export(TADA_SubstituteDeprecatedChars)
export(TADA_SummarizeColumn)
export(TADA_TribalOptions)
export(TADA_TwoCharacteristicScatterplot)
export(TADA_UniqueCharUnitSpeciation)
export(TADA_UpdateMonitoringLocationsInATTAINS)
Expand Down
3 changes: 2 additions & 1 deletion R/CriteriaComparison.R
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,8 @@ TADA_CreatePairRef <- function(.data, ph = TRUE, hardness = TRUE, temp = TRUE,
#' AL_df <- TADA_DataRetrieval(
#' startDate = "2010-11-30",
#' endDate = "2010-12-01",
#' statecode = "AL"
#' statecode = "AL",
#' ask = FALSE
#' )
#'
#' AL_PairRef <- TADA_PairForCriteriaCalc(AL_df)
Expand Down
Loading
Loading