Bases: cf.coordinate.Coordinate
A CF dimension coordinate construct.
Attributes
Attribute | Type | Description |
---|---|---|
climatology | bool | Whether or not the bounds are intervals of climatological time. Presumed to be False if unset. |
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. |
attributes | A dictionary of the attributes which are not CF properties. |
bounds | The cf.CoordinateBounds object containing the cell bounds. |
cellsize | A cf.Data object containing the coordinate cell sizes. |
ctype | The CF coordinate type. |
data | The cf.Data object containing the data array. |
day | The day of each date-time data array element. |
dtarray | An independent numpy array of date-time objects. |
dtvarray | A numpy array view the data array converted to date-time objects. |
dtype | Numpy data-type of the data array. |
hour | The hour of each date-time data array element. |
hardmask | Whether the mask is hard (True) or soft (False). |
hasbounds | True if there are cell bounds. |
isauxiliary | True for auxiliary coordinate constructs, False otherwise. |
isdimension | True for dimension coordinate constructs, False otherwise. |
isscalar | True if the data array is scalar. |
lower_bounds | The lower dimension coordinate bounds in a cf.Data object. |
mask | A variable containing the mask of the data array. |
minute | The minute of each date-time data array element. |
month | The month of each date-time data array element. |
ndim | The number of dimensions in the data array. |
properties | A dictionary of the CF properties. |
second | The second of each date-time data array element. |
shape | A tuple of the data array’s dimension sizes. |
size | The number of elements in the data array. |
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 T axis coordinate. |
unique() | The unique elements of the data array. |
Units | The Units object containing the units of the data array. |
upper_bounds | The upper dimension coordinate bounds in a cf.Data object. |
varray | A numpy array view of the data array. |
X | True if and only if the coordinate is a CF X axis coordinate. |
Y | True if and only if the coordinate is a CF Y axis coordinate. |
year | The year of each date-time data array element. |
Z | True if and only if the coordinate is a CF Z axis coordinate. |
asauxiliary | Return the coordinate recast as an auxiliary coordinate. |
asdatetime | Convert the internal representation of data array elements to date-time objects. |
asdimension | Return the dimension coordinate. |
asreftime | Convert the internal representation of data array elements 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. |
delprop | Delete a CF property. |
direction | Return True if the dimension coordinate is increasing, otherwise return False. |
dump | Return a string containing a full description of the coordinate. |
equals | True if two dimension coordinates are 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. |
get_bounds | Get the cell bounds. |
getprop | Get a CF property. |
hasprop | Return True if a CF property exists, otherise False. |
identity | Return the 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. |
max | The maximum of the data array. |
mean | The unweighted mean the data array. |
mid_range | The unweighted average of the maximum and minimum of the data array. |
min | The minimum of the data array. |
name | Return a name. |
override_units | i : bool, optional |
period | Set the period for cyclic coordinates. |
range | The absolute difference between the maximum and minimum of the data array. |
sample_size | The number of non-missing data elements in the data array. |
sd | The unweighted sample standard deviation of the data array. |
select | Return the instance if it matches the given conditions. |
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. |
sum | The sum of the data array. |
transpose | Permute the dimensions of the data array and bounds in place. |
unique | The unique elements of the data array. |
var | The unweighted sample variance of the data array. |
where | Set data array elements depending on a condition. |