本次使用的数据时LandsatTOA数据 LANDSAT/LT05/C01/T1_TOA然后进行波段运算,之后进行雪山的展示。我们用单位的阈值去过滤掉雪山对整个影像的影像,这是单独提取的一种方式。首先,可以从计算 SNOW_COVER 开始。一种简单(简单)的方法是使用 NDSI 并排除雪像素,但在可见波段中反射率值很低)。这样可以从这个集合中删除一些带有永久冰川的图像。从集合中删除此图像。
当然除了这个方法之外,我们可以根据Landsat中QA波段bitwise去除雪,Bits 9-10: Snow / Ice Confidence
BQA Bitmask |
- Bit 0: Designated Fill
- Bit 1: Designated Pixel
- Bits 2-3: Radiometric Saturation
- 0: No bands contain saturation
- 1: 1-2 bands contain saturation
- 2: 3-4 bands contain saturation
- 3: 5 or more bands contain saturation
- Bit 4: Cloud
- Bits 5-6: Cloud Confidence
- 0: Not Determined / Condition does not exi
|