eemont.eeList.__add__

eemont.eeList.__add__(self, other)[source]

Concatenates the contents of a list onto another list.

Parameters
  • self (ee.List) – Left operand.

  • other (ee.List | list) – Right operand.

Returns

Concatenation of two lists.

Return type

ee.List

Examples

>>> import ee, eemont
>>> ee.Authenticate()
>>> ee.Initialize()
>>> eeList1 = ee.List([1,2,3,4])
>>> eeList2 = ee.List([5,6,7,8])
>>> eeList3 = eeList1 + eeList2
>>> eeList3.getInfo()
[1,2,3,4,5,6,7,8]