공지사항:
2025년 4월 15일 전에 Earth Engine 사용을 위해 등록된 모든 비상업용 프로젝트는 Earth Engine 액세스를 유지하기 위해
비상업용 자격 요건을 인증해야 합니다.
ee.Filter
컬렉션을 사용해 정리하기
내 환경설정을 기준으로 콘텐츠를 저장하고 분류하세요.
새 필터를 생성합니다. 이 생성자는 다음 인수를 허용합니다.
- 다른 필터
- 필터 목록 (암시적으로 AND 연산됨)
- 필터를 반환하는 ComputedObject 사용자는 이를 만들면 안 됩니다. 아래의 생성기 함수에 의해 생성됩니다.
사용 | 반환 값 |
---|
ee.Filter(filter) | 필터 |
인수 | 유형 | 세부정보 |
---|
filter | 필터|List<Object>|객체, 선택사항 | 추가할 선택적 필터입니다. |
달리 명시되지 않는 한 이 페이지의 콘텐츠에는 Creative Commons Attribution 4.0 라이선스에 따라 라이선스가 부여되며, 코드 샘플에는 Apache 2.0 라이선스에 따라 라이선스가 부여됩니다. 자세한 내용은 Google Developers 사이트 정책을 참조하세요. 자바는 Oracle 및/또는 Oracle 계열사의 등록 상표입니다.
최종 업데이트: 2025-07-25(UTC)
[null,null,["최종 업데이트: 2025-07-25(UTC)"],[[["\u003cp\u003eCreates a new filter object, potentially based on an existing filter, a list of filters (combined with AND logic), or a ComputedObject.\u003c/p\u003e\n"],["\u003cp\u003eUsers typically won't create ComputedObjects directly; they're generated by specific functions.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003eee.Filter()\u003c/code\u003e constructor can optionally take an existing filter or a list of filters as an argument.\u003c/p\u003e\n"]]],["The `ee.Filter` constructor creates a new filter, accepting either another filter, a list of filters (treated as an AND operation), or a ComputedObject that returns a filter. Users can provide an optional filter, which can be either a single filter or a list. The function returns a new `Filter` object. The `ee.Filter` function is used as `ee.Filter(*filter*)`.\n"],null,["# ee.Filter\n\n\u003cbr /\u003e\n\nConstructs a new filter. This constructor accepts the following args:\n\n\u003cbr /\u003e\n\n- Another filter.\n\n- A list of filters (which are implicitly ANDed together).\n\n- A ComputedObject returning a filter. Users shouldn't be making these; they're produced by the generator functions below.\n\n| Usage | Returns |\n|-------------------------|---------|\n| `ee.Filter(`*filter*`)` | Filter |\n\n| Argument | Type | Details |\n|----------|------------------------------------------|-------------------------|\n| `filter` | Filter\\|List\\\u003cObject\\\u003e\\|Object, optional | Optional filter to add. |"]]