-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #85 from boshek/master
Merging in split and merge algorithm
- Loading branch information
Showing
23 changed files
with
1,082 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,4 +3,5 @@ changelog.txt | |
.travis.yml | ||
^.*\.Rproj$ | ||
^\.Rproj\.user$ | ||
README.md | ||
README.md | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
.Rproj.user | ||
.Rhistory | ||
.RData | ||
*.Rproj | ||
*.Rproj | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,20 @@ | ||
Package: rLakeAnalyzer | ||
Title: Lake Physics Tools | ||
Maintainer: Luke Winslow <[email protected]> | ||
Version: 1.9.1 | ||
Version: 1.10.0 | ||
Author: Luke Winslow, Jordan Read, Richard Woolway, Jennifer Brentrup, Taylor | ||
Leach, Jake Zwart | ||
Leach, Jake Zwart, Sam Albers, Doug Collinge | ||
Description: Standardized methods for calculating common important derived | ||
physical features of lakes including water density based based on | ||
temperature, thermal layers, thermocline depth, lake number, Wedderburn | ||
number, Schmidt stability and others. | ||
Depends: R (>= 2.10) | ||
Imports: | ||
plyr | ||
Suggests: | ||
testthat | ||
testthat, | ||
knitr, | ||
rmarkdown | ||
License: GPL (>= 2) | ||
Packaged: 2014-07-06 09:09:24 UTC; Luke | ||
Repository: https://github.com/GLEON/rLakeAnalyzer | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#' Late Summer Profile | ||
#' | ||
#' Late summer water profile taken from Quesnel Lake, British Columbia, Canada. Profile taken with Sea-Bird | ||
#' SBE19plus. | ||
#' | ||
#' \describe{ | ||
#' \item{depth}{Depth, m} | ||
#' \item{temper}{Temperature, degC} | ||
#' \item{salinity}{Salinity, PSU} | ||
#' \item{oxygen}{Oxygen, ml/l} | ||
#' \item{oxygen.sat}{Oxygen saturation, percent saturation} | ||
#' \item{density}{Density, kg/m^3} | ||
#' ... | ||
#' } | ||
"latesummer" |
Oops, something went wrong.