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'));
Python setup
See the
Python Environment page for information on the Python API and using
geemap
for interactive development.
import ee
import geemap.core as geemap
Colab (Python)
# A FeatureCollection with an array property value.
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').getInfo())