MCPcopy Index your code
hub / github.com/pydata/xarray / encode

Method encode

xarray/coding/common.py:39–41  ·  view source on GitHub ↗

Convert an encoded variable to a decoded variable

(self, variable: Variable, name: T_Name = None)

Source from the content-addressed store, hash-verified

37 """
38
39 def encode(self, variable: Variable, name: T_Name = None) -> Variable:
40 """Convert an encoded variable to a decoded variable"""
41 raise NotImplementedError()
42
43 def decode(self, variable: Variable, name: T_Name = None) -> Variable:
44 """Convert a decoded variable to an encoded variable"""

Calls

no outgoing calls