Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
dataRetrieval
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Water
dataRetrieval
Commits
f726c07b
Commit
f726c07b
authored
10 years ago
by
Laura A DeCicco
Browse files
Options
Downloads
Patches
Plain Diff
Deprecated functions.
parent
52e94b73
No related branches found
No related tags found
1 merge request
!39
Overhaul of function names. Move some functionality to EGRET.
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
R/deprecatedFunctions.R
+81
-0
81 additions, 0 deletions
R/deprecatedFunctions.R
with
81 additions
and
0 deletions
R/deprecatedFunctions.R
0 → 100644
+
81
−
0
View file @
f726c07b
#' @rdname whatNWISsites
#' @export
getNWISSites
<-
function
(
...
){
message
(
"This function is being deprecated. Please use whatNWISsites in the future."
)
whatNWISsites
(
...
)
}
#' @rdname whatNWISdata
#' @export
getNWISDataAvailability
<-
function
(
siteNumber
,
service
=
c
(
"uv"
,
"dv"
,
"qw"
)){
message
(
"This function is being deprecated. Please use whatNWISdata in the future."
)
whatNWISdata
(
siteNumber
=
siteNumber
,
service
=
service
)
}
#' @rdname whatWQPsites
#' @export
getWQPSites
<-
function
(
...
){
message
(
"This function is being deprecated. Please use whatWQPsites in the future."
)
whatWQPsites
(
...
)
}
#' @rdname readNWISsite
#' @export
getNWISSiteInfo
<-
function
(
siteNumbers
){
message
(
"This function is being deprecated. Please use readNWISsite in the future."
)
readNWISsite
(
siteNumbers
)
}
#' @rdname readNWISpCode
#' @export
getNWISPcodeInfo
<-
function
(
parameterCd
){
message
(
"This function is being deprecated. Please use readNWISpCode in the future."
)
readNWISpCode
(
parameterCd
)
}
#' @rdname readNWISdata
#' @export
getNWISData
<-
function
(
service
=
"dv"
,
...
){
message
(
"This function is being deprecated. Please use readNWISdata in the future."
)
readNWISdata
(
service
=
service
,
...
)
}
#' @rdname readNWISdv
#' @export
getNWISdvData
<-
function
(
siteNumber
,
parameterCd
,
startDate
=
""
,
endDate
=
""
,
statCd
=
"00003"
){
message
(
"This function is being deprecated. Please use readNWISdv in the future."
)
readNWISdv
(
siteNumber
,
parameterCd
,
startDate
,
endDate
,
statCd
)
}
#' @rdname readNWISuv
#' @export
getNWISunitData
<-
function
(
siteNumbers
,
parameterCd
,
startDate
=
""
,
endDate
=
""
,
tz
=
""
){
message
(
"This function is being deprecated. Please use readNWISuv in the future."
)
readNWISuv
(
siteNumber
,
parameterCd
,
startDate
,
endDate
,
tz
)
}
#' @rdname readNWISqw
#' @export
getNWISqwData
<-
function
(
siteNumber
,
pCodes
,
startDate
=
""
,
endDate
=
""
,
expanded
=
FALSE
,
reshape
=
TRUE
,
tz
=
""
){
message
(
"This function is being deprecated. Please use readNWISqw in the future."
)
readNWISqw
(
siteNumber
,
pCodes
,
startDate
,
endDate
,
expanded
,
reshape
,
tz
)
}
#' @rdname readWQPqw
#' @export
getWQPqwData
<-
function
(
siteNumber
,
parameterCd
,
startDate
=
""
,
endDate
=
""
){
message
(
"This function is being deprecated. Please use readWQPqw in the future."
)
readWQPqw
(
siteNumber
,
parameterCd
,
startDate
,
endDate
)
}
#' @rdname readWQPdata
#' @export
getWQPData
<-
function
(
...
){
message
(
"This function is being deprecated. Please use readWQPdata in the future."
)
readWQPdata
(
...
)
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment