ui.Chart.image.series

একটি চিত্র সংগ্রহ থেকে একটি চার্ট তৈরি করে। চিত্র জুড়ে একটি অঞ্চলে প্রতিটি ব্যান্ডের প্রাপ্ত মান প্লট। সাধারণত একটি সময় সিরিজ।

- X-অক্ষ: ছবি, xProperty মান দ্বারা লেবেল করা।

- Y-অক্ষ: ব্যান্ড মান।

- সিরিজ: ব্যান্ডের নাম।

একটি চার্ট প্রদান করে।

ব্যবহার রিটার্নস
ui.Chart.image.series(imageCollection, region, reducer , scale , xProperty ) ui.চার্ট
যুক্তি টাইপ বিস্তারিত
imageCollection ইমেজ কালেকশন চার্টে অন্তর্ভুক্ত করা ডেটা সহ একটি চিত্র সংগ্রহ।
region ফিচার|ফিচার কালেকশন|জ্যামিতি কমাতে হবে অঞ্চল।
reducer হ্রাসকারী, ঐচ্ছিক হ্রাসকারী যা y-অক্ষের জন্য মান তৈরি করে। একটি একক মান ফেরত দিতে হবে। ডিফল্ট ee.Reducer.mean()।
scale নম্বর, ঐচ্ছিক মিটারে রিডুসারের সাথে ব্যবহার করার জন্য স্কেল।
xProperty স্ট্রিং, ঐচ্ছিক x-অক্ষের প্রতিটি চিত্রের জন্য লেবেল হিসাবে ব্যবহার করা সম্পত্তি। ডিফল্ট 'system:time_start'।

উদাহরণ

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

// Define a region of pixels to reduce and chart a time series for.
var region = ee.Geometry.BBox(-121.916, 37.130, -121.844, 37.076);

// Define an image collection time series to chart, MODIS vegetation indices
// in this case.
var imgCol = ee.ImageCollection('MODIS/006/MOD13A1')
  .filter(ee.Filter.date('2015-01-01', '2020-01-01'))
  .select(['NDVI', 'EVI']);

// Define the chart and print it to the console.
var chart = ui.Chart.image.series({
  imageCollection: imgCol,
  region: region,
  reducer: ee.Reducer.mean(),
  scale: 500,
  xProperty: 'system:time_start'
})
.setSeriesNames(['EVI', 'NDVI'])
.setOptions({
  title: 'Average Vegetation Index Value by Date',
  hAxis: {title: 'Date', titleTextStyle: {italic: false, bold: true}},
  vAxis: {
    title: 'Vegetation index (x1e4)',
    titleTextStyle: {italic: false, bold: true}
  },
  lineWidth: 5,
  colors: ['e37d05', '1d6b99'],
  curveType: 'function'
});
print(chart);