Hi team.
I was trying to download Sentinel-2 L2A files.
I used this code.
request = AwsTileRequest(
tile=tile_name,
time=date,
aws_index=aws_idx,
data_folder=f"./{year}",
data_collection=DataCollection.SENTINEL2_L2A,
metafiles=["tileInfo", "qi/MSK_CLOUDS_B00"]
)
This code gave me image with cloud gml file before 2022.
However, it gave me “SHRuntimeWarning: File in location s3://sentinel-s2-l2a/tiles/16/S/CG/2022/7/31/0/qi/MSK_CLOUDS_B00.gml is missing” error messages when I tried to download L2A image in 2022.
How can this problme be solved?
Thanks a lot.