The SFNRC
R package supports integration and analysis of water quality and hydrology data in south Florida. The package provides an API for the South Florida Water Management District's DBHYDRO database. For users connected to the South Florida Natural Resources Center's servers, the package also provides direct access to DataForEver data.
Install the SFNRC R package from GitHub using the remotes
package (may require separate installation):
if (!('remotes' %in% installed.packages())) {install.packages('remotes')}
remotes::install_github("troyhill/SFNRC", ref = 'master')
library(SFNRC)
Installing this package from out-dated versions of R (NPS users) will cause an error. To change this behavior, adjust the R_REMOTES_NO_ERRORS_FROM_WARNINGS
system variable before installation.
Sys.setenv(R_REMOTES_NO_ERRORS_FROM_WARNINGS="true")
To install the package from a local zip file, download a zip file from GitHub and use devtools::install_local:
if (!('devtools' %in% installed.packages())) {install.packages('devtools')}
devtools::install_local('path/to/zipfile.zip')
library(SFNRC)
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) 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 General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see https://www.gnu.org/licenses/.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.