Usage | Returns |
---|---|
FeatureCollection.getNumber(property) | Number |
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 number property value. var fc = ee.FeatureCollection([]).set('number_property', 1.5); // Fetch the number property value as an ee.Number object. print('Number property value as ee.Number', fc.getNumber('number_property'));