Skip to content

Commit

Permalink
version 0.7.1.291
Browse files Browse the repository at this point in the history
  • Loading branch information
JButtlar authored and gaborcsardi committed Jan 1, 2014
1 parent 6e71738 commit d3418a3
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 17 deletions.
8 changes: 4 additions & 4 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
Package: ncdf.tools
Title: Easier ncdf file handling
Version: 0.7.1.290
Version: 0.7.1.291
Date: 2014-01-01
Author: Jannis v. Buttlar
Maintainer: Jannis v. Buttlar <jbuttlar@bgc-jena.mpg.de>
Imports: RNetCDF, chron, foreach, doMC, abind, plotrix, raster,
Imports: RNetCDF, chron, parallel, abind, plotrix, raster,
RColorBrewer, JBTools
Description: Set of tools to simplify the handling of ncdf files with the RNetCDF package.
Most functions are wrappers for basic functions from RNetCDF to easily run combinations of these
functions for frequently encountered tasks.
License: GPL-2
LazyLoad: yesf
Depends: R (>= 2.10.0)
Packaged: 2014-04-04 13:13:29 UTC; jbuttlar
Packaged: 2014-04-07 08:32:30 UTC; jbuttlar
NeedsCompilation: no
Repository: CRAN
Date/Publication: 2014-04-04 16:07:58
Date/Publication: 2014-04-07 12:16:59
8 changes: 4 additions & 4 deletions MD5
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
9c71451993c36759a680be40e45736da *DESCRIPTION
c2d4120c25a17b7fe6dc9ce9842d9bf7 *NAMESPACE
b0f1f8206ceee9e10c51aac2ecc0b1f3 *DESCRIPTION
4000d6c51cfc34ee4b733d16b3f3eb70 *NAMESPACE
31ed0170885d36f1a27c0b96950cbf31 *R/aggregateNcdf.R
39f6dc588368cd5a21253e09834377d6 *R/checkNcdfFile.R
e4ab87c707034a8405905cfcfd726bce *R/classR2Ncdf.R
Expand All @@ -22,7 +22,7 @@ c4606338a5ff09c39c13fcf960bb9e31 *R/modifyNcdfCopyMetadata.R
9f7b455fa53fbbdbdec157f5211691b6 *R/modifyNcdfDefAtts.R
89bcac81aac7db43fef762d742589407 *R/modifyNcdfSetMissing.R
4848b64bc3d40e6d18927a58877860af *R/modifyNcdfStdNames.R
e2cf403708fb0b7d24607cf00276bf19 *R/plotDatacube.R
9db96a2232f0e694a89b469e052ca2a4 *R/plotDatacube.R
77240dbe19b7644333a7168128d7577f *R/readFLUXNETNcdf.R
78dfd25bb340093f34a790b620c9e176 *R/readNcdf.R
715b4ecf9418cd49984dd55ff973385b *R/readNcdfCoordinates.R
Expand Down Expand Up @@ -54,7 +54,7 @@ efab8e85916585ce6651387153b11360 *man/modifyNcdfAddDim.Rd
c5b8830cc2686a05c587181385082c92 *man/modifyNcdfDefAtts.Rd
f00b4367a1787fb3cd4999c18cffba84 *man/modifyNcdfSetMissing.Rd
c570fe6867d658763dca0c3ef4b9dfb1 *man/modifyNcdfStdNames.Rd
80b2a7cd1a46a4d30ffa990f5fd376c2 *man/ncdf.tools-package.Rd
bc06e7a992639cf22c80469b082c96bc *man/ncdf.tools-package.Rd
f0b4b5e2c1e5771800898ba280018a41 *man/plotDatacube.Rd
0c4407ac7999fc7d2f7217a34e8b4fb4 *man/readFLUXNETNcdf.Rd
34e36d7a7c32510e2f5761c9d7b0276e *man/readNcdf.Rd
Expand Down
5 changes: 1 addition & 4 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,13 @@ exportPattern("^[^\\.]")
#useDynLib(ProjectsDllBaseName) # only required when supplying C or FORTRAN code

import(RNetCDF)
importFrom(chron, chron, as.chron, years)
importFrom(chron, chron, as.chron, years, seq.dates)
importFrom(abind, abind)
import(foreach)
import(doMC)
importFrom(raster, raster)
importFrom(JBTools, checkInstalled, convertArgs2String, getVecInfo,
getSysinfo, indexDimVecs2Matrix, isSeriesContinuous, isSeriesConstant,
labelMargins, MEF, plotImageRotated, plotBG, plotNLines, printStatus,
rangeZeroEqui, registerParallel, RMSE, userCoords, whichClosest)
importFrom(RColorBrewer, brewer.pal)
import(parallel)
importFrom(chron, seq.dates)
importFrom(plotrix, color.legend)
4 changes: 1 addition & 3 deletions R/plotDatacube.R
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,7 @@ plotDatacube <- function(
cat('Preparing stuff ...\n')
if (parallel) {
cat('Registering cluster ...\n')
if (!exists('cl') || !inherits(cl, 'cluster')) {
cl <- makeCluster(max.cores)
}
cl <- makeCluster(max.cores)
}
if (class(data.object) == 'NetCDF') {
file.con = data.object
Expand Down
4 changes: 2 additions & 2 deletions man/ncdf.tools-package.Rd
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ functions for frequently encountered tasks.}
\details{
\tabular{ll}{Package: \tab ncdf.tools\cr
Title: \tab Easier ncdf file handling\cr
Version: \tab 0.7.1.289\cr
Version: \tab 0.7.1.290\cr
Date: \tab 2014-01-01\cr
Author: \tab Jannis v. Buttlar\cr
Maintainer: \tab Jannis v. Buttlar <jbuttlar@bgc-jena.mpg.de>\cr
Imports: \tab RNetCDF, chron, foreach, doMC, abind, plotrix, raster, RColorBrewer, JBTools\cr
Imports: \tab RNetCDF, chron, parallel, abind, plotrix, raster, RColorBrewer, JBTools\cr
License: \tab GPL-2\cr
LazyLoad: \tab yesf\cr
Depends: \tab R (>= 2.10.0)\cr}
Expand Down

0 comments on commit d3418a3

Please sign in to comment.