Skip to content

Commit

Permalink
Merge pull request #85 from boshek/master
Browse files Browse the repository at this point in the history
Merging in split and merge algorithm
  • Loading branch information
lawinslow authored Sep 13, 2017
2 parents 17000d0 + 9d55c55 commit 4f91ff9
Show file tree
Hide file tree
Showing 23 changed files with 1,082 additions and 6 deletions.
3 changes: 2 additions & 1 deletion .Rbuildignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ changelog.txt
.travis.yml
^.*\.Rproj$
^\.Rproj\.user$
README.md
README.md

3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
.Rproj.user
.Rhistory
.RData
*.Rproj
*.Rproj

9 changes: 6 additions & 3 deletions DESCRIPTION
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
Expand Down
5 changes: 5 additions & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,15 @@ export(wedderburn.number, layer.density, lake.number, uStar, water.density,
schmidt.plot, center.buoyancy, ts.center.buoyancy, internal.energy,
ts.internal.energy, epi.temperature, hypo.temperature, whole.lake.temperature,
approx.bathy)
export(depth.filter)
export(wtr.layer)

import("plyr")
importFrom("grDevices", "colorRampPalette")
importFrom("graphics", "abline", "axis", "filled.contour", "legend",
"lines", "plot", "segments", "title")
importFrom("stats", "approx")
importFrom("utils", "read.table")



15 changes: 15 additions & 0 deletions R/data.R
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"
Loading

0 comments on commit 4f91ff9

Please sign in to comment.