├── .Rbuildignore ├── .github └── workflows │ ├── R-CMD-check.xxx │ └── check-standard.yaml ├── .gitignore ├── DESCRIPTION ├── NAMESPACE ├── NEWS.md ├── R ├── .gitignore ├── calcLakeMetrics.R ├── lakeFetch.R ├── lakeMajorAxisLength.R ├── lakeMaxDepth.R ├── lakeMaxLength.R ├── lakeMaxWidth.R ├── lakeMeanDepth.R ├── lakeMeanWidth.R ├── lakeMinorAxisLength.R ├── lakeMinorMajorAxisRatio.R ├── lakeMorphoClass.R ├── lakeShorelineDevelopment.R ├── lakeShorelineLength.R ├── lakeSurfaceArea.R ├── lakeSurroundTopo.R ├── lakeVolume.R ├── lakemorpho.R ├── lakes.R ├── plot.lakemorpho.R └── zzz.r ├── README.md ├── cran_comments.md ├── data └── lakes.RData ├── inst └── CITATION ├── man ├── calcLakeMetrics.Rd ├── exampleElev.Rd ├── exampleLake.Rd ├── inputLM.Rd ├── lakeFetch.Rd ├── lakeMajorAxisLength.Rd ├── lakeMaxDepth.Rd ├── lakeMaxLength.Rd ├── lakeMaxWidth.Rd ├── lakeMeanDepth.Rd ├── lakeMeanWidth.Rd ├── lakeMinorAxisLength.Rd ├── lakeMinorMajorRatio.Rd ├── lakeMorphoClass.Rd ├── lakeShorelineDevelopment.Rd ├── lakeShorelineLength.Rd ├── lakeSurfaceArea.Rd ├── lakeSurroundTopo.Rd ├── lakeVolume.Rd ├── lakemorpho.Rd └── plot.lakeMorpho.Rd └── revdep ├── check.R └── checks.rds /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/lakemorpho2/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.xxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/lakemorpho2/HEAD/.github/workflows/R-CMD-check.xxx -------------------------------------------------------------------------------- /.github/workflows/check-standard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/lakemorpho2/HEAD/.github/workflows/check-standard.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/lakemorpho2/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/lakemorpho2/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/lakemorpho2/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/lakemorpho2/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/.gitignore: -------------------------------------------------------------------------------- 1 | test_max_length.R 2 | -------------------------------------------------------------------------------- /R/calcLakeMetrics.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/lakemorpho2/HEAD/R/calcLakeMetrics.R -------------------------------------------------------------------------------- /R/lakeFetch.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/lakemorpho2/HEAD/R/lakeFetch.R -------------------------------------------------------------------------------- /R/lakeMajorAxisLength.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/lakemorpho2/HEAD/R/lakeMajorAxisLength.R -------------------------------------------------------------------------------- /R/lakeMaxDepth.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/lakemorpho2/HEAD/R/lakeMaxDepth.R -------------------------------------------------------------------------------- /R/lakeMaxLength.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/lakemorpho2/HEAD/R/lakeMaxLength.R -------------------------------------------------------------------------------- /R/lakeMaxWidth.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/lakemorpho2/HEAD/R/lakeMaxWidth.R -------------------------------------------------------------------------------- /R/lakeMeanDepth.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/lakemorpho2/HEAD/R/lakeMeanDepth.R -------------------------------------------------------------------------------- /R/lakeMeanWidth.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/lakemorpho2/HEAD/R/lakeMeanWidth.R -------------------------------------------------------------------------------- /R/lakeMinorAxisLength.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/lakemorpho2/HEAD/R/lakeMinorAxisLength.R -------------------------------------------------------------------------------- /R/lakeMinorMajorAxisRatio.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/lakemorpho2/HEAD/R/lakeMinorMajorAxisRatio.R -------------------------------------------------------------------------------- /R/lakeMorphoClass.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/lakemorpho2/HEAD/R/lakeMorphoClass.R -------------------------------------------------------------------------------- /R/lakeShorelineDevelopment.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/lakemorpho2/HEAD/R/lakeShorelineDevelopment.R -------------------------------------------------------------------------------- /R/lakeShorelineLength.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/lakemorpho2/HEAD/R/lakeShorelineLength.R -------------------------------------------------------------------------------- /R/lakeSurfaceArea.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/lakemorpho2/HEAD/R/lakeSurfaceArea.R -------------------------------------------------------------------------------- /R/lakeSurroundTopo.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/lakemorpho2/HEAD/R/lakeSurroundTopo.R -------------------------------------------------------------------------------- /R/lakeVolume.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/lakemorpho2/HEAD/R/lakeVolume.R -------------------------------------------------------------------------------- /R/lakemorpho.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/lakemorpho2/HEAD/R/lakemorpho.R -------------------------------------------------------------------------------- /R/lakes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/lakemorpho2/HEAD/R/lakes.R -------------------------------------------------------------------------------- /R/plot.lakemorpho.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/lakemorpho2/HEAD/R/plot.lakemorpho.R -------------------------------------------------------------------------------- /R/zzz.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/lakemorpho2/HEAD/R/zzz.r -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/lakemorpho2/HEAD/README.md -------------------------------------------------------------------------------- /cran_comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/lakemorpho2/HEAD/cran_comments.md -------------------------------------------------------------------------------- /data/lakes.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/lakemorpho2/HEAD/data/lakes.RData -------------------------------------------------------------------------------- /inst/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/lakemorpho2/HEAD/inst/CITATION -------------------------------------------------------------------------------- /man/calcLakeMetrics.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/lakemorpho2/HEAD/man/calcLakeMetrics.Rd -------------------------------------------------------------------------------- /man/exampleElev.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/lakemorpho2/HEAD/man/exampleElev.Rd -------------------------------------------------------------------------------- /man/exampleLake.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/lakemorpho2/HEAD/man/exampleLake.Rd -------------------------------------------------------------------------------- /man/inputLM.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/lakemorpho2/HEAD/man/inputLM.Rd -------------------------------------------------------------------------------- /man/lakeFetch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/lakemorpho2/HEAD/man/lakeFetch.Rd -------------------------------------------------------------------------------- /man/lakeMajorAxisLength.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/lakemorpho2/HEAD/man/lakeMajorAxisLength.Rd -------------------------------------------------------------------------------- /man/lakeMaxDepth.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/lakemorpho2/HEAD/man/lakeMaxDepth.Rd -------------------------------------------------------------------------------- /man/lakeMaxLength.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/lakemorpho2/HEAD/man/lakeMaxLength.Rd -------------------------------------------------------------------------------- /man/lakeMaxWidth.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/lakemorpho2/HEAD/man/lakeMaxWidth.Rd -------------------------------------------------------------------------------- /man/lakeMeanDepth.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/lakemorpho2/HEAD/man/lakeMeanDepth.Rd -------------------------------------------------------------------------------- /man/lakeMeanWidth.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/lakemorpho2/HEAD/man/lakeMeanWidth.Rd -------------------------------------------------------------------------------- /man/lakeMinorAxisLength.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/lakemorpho2/HEAD/man/lakeMinorAxisLength.Rd -------------------------------------------------------------------------------- /man/lakeMinorMajorRatio.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/lakemorpho2/HEAD/man/lakeMinorMajorRatio.Rd -------------------------------------------------------------------------------- /man/lakeMorphoClass.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/lakemorpho2/HEAD/man/lakeMorphoClass.Rd -------------------------------------------------------------------------------- /man/lakeShorelineDevelopment.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/lakemorpho2/HEAD/man/lakeShorelineDevelopment.Rd -------------------------------------------------------------------------------- /man/lakeShorelineLength.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/lakemorpho2/HEAD/man/lakeShorelineLength.Rd -------------------------------------------------------------------------------- /man/lakeSurfaceArea.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/lakemorpho2/HEAD/man/lakeSurfaceArea.Rd -------------------------------------------------------------------------------- /man/lakeSurroundTopo.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/lakemorpho2/HEAD/man/lakeSurroundTopo.Rd -------------------------------------------------------------------------------- /man/lakeVolume.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/lakemorpho2/HEAD/man/lakeVolume.Rd -------------------------------------------------------------------------------- /man/lakemorpho.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/lakemorpho2/HEAD/man/lakemorpho.Rd -------------------------------------------------------------------------------- /man/plot.lakeMorpho.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/lakemorpho2/HEAD/man/plot.lakeMorpho.Rd -------------------------------------------------------------------------------- /revdep/check.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/lakemorpho2/HEAD/revdep/check.R -------------------------------------------------------------------------------- /revdep/checks.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/lakemorpho2/HEAD/revdep/checks.rds --------------------------------------------------------------------------------