coarseR {HiClimR} | R Documentation |
Coarsening spatial resolution for gridded data
Description
coarseR
is a helper function that helps coarsening spatial
resolution of the input matrix for the HiClimR
function.
Usage
coarseR(x = x, lon = lon, lat = lat, lonStep = 1, latStep = 1, verbose = TRUE)
Arguments
x |
an ( |
lon |
a vector of longitudes with length |
lat |
a vector of latitudes with length |
lonStep |
an integer greater than or equal to |
latStep |
an integer greater than or equal to |
verbose |
logical to print processing information if |
Details
For high-resolution data, the computational and memory requirements may not be
met on old machines. This function enables the user to use coarser data in any
spatial dimension:longitude, latitude, or both. It is available for testing
or running HiClimR
package on old computers or machines with small memory
resources. The rows of output matrix (x
component) will be also named
by longitude and latitude coordinates. If lonStep = 1
and latStep = 1
,
coarseR
function will just rename rows of matrix x
.
Value
A list with the following components:
lon |
longitude mesh vector for the coarsened data. |
lat |
latitude mesh vector for the coarsened data. |
rownum |
original row numbers for the coarsened data. |
x |
coarsened data of the input data matrix |
Author(s)
Hamada S. Badr <badr@jhu.edu>, Benjamin F. Zaitchik <zaitchik@jhu.edu>, and Amin K. Dezfuli <amin.dezfuli@nasa.gov>.
References
Hamada S. Badr, Zaitchik, B. F., and Dezfuli, A. K. (2015): A Tool for Hierarchical Climate Regionalization, Earth Science Informatics, 8(4), 949-958, doi: 10.1007/s12145-015-0221-7.
Hamada S. Badr, Zaitchik, B. F., and Dezfuli, A. K. (2014): Hierarchical Climate Regionalization, Comprehensive R Archive Network (CRAN), https://cran.r-project.org/package=HiClimR.
See Also
HiClimR
, HiClimR2nc
, validClimR
,
geogMask
, coarseR
, fastCor
,
grid2D
and minSigCor
.
Examples
require(HiClimR)
## Load test case data
x <- TestCase$x
## Generate longitude and latitude mesh vectors
xGrid <- grid2D(lon = unique(TestCase$lon), lat = unique(TestCase$lat))
lon <- c(xGrid$lon)
lat <- c(xGrid$lat)
## Coarsening spatial resolution
xc <- coarseR(x = x, lon = lon, lat = lat, lonStep = 2, latStep = 2)
lon <- xc$lon
lat <- xc$lat
x <- xc$x