Skip to content

Types🍋

Angles = TypeVar('Angles', float, int, Vector) module-attribute 🍋

A generic type representing angles definitions in geostatistics.

Axis = TypeVar('Axis', int, GridAxis) module-attribute 🍋

A generic type representing the axis index of a dimension, such as U=0, V=1, W=2.

Data = TypeVar('Data', np.ndarray, pd.Series, List[pd.Series], List[np.ndarray], pd.DataFrame) module-attribute 🍋

A generic type representing data as numpy array, list of numpy arrays, or pandas series.

GeoData = TypeVar('GeoData', Data, gpd.GeoSeries, List[gpd.GeoSeries], BaseGeometry) module-attribute 🍋

A generic type extending Data with geopandas series.

IntArray = TypeVar('IntArray', List[int], np.ndarray) module-attribute 🍋

A generic type representing integer arrays, useful for grid dimension for example.

Vector = TypeVar('Vector', List[float], np.ndarray, Tuple[float], List[List[float]]) module-attribute 🍋

A generic type representing vector.