eemont.eeList.__radd__
- eemont.eeList.__radd__(self, other)[source]
Concatenates the contents of a list onto another list.
- Parameters
self (ee.List) – Right operand.
other (ee.List | list) – Left operand.
- Returns
Concatenation of two lists.
- Return type
ee.List
Examples
>>> import ee, eemont >>> ee.Authenticate() >>> ee.Initialize() >>> eeList = ee.List([1,2,3,4]) >>> normalList = [5,6,7,8] >>> eeList2 = normalList + eeList >>> eeList2.getInfo() [5,6,7,8,1,2,3,4]