geetools.tools._deprecated_ee_list#

Legacy tools for the ee.List class.

Module Contents#

Functions#

difference(list1, list2)

Return the difference between two lists.

format(eelist)

Format a list to a string.

getFromDict(eelist, values)

Get a list of Dict's values from a list object.

intersection(list1, list2)

Return the intersection between two lists.

removeDuplicates(list)

Remove duplicates from a list.

removeIndex(list, index)

Remove an element from a list by index.

replaceDict(eelist, to_replace)

Replace many elements of a Earth Engine List object using a dictionary.

sequence(start, stop[, step])

Create a sequence of numbers.

toString(eelist)

Convert elements of a list into Strings.

transpose(eelist)

Transpose a list of lists.

zip(eelist)

Zip a list of lists.

geetools.tools._deprecated_ee_list.difference(list1, list2)[source]#

Return the difference between two lists.

geetools.tools._deprecated_ee_list.format(eelist)[source]#

Format a list to a string.

geetools.tools._deprecated_ee_list.getFromDict(eelist, values)[source]#

Get a list of Dict’s values from a list object.

geetools.tools._deprecated_ee_list.intersection(list1, list2)[source]#

Return the intersection between two lists.

geetools.tools._deprecated_ee_list.removeDuplicates(list)[source]#

Remove duplicates from a list.

geetools.tools._deprecated_ee_list.removeIndex(list, index)[source]#

Remove an element from a list by index.

geetools.tools._deprecated_ee_list.replaceDict(eelist, to_replace)[source]#

Replace many elements of a Earth Engine List object using a dictionary.

geetools.tools._deprecated_ee_list.sequence(start, stop, step=1)[source]#

Create a sequence of numbers.

geetools.tools._deprecated_ee_list.toString(eelist)[source]#

Convert elements of a list into Strings.

geetools.tools._deprecated_ee_list.transpose(eelist)[source]#

Transpose a list of lists.

geetools.tools._deprecated_ee_list.zip(eelist)[source]#

Zip a list of lists.