Contents Menu Expand Light mode Dark mode Auto light/dark, in light mode Auto light/dark, in dark mode Skip to content
PyInterp
Light Logo Dark Logo
  • Changelog
  • Installing the library
    • Building
    • Setup with pip
    • Setup with Anaconda
  • Example Gallery
    • Descriptive Statistics
    • Numpy date utilities
    • 4D interpolation
    • Create interpolator objects
    • 3D interpolation
    • Axis
    • Interpolation of LLC4320 ocean model
    • 2D interpolation
    • Binning
    • Unstructured grid
    • Fill NaN values
    • Orbit Interpolation
    • Time series
    • Geohash
    • Geodetic
  • API Documentation
  • Core API Documentation
Back to top
View this page

pyinterp.core.Grid2DFloat64¶

class pyinterp.core.Grid2DFloat64(self, x: pyinterp.core.Axis, y: pyinterp.core.Axis, array: numpy.ndarray)¶

Bases: pybind11_object

Cartesian Grid 2D.

Parameters:
  • x – X-Axis.

  • y – Y-Axis.

  • array – Bivariate function.

Attributes

array

Gets the values handled by this instance.

x

Gets the X-Axis handled by this instance.

y

Gets the Y-Axis handled by this instance.

Protected Methods

_pybind11_conduit_v1_

Special Methods

__getstate__(self)

__setstate__(self, arg0)

Next
pyinterp.core.Grid2DFloat64.array
Previous
pyinterp.core.Grid2DFloat32.__setstate__
Copyright © (2025, CNES/CLS)
Made with Sphinx and @pradyunsg's Furo
On this page
  • pyinterp.core.Grid2DFloat64
    • Grid2DFloat64