R/zzz.R

Defines functions .onLoad

.onLoad <- function(libname, pkgname) {
  op <- options()
  op.graticule <- list(
    graticule.mindist = 5e4
  )
  toset <- !(names(op.graticule) %in% names(op))
  if (any(toset)) options(op.graticule[toset])

  invisible()
}

Try the graticule package in your browser

Any scripts or data that you put into this service are public.

graticule documentation built on Sept. 25, 2023, 5:06 p.m.