pyinterp.core.AxisInt64#

class pyinterp.core.AxisInt64(self, values: numpy.ndarray[numpy.int64])#

Bases: pybind11_object

A coordinate axis is a Variable that specifies one of the coordinates of a variable’s values.

Parameters:

values – Axis values.

Public Methods

back(self)

Get the last value of this axis.

find_index(self, coordinates[, bounded])

Given coordinate positions, find what grid elements contains them, or is closest to them.

find_indexes(self, coordinates)

For all coordinate positions, search for the axis elements around them.

flip(self[, inplace])

Reverse the order of elements in this axis.

front(self)

Get the first value of this axis.

increment(self)

Get increment value if is_regular().

is_ascending(self)

Test if the data is sorted in ascending order.

is_regular(self)

Check if this axis values are spaced regularly.

max_value(self)

Get the maximum coordinate value.

min_value(self)

Get the minimum coordinate value.

Special Methods

__copy__(self)

Implements the shallow copy operation.

__eq__(self, other)

Overrides the default behavior of the == operator.

__getitem__(*args, **kwargs)

Overloaded function.

__getstate__(self)

__len__(self)

Called to implement the built-in function len()

__ne__(self, other)

Overrides the default behavior of the != operator.

__repr__(self)

Called by the repr() built-in function to compute the string representation of an Axis.

__setstate__(self, arg0)