Extract a property from a feature.
Usage | Returns | FeatureCollection.getArray(property) | Array |
Argument | Type | Details | this: object | Element | The feature to extract the property from. |
property | String | The property to extract. |
Examples
Code Editor (JavaScript)
// A FeatureCollection with an array property value.
var fc = ee.FeatureCollection([]).set('array_property', ee.Array([1, 2, 3, 4]));
// Fetch the array property value as an ee.Array object.
print('Array property value as ee.Array', fc.getArray('array_property'));