geetools.List.ListAccessor.zip#

geetools.List.ListAccessor.zip()#

Zip a list of lists.

The nested lists need to all have the same size. The size of the first element will be taken as reference.

Returns:

A list of lists with the zipped elements

Return type:

ee.List

Examples

import ee, geetools

ee.Initialize()

l = ee.List([[1,2,3], [4,5,6], [7,8,9]])
l.geetools.zip().getInfo()