Hi Marco,
I’m trying to do some zonal statistics over the cloud confidence band by using the StatisticsOp operator. I have the following code:
class CheckClouds:
def __init__(self, sat_img_path): self.sat_img_path = sat_img_path def read_cloud_band(self): ''' Read the cloud confidence band. ''' product = ProductIO.readProduct(self.sat_img_path) band_names = product.getBandNames() # print (list(band_names)) b_qcc = product.getBand('quality_cloud_confidence') # print (b_qcc) HashMap = jpy.get_type('java.util.HashMap') BandConfiguration = jpy.get_type('org.esa.snap.statistics.BandConfiguration') bandConfiguration = BandConfiguration() # print(dir(bandConfiguration)) bandConfiguration.sourceBandName = 'quality_cloud_confidence' bandConfigurations = jpy.array('org.esa.snap.statistics.BandConfiguration', 1) bandConfigurations[0] = bandConfiguration parameters = HashMap() parameters.put('bandConfigurations', bandConfigurations) parameters.put('sourceProductPaths', str(self.sat_img_path)) parameters.put('shapefile', '..\\..\\config\\test.shp') parameters.put('outputAsciiFile', 'D:\\test_file.csv') # parameters.put('writeDataTypesSeparately', True) result = GPF.createProduct('StatisticsOp', parameters, product) return result
new_sat_imag = CheckClouds(‘D:\sentinel_2_img_dir\S2B_MSIL2A_20180304_img_name.zip’)
new_sat_imag.read_cloud_band()
I have no output. Do you have an idea about what I’m doing wrong ? Is the parameters setup ok ?
Do you have any info if the previous mentioned issue was fixed ?