Bases: cf.coordinate.Coordinate
A CF auxiliary coordinate construct.
The coordinate array’s bounds (if present) are stored in the bounds attribute. The climatology CF property indicates if the bounds are intervals of climatological time.
If the coordinate is connected to one or more transform constructs then pointers to the transformations are stored in the transforms attribute.
Initialization
Parameters : |
|
---|
add_offset | The add_offset CF property. |
axis | The axis CF property. |
calendar | The calendar CF property. |
comment | The comment CF property. |
_FillValue | The _FillValue CF property. |
history | The history CF property. |
leap_month | The leap_month CF property. |
leap_year | The leap_year CF property. |
long_name | The long_name CF property. |
missing_value | The missing_value CF property. |
month_lengths | The month_lengths CF property. |
positive | The positive CF property. |
scale_factor | The scale_factor CF property. |
standard_name | The standard_name CF property. |
units | The units CF property. |
valid_max | The valid_max CF property. |
valid_min | The valid_min CF property. |
valid_range | The valid_range CF property. |
array | A numpy array deep copy of the data array. |
data | The cf.Data object containing the data array. |
dtype | Numpy data-type of the data array. |
_FillValue | The _FillValue CF property. |
hardmask | Whether the mask is hard (True) or soft (False). |
isscalar | |
mask | A variable containing the mask of the data array. |
ndim | Number of dimensions in the data array. |
shape | Tuple of the data array’s dimension sizes. |
size | Number of elements in the data array. |
Units | The Units object containing the units of the data array. |
varray | Return a numpy view of the data. |
attributes | A dictionary of the attributes which are not CF properties. |
bounds | The cf.CoordinateBounds object containing the cell bounds. |
hasbounds | True if and only if the coordinate object has cell bounds. |
isscalar | |
properties | A dictionary of the CF properties. |
subspace | Return a new coordinate whose data and bounds are subspaced in a consistent manner. |
T | True if and only if the coordinate is a CF time coordinate. |
X | True if and only if the coordinate is a CF longitude coordinate. |
Y | True if and only if the coordinate is a CF latitude coordinate. |
Z | True if and only if the coordinate is a CF vertical coordinate. |
asauxiliary | Return the auxiliary coordinate. |
asdatetime | Change the internal representation of data array elements from numeric reference times to datatime-like objects. |
asdimension | Return the coordinate recast as a dimension coordinate. |
asreftime | Change the internal representation of data array elements from datatime-like objects to numeric reference times. |
binary_mask | Return a binary (0 and 1) missing data mask of the data array. |
chunk | Partition the data array. |
clip | Clip (limit) the values in the data array and its bounds in place. |
close | Close all files referenced by the coordinate. |
contiguous | Return True if a coordinate is contiguous. |
copy | Return a deep copy. |
cos | Take the trigonometric cosine of the data array and bounds in place. |
datum | Return an element of the data array as a standard Python scalar. |
delattr | Delete a named attribute. |
delprop | Delete a CF property. |
dump | Return a string containing a full description of the coordinate. |
equals | True if two variables are logically equal, False otherwise. |
expand_dims | Insert a size 1 axis into the data array and bounds in place. |
fill_value | Return the data array missing data value. |
flip | Flip dimensions of the data array and bounds in place. |
getattr | Get a named attribute. |
getprop | Get a CF property. |
hasprop | Return True if a CF property exists, otherise False. |
identity | Return the variable’s identity. |
insert_bounds | Insert cell bounds into the coordinate in-place. |
insert_data | Insert a new data array into the coordinate in place. |
match | Determine whether or not a variable satisfies conditions. |
name | Return a name for the variable. |
override_units | Override the data array units in place. |
select | Return the instance if it matches the given conditions. |
setattr | Set a named attribute. |
setdata | Set data array elements depending on a condition. |
setprop | Set a CF property. |
sin | Take the trigonometric sine of the data array and bounds in place. |
squeeze | Remove size 1 dimensions from the data array and bounds in place. |
transpose | Permute the dimensions of the data array and bounds in place. |