R/deg2rad.R

#' Function to convert degrees to radians (trigonemetry)
deg2rad <- function(deg) {
  (deg * pi) / (180)
}
rxlacroix/tilegram documentation built on June 20, 2019, 12:20 a.m.