Hello everyone,
I have a problem downloading Sentinel-3 Land Surface Temperature products.
This is the script I use:
from sentinelsat import SentinelAPI, read_geojson, geojson_to_wkt
-Set up your Copernicus Open Access Hub credentials
copernicus_username = “username”
copernicus_password = “password”
-Define your search parameters
area_of_interest_geojson = “area_of_interest.geojson”
start_date = “start date”
end_date = “end date”
max_cloud_cover = 100 # Percentage
api = SentinelAPI(copernicus_username, copernicus_password, ‘APIHub’)
s3_products = api.query(area_of_interest_wkt,
date=(start_date, end_date),
cloudcoverpercentage=(0, max_cloud_cover),
platformname=‘Sentinel-3’)
producttype=‘SL_2_LST___’)
available_product_types = set()
for product_id, product_info in s3_products.items():
available_product_types.add(product_info[‘producttype’])
-Print the list of available product types
print(“Available product types:”)
for product_type in available_product_types:
print(product_type)
print(f"Number of LST-Sentinel-3 products: {len(s3_products)}")
The script works correctly, and this is what I get:
Available product types:
SY_2_SYN___
SY_2_VGP___
SY_2_V10___
SY_2_VG1___
SY_2_AOD___
OL_2_LRR___
OL_2_LFR___
Number of LST-Sentinel-3 products: 0
So, the products I wanted download seems not be available (on the website they are available instead)
My question is: Anyone knows how to get Sentinel-3 SLSTR products via APIs? (LST and I am also looking for WST products)…
Thanks to everyone