ee.Image.select

একটি ছবি থেকে ব্যান্ড নির্বাচন করে।

নির্বাচিত ব্যান্ড সহ একটি ছবি ফেরত পাঠায়।

ব্যবহার রিটার্নস
Image. select (var_args) ভাবমূর্তি
যুক্তি আদর্শ বিস্তারিত
এটি: image ভাবমূর্তি চিত্রের উদাহরণ।
var_args VarArgs[বস্তু] দুটি সম্ভাবনার মধ্যে একটি:
  • তালিকাভুক্ত নয় এমন যেকোনো সংখ্যক আর্গুমেন্ট। এগুলো সবই ব্যান্ড নির্বাচক হিসেবে ব্যাখ্যা করা হবে। এগুলো ব্যান্ডের নাম, রেজেক্স, অথবা সংখ্যাসূচক সূচক হতে পারে। যেমন selected = image.select('a', 'b', 3, 'd');
  • দুটি তালিকা। প্রথমটি ব্যান্ড নির্বাচক হিসেবে এবং দ্বিতীয়টি নির্বাচিত ব্যান্ডের নতুন নাম হিসেবে ব্যবহৃত হবে। নতুন নামের সংখ্যা অবশ্যই নির্বাচিত ব্যান্ডের সংখ্যার সাথে মিলবে। যেমন selected = image.select(['a', 4], ['newA', 'newB']);

উদাহরণ

কোড এডিটর (জাভাস্ক্রিপ্ট)

// A Sentinel-2 surface reflectance image.
var img = ee.Image('COPERNICUS/S2_SR/20210109T185751_20210109T185931_T10SEG');
print('All band names', img.bandNames());

print('Select a band by name',
      img.select('B11').bandNames());

print('Select a band by index',
      img.select(10).bandNames());

print('Select bands using a list',
      img.select(['B11', 'B8', 'B3']).bandNames());

print('Select bands by an argument series',
      img.select('B11', 'B8', 'B3').bandNames());

print('Mixing string and integer selectors is valid',
      img.select(10, 'B8', 2).bandNames());

print('Rename selected bands using two corresponding lists',
      img.select(['B11', 'B8', 'B3'], ['SWIR1', 'NIR', 'Green']).bandNames());

// Use regular expressions to select bands.
print('Match "QA" followed by any two characters',
      img.select('QA..').bandNames());

print('Match "B" followed by any character, any number of times',
      img.select('B.*').bandNames());

print('Match "B" followed by any character, and any optional third character',
      img.select('B..?').bandNames());

print('Match "B" followed by a character in the range 6-8',
      img.select('B[6-8]').bandNames());

print('Match "B" followed by a character in the range 1-9 and then 1-2',
      img.select('B[1-9][1-2]').bandNames());

print('Match "B" or "QA" each followed by any character, any number of times.',
      img.select('B.*|QA.*').bandNames());

পাইথন সেটআপ

পাইথন এপিআই এবং ইন্টারেক্টিভ ডেভেলপমেন্টের জন্য geemap ব্যবহার সম্পর্কে তথ্যের জন্য পাইথন এনভায়রনমেন্ট পৃষ্ঠাটি দেখুন।

import ee
import geemap.core as geemap

কোলাব (পাইথন)

# A Sentinel-2 surface reflectance image.
img = ee.Image('COPERNICUS/S2_SR/20210109T185751_20210109T185931_T10SEG')
display('All band names:', img.bandNames())

display('Select a band by name:', img.select('B11').bandNames())

display('Select a band by index:', img.select(10).bandNames())

display('Select bands using a list:',
      img.select(['B11', 'B8', 'B3']).bandNames())

display('Select bands by an argument series:',
      img.select('B11', 'B8', 'B3').bandNames())

display('Mixing string and integer selectors is valid:',
      img.select(10, 'B8', 2).bandNames())

display('Rename selected bands using two corresponding lists:',
      img.select(['B11', 'B8', 'B3'], ['SWIR1', 'NIR', 'Green'])
      .bandNames())

# Use regular expressions to select bands.
display('Match "QA" followed by any two characters:',
      img.select('QA..').bandNames())

display('Match "B" followed by any character, any number of times:',
      img.select('B.*').bandNames())

display('Match "B" followed by any character, and any optional third character',
      img.select('B..?').bandNames())

display('Match "B" followed by a character in the range 6-8',
      img.select('B[6-8]').bandNames())

display('Match "B" followed by a character in the range 1-9 and then 1-2',
      img.select('B[1-9][1-2]').bandNames())

display('Match "B" or "QA" each followed by any character, any number of times.',
      img.select('B.*|QA.*').bandNames())