File: First.R

package info (click to toggle)
r-cran-spatstat.explore 3.7-0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 3,704 kB
  • sloc: ansic: 4,104; sh: 13; makefile: 5
file content (14 lines) | stat: -rw-r--r-- 402 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
##  spatstat.explore/R/First.R

.onLoad <- function(...) reset.spatstat.options()

.onAttach <- function(libname, pkgname) {
  vs <- read.dcf(file=system.file("DESCRIPTION", package="spatstat.explore"),
                 fields="Version")
  vs <- as.character(vs)
  putSpatstatVariable("SpatstatExploreVersion", vs)
  packageStartupMessage(paste("spatstat.explore", vs))
  return(invisible(NULL))
}