geetools.List.ListAccessor#

class geetools.List.ListAccessor(obj)#

Toolbox for the ee.List class.

Initialize the List class.

Parameters:

obj (ee.List)

Methods#

complement(other)

Compute the complement of the current list and the other list.

delete(index)

Delete an element from a list.

intersection(other)

Compute the intersection of the current list and the other list.

join([separator])

Format a list to a string.

product(other)

Compute the cartesian product of 2 list.

replaceMany(replace)

Replace many values in a list.

sequence(ini, end[, step])

Create a sequence from ini to end by step.

toStrings()

Convert elements of a list into Strings.

union(other)

Compute the union of the current list and the other list.

zip()

Zip a list of lists.