Extract a property from a feature.
Usage | Returns | FeatureCollection.getString(property) | String |
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 a string property value.
var fc = ee.FeatureCollection([]).set('string_property', 'Abies magnifica');
// Fetch the string property value as an ee.String object.
print('String property value as ee.String', fc.getString('string_property'));