إشعار: يجب
إثبات أهلية جميع المشاريع غير التجارية المسجّلة لاستخدام Earth Engine قبل
15 أبريل 2025 من أجل الحفاظ على إمكانية الوصول إلى Earth Engine.
ee.FeatureCollection.limit
تنظيم صفحاتك في مجموعات
يمكنك حفظ المحتوى وتصنيفه حسب إعداداتك المفضّلة.
تقصر هذه الدالة المجموعة على عدد العناصر المحدّد، ويمكنك اختياريًا فرزها حسب سمة محدّدة أولاً.
تعرض هذه السمة المجموعة المحدودة.
الاستخدام | المرتجعات |
---|
FeatureCollection.limit(max, property, ascending) | مجموعة |
الوسيطة | النوع | التفاصيل |
---|
هذا: collection | مجموعة | مثيل المجموعة |
max | العدد | العدد الذي سيتم تحديد المجموعة به. |
property | سلسلة، اختياري | تمثّل هذه السمة الخاصية التي سيتم الترتيب حسبها، في حال الترتيب. |
ascending | قيمة منطقية، اختيارية | لتحديد ما إذا كان سيتم الترتيب تصاعديًا أو تنازليًا القيمة التلقائية هي "صحيح" (ترتيب تصاعدي). |
أمثلة
محرّر الرموز البرمجية (JavaScript)
// FeatureCollection of global power plants.
var fc = ee.FeatureCollection('WRI/GPPD/power_plants');
print('First 5 features (power plants)', fc.limit(5));
print('Smallest 5 power plants by capacity in ascending order',
fc.limit({max: 5, property: 'capacitymw'}));
print('Largest 5 power plants by capacity in descending order',
fc.limit({max: 5, property: 'capacitymw', ascending: false}));
إعداد Python
راجِع صفحة
بيئة Python للحصول على معلومات حول واجهة برمجة التطبيقات Python واستخدام
geemap
للتطوير التفاعلي.
import ee
import geemap.core as geemap
Colab (Python)
# FeatureCollection of global power plants.
fc = ee.FeatureCollection('WRI/GPPD/power_plants')
print('First 5 features (power plants):', fc.limit(5).getInfo())
print('Smallest 5 power plants by capacity in ascending order:',
fc.limit(**{'maximum': 5, 'opt_property': 'capacitymw'}).getInfo())
print('Largest 5 power plants by capacity in descending order:',
fc.limit(**{'maximum': 5, 'opt_property': 'capacitymw',
'opt_ascending': False}).getInfo())
إنّ محتوى هذه الصفحة مرخّص بموجب ترخيص Creative Commons Attribution 4.0 ما لم يُنصّ على خلاف ذلك، ونماذج الرموز مرخّصة بموجب ترخيص Apache 2.0. للاطّلاع على التفاصيل، يُرجى مراجعة سياسات موقع Google Developers. إنّ Java هي علامة تجارية مسجَّلة لشركة Oracle و/أو شركائها التابعين.
تاريخ التعديل الأخير: 2025-07-26 (حسب التوقيت العالمي المتفَّق عليه)
[null,null,["تاريخ التعديل الأخير: 2025-07-26 (حسب التوقيت العالمي المتفَّق عليه)"],[[["\u003cp\u003e\u003ccode\u003elimit()\u003c/code\u003e reduces a FeatureCollection to a specified number of elements.\u003c/p\u003e\n"],["\u003cp\u003eOptionally, the collection can be sorted by a property before limiting.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003emax\u003c/code\u003e sets the maximum number of elements to retain in the limited collection.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003eproperty\u003c/code\u003e and \u003ccode\u003eascending\u003c/code\u003e parameters allow for sorting before limiting.\u003c/p\u003e\n"]]],[],null,["# ee.FeatureCollection.limit\n\n\u003cbr /\u003e\n\nLimit a collection to the specified number of elements, optionally sorting them by a specified property first.\n\n\u003cbr /\u003e\n\nReturns the limited collection.\n\n| Usage | Returns |\n|--------------------------------------------------------------|------------|\n| FeatureCollection.limit`(max, `*property* `, `*ascending*`)` | Collection |\n\n| Argument | Type | Details |\n|--------------------|-------------------|------------------------------------------------------------------------------------|\n| this: `collection` | Collection | The Collection instance. |\n| `max` | Number | The number to limit the collection to. |\n| `property` | String, optional | The property to sort by, if sorting. |\n| `ascending` | Boolean, optional | Whether to sort in ascending or descending order. The default is true (ascending). |\n\nExamples\n--------\n\n### Code Editor (JavaScript)\n\n```javascript\n// FeatureCollection of global power plants.\nvar fc = ee.FeatureCollection('WRI/GPPD/power_plants');\n\nprint('First 5 features (power plants)', fc.limit(5));\n\nprint('Smallest 5 power plants by capacity in ascending order',\n fc.limit({max: 5, property: 'capacitymw'}));\n\nprint('Largest 5 power plants by capacity in descending order',\n fc.limit({max: 5, property: 'capacitymw', ascending: false}));\n```\nPython setup\n\nSee the [Python Environment](/earth-engine/guides/python_install) page for information on the Python API and using\n`geemap` for interactive development. \n\n```python\nimport ee\nimport geemap.core as geemap\n```\n\n### Colab (Python)\n\n```python\n# FeatureCollection of global power plants.\nfc = ee.FeatureCollection('WRI/GPPD/power_plants')\n\nprint('First 5 features (power plants):', fc.limit(5).getInfo())\n\nprint('Smallest 5 power plants by capacity in ascending order:',\n fc.limit(**{'maximum': 5, 'opt_property': 'capacitymw'}).getInfo())\n\nprint('Largest 5 power plants by capacity in descending order:',\n fc.limit(**{'maximum': 5, 'opt_property': 'capacitymw',\n 'opt_ascending': False}).getInfo())\n```"]]