diff --git a/docs/index.html b/docs/index.html index 730c955d7..f120d187c 100644 --- a/docs/index.html +++ b/docs/index.html @@ -1173,7 +1173,8 @@

Functions

def date2index(dates, nctime, calendar=None, select='exact', has_year_zero=None)
-

Return indices of a netCDF time variable corresponding to the given dates.

+

date2index(dates, nctime, calendar=None, select=u'exact', has_year_zero=None)

+

Return indices of a netCDF time variable corresponding to the given dates.

dates: A datetime object or a sequence of datetime objects. The datetime objects should not include a time-zone offset.

nctime: A netCDF time variable object. The nctime object must have a @@ -1212,7 +1213,8 @@

Functions

def date2num(dates, units, calendar=None, has_year_zero=None, longdouble=False)
-

Return numeric time values given datetime objects. The units +

date2num(dates, units, calendar=None, has_year_zero=None, longdouble=False)

+

Return numeric time values given datetime objects. The units of the numeric time values are described by the units argument and the calendar keyword. The datetime objects must be in UTC with no time-zone offset. @@ -1292,7 +1294,8 @@

Functions

def num2date(times, units, calendar='standard', only_use_cftime_datetimes=True, only_use_python_datetimes=False, has_year_zero=None)
-

Return datetime objects given numeric time values. The units +

num2date(times, units, calendar=u'standard', only_use_cftime_datetimes=True, only_use_python_datetimes=False, has_year_zero=None)

+

Return datetime objects given numeric time values. The units of the numeric time values are described by the units argument and the calendar keyword. The returned datetime objects represent UTC with no time-zone offset, even if the specified @@ -1348,14 +1351,18 @@

Functions

rc_get(key)

-

Returns the internal netcdf-c rc table value corresponding to key.

+

Returns the internal netcdf-c rc table value corresponding to key. +See https://docs.unidata.ucar.edu/netcdf-c/current/md_auth.html +for more information on rc files and values.

def rc_set(key, value)

rc_set(key, value)

-

Sets the internal netcdf-c rc table value corresponding to key.

+

Sets the internal netcdf-c rc table value corresponding to key. +See https://docs.unidata.ucar.edu/netcdf-c/current/md_auth.html +for more information on rc files and values.

def set_alignment(threshold, alignment) diff --git a/src/netCDF4/_netCDF4.pyx b/src/netCDF4/_netCDF4.pyx index 9bbc3aaf6..6023406c9 100644 --- a/src/netCDF4/_netCDF4.pyx +++ b/src/netCDF4/_netCDF4.pyx @@ -1323,6 +1323,8 @@ def rc_get(key): **```rc_get(key)```** Returns the internal netcdf-c rc table value corresponding to key. +See +for more information on rc files and values. """ cdef int ierr cdef char *keyc @@ -1345,6 +1347,8 @@ def rc_set(key, value): **```rc_set(key, value)```** Sets the internal netcdf-c rc table value corresponding to key. +See +for more information on rc files and values. """ cdef int ierr cdef char *keyc