Thanks it works!!
I m using Sentinel-2 L2A product, and I need SCL, WVP and AOT maps.
Using PCI I can see and export easily theses maps (see Fig.1).
But, with SNAP, I can not find them (Fig.2)
Even when read the available bands using snappy, these bands are absent.
############################################################################
file_name=â/home/ndjamai/job/S2A_L2A/S2A_USER_PRD_MSIL2A_PDMC_20160902T183652_R098_V20160901T173902_20160901T174728.SAFE//S2A_USER_MTD_SAFL2A_PDMC_20160902T183652_R098_V20160901T173902_20160901T174728.xmlâ
print(âReadingâŚâ)
product = ProductIO.readProduct(file_name)
width = product.getSceneRasterWidth()
height = product.getSceneRasterHeight()
name = product.getName()
description = product.getDescription()
band_names = product.getBandNames()
print(âProduct: %s, %sâ % (name, description))
print(âRaster size: %d x %d pixelsâ % (width, height))
print("Start time: " + str(product.getStartTime()))
print("End time: " + str(product.getEndTime()))
print(âBands: %sâ % (list(band_names)))
Product: S2A_USER_MTD_SAFL2A_PDMC_20160902T183652_R098_V20160901T173902_20160901T174728, None
Raster size: 10980 x 10980 pixels
Start time: 01-SEP-2016 17:39:02.026000
End time: 01-SEP-2016 17:47:28.547000
Bands: [âB2â, âB3â, âB4â, âB5â, âB6â, âB7â, âB8â, âB8Aâ, âB11â, âB12â, âquality_aotâ, âquality_wvpâ, âquality_cloud_confidenceâ, âquality_snow_confidenceâ, âquality_scene_classificationâ, âview_zenith_meanâ, âview_azimuth_meanâ, âsun_zenithâ, âsun_azimuthâ, âview_zenith_B1â, âview_azimuth_B1â, âview_zenith_B2â, âview_azimuth_B2â, âview_zenith_B3â, âview_azimuth_B3â, âview_zenith_B4â, âview_azimuth_B4â, âview_zenith_B5â, âview_azimuth_B5â, âview_zenith_B6â, âview_azimuth_B6â, âview_zenith_B7â, âview_azimuth_B7â, âview_zenith_B8â, âview_azimuth_B8â, âview_zenith_B8Aâ, âview_azimuth_B8Aâ, âview_zenith_B9â, âview_azimuth_B9â, âview_zenith_B10â, âview_azimuth_B10â, âview_zenith_B11â, âview_azimuth_B11â, âview_zenith_B12â, âview_azimuth_B12â]
######################################################################
I dont know what is the problem,
Fig.1
![](https://forum.step.esa.int/uploads/default/original/2X/2/269d7616d8454b37a737989fd2ddba254ab19ba7.png)
Fig.2