Duyuru:
15 Nisan 2025'ten önce Earth Engine'i kullanmak için kaydedilen tüm ticari olmayan projelerin Earth Engine erişimini sürdürmek için
ticari olmayan uygunluğu doğrulaması gerekir.
ee.Filter.and
Koleksiyonlar ile düzeninizi koruyun
İçeriği tercihlerinize göre kaydedin ve kategorilere ayırın.
Boole VE işleci kullanarak iki veya daha fazla filtreyi birleştirin.
Oluşturulan filtreyi döndürür.
Kullanım | İadeler |
---|
ee.Filter.and(var_args) | Filtre |
Bağımsız Değişken | Tür | Ayrıntılar |
---|
var_args | VarArgs<Filter> | Birleştirilecek filtreler. |
Aksi belirtilmediği sürece bu sayfanın içeriği Creative Commons Atıf 4.0 Lisansı altında ve kod örnekleri Apache 2.0 Lisansı altında lisanslanmıştır. Ayrıntılı bilgi için Google Developers Site Politikaları'na göz atın. Java, Oracle ve/veya satış ortaklarının tescilli ticari markasıdır.
Son güncelleme tarihi: 2025-07-25 UTC.
[null,null,["Son güncelleme tarihi: 2025-07-25 UTC."],[[["\u003cp\u003e\u003ccode\u003eee.Filter.and()\u003c/code\u003e combines two or more filters using a boolean AND operation to create a single, composite filter.\u003c/p\u003e\n"],["\u003cp\u003eThis function accepts multiple filters as input (using var_args) and returns a new Filter object representing the combined condition.\u003c/p\u003e\n"],["\u003cp\u003eThe returned filter will only include elements that satisfy all the individual filters provided as input.\u003c/p\u003e\n"]]],["Combines multiple filters using a boolean AND operation. The function `ee.Filter.and(var_args)` accepts a variable number of filter arguments (`var_args`) and returns a single, combined `Filter` object. Each filter provided is joined, requiring all conditions to be met for a data element to pass the combined filter. This method is used to narrow down data based on multiple criteria.\n"],null,["# ee.Filter.and\n\n\u003cbr /\u003e\n\nCombine two or more filters using boolean AND.\n\n\u003cbr /\u003e\n\nReturns the constructed filter.\n\n| Usage | Returns |\n|---------------------------|---------|\n| `ee.Filter.and(var_args)` | Filter |\n\n| Argument | Type | Details |\n|------------|-------------------|-------------------------|\n| `var_args` | VarArgs\\\u003cFilter\\\u003e | The filters to combine. |"]]