إشعار: يجب
إثبات أهلية جميع المشاريع غير التجارية المسجّلة لاستخدام Earth Engine قبل
15 أبريل 2025 من أجل الحفاظ على إمكانية الوصول إلى Earth Engine.
ee.data.listFeatures
تنظيم صفحاتك في مجموعات
يمكنك حفظ المحتوى وتصنيفه حسب إعداداتك المفضّلة.
عرض قائمة بالميزات الخاصة بأحد أصول الجداول
تعرض هذه السمة نتائج المكالمة. القيمة فارغة إذا تم تحديد دالة ردّ الاتصال.
الاستخدام | المرتجعات |
---|
ee.data.listFeatures(asset, params, callback) | api.ListFeaturesResponse |
الوسيطة | النوع | التفاصيل |
---|
asset | سلسلة | معرّف مادة عرض الجدول المطلوب البحث عنه |
params | api.ProjectsAssetsListFeaturesNamedParameters | كائن يحتوي على مَعلمات الطلب مع القيم المحتملة التالية:
استبدِل pageSize بـ (رقم): الحدّ الأقصى الاختياري لعدد النتائج في كل صفحة، والقيمة التلقائية هي 1000. |
pageToken (سلسلة): رمز مميز اختياري يحدّد صفحة من النتائج التي يجب أن يعرضها الخادم، ويتم الحصول عليه عادةً من عنصر الردّ. |
region (سلسلة): في حال توفّره، يمثّل شكلاً هندسيًا يحدّد منطقة طلب البحث، ويتم تحديده كسلسلة أشكال هندسية بتنسيق GeoJSON (راجِع RFC 7946). |
filter (سلاسل مفصولة بفواصل): إذا كانت متوفّرة، تحدّد فلاتر إضافية للسمات البسيطة (راجِع https://google.aip.dev/160). |
|
callback | الدالة، اختيارية | دالة ردّ اتصال اختيارية يتم استدعاؤها باستخدام مَعلمتَين: الأولى هي قائمة الميزات الناتجة والثانية هي سلسلة خطأ في حال حدوث خطأ. في حال عدم توفيرها، يتم إجراء المكالمة بشكل متزامن. |
إنّ محتوى هذه الصفحة مرخّص بموجب ترخيص Creative Commons Attribution 4.0 ما لم يُنصّ على خلاف ذلك، ونماذج الرموز مرخّصة بموجب ترخيص Apache 2.0. للاطّلاع على التفاصيل، يُرجى مراجعة سياسات موقع Google Developers. إنّ Java هي علامة تجارية مسجَّلة لشركة Oracle و/أو شركائها التابعين.
تاريخ التعديل الأخير: 2025-07-26 (حسب التوقيت العالمي المتفَّق عليه)
[null,null,["تاريخ التعديل الأخير: 2025-07-26 (حسب التوقيت العالمي المتفَّق عليه)"],[[["\u003cp\u003eLists features for a specified table asset using its ID.\u003c/p\u003e\n"],["\u003cp\u003eAllows optional parameters for filtering, pagination, and regional queries.\u003c/p\u003e\n"],["\u003cp\u003eReturns an \u003ccode\u003eapi.ListFeaturesResponse\u003c/code\u003e object containing the features or null if a callback function is provided.\u003c/p\u003e\n"],["\u003cp\u003eOptionally accepts a callback function for asynchronous execution, receiving the features and potential errors.\u003c/p\u003e\n"]]],["The core functionality involves listing features for a specified table asset. The `ee.data.listFeatures` function accepts an asset ID (`asset`) and request parameters (`params`). Parameters include `pageSize`, `pageToken`, `region`, and `filter`. It can optionally take a `callback` function for asynchronous calls. The function returns a `api.ListFeaturesResponse` object containing the features list, or it returns `null` if a callback is provided. It retrieves information from an asset and allows filtering and pagination.\n"],null,["# ee.data.listFeatures\n\n\u003cbr /\u003e\n\nList features for a given table asset.\n\n\u003cbr /\u003e\n\nReturns the call results. Null if a callback is specified.\n\n| Usage | Returns |\n|-----------------------------------------------------|--------------------------|\n| `ee.data.listFeatures(asset, params, `*callback*`)` | api.ListFeaturesResponse |\n\n| Argument | Type | Details |\n|------------|-----------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `asset` | String | The table asset ID to query. |\n| `params` | api.ProjectsAssetsListFeaturesNamedParameters | An object containing request parameters with the following possible values: |-------------------------------------------------------------------------------------------------------------------------------------------| | ` pageSize ` (number): An optional maximum number of results per page, default is 1000. | | ` pageToken ` (string): An optional token identifying a page of results the server should return, usually taken from the response object. | | ` region ` (string): If present, a geometry defining a query region, specified as a GeoJSON geometry string (see RFC 7946). | | ` filter ` (comma-separated strings): If present, specifies additional simple property filters (see https://google.aip.dev/160). | |\n| `callback` | Function, optional | An optional callback, called with two parameters: the first is the resulting list of features and the second is an error string on failure. If not supplied, the call is made synchronously. |"]]