Displaying 3 results from an estimated 3 matches for "ncvar_def".
2013 Feb 05
1
ncdf4 installation problem: undefined symbol [SEC=UNCLASSIFIED]
...get html
ncatt_put html
ncdf4-internal html
ncdim_def html
ncvar_add html
ncvar_change_missval html
ncvar_def html
Rd warning: /tmp/RtmpSxjZ1u/R.INSTALL3e7b250a942e/ncdf4/man/ncvar_def.Rd:67: missing file link 'ncvar_put'
Rd warning: /tmp/RtmpSxjZ1u/R.INSTALL3e7b250a942e/ncdf4/man/ncvar_def.Rd:100: missing file link 'ncvar_put'
ncvar_get...
2017 Aug 14
2
ncdf4: Why are NAs converted to _FillValue when saving?
...vals)
xdim <- ncdim_def('Lon','degreesE', xvals )
ydim <- ncdim_def('Lat','degreesE', yvals )
tdim <- ncdim_def('Time','days since 1900-01-01', 0, unlim=TRUE )
#---------
# Make var
#---------
mv <- 1.e30 # missing value
var_temp <- ncvar_def('Temperature','K', list(xdim,ydim,tdim), mv )
#---------------------
# Make new output file
#---------------------
output_fname <-'test_real3d.nc'
ncid_new <- nc_create( output_fname, list(var_temp))
#-------------------------------
# Put some test data in the file
#--...
2017 Aug 14
0
ncdf4: Why are NAs converted to _FillValue when saving?
...','degreesE', xvals )
> ydim <- ncdim_def('Lat','degreesE', yvals )
> tdim <- ncdim_def('Time','days since 1900-01-01', 0, unlim=TRUE )
> #---------
> # Make var
> #---------
> mv <- 1.e30 # missing value
> var_temp <- ncvar_def('Temperature','K', list(xdim,ydim,tdim), mv )
> #---------------------
> # Make new output file
> #---------------------
> output_fname <-'test_real3d.nc'
> ncid_new <- nc_create( output_fname, list(var_temp))
> #-------------------------------
> #...