get_coord

function of dascore.core.coords source

get_coord(
    data: ndarray | None = None,
    values: ndarray | None = None,
    start = None,
    min = None,
    stop = None,
    max = None,
    step = None,
    units: None | pint.registry.Unit | pint.registry.Quantity | str[None, Unit, Quantity, str] = None,
    dtype: str | numpy.dtype[str, dtype] = None,
)-> ‘BaseCoord’

Given multiple types of input, return a coordinate.

This function automatically figures out which kind of Coordinate should be returned for a given type of input.

Parameters

Parameter Description
data An array indicating the values.
values Deprecated, use data instead.
start The start value of the array, inclusive.
min The minimum value, same as start.
stop The stopping value of an array, exclusive.
step The sampling spacing of an array.
units Indication of units.
dtype Only used for compatibility with kwargs produced by other
functions. Doesn’t do anything as dtype is inferred from other
arguments.
Note

The following combinations of input parameters are typical: (start, stop, step) (values) (values, step) - useful for length 1 arrays.

Examples

import numpy as np
from dascore.core import get_coord

# Create a coordinate from a start, stop, and range value.
range_coord = get_coord(start=1, stop=12, step=1)

# Create an identical coordinate from an array.
array_coord = get_coord(data=np.arange(1, 12, 1))
# This array coord should return an identical coordinate
assert range_coord == array_coord

# Coordinate from an array that is sorted, but not evenly sampled
array = np.sort(np.random.rand(20))
array_coord2 = get_coord(data=array)

# Coordinate from random array
array = np.random.rand(20)
array_coord3 = get_coord(data=array)