append(value) |
S.append(value) – append value to the end of the sequence |
assign_root() |
(Re-)Create root object according CfRadial2 standard |
clear() |
|
count(value) |
|
extend(values) |
S.extend(iterable) – extend sequence by appending elements from the iterable |
index(value, [start, [stop]]) |
Raises ValueError if the value is not present. |
insert(pos, val) |
S.insert(index, value) – insert value before index |
pop([index]) |
Raise IndexError if list is empty or index is out of range. |
remove(value) |
S.remove(value) – remove first occurrence of value. |
reverse() |
S.reverse() – reverse IN PLACE |
sort(**kwargs) |
|
to_cfradial2(filename[, timestep]) |
Save volume to CfRadial2 compliant file. |
to_netcdf(filename[, timestep]) |
Save volume to netcdf compliant file. |
to_odim(filename[, timestep]) |
Save volume to ODIM_H5/V2_2 compliant file. |