Nothing
# Author: Robert J. Hijmans
# Date : November 2008
# Version 0.9
# Licence GPL v3
.nativeDrivers <- function() {
return( c("raster", "SAGA", "IDRISI", "IDRISIold", "BIL", "BSQ", "BIP") )
}
.nativeDriversLong <- function() {
return( c("R-raster", "SAGA GIS", "IDRISI", "IDRISI (img/doc)", "Band by Line", "Band Sequential", "Band by Pixel") )
}
.isNativeDriver <- function(d) {
return( d %in% .nativeDrivers() )
}
writeFormats <- function() {
if ( .requireRgdal(FALSE) ) {
gd <- .gdalWriteFormats()
short <- c(.nativeDrivers(), 'ascii', 'CDF', as.vector(gd[,1]))
long <- c(.nativeDriversLong(), 'Arc ASCII', 'NetCDF', as.vector(gd[,2]))
# short <- c(.nativeDrivers(), 'ascii', 'CDF', 'big', as.vector(gd[,1]))
# long <- c(.nativeDriversLong(), 'Arc ASCII', 'NetCDF', 'big.matrix', as.vector(gd[,2]))
} else {
short <- c(.nativeDrivers(), 'ascii', 'CDF', "")
long <- c(.nativeDriversLong(), "Arc ASCII", "NetCDF", "", "rgdal not installed")
# short <- c(.nativeDrivers(), 'ascii', 'CDF', 'big', "")
# long <- c(.nativeDriversLong(), "Arc ASCII", "NetCDF", "big.matrix", "", "rgdal not installed")
}
m <- cbind(short, long)
colnames(m) <- c("name", "long_name")
return(m)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.