Source code for geetools.tools._deprecated_dictionary

"""Legacy methods for the Dictionary class."""
import ee
from deprecated.sphinx import deprecated


@deprecated(version="1.0.0", reason="Use ee.Dictionary.geetools.fromPairs instead")
[docs] def fromList(alist): """Create a ee.Dictionary from a list of [[key, val], [key2, val2]...].""" return ee.Dictionary.geetools.fromPairs(alist)
@deprecated(version="1.0.0", reason="Use ee.Dictionary.geetools.sort instead")
[docs] def sort(dictionary): """Sort a dictionary by keys in ascending order.""" return ee.Dictionary(dictionary).geetools.sort()
@deprecated(version="1.0.0", reason="Use ee.Dictionary.geetools.extract instead")
[docs] def extractList(dictionary, keys): """Extract values from a list of keys.""" return ee.Dictionary(dictionary).geetools.getMany(keys)