Earth Engine introduit des
niveaux de quota non commerciaux pour protéger les ressources de calcul partagées et garantir des performances fiables pour tous. Tous les projets non commerciaux devront sélectionner un niveau de quota d'ici le
27 avril 2026, faute de quoi le niveau "Communauté" sera appliqué par défaut. Les quotas de niveau s'appliqueront à tous les projets (quelle que soit la date de sélection du niveau) à compter du
27 avril 2026.
En savoir plus
ee.Algorithms.ObjectType
Restez organisé à l'aide des collections
Enregistrez et classez les contenus selon vos préférences.
Renvoie une chaîne représentant le type de l'objet donné.
| Utilisation | Renvoie |
|---|
ee.Algorithms.ObjectType(value) | Chaîne |
| Argument | Type | Détails |
|---|
value | Objet, valeur par défaut : null | Objet dont vous souhaitez obtenir le type. |
Exemples
Éditeur de code (JavaScript)
print(ee.Algorithms.ObjectType(1)); // The string "Integer"
print(ee.Algorithms.ObjectType(ee.Number(1))); // The string "Integer"
print(ee.Algorithms.ObjectType(ee.String('a string'))); // The string "String"
print(ee.Algorithms.ObjectType(ee.List([1, 'a string']))); // The string "List"
// ee.Algorithms.ObjectType can be used to get the type of properties
// of ee.Image or ee.Feature objects.
var feature = ee.Feature(
null, // No need for geometry in this example.
{
'int': 42,
'int8': ee.Number(-3).int8(),
});
// The string "Integer"
print('int:', ee.Algorithms.ObjectType(feature.get('int')));
// The string "Long"
print('int8:', ee.Algorithms.ObjectType(feature.get('int8')));
Configuration de Python
Consultez la page
Environnement Python pour en savoir plus sur l'API Python et sur l'utilisation de geemap pour le développement interactif.
import ee
import geemap.core as geemap
Colab (Python)
display(ee.Algorithms.ObjectType(ee.Number(1))) # The string "Integer"
display(ee.Algorithms.ObjectType(ee.String('a string'))) # The string "String"
display(ee.Algorithms.ObjectType(ee.List([1, 'a string']))) # The string "List"
# ee.Algorithms.ObjectType can be used to get the type of properties
# of ee.Image or ee.Feature objects.
feature = ee.Feature(
None, # No need for geometry in this example.
{
'int': 42,
'int8': ee.Number(-3).int8(),
}
)
# The string "Integer"
display('int:', ee.Algorithms.ObjectType(feature.get('int')))
# The string "Long"
display('int8:', ee.Algorithms.ObjectType(feature.get('int8')))
Sauf indication contraire, le contenu de cette page est régi par une licence Creative Commons Attribution 4.0, et les échantillons de code sont régis par une licence Apache 2.0. Pour en savoir plus, consultez les Règles du site Google Developers. Java est une marque déposée d'Oracle et/ou de ses sociétés affiliées.
Dernière mise à jour le 2025/10/30 (UTC).
[null,null,["Dernière mise à jour le 2025/10/30 (UTC)."],[],["`ee.Algorithms.ObjectType(value)` determines the data type of an object, returning it as a string. The function accepts an object as input (`value`). It can identify types like \"Integer,\" \"String,\" and \"List.\" It's also applicable to properties within `ee.Image` or `ee.Feature` objects, such as retrieving the type of a feature's integer attribute, which is \"Integer\" or retrieving the type of a feature's `int8` attribute which is \"Long\".\n"]]