ঘোষণা :
15 এপ্রিল, 2025 এর আগে আর্থ ইঞ্জিন ব্যবহার করার জন্য নিবন্ধিত সমস্ত অবাণিজ্যিক প্রকল্পগুলিকে অ্যাক্সেস বজায় রাখার জন্য
অবাণিজ্যিক যোগ্যতা যাচাই করতে হবে। আপনি যদি 26 সেপ্টেম্বর, 2025 এর মধ্যে যাচাই না করে থাকেন তবে আপনার অ্যাক্সেস হোল্ডে রাখা হতে পারে।
মতামত জানান
ee.ImageCollection.toList
সেভ করা পৃষ্ঠা গুছিয়ে রাখতে 'সংগ্রহ' ব্যবহার করুন
আপনার পছন্দ অনুযায়ী কন্টেন্ট সেভ করুন ও সঠিক বিভাগে রাখুন।
একটি তালিকা হিসাবে একটি সংগ্রহের উপাদান প্রদান করে।
ব্যবহার রিটার্নস ImageCollection. toList (count, offset )
তালিকা
যুক্তি টাইপ বিস্তারিত এই: collection
ফিচার কালেকশন আনার জন্য ইনপুট সংগ্রহ। count
পূর্ণসংখ্যা আনার জন্য উপাদানগুলির সর্বাধিক সংখ্যা৷ offset
পূর্ণসংখ্যা, ডিফল্ট: 0 শুরু থেকে বাতিল করার উপাদানের সংখ্যা। সেট করা হলে, (অফসেট + গণনা) উপাদানগুলি আনা হবে এবং প্রথম অফসেট উপাদানগুলি বাতিল করা হবে৷
উদাহরণ কোড এডিটর (জাভাস্ক্রিপ্ট)
// Note: ee.ImageCollection.toList may take a lot of time and memory to run,
// since it must generate all of the results in order to gather them into a
// list. 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' );
print ( 'Image collection' , col );
// Get the first 3 images as a list of images.
var imgListFirst3 = col . toList ( 3 );
print ( 'First 3 images' , imgListFirst3 );
// Get the second 3 images as a list of images (use the offset parameter).
var imgListSecond3 = col . toList ( 3 , 3 );
print ( 'Second 3 images' , imgListSecond3 ); পাইথন সেটআপ
পাইথন এপিআই এবং ইন্টারেক্টিভ ডেভেলপমেন্টের জন্য geemap
ব্যবহার করার জন্য পাইথন এনভায়রনমেন্ট পৃষ্ঠাটি দেখুন।
import ee
import geemap.core as geemap Colab (পাইথন)
# Note: ee.ImageCollection.toList may take a lot of time and memory to run,
# since it must generate all of the results in order to gather them into a
# list. 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' )
print ( 'Image collection:' , col . getInfo ())
# Get the first 3 images as a list of images.
img_list_first3 = col . toList ( 3 )
print ( 'First 3 images:' , img_list_first3 . getInfo ())
# Get the second 3 images as a list of images (use the offset parameter).
img_list_second3 = col . toList ( 3 , 3 )
print ( 'Second 3 images:' , img_list_second3 . getInfo ()) ,একটি তালিকা হিসাবে একটি সংগ্রহের উপাদান প্রদান করে।
ব্যবহার রিটার্নস ImageCollection. toList (count, offset )
তালিকা
যুক্তি টাইপ বিস্তারিত এই: collection
ফিচার কালেকশন আনার জন্য ইনপুট সংগ্রহ। count
পূর্ণসংখ্যা আনার জন্য উপাদানগুলির সর্বাধিক সংখ্যা৷ offset
পূর্ণসংখ্যা, ডিফল্ট: 0 শুরু থেকে বাতিল করার উপাদানের সংখ্যা। সেট করা হলে, (অফসেট + গণনা) উপাদানগুলি আনা হবে এবং প্রথম অফসেট উপাদানগুলি বাতিল করা হবে৷
উদাহরণ কোড এডিটর (জাভাস্ক্রিপ্ট)
// Note: ee.ImageCollection.toList may take a lot of time and memory to run,
// since it must generate all of the results in order to gather them into a
// list. 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' );
print ( 'Image collection' , col );
// Get the first 3 images as a list of images.
var imgListFirst3 = col . toList ( 3 );
print ( 'First 3 images' , imgListFirst3 );
// Get the second 3 images as a list of images (use the offset parameter).
var imgListSecond3 = col . toList ( 3 , 3 );
print ( 'Second 3 images' , imgListSecond3 ); পাইথন সেটআপ
পাইথন এপিআই এবং ইন্টারেক্টিভ ডেভেলপমেন্টের জন্য geemap
ব্যবহার করার জন্য পাইথন এনভায়রনমেন্ট পৃষ্ঠাটি দেখুন।
import ee
import geemap.core as geemap Colab (পাইথন)
# Note: ee.ImageCollection.toList may take a lot of time and memory to run,
# since it must generate all of the results in order to gather them into a
# list. 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' )
print ( 'Image collection:' , col . getInfo ())
# Get the first 3 images as a list of images.
img_list_first3 = col . toList ( 3 )
print ( 'First 3 images:' , img_list_first3 . getInfo ())
# Get the second 3 images as a list of images (use the offset parameter).
img_list_second3 = col . toList ( 3 , 3 )
print ( 'Second 3 images:' , img_list_second3 . getInfo ())
মতামত জানান
অন্য কিছু উল্লেখ না করা থাকলে, এই পৃষ্ঠার কন্টেন্ট Creative Commons Attribution 4.0 License -এর অধীনে এবং কোডের নমুনাগুলি Apache 2.0 License -এর অধীনে লাইসেন্স প্রাপ্ত। আরও জানতে, Google Developers সাইট নীতি দেখুন। Java হল Oracle এবং/অথবা তার অ্যাফিলিয়েট সংস্থার রেজিস্টার্ড ট্রেডমার্ক।
2025-07-24 UTC-তে শেষবার আপডেট করা হয়েছে।
আমাদের আরও কিছু জানাতে চান?
[[["সহজে বোঝা যায়","easyToUnderstand","thumb-up"],["আমার সমস্যার সমাধান হয়েছে","solvedMyProblem","thumb-up"],["অন্যান্য","otherUp","thumb-up"]],[["এতে আমার প্রয়োজনীয় তথ্য নেই","missingTheInformationINeed","thumb-down"],["খুব জটিল / অনেক ধাপ","tooComplicatedTooManySteps","thumb-down"],["পুরনো","outOfDate","thumb-down"],["অনুবাদ সংক্রান্ত সমস্যা","translationIssue","thumb-down"],["নমুনা / কোড সংক্রান্ত সমস্যা","samplesCodeIssue","thumb-down"],["অন্যান্য","otherDown","thumb-down"]],["2025-07-24 UTC-তে শেষবার আপডেট করা হয়েছে।"],[],["The function `ImageCollection.toList()` converts a collection's elements into a list. It takes a `count` argument, specifying the maximum number of elements to include. An optional `offset` argument allows discarding a set number of elements from the beginning. For example, setting a count of 3 and an offset of 3 returns elements four, five and six. The function is used with the input `collection`, a `FeatureCollection`. This process potentially demands significant resources, particularly with large collections.\n"]]