ee.FeatureCollection.getNumber
Extract a property from a feature.
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
// 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'));
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
# A FeatureCollection with a number property value.
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').getInfo())
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2023-10-06 UTC.
[null,null,["Last updated 2023-10-06 UTC."],[[["The `getNumber()` method extracts a numerical property from an Earth Engine FeatureCollection."],["It takes the property name as an argument and returns the property value as an ee.Number object."],["This method is useful for accessing specific numerical data stored within a FeatureCollection's properties."]]],[]]