Annonce : Tous les projets non commerciaux enregistrés pour utiliser Earth Engine avant le 15 avril 2025 doivent vérifier leur éligibilité non commerciale pour conserver leur accès à Earth Engine.
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/07/25 (UTC).
[[["Facile à comprendre","easyToUnderstand","thumb-up"],["J'ai pu résoudre mon problème","solvedMyProblem","thumb-up"],["Autre","otherUp","thumb-up"]],[["Il n'y a pas l'information dont j'ai besoin","missingTheInformationINeed","thumb-down"],["Trop compliqué/Trop d'étapes","tooComplicatedTooManySteps","thumb-down"],["Obsolète","outOfDate","thumb-down"],["Problème de traduction","translationIssue","thumb-down"],["Mauvais exemple/Erreur de code","samplesCodeIssue","thumb-down"],["Autre","otherDown","thumb-down"]],["Dernière mise à jour le 2025/07/25 (UTC)."],[[["The `aside()` function allows calling a specified function with the current object as the first argument without altering the object itself, enabling debugging and side-effect operations within a processing chain."],["It returns the original object, making it suitable for chaining with other Earth Engine operations."],["`aside()` accepts a function and optional additional arguments, which are passed to the function alongside the object."],["This functionality is useful for printing intermediate results, displaying data on a map, or performing other actions without interrupting the workflow."],["Examples in JavaScript and Python demonstrate how `aside()` can be integrated into Earth Engine scripts for various purposes."]]],["The `aside` function calls a specified function (`func`) using the current object as the first argument, along with any additional arguments (`var_args`). It then returns the original object, enabling method chaining. This is useful for debugging and inspecting intermediate steps. The function accepts a `ComputedObject`, a function, and optional arguments. It's demonstrated in both JavaScript and Python, with examples showcasing usage with and without `var_args`, and in the middle of a call chain.\n"]]