R/inch_to_metre.R

Defines functions inch_to_metre

Documented in inch_to_metre

#' Convert inch to metre
#' 
#' \code{inch_to_metre} converts a length in inches to metres.
#' 
#' @param value Length (in inches) to convert to metres
#' 
#' @return Length in metres
#' @export
inch_to_metre <- function(value) return(value/0.3937008/100)
rogiersbart/groundwaterr documentation built on May 27, 2019, 1:10 p.m.