公告:所有在
2025 年 4 月 15 日之前注册使用 Earth Engine 的非商业项目都必须
验证是否符合非商业性质的资格条件,才能继续使用 Earth Engine。
ee.ImageCollection.size
使用集合让一切井井有条
根据您的偏好保存内容并对其进行分类。
返回集合中的元素数量。
用法 | 返回 |
---|
ImageCollection.size() | 整数 |
参数 | 类型 | 详细信息 |
---|
此:collection | FeatureCollection | 要统计的集合。 |
示例
代码编辑器 (JavaScript)
// Note: ee.ImageCollection.size may take a lot of time and memory to run,
// since it must generate all of the results in order to count them. Large
// collections and/or complex computations can produce memory limitation
// errors.
// A Landsat 8 TOA image collection (1 year of images at a specific point).
var col = ee.ImageCollection('LANDSAT/LC08/C02/T1_TOA')
.filterBounds(ee.Geometry.Point(-90.70, 34.71))
.filterDate('2020-01-01', '2021-01-01');
// Get the number of images in the collection.
print('Number of images', col.size());
Python 设置
如需了解 Python API 和如何使用 geemap
进行交互式开发,请参阅
Python 环境页面。
import ee
import geemap.core as geemap
Colab (Python)
# Note: ee.ImageCollection.size may take a lot of time and memory to run,
# since it must generate all of the results in order to count them. Large
# collections and/or complex computations can produce memory limitation
# errors.
# A Landsat 8 TOA image collection (1 year of images at a specific point).
col = ee.ImageCollection('LANDSAT/LC08/C02/T1_TOA').filterBounds(
ee.Geometry.Point(-90.70, 34.71)
).filterDate('2020-01-01', '2021-01-01')
# Get the number of images in the collection.
print('Number of images', col.size().getInfo())
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可获得了许可,并且代码示例已根据 Apache 2.0 许可获得了许可。有关详情,请参阅 Google 开发者网站政策。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2025-07-26。
[null,null,["最后更新时间 (UTC):2025-07-26。"],[[["\u003cp\u003eThe \u003ccode\u003esize()\u003c/code\u003e function returns the number of elements (e.g., images) in an Earth Engine ImageCollection.\u003c/p\u003e\n"],["\u003cp\u003eIt takes one argument, the collection to count, and returns an integer representing the number of elements.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003eee.ImageCollection.size()\u003c/code\u003e can be computationally intensive for large collections, potentially causing memory errors due to the need to generate all results for counting.\u003c/p\u003e\n"]]],[],null,["# ee.ImageCollection.size\n\nReturns the number of elements in the collection.\n\n\u003cbr /\u003e\n\n| Usage | Returns |\n|--------------------------|---------|\n| ImageCollection.size`()` | Integer |\n\n| Argument | Type | Details |\n|--------------------|-------------------|--------------------------|\n| this: `collection` | FeatureCollection | The collection to count. |\n\nExamples\n--------\n\n### Code Editor (JavaScript)\n\n```javascript\n// Note: ee.ImageCollection.size may take a lot of time and memory to run,\n// since it must generate all of the results in order to count them. Large\n// collections and/or complex computations can produce memory limitation\n// errors.\n\n// A Landsat 8 TOA image collection (1 year of images at a specific point).\nvar col = ee.ImageCollection('LANDSAT/LC08/C02/T1_TOA')\n .filterBounds(ee.Geometry.Point(-90.70, 34.71))\n .filterDate('2020-01-01', '2021-01-01');\n\n// Get the number of images in the collection.\nprint('Number of images', col.size());\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# Note: ee.ImageCollection.size may take a lot of time and memory to run,\n# since it must generate all of the results in order to count them. Large\n# collections and/or complex computations can produce memory limitation\n# errors.\n\n# A Landsat 8 TOA image collection (1 year of images at a specific point).\ncol = ee.ImageCollection('LANDSAT/LC08/C02/T1_TOA').filterBounds(\n ee.Geometry.Point(-90.70, 34.71)\n ).filterDate('2020-01-01', '2021-01-01')\n\n# Get the number of images in the collection.\nprint('Number of images', col.size().getInfo())\n```"]]