إشعار : يجب
إثبات الأهلية للاستخدام غير التجاري لجميع المشاريع غير التجارية المسجّلة لاستخدام Earth Engine قبل
15 أبريل 2025 من أجل الحفاظ على إمكانية الوصول إليها. إذا لم يتم تأكيد حسابك بحلول 26 سبتمبر 2025، قد يتم تعليق إمكانية الوصول إليه.
إرسال ملاحظات
ee.ImageCollection.qualityMosaic
تنظيم صفحاتك في مجموعات
يمكنك حفظ المحتوى وتصنيفه حسب إعداداتك المفضّلة.
تدمج جميع الصور في مجموعة، باستخدام نطاق جودة كدالة ترتيب لكل بكسل.
الاستخدام المرتجعات ImageCollection. qualityMosaic (qualityBand)
صورة
الوسيطة النوع التفاصيل هذا: collection
ImageCollection المجموعة التي سيتم تحويلها إلى فسيفساء qualityBand
سلسلة تمثّل هذه السمة اسم فئة الجودة في المجموعة.
أمثلة
محرّر الرموز البرمجية (JavaScript)
// The goal is to generate a best-pixel mosaic from a collection of
// Sentinel-2 images where pixel quality is based on a cloud probability score.
// The qualityMosaic() function selects the image (per-pixel) with the HIGHEST
// quality-band-score to contribute to the resulting mosaic. All bands from the
// selected image (per-pixel) associated with the HIGHEST quality-band-score
// are included in the output.
// A Sentinel-2 SR image collection (2 months of images at a specific point).
var col = ee . ImageCollection ( 'COPERNICUS/S2_SR_HARMONIZED' )
. filterBounds ( ee . Geometry . Point ( - 103.19 , 40.14 ))
. filterDate ( '2020-07-01' , '2020-09-01' );
// Because cloud probability ranges from 0 to 100 percent (low to high), we need
// to invert the MSK_CLDPRB band values so that low cloud probability pixels
// indicate high quality. Here, an inverting function is mapped over the
// image collection, the inverted MSK_CLDPRB band is added as a "quality" band.
col = col . map ( function ( img ) {
var cldProb = img . select ( 'MSK_CLDPRB' );
var cldProbInv = cldProb . multiply ( - 1 ). rename ( 'quality' );
return img . addBands ( cldProbInv );
});
// Image visualization settings.
var visParams = {
bands : [ 'B4' , 'B3' , 'B2' ],
min : 0 ,
max : 4500
};
Map . setCenter ( - 103.19 , 40.14 , 9 );
Map . addLayer ( col , visParams , 'Collection (for series inspection)' , false );
// Generate a best-pixel mosaic from the image collection.
var img = col . qualityMosaic ( 'quality' );
Map . addLayer ( img , visParams , 'Best-pixel mosaic (by cloud score)' );
// To build the worst-pixel mosaic, according to cloud probability, use the
// MSK_CLDPRB band as the quality band (the worst pixels have HIGHEST cloud
// probability score).
var img = col . qualityMosaic ( 'MSK_CLDPRB' );
Map . addLayer ( img , visParams , 'Worst-pixel mosaic (by cloud score)' , false );
إعداد Python
راجِع صفحة
بيئة Python للحصول على معلومات حول واجهة برمجة التطبيقات Python واستخدام
geemap
للتطوير التفاعلي.
import ee
import geemap.core as geemap
Colab (Python)
# The goal is to generate a best-pixel mosaic from a collection of
# Sentinel-2 images where pixel quality is based on a cloud probability score.
# The qualityMosaic() function selects the image (per-pixel) with the HIGHEST
# quality-band-score to contribute to the resulting mosaic. All bands from the
# selected image (per-pixel) associated with the HIGHEST quality-band-score
# are included in the output.
# A Sentinel-2 SR image collection (2 months of images at a specific point).
col = (
ee . ImageCollection ( 'COPERNICUS/S2_SR_HARMONIZED' )
. filterBounds ( ee . Geometry . Point ( - 103.19 , 40.14 ))
. filterDate ( '2020-07-01' , '2020-09-01' )
)
# Because cloud probability ranges from 0 to 100 percent (low to high), we need
# to invert the MSK_CLDPRB band values so that low cloud probability pixels
# indicate high quality. Here, an inverting function is mapped over the
# image collection, the inverted MSK_CLDPRB band is added as a "quality" band.
def invertCloudProbabilityBand ( img ):
cldProb = img . select ( 'MSK_CLDPRB' )
cldProbInv = cldProb . multiply ( - 1 ) . rename ( 'quality' )
return img . addBands ( cldProbInv )
col = col . map ( invertCloudProbabilityBand )
# Image visualization settings.
vis_params = { 'bands' : [ 'B4' , 'B3' , 'B2' ], 'min' : 0 , 'max' : 4500 }
m = geemap . Map ()
m . set_center ( - 103.19 , 40.14 , 9 )
m . add_layer ( col , vis_params , 'Collection (for series inspection)' , False )
# Generate a best-pixel mosaic from the image collection.
img = col . qualityMosaic ( 'quality' )
m . add_layer ( img , vis_params , 'Best-pixel mosaic (by cloud score)' )
# To build the worst-pixel mosaic, according to cloud probability, use the
# MSK_CLDPRB band as the quality band (the worst pixels have HIGHEST cloud
# probability score).
img = col . qualityMosaic ( 'MSK_CLDPRB' )
m . add_layer ( img , vis_params , 'Worst-pixel mosaic (by cloud score)' , False )
m
إرسال ملاحظات
إنّ محتوى هذه الصفحة مرخّص بموجب ترخيص Creative Commons Attribution 4.0 ما لم يُنصّ على خلاف ذلك، ونماذج الرموز مرخّصة بموجب ترخيص Apache 2.0 . للاطّلاع على التفاصيل، يُرجى مراجعة سياسات موقع Google Developers . إنّ Java هي علامة تجارية مسجَّلة لشركة Oracle و/أو شركائها التابعين.
تاريخ التعديل الأخير: 2025-07-27 (حسب التوقيت العالمي المتفَّق عليه)
هل تريد مشاركة ملاحظاتك معنا؟
[[["يسهُل فهم المحتوى.","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-27 (حسب التوقيت العالمي المتفَّق عليه)"],[],[]]