Earth Engine은 공유 컴퓨팅 리소스를 보호하고 모든 사용자에게 안정적인 성능을 보장하기 위해
비상업적 할당량 등급을 도입했습니다. 비상업적 프로젝트는 기본적으로 커뮤니티 등급을 사용하지만 언제든지 프로젝트의 등급을 변경할 수 있습니다.
Google uses AI technology to translate content into your preferred language. AI translations can contain errors.
ee.Join.saveFirst
컬렉션을 사용해 정리하기
내 환경설정을 기준으로 콘텐츠를 저장하고 분류하세요.
첫 번째 컬렉션의 각 요소를 두 번째 컬렉션의 일치하는 요소와 쌍으로 묶는 조인을 반환합니다. 첫 번째 일치 항목이 결과에 추가 속성으로 추가됩니다.
| 사용 | 반환 값 |
|---|
ee.Join.saveFirst(matchKey, ordering, ascending, measureKey, outer) | 참여 |
| 인수 | 유형 | 세부정보 |
|---|
matchKey | 문자열 | 일치 항목을 저장하는 데 사용되는 속성 이름입니다. |
ordering | 문자열, 기본값: null | 첫 번째 항목을 선택하기 전에 일치 항목을 정렬할 속성입니다. |
ascending | 불리언, 기본값: true | 순서가 오름차순인지 여부입니다. |
measureKey | 문자열, 기본값: null | 일치 항목의 조인 조건 측정값을 저장하는 데 사용되는 선택적 속성 이름입니다. |
outer | 불리언, 기본값: false | true인 경우 일치하는 항목이 없는 기본 행이 결과에 포함됩니다. |
달리 명시되지 않는 한 이 페이지의 콘텐츠에는 Creative Commons Attribution 4.0 라이선스에 따라 라이선스가 부여되며, 코드 샘플에는 Apache 2.0 라이선스에 따라 라이선스가 부여됩니다. 자세한 내용은 Google Developers 사이트 정책을 참조하세요. 자바는 Oracle 및/또는 Oracle 계열사의 등록 상표입니다.
최종 업데이트: 2026-04-20(UTC)
[null,null,["최종 업데이트: 2026-04-20(UTC)"],[],["The `ee.Join.saveFirst` function creates a join between two collections, pairing each element from the first with its first matching element from the second. The matched element is stored as a new property, specified by `matchKey`. Matches can be sorted by `ordering` in `ascending` order before the first is selected. `measureKey` can be used to save the measurement of the join. Setting `outer` to true includes unmatched primary rows.\n"]]