-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Several changes for successful R CMD check
- Loading branch information
Showing
36 changed files
with
42 additions
and
60 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,19 @@ | ||
Package: downscaleR | ||
Depends: | ||
rJava, | ||
downscaleR.java, | ||
maps, | ||
R(>= 3.0.0) | ||
Imports: | ||
utils, | ||
RCurl, | ||
rJava, | ||
abind, | ||
fields, | ||
MASS, | ||
R(>= 3.0.0) | ||
MASS | ||
Type: Package | ||
Title: R package for climate data analysis and downscaling | ||
Version: 0.2-2 | ||
Date: 20-Aug-2014 | ||
Date: 22-Aug-2014 | ||
Author: Santander Meteorology Group <http://www.meteo.unican.es> | ||
Maintainer: Joaquin Bedia <[email protected]> | ||
BugReports: https://github.com/SantanderMetGroup/downscaleR/issues | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,6 @@ S. Herrera and J. Bedia \email{[email protected]} | |
} | ||
\seealso{ | ||
Other loading.grid: \code{\link{interpGridData}}; | ||
\code{\link{loadGridData}}; \code{\link{loadMultiField}}; | ||
\code{\link{plotEOF}} | ||
\code{\link{loadGridData}}; \code{\link{loadMultiField}} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -64,7 +64,6 @@ J. Bedia \email{[email protected]} and S. Herrera | |
} | ||
\seealso{ | ||
Other loading.grid: \code{\link{getGrid}}; | ||
\code{\link{loadGridData}}; \code{\link{loadMultiField}}; | ||
\code{\link{plotEOF}} | ||
\code{\link{loadGridData}}; \code{\link{loadMultiField}} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
% Generated by roxygen2 (4.0.1): do not edit by hand | ||
\name{makeMultifield} | ||
\alias{makeMultifield} | ||
\name{makeMultiField} | ||
\alias{makeMultiField} | ||
\title{Constructor of a multifield from various fields, supporting multimember fields.} | ||
\usage{ | ||
makeMultifield(field.list) | ||
makeMultiField(field.list) | ||
} | ||
\arguments{ | ||
\item{field.list}{A list containing the different input fields, either multimember or not.} | ||
|
@@ -48,7 +48,7 @@ range(iberia_ncep_ta850$Dates$end) # start and end are identical (instantaneous) | |
# sea-level pressure | ||
range(iberia_ncep_psl$Dates$start) | ||
range(iberia_ncep_psl$Dates$end) # start and end differ in 24 h (daily mean) | ||
mf <- makeMultifield(list(iberia_ncep_hus850, iberia_ncep_psl, iberia_ncep_ta850)) | ||
mf <- makeMultiField(list(iberia_ncep_hus850, iberia_ncep_psl, iberia_ncep_ta850)) | ||
# The new object inherits the global attributes from the first field, as it is assumed | ||
# that all input fields come from the same data source: | ||
attributes(mf) | ||
|
@@ -61,7 +61,7 @@ plotMeanField(mf) | |
data(tasmax_forecast) | ||
data(tasmin_forecast) | ||
data(tp_forecast) | ||
mm.mf <- makeMultifield(field.list = list(tasmax_forecast, tasmin_forecast, tp_forecast)) | ||
mm.mf <- makeMultiField(field.list = list(tasmax_forecast, tasmin_forecast, tp_forecast)) | ||
# 'plotMeanField' can just handle the multi-member mean for each variable in this case: | ||
plotMeanField(mm.mf) | ||
} | ||
|
@@ -70,7 +70,7 @@ J. bedia \email{[email protected]} | |
} | ||
\seealso{ | ||
\code{\link{loadGridData}} and \code{\link[ecomsUDG.Raccess]{loadECOMS}} for loading fields (the latter also for loading | ||
multimember fields), \code{\link{loadMultifield}}, which directly loads a multifield. \code{\link{interpGridData}} and \code{\link{getGrid}} | ||
multimember fields), \code{\link{loadMultiField}}, which directly loads a multifield. \code{\link{interpGridData}} and \code{\link{getGrid}} | ||
for spatial consistency of input fields. | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters