ee.FeatureCollection.getArray

  • FeatureCollection.getArray() extracts the value of the specified property from a FeatureCollection as an ee.Array object.

  • The function takes the property name as an argument and returns the corresponding value as an ee.Array, if the property exists and holds an array value.

  • The examples demonstrate how to use FeatureCollection.getArray() in JavaScript and Python to retrieve an array property value from a FeatureCollection.

Extract a property from a feature.

UsageReturns
FeatureCollection.getArray(property)Array
ArgumentTypeDetails
this: objectElementThe feature to extract the property from.
propertyStringThe 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())