Anúncio: todos os projetos não comerciais registrados para usar o Earth Engine antes de 15 de abril de 2025 precisam verificar a qualificação não comercial para manter o acesso ao Earth Engine.
Mantenha tudo organizado com as coleções
Salve e categorize o conteúdo com base nas suas preferências.
Recupera de forma assíncrona o valor desse objeto do servidor e o transmite para a função de callback fornecida.
Uso
Retorna
Geometry.evaluate(callback)
Argumento
Tipo
Detalhes
isso: computedobject
ComputedObject
A instância ComputedObject.
callback
Função
Uma função do tipo function(success, failure), chamada quando o servidor retorna uma resposta. Se a solicitação for bem-sucedida, o argumento "success" vai conter o resultado avaliado. Se a solicitação falhar, o argumento de falha vai conter uma mensagem de erro.
[[["Fácil de entender","easyToUnderstand","thumb-up"],["Meu problema foi resolvido","solvedMyProblem","thumb-up"],["Outro","otherUp","thumb-up"]],[["Não contém as informações de que eu preciso","missingTheInformationINeed","thumb-down"],["Muito complicado / etapas demais","tooComplicatedTooManySteps","thumb-down"],["Desatualizado","outOfDate","thumb-down"],["Problema na tradução","translationIssue","thumb-down"],["Problema com as amostras / o código","samplesCodeIssue","thumb-down"],["Outro","otherDown","thumb-down"]],["Última atualização 2025-07-26 UTC."],[[["`Geometry.evaluate` is a method used to asynchronously retrieve the value of a ComputedObject (like a Geometry) from the server."],["It takes a callback function as an argument, which is executed upon receiving the server response, providing either the evaluated result or an error message."],["The example demonstrates using `Geometry.evaluate` with a callback function to print the GeoJSON representation of a computed geometry."],["While the JavaScript example showcases `Geometry.evaluate`, the Python library uses `Geometry.getInfo()` for similar functionality."]]],["The `evaluate` method asynchronously retrieves a `ComputedObject`'s value from the server and provides it to a callback function. The callback receives a success or failure argument, with the result or error message, respectively. The example in javascript shows how it is used with a `GeoJSON` string to display the result. In python, there is not an `evaluate` method, instead you have to use the `getInfo()` method.\n"]]