@@ -13,9 +13,8 @@ function-call style methods or indexer-style (numpy-like) syntax.
13
13
14
14
.. autoclass :: pnetcdf::Variable
15
15
:members: ncattrs, put_att, get_att, del_att, rename_att, get_dims, def_fill,
16
- inq_fill, fill_rec, set_auto_chartostring, set_auto_scale, set_auto_mask,
17
- set_auto_maskandscale, put_var, put_var_all, get_var, get_var_all, iput_var, bput_var
18
- iget_var, inq_offset
16
+ inq_fill, fill_rec, set_auto_chartostring, put_var, put_var_all, get_var,
17
+ get_var_all, iput_var, bput_var iget_var, inq_offset
19
18
:exclude-members: name, shape, size
20
19
21
20
@@ -31,7 +30,7 @@ Variable Attributes
31
30
.. attribute :: dtype
32
31
33
32
34
- Return the mapped numpy data type of the variable netCDF datatype. A numpy dtype object
33
+ Return the mapped numpy data type of the variable netCDF datatype. A numpy dtype object
35
34
describing the variable's data type.
36
35
**Type: ** ``numpy.dtype ``
37
36
@@ -44,7 +43,7 @@ Variable Attributes
44
43
.. attribute :: shape
45
44
46
45
47
- Return the shape of the variable, which is the current sizes of all variable
46
+ Return the shape of the variable, which is the current sizes of all variable
48
47
dimensions
49
48
**Type: ** `Tuple[int, int] `
50
49
@@ -66,26 +65,8 @@ Variable Attributes
66
65
Return the variable's dimension names
67
66
**Type: ** `List[str] `
68
67
69
- .. attribute :: scale
70
-
71
- Only relevant when using indexer syntax to read from or write to netCDF variable.
72
- If True, `scale_factor ` and `add_offset ` are applied, and signed integer data is
73
- automatically converted to unsigned integer data if the `_Unsigned ` attribute is set.
74
- Default is `True `, can be reset using :meth: `Variable.set_auto_scale ` and
75
- :meth: `Variable.set_auto_maskandscale ` methods.
76
- **Type: ** `bool `
77
-
78
- .. attribute :: mask
79
-
80
- Only relevant when using indexer syntax to read from netCDF variable. If `True `,
81
- data is automatically converted to/from masked arrays when missing values or fill
82
- values are present. Default is `True `, can be reset using :meth: `Variable.set_auto_mask `
83
- and :meth: `Variable.set_auto_maskandscale ` methods.
84
- **Type: ** `bool `
85
-
86
68
.. attribute :: chartostring
87
69
88
-
89
70
If `True `, data is automatically converted to/from character
90
71
arrays to string arrays when the `_Encoding ` variable attribute is set.
91
72
Default is `True `, can be reset using :meth: `Variable.set_auto_chartostring ` method.
0 commit comments