diff --git a/R/fluxUnit.R b/R/fluxUnit.R
deleted file mode 100644
index 06190430676f5550c794b5be44820c4e02ae5435..0000000000000000000000000000000000000000
--- a/R/fluxUnit.R
+++ /dev/null
@@ -1,27 +0,0 @@
-#' fluxUnit class
-#'
-#' Some details about the fluxUnit class
-#'
-#' \describe{
-#'    \item{shortName}{A character specifying the short name.}
-#'
-#'    \item{unitFactor}{A numeric representing the conversion factor}
-#' 
-#'    \item{unitName}{A character specifying the full name.}
-#'  }
-#' @name fluxUnit-class
-#' @rdname fluxUnit-class
-#' @exportClass fluxUnit
-setClass("fluxUnit",
-	representation(
-		shortName  = "character",
-		unitFactor = "numeric",
-		unitName   = "character"
-	)	
-)
-# 
-# testFunc <- function (fluxUnitVar=FLUX_UNIT$POUNDS_DAY){
-#   unitFactorReturn <- fluxUnitVar@unitFactor
-#   return(unitFactorReturn)
-# }
-
diff --git a/R/tabbedDataRetrievals.R b/R/tabbedDataRetrievals.R
index 702d98a6f2db5b075668f927e2a7197ca767e84d..b9ef175e4cc5231b5ecc90062e3e1590ab40ec67 100644
--- a/R/tabbedDataRetrievals.R
+++ b/R/tabbedDataRetrievals.R
@@ -45,28 +45,6 @@ NULL
 #' @keywords water flow data
 NULL
 
-#' Flux units included in dataRetrieval
-#'
-#' Flux units included:
-#' \tabular{lllll}{
-#' Number \tab ObjectName \tab shortName \tab unitFactor \tab unitName  \cr
-#' 1      \tab POUNDS_DAY \tab lbs/day   \tab 2.204623   \tab pounds/day\cr
-#' 2      \tab TONS_DAY   \tab tons/day  \tab 0.001102  \tab tons/day   \cr
-#' 3      \tab KG_DAY     \tab kg/day    \tab 1          \tab kg/day    \cr
-#' 4      \tab THOUSAND_KG_DAY\tab 10^3 kg/day \tab 0.001 \tab "thousands of kg/day\cr
-#' 5      \tab TONS_YEAR\tab tons/yr \tab 0.402619 \tab tons/year\cr
-#' 6      \tab THOUSAND_TONS_YEAR\tab 10^3 tons/yr \tab 0.000402619 \tab thousands of tons/year \cr
-#' 7      \tab MILLION_TONS_YEAR\tab 10^6 tons/yr \tab 4.02619e-07 \tab millions of tons/year\cr
-#' 8      \tab THOUSAND_KG_YEAR\tab 10^3 kg/yr \tab 0.36525 \tab thousands of kg/year\cr
-#' 9      \tab MILLION_KG_YEAR\tab 10^6 kg/yr \tab 0.00036525 \tab millions of kg/year\cr
-#' 10     \tab BILLION_KG_YEAR\tab 10^9 kg/yr \tab 3.6525e-07 \tab billions of kg/year \cr
-#' }
-#' 
-#'
-#' @name FLUX_UNIT
-#' @docType data
-NULL
-
 #' Example Sample Dataframe included in dataRetrieval
 #'
 #' Initial Sample data frame from the Choptank River
diff --git a/data/FLUX_UNIT.RData b/data/FLUX_UNIT.RData
deleted file mode 100644
index 204da95ef7c90190a251b615f925ce356e8b1a1e..0000000000000000000000000000000000000000
Binary files a/data/FLUX_UNIT.RData and /dev/null differ
diff --git a/man/FLUX_UNIT.Rd b/man/FLUX_UNIT.Rd
deleted file mode 100644
index ba1bbcc5cea7e34efd18c350eaf9d3ce6b44ce59..0000000000000000000000000000000000000000
--- a/man/FLUX_UNIT.Rd
+++ /dev/null
@@ -1,24 +0,0 @@
-\docType{data}
-\name{FLUX_UNIT}
-\alias{FLUX_UNIT}
-\title{Flux units included in dataRetrieval}
-\description{
-  Flux units included: \tabular{lllll}{ Number \tab
-  ObjectName \tab shortName \tab unitFactor \tab unitName
-  \cr 1 \tab POUNDS_DAY \tab lbs/day \tab 2.204623 \tab
-  pounds/day\cr 2 \tab TONS_DAY \tab tons/day \tab 0.001102
-  \tab tons/day \cr 3 \tab KG_DAY \tab kg/day \tab 1 \tab
-  kg/day \cr 4 \tab THOUSAND_KG_DAY\tab 10^3 kg/day \tab
-  0.001 \tab "thousands of kg/day\cr 5 \tab TONS_YEAR\tab
-  tons/yr \tab 0.402619 \tab tons/year\cr 6 \tab
-  THOUSAND_TONS_YEAR\tab 10^3 tons/yr \tab 0.000402619 \tab
-  thousands of tons/year \cr 7 \tab MILLION_TONS_YEAR\tab
-  10^6 tons/yr \tab 4.02619e-07 \tab millions of
-  tons/year\cr 8 \tab THOUSAND_KG_YEAR\tab 10^3 kg/yr \tab
-  0.36525 \tab thousands of kg/year\cr 9 \tab
-  MILLION_KG_YEAR\tab 10^6 kg/yr \tab 0.00036525 \tab
-  millions of kg/year\cr 10 \tab BILLION_KG_YEAR\tab 10^9
-  kg/yr \tab 3.6525e-07 \tab billions of kg/year \cr }
-}
-\keyword{datasets}
-
diff --git a/man/fluxUnit-class.Rd b/man/fluxUnit-class.Rd
deleted file mode 100644
index 53ebb9cbc1a557c69ca2584724ba316fce7241f7..0000000000000000000000000000000000000000
--- a/man/fluxUnit-class.Rd
+++ /dev/null
@@ -1,16 +0,0 @@
-\name{fluxUnit-class}
-\alias{fluxUnit-class}
-\title{fluxUnit class}
-\description{
-  Some details about the fluxUnit class
-}
-\details{
-  \describe{ \item{shortName}{A character specifying the
-  short name.}
-
-  \item{unitFactor}{A numeric representing the conversion
-  factor}
-
-  \item{unitName}{A character specifying the full name.} }
-}
-