cf.Data.creation_commands¶
-
Data.creation_commands(name='data', namespace=None, indent=0, string=True)[source]¶ Return the commands that would create the data object.
New in version (cfdm): 1.8.7.0
- Parameters
- name:
strorNone, optional Set the variable name of
Dataobject that the commands create.- namespace:
str, optional The name space containing classes of the cf package. This is prefixed to the class name in commands that instantiate instances of cf objects. By default, or if
None, the name space is assumed to be consistent with cf being imported asimport cf.- Parameter example:
If cf was imported as
import cf as xyzthen setnamespace='xyz'- Parameter example:
If cf was imported as
from cf import *then setnamespace=''
- indent:
int, optional Indent each line by this many spaces. By default no indentation is applied. Ignored if string is False.
- string:
bool, optional If False then return each command as an element of a
list. By default the commands are concatenated into a string, with a new line inserted between each command.
- name:
- Returns
Examples
>>> d = cf.Data([[0.0, 45.0], [45.0, 90.0]], ... units='degrees_east') >>> print(d.creation_commands()) data = cf.Data([[0.0, 45.0], [45.0, 90.0]], units='degrees_east', dtype='f8')
>>> d = cf.Data(['alpha', 'beta', 'gamma', 'delta'], ... mask = [1, 0, 0, 0]) >>> d.creation_commands(name='d', namespace='', string=False) ["d = Data(['', 'beta', 'gamma', 'delta'], dtype='U5', mask=Data([True, False, False, False], dtype='b1'))"]