R/unitconversion.square.mile.to.section.R

Defines functions unitconversion.square.mile.to.section

Documented in unitconversion.square.mile.to.section

#' Unit Conversion - Area - Square Mile to Section
#' 
#' Performs a conversion of areas from square miles (U.S. Survey) to sections. 
#'
#' @param x Vector - Values in units of square miles or sections
#'
#' @return x since conversion factor is 1.
#'
#' @references
#' NIST. Handbook 133 - Checking the Net Contents of Packaged Goods - Appendix E -  General Tables of Units of Measurement. 2020.  
#' https://www.nist.gov/system/files/documents/2019/12/03/00-20-h133-apdxE_final-17.pdf
unitconversion.square.mile.to.section <- function(
  x = 1
) {
  x
}
burrm/lolcat documentation built on Sept. 15, 2023, 11:35 a.m.