ee.Filter.gt
Sử dụng bộ sưu tập để sắp xếp ngăn nắp các trang
Lưu và phân loại nội dung dựa trên lựa chọn ưu tiên của bạn.
Lọc theo siêu dữ liệu lớn hơn giá trị đã cho.
Trả về bộ lọc đã tạo.
Cách sử dụng | Giá trị trả về |
---|
ee.Filter.gt(name, value) | Lọc |
Đối số | Loại | Thông tin chi tiết |
---|
name | Chuỗi | Tên cơ sở lưu trú để lọc. |
value | Đối tượng | Giá trị để so sánh. |
Trừ phi có lưu ý khác, nội dung của trang này được cấp phép theo Giấy phép ghi nhận tác giả 4.0 của Creative Commons và các mẫu mã lập trình được cấp phép theo Giấy phép Apache 2.0. Để biết thông tin chi tiết, vui lòng tham khảo Chính sách trang web của Google Developers. Java là nhãn hiệu đã đăng ký của Oracle và/hoặc các đơn vị liên kết với Oracle.
Cập nhật lần gần đây nhất: 2025-07-26 UTC.
[null,null,["Cập nhật lần gần đây nhất: 2025-07-26 UTC."],[[["\u003cp\u003eThe \u003ccode\u003eee.Filter.gt\u003c/code\u003e function constructs a filter that selects features where the specified property is greater than the provided value.\u003c/p\u003e\n"],["\u003cp\u003eIt accepts two arguments: \u003ccode\u003ename\u003c/code\u003e (the property name as a string) and \u003ccode\u003evalue\u003c/code\u003e (the value to compare against).\u003c/p\u003e\n"],["\u003cp\u003eThe function returns a filter object that can be used to filter collections in Earth Engine.\u003c/p\u003e\n"]]],["The function `ee.Filter.gt(name, value)` creates a filter based on a comparison. It filters data where a specified property (`name`) has a value greater than a given `value`. The `name` must be a string, while the `value` can be any object. The function returns a filter object. This is achieved through the use of metadata.\n"],null,["# ee.Filter.gt\n\n\u003cbr /\u003e\n\nFilter on metadata greater than the given value.\n\n\u003cbr /\u003e\n\nReturns the constructed filter.\n\n| Usage | Returns |\n|-----------------------------|---------|\n| `ee.Filter.gt(name, value)` | Filter |\n\n| Argument | Type | Details |\n|----------|--------|---------------------------------|\n| `name` | String | The property name to filter on. |\n| `value` | Object | The value to compare against. |"]]