I am trying to download sentinel-2 images from google cloud (bigquery) with the script below. However, the query results at the base url show null. I need help to fix this problem
#standardSQL
SELECT base_url
FROM `bigquery-public-data.cloud_storage_geo_index.sentinel_2_index`
WHERE( mgrs_tile="20HMK" OR mgrs_tile="20HPF" OR mgrs_tile="20HPF" OR mgrs_tile="20HPF" )
AND EXTRACT(YEAR FROM sensing_time) = 2024
I tried using the same code for 2023 and it works but not 2024. I am expecting base url to be able to download the selected images.