Earth Engine은 공유 컴퓨팅 리소스를 보호하고 모든 사용자에게 안정적인 성능을 보장하기 위해 비상업적 할당량 등급을 도입합니다. 모든 비상업용 프로젝트는 2026년 4월 27일까지 할당량 등급을 선택해야 하며, 선택하지 않으면 커뮤니티 등급이 기본적으로 사용됩니다. 등급 할당량은 등급 선택 날짜와 관계없이 2026년 4월 27일에 모든 프로젝트에 적용됩니다. 자세히 알아보기
API 전환 가이드
컬렉션을 사용해 정리하기
내 환경설정을 기준으로 콘텐츠를 저장하고 분류하세요.
이 페이지에서는 Earth Engine API의 변경사항과 새 API 기능으로 전환하는 데 필요한 단계를 설명합니다.
trainClassifier
2016년 8월 25일에 Image.trainClassifier() 및 FeatureCollection.trainClassifier() 알고리즘이 지원 중단되고 Classifier.train()로 대체되었습니다. 새 API는 분류기 파라미터에 더 쉽게 액세스하고 학습 데이터를 더 잘 제어 (예: 검증을 위해 학습 데이터 분할)할 수 있도록 학습 데이터 수집 단계와 분류기 빌드 단계를 분리합니다.
다음 예에서는 trainClassifier()에서 Classifier.train()로 변환하는 방법을 보여줍니다. 자세한 내용은 분류 섹션을 참고하세요.
[[["이해하기 쉬움","easyToUnderstand","thumb-up"],["문제가 해결됨","solvedMyProblem","thumb-up"],["기타","otherUp","thumb-up"]],[["필요한 정보가 없음","missingTheInformationINeed","thumb-down"],["너무 복잡함/단계 수가 너무 많음","tooComplicatedTooManySteps","thumb-down"],["오래됨","outOfDate","thumb-down"],["번역 문제","translationIssue","thumb-down"],["샘플/코드 문제","samplesCodeIssue","thumb-down"],["기타","otherDown","thumb-down"]],["최종 업데이트: 2025-07-26(UTC)"],[],["The Earth Engine API updated its classifier training process. `Image.trainClassifier()` and `FeatureCollection.trainClassifier()` were replaced by `Classifier.train()`. The new approach separates data collection via `sample()`, `sampleRegions()`, or `stratifiedSample()` from classifier building. Classifiers are now created using `ee.Classifier` constructors. The output mode (classification, regression, probability) is set via `classifier.setOutputMode()`. Bootstrapping requires manual implementation using random sampling.\n"]]