var c = ee.Image Collection('foo').aside(print)
.filterDate('2001-01-01', '2002-01-01')।একপাশে (মুদ্রণ, '2001 সালে')
.filterBounds(geom)।একপাশে (মুদ্রণ, 'অঞ্চলে')
.aside(Map.addLayer, {মিনিট: 0, সর্বোচ্চ: 142}, 'ফিল্টার করা')
.select('a', 'b');
চেইনিংয়ের জন্য একই বস্তু ফেরত দেয়।
| ব্যবহার | রিটার্নস |
|---|---|
FeatureCollection. aside (func, var_args) | কম্পিউটেড অবজেক্ট |
| যুক্তি | টাইপ | বিস্তারিত |
|---|---|---|
এই: computedobject | কম্পিউটেড অবজেক্ট | ComputedObject উদাহরণ. |
func | ফাংশন | কল করার ফাংশন। |
var_args | VarArgs<অবজেক্ট> | কোন অতিরিক্ত আর্গুমেন্ট ফাংশন পাস. |
উদাহরণ
কোড এডিটর (জাভাস্ক্রিপ্ট)
// Get a FeatureCollection of power plants in Belgium. Use "aside" to print the // collection and display it on the Map. var fc = ee.FeatureCollection('WRI/GPPD/power_plants') .filter('country_lg == "Belgium"') .aside(print, 'Power plants in Belgium') .aside(Map.centerObject, 7) .aside(Map.addLayer, {color: 'blue'}, 'Power plants');