cfdm.Data.creation_commands¶
- Data.creation_commands(name='data', namespace=None, indent=0, string=True)[source]¶
 Return the commands that would create the data object.
Added 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 cfdm package. This is prefixed to the class name in commands that instantiate instances of cfdm objects. By default, or if
None, the name space is assumed to be consistent with cfdm being imported asimport cfdm.- Parameter example:
 If cfdm was imported as
import cfdm as xyzthen setnamespace='xyz'- Parameter example:
 If cfdm was imported as
from cfdm 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 = cfdm.Data([[0.0, 45.0], [45.0, 90.0]], ... units='degrees_east') >>> print(d.creation_commands()) data = cfdm.Data([[0.0, 45.0], [45.0, 90.0]], units='degrees_east', dtype='f8')
>>> d = cfdm.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'))"]