조인은 ee.Filter로 지정된 조건에 따라 여러 컬렉션 (예: ImageCollection 또는 FeatureCollection)의 요소를 결합하는 데 사용됩니다. 필터는 서로 관련된 각 컬렉션의 속성에 관한 인수로 구성됩니다. 특히 leftField는 보조 컬렉션의 rightField와 관련된 기본 컬렉션의 속성을 지정합니다. 필터 유형입니다 (예: equals, greaterThanOrEquals, lessThan 등).
필드 간의 관계를 나타냅니다. 조인 유형은 컬렉션의 요소 간의 일대다 또는 일대일 관계와 유지할 일치 수를 나타냅니다. 조인의 출력은 join.apply()에서 생성되며 조인 유형에 따라 달라집니다.
[[["이해하기 쉬움","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-02-18(UTC)"],[[["Joins combine elements from different collections like `ImageCollection` and `FeatureCollection` based on a specified condition using an `ee.Filter`."],["The `ee.Filter` defines the relationship between properties in the collections using `leftField` and `rightField` along with a filter type like `equals` or `lessThan`."],["Different join types handle one-to-one or one-to-many relationships and control the number of matches retained, impacting the output produced by `join.apply()`."]]],["Joins combine elements from different collections using an `ee.Filter` based on a specified condition. `leftField` and `rightField` define related properties within the primary and secondary collections, respectively. The filter type determines the relationship between these fields (e.g., equals, greaterThan). Join type specifies one-to-many or one-to-one relationships and the number of matches. The `join.apply()` method produces the output, which varies based on the chosen join type.\n"]]