ee.Filter.calendarRange

এমন একটি ফিল্টার রিটার্ন করে যা পাস হয়, যদি অবজেক্টটির টাইমস্ট্যাম্প একটি ক্যালেন্ডার ফিল্ডের প্রদত্ত সীমার মধ্যে পড়ে। month , day_of_year , day_of_month এবং day_of_week ১-ভিত্তিক। সময় UTC-তে ধরা হয়। সপ্তাহ সোমবার থেকে শুরু হয়, যা প্রথম দিন হিসেবে ধরা হয়।

যদি end < start তাহলে এটি value >= start অথবা value <= end তা পরীক্ষা করে, যাতে র‍্যাপিংয়ের সুযোগ থাকে।

ব্যবহার ফেরত
ee.Filter.calendarRange(start, end , field ) ফিল্টার
যুক্তি প্রকার বিস্তারিত
start পূর্ণসংখ্যা কাঙ্ক্ষিত ক্যালেন্ডার ক্ষেত্রের শুরু, অন্তর্ভুক্ত।
end পূর্ণসংখ্যা, ডিফল্ট: নাল কাঙ্ক্ষিত ক্যালেন্ডার ফিল্ডের শেষ প্রান্ত, উভয় প্রান্তসহ। ডিফল্ট মান শুরুর মানের সমান।
field স্ট্রিং, ডিফল্ট: "বছরের_দিন" ফিল্টার করার জন্য ক্যালেন্ডার ফিল্ড। অপশনগুলো হলো: `year`, `month`, `hour`, `minute`, `day_of_year`, `day_of_month`, এবং `day_of_week`।

উদাহরণ

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

// A Sentinel-2 surface reflectance image collection intersecting the peak of
// Mount Shasta, California, USA.
var ic = ee.ImageCollection('COPERNICUS/S2_SR')
             .filterBounds(ee.Geometry.Point(-122.196, 41.411));

print('Images for a month range (June-August)',
      ic.filter(ee.Filter.calendarRange(6, 8, 'month')));

print('A start value greater than end value is valid (Dec-Feb)',
      ic.filter(ee.Filter.calendarRange(12, 2, 'month')));

// This example uses the 'year' field value. Note that ee.Filter.date is the
// preferred method when filtering by whole years, as it is much faster.
print('Images for a year range (2020-2021)',
      ic.filter(ee.Filter.calendarRange(2020, 2021, 'year')));

// This example uses the 'day_of_year' field value. Note that
// ee.Filter.dayOfYear is the preferred method for filtering by DOY.
// The ee.Date.getRelative function is used to identify DOY from an ee.Date
// object for a representative year. Be mindful of leap years when filtering
// by DOY.
var startDoy = ee.Date('2000-06-01').getRelative('day', 'year');
var endDoy = ee.Date('2000-06-15').getRelative('day', 'year');
print('start DOY =', startDoy,
      'end DOY =', endDoy,
      'Images for a day-of-year range',
      ic.filter(ee.Filter.calendarRange(startDoy, endDoy, 'day_of_year')));

পাইথন সেটআপ

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

import ee
import geemap.core as geemap

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

# A Sentinel-2 surface reflectance image collection intersecting the peak of
# Mount Shasta, California, USA.
ic = ee.ImageCollection('COPERNICUS/S2_SR').filterBounds(
    ee.Geometry.Point(-122.196, 41.411))

display('Images for a month range (June-August):',
        ic.filter(ee.Filter.calendarRange(6, 8, 'month')))

display('A start value greater than end value is valid (Dec-Feb):',
        ic.filter(ee.Filter.calendarRange(12, 2, 'month')).size())

# This example uses the 'year' field value. Note that ee.Filter.date is the
# preferred method when filtering by whole years, as it is much faster.
display('Images for a year range (2020-2021):',
        ic.filter(ee.Filter.calendarRange(2020, 2021, 'year')).size())

# This example uses the 'day_of_year' field value. Note that
# ee.Filter.dayOfYear is the preferred method for filtering by DOY.
# The ee.Date.getRelative function is used to identify DOY from an ee.Date
# object for a representative year. Be mindful of leap years when filtering
# by DOY.
start_doy = ee.Date('2000-06-01').getRelative('day', 'year')
end_doy = ee.Date('2000-06-15').getRelative('day', 'year')
display('start DOY =', start_doy, 'end DOY =', end_doy)
display(
    'Images for a day-of-year range:',
    ic.filter(ee.Filter.calendarRange(start_doy, end_doy, 'day_of_year'))
)