R/zzz.r

Defines functions .onUnattach .onUnload

.onUnload <- function(lib, pkg) {
	
	# remove GRASS files from cache
	mow("*", verbose = faster("verbose"), ask = FALSE)

	# remove special environment
	rm(.fasterRaster)

	# remove GRASS files
	rgrass::unset.GIS_LOCK()
	rgrass::remove_GISRC()
	rgrass::unlink_.gislock()

}

.onUnattach <- function(lib, pkg) {

	# remove GRASS files from cache
	mow("*", verbose = faster("verbose"), ask = FALSE)

	# remove special environment
	rm(.fasterRaster)

	# remove GRASS files
	rgrass::unset.GIS_LOCK()
	rgrass::remove_GISRC()
	rgrass::unlink_.gislock()

}

Try the fasterRaster package in your browser

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

fasterRaster documentation built on April 3, 2025, 10:44 p.m.