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

add water type + speed up fetchATTAINS(); {arcgislayers}-ify fetchNHD #536

Merged
merged 30 commits into from
Nov 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
db17420
arcgislyaers-ification + watertype add
kathryn-willi Oct 17, 2024
f04b6fc
retest, look good now
kathryn-willi Oct 17, 2024
959321c
Update R/GeospatialFunctions.R
kathryn-willi Oct 18, 2024
fbbdbd6
Update R/GeospatialFunctions.R
kathryn-willi Oct 18, 2024
7b7f37a
Update R/GeospatialFunctions.R
kathryn-willi Oct 18, 2024
17f5508
Update R/GeospatialFunctions.R
kathryn-willi Oct 18, 2024
5cd1da3
Update R/GeospatialFunctions.R
kathryn-willi Oct 18, 2024
622991d
Update R/GeospatialFunctions.R
kathryn-willi Oct 18, 2024
3b8aa31
Update R/GeospatialFunctions.R
kathryn-willi Oct 18, 2024
9a86744
Merge pull request #5 from kathryn-willi/develop
kathryn-willi Oct 18, 2024
c15c4d8
removed split_vector from conditional statement
kathryn-willi Oct 18, 2024
d5750f4
highlight water type in vignette
kathryn-willi Oct 18, 2024
2053143
Merge pull request #6 from kathryn-willi/develop
kathryn-willi Oct 18, 2024
e57fa68
Merge branch 'develop' into pr/533
cristinamullin Oct 24, 2024
ec7e275
arcgislyaers-ification + watertype add
kathryn-willi Oct 17, 2024
bca5cbd
retest, look good now
kathryn-willi Oct 17, 2024
23f6e52
Update R/GeospatialFunctions.R
kathryn-willi Oct 18, 2024
718ad42
Update R/GeospatialFunctions.R
kathryn-willi Oct 18, 2024
48697ff
Update R/GeospatialFunctions.R
kathryn-willi Oct 18, 2024
a5a9df9
Update R/GeospatialFunctions.R
kathryn-willi Oct 18, 2024
8f2c03e
Update R/GeospatialFunctions.R
kathryn-willi Oct 18, 2024
d96fad0
Update R/GeospatialFunctions.R
kathryn-willi Oct 18, 2024
b76b22b
Update R/GeospatialFunctions.R
kathryn-willi Oct 18, 2024
a48c419
removed split_vector from conditional statement
kathryn-willi Oct 18, 2024
bbd951d
highlight water type in vignette
kathryn-willi Oct 18, 2024
ff373c3
Merge branch 'pr/533' into review-533
cristinamullin Oct 28, 2024
0eefbe0
add dependencies and details to docs
cristinamullin Oct 29, 2024
fa0e82d
minor edits to TADA_GetATTAINS docs
cristinamullin Oct 29, 2024
e53c98a
add ATTAINS cols
cristinamullin Oct 30, 2024
4f41ba0
Merge branch 'develop' into review-533
cristinamullin Oct 31, 2024
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
11 changes: 5 additions & 6 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -68,15 +68,14 @@ Imports:
urltools,
geojsonsf,
tibble,
rlang
Remotes:
github::R-ArcGIS/arcgislayers,
github::R-ArcGIS/arcgis,
github::R-ArcGIS/arcpbf
rlang,
nhdplusTools,
arcgislayers,
httr,
jsonlite
Depends:
R (>= 3.5.0)
Suggests:
nhdplusTools,
lwgeom,
DT,
RColorBrewer,
Expand Down
462 changes: 248 additions & 214 deletions R/GeospatialFunctions.R

Large diffs are not rendered by default.

9 changes: 7 additions & 2 deletions R/RequiredCols.R
Original file line number Diff line number Diff line change
Expand Up @@ -241,12 +241,17 @@ attains.cols <- c(
"ATTAINS.isthreatened", "ATTAINS.state", "ATTAINS.on303dlist",
"ATTAINS.organizationname", "ATTAINS.region", "ATTAINS.Shape_Length",
"ATTAINS.reportingcycle", "ATTAINS.assmnt_joinkey", "ATTAINS.hastmdl",
"ATTAINS.orgtype", "ATTAINS.permid_joinkey", "ATTAINS.catchmentistribal",
"ATTAINS.orgtype",
"ATTAINS.permid_joinkey", #
"ATTAINS.catchmentistribal",
"ATTAINS.ircategory", "ATTAINS.waterbodyreportlink", "ATTAINS.assessmentunitidentifier",
"ATTAINS.overallstatus", "ATTAINS.isassessed", "ATTAINS.isimpaired",
"ATTAINS.has4bplan", "ATTAINS.huc12", "ATTAINS.hasalternativeplan",
"ATTAINS.visionpriority303d", "ATTAINS.areasqkm", "ATTAINS.catchmentareasqkm",
"ATTAINS.catchmentstatecode", "ATTAINS.catchmentresolution", "ATTAINS.Shape_Area"
"ATTAINS.catchmentstatecode", "ATTAINS.catchmentresolution", "ATTAINS.Shape_Area",
"ATTAINS.xwalk_method",
"ATTAINS.xwalk_huc12_version",
"ATTAINS.waterTypeCode"
)

# Only used in TADA Shiny or should be at the end
Expand Down
13 changes: 10 additions & 3 deletions man/TADA_GetATTAINS.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion man/TADA_MakeSpatial.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions man/fetchATTAINS.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading