공지사항:
2025년 4월 15일 전에 Earth Engine 사용을 위해 등록된 모든 비상업용 프로젝트는 Earth Engine 액세스를 유지하기 위해
비상업용 자격 요건을 인증해야 합니다.
ee.Image.evaluate
컬렉션을 사용해 정리하기
내 환경설정을 기준으로 콘텐츠를 저장하고 분류하세요.
서버에서 이 객체의 값을 비동기적으로 가져와 제공된 콜백 함수에 전달합니다.
사용 | 반환 값 |
---|
Image.evaluate(callback) | |
인수 | 유형 | 세부정보 |
---|
다음과 같은 경우: computedobject | ComputedObject | ComputedObject 인스턴스입니다. |
callback | 함수 | 서버가 대답을 반환할 때 호출되는 function(success, failure) 형식의 함수입니다. 요청이 성공하면 success 인수에 평가된 결과가 포함됩니다. 요청이 실패하면 failure 인수에 오류 메시지가 포함됩니다. |
달리 명시되지 않는 한 이 페이지의 콘텐츠에는 Creative Commons Attribution 4.0 라이선스에 따라 라이선스가 부여되며, 코드 샘플에는 Apache 2.0 라이선스에 따라 라이선스가 부여됩니다. 자세한 내용은 Google Developers 사이트 정책을 참조하세요. 자바는 Oracle 및/또는 Oracle 계열사의 등록 상표입니다.
최종 업데이트: 2025-07-26(UTC)
[null,null,["최종 업데이트: 2025-07-26(UTC)"],[[["\u003cp\u003e\u003ccode\u003eImage.evaluate\u003c/code\u003e fetches the computed object's value from the server.\u003c/p\u003e\n"],["\u003cp\u003eThe server's response, whether successful or containing an error, is passed to a user-defined callback function.\u003c/p\u003e\n"],["\u003cp\u003eThis function is structured to handle both success (with the result) and failure (with an error message) scenarios.\u003c/p\u003e\n"]]],["The `Image.evaluate(callback)` method asynchronously fetches a `ComputedObject`'s value from the server. It takes a callback function as an argument. This function receives two arguments: `success` (the evaluated result upon success) and `failure` (an error message upon failure). The method retrieves the value of the `ComputedObject` and passes it to the callback function. No value is returned from this method.\n"],null,["# ee.Image.evaluate\n\n\u003cbr /\u003e\n\nAsynchronously retrieves the value of this object from the server and passes it to the provided callback function.\n\n\u003cbr /\u003e\n\n| Usage | Returns |\n|----------------------------|---------|\n| Image.evaluate`(callback)` | |\n\n| Argument | Type | Details |\n|------------------------|----------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| this: `computedobject` | ComputedObject | The ComputedObject instance. |\n| `callback` | Function | A function of the form function(success, failure), called when the server returns an answer. If the request succeeded, the success argument contains the evaluated result. If the request failed, the failure argument will contains an error message. |"]]