diff --git a/01.train_ODC.ipynb b/01.train_ODC.ipynb
index f8dc4c2..f8b0baf 100644
--- a/01.train_ODC.ipynb
+++ b/01.train_ODC.ipynb
@@ -2,9 +2,12 @@
"cells": [
{
"cell_type": "code",
- "execution_count": 10,
+ "execution_count": 1,
"id": "912ed572-1658-406b-976c-cd6de2d4e89e",
"metadata": {
+ "jupyter": {
+ "source_hidden": true
+ },
"tags": []
},
"outputs": [
@@ -34,16 +37,503 @@
},
{
"data": {
- "application/javascript": "(function(root) {\n function now() {\n return new Date();\n }\n\n const force = true;\n const py_version = '3.6.0'.replace('rc', '-rc.').replace('.dev', '-dev.');\n const reloading = false;\n const Bokeh = root.Bokeh;\n\n // Set a timeout for this load but only if we are not already initializing\n if (typeof (root._bokeh_timeout) === \"undefined\" || (force || !root._bokeh_is_initializing)) {\n root._bokeh_timeout = Date.now() + 5000;\n root._bokeh_failed_load = false;\n }\n\n function run_callbacks() {\n try {\n root._bokeh_onload_callbacks.forEach(function(callback) {\n if (callback != null)\n callback();\n });\n } finally {\n delete root._bokeh_onload_callbacks;\n }\n console.debug(\"Bokeh: all callbacks have finished\");\n }\n\n function load_libs(css_urls, js_urls, js_modules, js_exports, callback) {\n if (css_urls == null) css_urls = [];\n if (js_urls == null) js_urls = [];\n if (js_modules == null) js_modules = [];\n if (js_exports == null) js_exports = {};\n\n root._bokeh_onload_callbacks.push(callback);\n\n if (root._bokeh_is_loading > 0) {\n // Don't load bokeh if it is still initializing\n console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n return null;\n } else if (js_urls.length === 0 && js_modules.length === 0 && Object.keys(js_exports).length === 0) {\n // There is nothing to load\n run_callbacks();\n return null;\n }\n\n function on_load() {\n root._bokeh_is_loading--;\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n run_callbacks()\n }\n }\n window._bokeh_on_load = on_load\n\n function on_error(e) {\n const src_el = e.srcElement\n console.error(\"failed to load \" + (src_el.href || src_el.src));\n }\n\n const skip = [];\n if (window.requirejs) {\n window.requirejs.config({'packages': {}, 'paths': {}, 'shim': {}});\n root._bokeh_is_loading = css_urls.length + 0;\n } else {\n root._bokeh_is_loading = css_urls.length + js_urls.length + js_modules.length + Object.keys(js_exports).length;\n }\n\n const existing_stylesheets = []\n const links = document.getElementsByTagName('link')\n for (let i = 0; i < links.length; i++) {\n const link = links[i]\n if (link.href != null) {\n existing_stylesheets.push(link.href)\n }\n }\n for (let i = 0; i < css_urls.length; i++) {\n const url = css_urls[i];\n const escaped = encodeURI(url)\n if (existing_stylesheets.indexOf(escaped) !== -1) {\n on_load()\n continue;\n }\n const element = document.createElement(\"link\");\n element.onload = on_load;\n element.onerror = on_error;\n element.rel = \"stylesheet\";\n element.type = \"text/css\";\n element.href = url;\n console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n document.body.appendChild(element);\n } var existing_scripts = []\n const scripts = document.getElementsByTagName('script')\n for (let i = 0; i < scripts.length; i++) {\n var script = scripts[i]\n if (script.src != null) {\n existing_scripts.push(script.src)\n }\n }\n for (let i = 0; i < js_urls.length; i++) {\n const url = js_urls[i];\n const escaped = encodeURI(url)\n if (skip.indexOf(escaped) !== -1 || existing_scripts.indexOf(escaped) !== -1) {\n if (!window.requirejs) {\n on_load();\n }\n continue;\n }\n const element = document.createElement('script');\n element.onload = on_load;\n element.onerror = on_error;\n element.async = false;\n element.src = url;\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n document.head.appendChild(element);\n }\n for (let i = 0; i < js_modules.length; i++) {\n const url = js_modules[i];\n const escaped = encodeURI(url)\n if (skip.indexOf(escaped) !== -1 || existing_scripts.indexOf(escaped) !== -1) {\n if (!window.requirejs) {\n on_load();\n }\n continue;\n }\n var element = document.createElement('script');\n element.onload = on_load;\n element.onerror = on_error;\n element.async = false;\n element.src = url;\n element.type = \"module\";\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n document.head.appendChild(element);\n }\n for (const name in js_exports) {\n const url = js_exports[name];\n const escaped = encodeURI(url)\n if (skip.indexOf(escaped) >= 0 || root[name] != null) {\n if (!window.requirejs) {\n on_load();\n }\n continue;\n }\n var element = document.createElement('script');\n element.onerror = on_error;\n element.async = false;\n element.type = \"module\";\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n element.textContent = `\n import ${name} from \"${url}\"\n window.${name} = ${name}\n window._bokeh_on_load()\n `\n document.head.appendChild(element);\n }\n if (!js_urls.length && !js_modules.length) {\n on_load()\n }\n };\n\n function inject_raw_css(css) {\n const element = document.createElement(\"style\");\n element.appendChild(document.createTextNode(css));\n document.body.appendChild(element);\n }\n\n const js_urls = [\"https://cdn.holoviz.org/panel/1.5.3/dist/bundled/reactiveesm/es-module-shims@^1.10.0/dist/es-module-shims.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-3.6.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-gl-3.6.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-3.6.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-3.6.0.min.js\", \"https://cdn.holoviz.org/panel/1.5.3/dist/panel.min.js\"];\n const js_modules = [];\n const js_exports = {};\n const css_urls = [];\n const inline_js = [ function(Bokeh) {\n Bokeh.set_log_level(\"info\");\n },\nfunction(Bokeh) {} // ensure no trailing comma for IE\n ];\n\n function run_inline_js() {\n if ((root.Bokeh !== undefined) || (force === true)) {\n for (let i = 0; i < inline_js.length; i++) {\n try {\n inline_js[i].call(root, root.Bokeh);\n } catch(e) {\n if (!reloading) {\n throw e;\n }\n }\n }\n // Cache old bokeh versions\n if (Bokeh != undefined && !reloading) {\n var NewBokeh = root.Bokeh;\n if (Bokeh.versions === undefined) {\n Bokeh.versions = new Map();\n }\n if (NewBokeh.version !== Bokeh.version) {\n Bokeh.versions.set(NewBokeh.version, NewBokeh)\n }\n root.Bokeh = Bokeh;\n }\n } else if (Date.now() < root._bokeh_timeout) {\n setTimeout(run_inline_js, 100);\n } else if (!root._bokeh_failed_load) {\n console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n root._bokeh_failed_load = true;\n }\n root._bokeh_is_initializing = false\n }\n\n function load_or_wait() {\n // Implement a backoff loop that tries to ensure we do not load multiple\n // versions of Bokeh and its dependencies at the same time.\n // In recent versions we use the root._bokeh_is_initializing flag\n // to determine whether there is an ongoing attempt to initialize\n // bokeh, however for backward compatibility we also try to ensure\n // that we do not start loading a newer (Panel>=1.0 and Bokeh>3) version\n // before older versions are fully initialized.\n if (root._bokeh_is_initializing && Date.now() > root._bokeh_timeout) {\n // If the timeout and bokeh was not successfully loaded we reset\n // everything and try loading again\n root._bokeh_timeout = Date.now() + 5000;\n root._bokeh_is_initializing = false;\n root._bokeh_onload_callbacks = undefined;\n root._bokeh_is_loading = 0\n console.log(\"Bokeh: BokehJS was loaded multiple times but one version failed to initialize.\");\n load_or_wait();\n } else if (root._bokeh_is_initializing || (typeof root._bokeh_is_initializing === \"undefined\" && root._bokeh_onload_callbacks !== undefined)) {\n setTimeout(load_or_wait, 100);\n } else {\n root._bokeh_is_initializing = true\n root._bokeh_onload_callbacks = []\n const bokeh_loaded = root.Bokeh != null && (root.Bokeh.version === py_version || (root.Bokeh.versions !== undefined && root.Bokeh.versions.has(py_version)));\n if (!reloading && !bokeh_loaded) {\n if (root.Bokeh) {\n root.Bokeh = undefined;\n }\n console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n }\n load_libs(css_urls, js_urls, js_modules, js_exports, function() {\n console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n run_inline_js();\n });\n }\n }\n // Give older versions of the autoload script a head-start to ensure\n // they initialize before we start loading newer version.\n setTimeout(load_or_wait, 100)\n}(window));",
- "application/vnd.holoviews_load.v0+json": ""
+ "application/javascript": [
+ "(function(root) {\n",
+ " function now() {\n",
+ " return new Date();\n",
+ " }\n",
+ "\n",
+ " const force = true;\n",
+ " const py_version = '3.6.0'.replace('rc', '-rc.').replace('.dev', '-dev.');\n",
+ " const reloading = false;\n",
+ " const Bokeh = root.Bokeh;\n",
+ "\n",
+ " // Set a timeout for this load but only if we are not already initializing\n",
+ " if (typeof (root._bokeh_timeout) === \"undefined\" || (force || !root._bokeh_is_initializing)) {\n",
+ " root._bokeh_timeout = Date.now() + 5000;\n",
+ " root._bokeh_failed_load = false;\n",
+ " }\n",
+ "\n",
+ " function run_callbacks() {\n",
+ " try {\n",
+ " root._bokeh_onload_callbacks.forEach(function(callback) {\n",
+ " if (callback != null)\n",
+ " callback();\n",
+ " });\n",
+ " } finally {\n",
+ " delete root._bokeh_onload_callbacks;\n",
+ " }\n",
+ " console.debug(\"Bokeh: all callbacks have finished\");\n",
+ " }\n",
+ "\n",
+ " function load_libs(css_urls, js_urls, js_modules, js_exports, callback) {\n",
+ " if (css_urls == null) css_urls = [];\n",
+ " if (js_urls == null) js_urls = [];\n",
+ " if (js_modules == null) js_modules = [];\n",
+ " if (js_exports == null) js_exports = {};\n",
+ "\n",
+ " root._bokeh_onload_callbacks.push(callback);\n",
+ "\n",
+ " if (root._bokeh_is_loading > 0) {\n",
+ " // Don't load bokeh if it is still initializing\n",
+ " console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n",
+ " return null;\n",
+ " } else if (js_urls.length === 0 && js_modules.length === 0 && Object.keys(js_exports).length === 0) {\n",
+ " // There is nothing to load\n",
+ " run_callbacks();\n",
+ " return null;\n",
+ " }\n",
+ "\n",
+ " function on_load() {\n",
+ " root._bokeh_is_loading--;\n",
+ " if (root._bokeh_is_loading === 0) {\n",
+ " console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n",
+ " run_callbacks()\n",
+ " }\n",
+ " }\n",
+ " window._bokeh_on_load = on_load\n",
+ "\n",
+ " function on_error(e) {\n",
+ " const src_el = e.srcElement\n",
+ " console.error(\"failed to load \" + (src_el.href || src_el.src));\n",
+ " }\n",
+ "\n",
+ " const skip = [];\n",
+ " if (window.requirejs) {\n",
+ " window.requirejs.config({'packages': {}, 'paths': {}, 'shim': {}});\n",
+ " root._bokeh_is_loading = css_urls.length + 0;\n",
+ " } else {\n",
+ " root._bokeh_is_loading = css_urls.length + js_urls.length + js_modules.length + Object.keys(js_exports).length;\n",
+ " }\n",
+ "\n",
+ " const existing_stylesheets = []\n",
+ " const links = document.getElementsByTagName('link')\n",
+ " for (let i = 0; i < links.length; i++) {\n",
+ " const link = links[i]\n",
+ " if (link.href != null) {\n",
+ " existing_stylesheets.push(link.href)\n",
+ " }\n",
+ " }\n",
+ " for (let i = 0; i < css_urls.length; i++) {\n",
+ " const url = css_urls[i];\n",
+ " const escaped = encodeURI(url)\n",
+ " if (existing_stylesheets.indexOf(escaped) !== -1) {\n",
+ " on_load()\n",
+ " continue;\n",
+ " }\n",
+ " const element = document.createElement(\"link\");\n",
+ " element.onload = on_load;\n",
+ " element.onerror = on_error;\n",
+ " element.rel = \"stylesheet\";\n",
+ " element.type = \"text/css\";\n",
+ " element.href = url;\n",
+ " console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n",
+ " document.body.appendChild(element);\n",
+ " } var existing_scripts = []\n",
+ " const scripts = document.getElementsByTagName('script')\n",
+ " for (let i = 0; i < scripts.length; i++) {\n",
+ " var script = scripts[i]\n",
+ " if (script.src != null) {\n",
+ " existing_scripts.push(script.src)\n",
+ " }\n",
+ " }\n",
+ " for (let i = 0; i < js_urls.length; i++) {\n",
+ " const url = js_urls[i];\n",
+ " const escaped = encodeURI(url)\n",
+ " if (skip.indexOf(escaped) !== -1 || existing_scripts.indexOf(escaped) !== -1) {\n",
+ " if (!window.requirejs) {\n",
+ " on_load();\n",
+ " }\n",
+ " continue;\n",
+ " }\n",
+ " const element = document.createElement('script');\n",
+ " element.onload = on_load;\n",
+ " element.onerror = on_error;\n",
+ " element.async = false;\n",
+ " element.src = url;\n",
+ " console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n",
+ " document.head.appendChild(element);\n",
+ " }\n",
+ " for (let i = 0; i < js_modules.length; i++) {\n",
+ " const url = js_modules[i];\n",
+ " const escaped = encodeURI(url)\n",
+ " if (skip.indexOf(escaped) !== -1 || existing_scripts.indexOf(escaped) !== -1) {\n",
+ " if (!window.requirejs) {\n",
+ " on_load();\n",
+ " }\n",
+ " continue;\n",
+ " }\n",
+ " var element = document.createElement('script');\n",
+ " element.onload = on_load;\n",
+ " element.onerror = on_error;\n",
+ " element.async = false;\n",
+ " element.src = url;\n",
+ " element.type = \"module\";\n",
+ " console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n",
+ " document.head.appendChild(element);\n",
+ " }\n",
+ " for (const name in js_exports) {\n",
+ " const url = js_exports[name];\n",
+ " const escaped = encodeURI(url)\n",
+ " if (skip.indexOf(escaped) >= 0 || root[name] != null) {\n",
+ " if (!window.requirejs) {\n",
+ " on_load();\n",
+ " }\n",
+ " continue;\n",
+ " }\n",
+ " var element = document.createElement('script');\n",
+ " element.onerror = on_error;\n",
+ " element.async = false;\n",
+ " element.type = \"module\";\n",
+ " console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n",
+ " element.textContent = `\n",
+ " import ${name} from \"${url}\"\n",
+ " window.${name} = ${name}\n",
+ " window._bokeh_on_load()\n",
+ " `\n",
+ " document.head.appendChild(element);\n",
+ " }\n",
+ " if (!js_urls.length && !js_modules.length) {\n",
+ " on_load()\n",
+ " }\n",
+ " };\n",
+ "\n",
+ " function inject_raw_css(css) {\n",
+ " const element = document.createElement(\"style\");\n",
+ " element.appendChild(document.createTextNode(css));\n",
+ " document.body.appendChild(element);\n",
+ " }\n",
+ "\n",
+ " const js_urls = [\"https://cdn.holoviz.org/panel/1.5.3/dist/bundled/reactiveesm/es-module-shims@^1.10.0/dist/es-module-shims.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-3.6.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-gl-3.6.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-3.6.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-3.6.0.min.js\", \"https://cdn.holoviz.org/panel/1.5.3/dist/panel.min.js\"];\n",
+ " const js_modules = [];\n",
+ " const js_exports = {};\n",
+ " const css_urls = [];\n",
+ " const inline_js = [ function(Bokeh) {\n",
+ " Bokeh.set_log_level(\"info\");\n",
+ " },\n",
+ "function(Bokeh) {} // ensure no trailing comma for IE\n",
+ " ];\n",
+ "\n",
+ " function run_inline_js() {\n",
+ " if ((root.Bokeh !== undefined) || (force === true)) {\n",
+ " for (let i = 0; i < inline_js.length; i++) {\n",
+ " try {\n",
+ " inline_js[i].call(root, root.Bokeh);\n",
+ " } catch(e) {\n",
+ " if (!reloading) {\n",
+ " throw e;\n",
+ " }\n",
+ " }\n",
+ " }\n",
+ " // Cache old bokeh versions\n",
+ " if (Bokeh != undefined && !reloading) {\n",
+ " var NewBokeh = root.Bokeh;\n",
+ " if (Bokeh.versions === undefined) {\n",
+ " Bokeh.versions = new Map();\n",
+ " }\n",
+ " if (NewBokeh.version !== Bokeh.version) {\n",
+ " Bokeh.versions.set(NewBokeh.version, NewBokeh)\n",
+ " }\n",
+ " root.Bokeh = Bokeh;\n",
+ " }\n",
+ " } else if (Date.now() < root._bokeh_timeout) {\n",
+ " setTimeout(run_inline_js, 100);\n",
+ " } else if (!root._bokeh_failed_load) {\n",
+ " console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n",
+ " root._bokeh_failed_load = true;\n",
+ " }\n",
+ " root._bokeh_is_initializing = false\n",
+ " }\n",
+ "\n",
+ " function load_or_wait() {\n",
+ " // Implement a backoff loop that tries to ensure we do not load multiple\n",
+ " // versions of Bokeh and its dependencies at the same time.\n",
+ " // In recent versions we use the root._bokeh_is_initializing flag\n",
+ " // to determine whether there is an ongoing attempt to initialize\n",
+ " // bokeh, however for backward compatibility we also try to ensure\n",
+ " // that we do not start loading a newer (Panel>=1.0 and Bokeh>3) version\n",
+ " // before older versions are fully initialized.\n",
+ " if (root._bokeh_is_initializing && Date.now() > root._bokeh_timeout) {\n",
+ " // If the timeout and bokeh was not successfully loaded we reset\n",
+ " // everything and try loading again\n",
+ " root._bokeh_timeout = Date.now() + 5000;\n",
+ " root._bokeh_is_initializing = false;\n",
+ " root._bokeh_onload_callbacks = undefined;\n",
+ " root._bokeh_is_loading = 0\n",
+ " console.log(\"Bokeh: BokehJS was loaded multiple times but one version failed to initialize.\");\n",
+ " load_or_wait();\n",
+ " } else if (root._bokeh_is_initializing || (typeof root._bokeh_is_initializing === \"undefined\" && root._bokeh_onload_callbacks !== undefined)) {\n",
+ " setTimeout(load_or_wait, 100);\n",
+ " } else {\n",
+ " root._bokeh_is_initializing = true\n",
+ " root._bokeh_onload_callbacks = []\n",
+ " const bokeh_loaded = root.Bokeh != null && (root.Bokeh.version === py_version || (root.Bokeh.versions !== undefined && root.Bokeh.versions.has(py_version)));\n",
+ " if (!reloading && !bokeh_loaded) {\n",
+ " if (root.Bokeh) {\n",
+ " root.Bokeh = undefined;\n",
+ " }\n",
+ " console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n",
+ " }\n",
+ " load_libs(css_urls, js_urls, js_modules, js_exports, function() {\n",
+ " console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n",
+ " run_inline_js();\n",
+ " });\n",
+ " }\n",
+ " }\n",
+ " // Give older versions of the autoload script a head-start to ensure\n",
+ " // they initialize before we start loading newer version.\n",
+ " setTimeout(load_or_wait, 100)\n",
+ "}(window));"
+ ],
+ "application/vnd.holoviews_load.v0+json": "(function(root) {\n function now() {\n return new Date();\n }\n\n const force = true;\n const py_version = '3.6.0'.replace('rc', '-rc.').replace('.dev', '-dev.');\n const reloading = false;\n const Bokeh = root.Bokeh;\n\n // Set a timeout for this load but only if we are not already initializing\n if (typeof (root._bokeh_timeout) === \"undefined\" || (force || !root._bokeh_is_initializing)) {\n root._bokeh_timeout = Date.now() + 5000;\n root._bokeh_failed_load = false;\n }\n\n function run_callbacks() {\n try {\n root._bokeh_onload_callbacks.forEach(function(callback) {\n if (callback != null)\n callback();\n });\n } finally {\n delete root._bokeh_onload_callbacks;\n }\n console.debug(\"Bokeh: all callbacks have finished\");\n }\n\n function load_libs(css_urls, js_urls, js_modules, js_exports, callback) {\n if (css_urls == null) css_urls = [];\n if (js_urls == null) js_urls = [];\n if (js_modules == null) js_modules = [];\n if (js_exports == null) js_exports = {};\n\n root._bokeh_onload_callbacks.push(callback);\n\n if (root._bokeh_is_loading > 0) {\n // Don't load bokeh if it is still initializing\n console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n return null;\n } else if (js_urls.length === 0 && js_modules.length === 0 && Object.keys(js_exports).length === 0) {\n // There is nothing to load\n run_callbacks();\n return null;\n }\n\n function on_load() {\n root._bokeh_is_loading--;\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n run_callbacks()\n }\n }\n window._bokeh_on_load = on_load\n\n function on_error(e) {\n const src_el = e.srcElement\n console.error(\"failed to load \" + (src_el.href || src_el.src));\n }\n\n const skip = [];\n if (window.requirejs) {\n window.requirejs.config({'packages': {}, 'paths': {}, 'shim': {}});\n root._bokeh_is_loading = css_urls.length + 0;\n } else {\n root._bokeh_is_loading = css_urls.length + js_urls.length + js_modules.length + Object.keys(js_exports).length;\n }\n\n const existing_stylesheets = []\n const links = document.getElementsByTagName('link')\n for (let i = 0; i < links.length; i++) {\n const link = links[i]\n if (link.href != null) {\n existing_stylesheets.push(link.href)\n }\n }\n for (let i = 0; i < css_urls.length; i++) {\n const url = css_urls[i];\n const escaped = encodeURI(url)\n if (existing_stylesheets.indexOf(escaped) !== -1) {\n on_load()\n continue;\n }\n const element = document.createElement(\"link\");\n element.onload = on_load;\n element.onerror = on_error;\n element.rel = \"stylesheet\";\n element.type = \"text/css\";\n element.href = url;\n console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n document.body.appendChild(element);\n } var existing_scripts = []\n const scripts = document.getElementsByTagName('script')\n for (let i = 0; i < scripts.length; i++) {\n var script = scripts[i]\n if (script.src != null) {\n existing_scripts.push(script.src)\n }\n }\n for (let i = 0; i < js_urls.length; i++) {\n const url = js_urls[i];\n const escaped = encodeURI(url)\n if (skip.indexOf(escaped) !== -1 || existing_scripts.indexOf(escaped) !== -1) {\n if (!window.requirejs) {\n on_load();\n }\n continue;\n }\n const element = document.createElement('script');\n element.onload = on_load;\n element.onerror = on_error;\n element.async = false;\n element.src = url;\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n document.head.appendChild(element);\n }\n for (let i = 0; i < js_modules.length; i++) {\n const url = js_modules[i];\n const escaped = encodeURI(url)\n if (skip.indexOf(escaped) !== -1 || existing_scripts.indexOf(escaped) !== -1) {\n if (!window.requirejs) {\n on_load();\n }\n continue;\n }\n var element = document.createElement('script');\n element.onload = on_load;\n element.onerror = on_error;\n element.async = false;\n element.src = url;\n element.type = \"module\";\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n document.head.appendChild(element);\n }\n for (const name in js_exports) {\n const url = js_exports[name];\n const escaped = encodeURI(url)\n if (skip.indexOf(escaped) >= 0 || root[name] != null) {\n if (!window.requirejs) {\n on_load();\n }\n continue;\n }\n var element = document.createElement('script');\n element.onerror = on_error;\n element.async = false;\n element.type = \"module\";\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n element.textContent = `\n import ${name} from \"${url}\"\n window.${name} = ${name}\n window._bokeh_on_load()\n `\n document.head.appendChild(element);\n }\n if (!js_urls.length && !js_modules.length) {\n on_load()\n }\n };\n\n function inject_raw_css(css) {\n const element = document.createElement(\"style\");\n element.appendChild(document.createTextNode(css));\n document.body.appendChild(element);\n }\n\n const js_urls = [\"https://cdn.holoviz.org/panel/1.5.3/dist/bundled/reactiveesm/es-module-shims@^1.10.0/dist/es-module-shims.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-3.6.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-gl-3.6.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-3.6.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-3.6.0.min.js\", \"https://cdn.holoviz.org/panel/1.5.3/dist/panel.min.js\"];\n const js_modules = [];\n const js_exports = {};\n const css_urls = [];\n const inline_js = [ function(Bokeh) {\n Bokeh.set_log_level(\"info\");\n },\nfunction(Bokeh) {} // ensure no trailing comma for IE\n ];\n\n function run_inline_js() {\n if ((root.Bokeh !== undefined) || (force === true)) {\n for (let i = 0; i < inline_js.length; i++) {\n try {\n inline_js[i].call(root, root.Bokeh);\n } catch(e) {\n if (!reloading) {\n throw e;\n }\n }\n }\n // Cache old bokeh versions\n if (Bokeh != undefined && !reloading) {\n var NewBokeh = root.Bokeh;\n if (Bokeh.versions === undefined) {\n Bokeh.versions = new Map();\n }\n if (NewBokeh.version !== Bokeh.version) {\n Bokeh.versions.set(NewBokeh.version, NewBokeh)\n }\n root.Bokeh = Bokeh;\n }\n } else if (Date.now() < root._bokeh_timeout) {\n setTimeout(run_inline_js, 100);\n } else if (!root._bokeh_failed_load) {\n console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n root._bokeh_failed_load = true;\n }\n root._bokeh_is_initializing = false\n }\n\n function load_or_wait() {\n // Implement a backoff loop that tries to ensure we do not load multiple\n // versions of Bokeh and its dependencies at the same time.\n // In recent versions we use the root._bokeh_is_initializing flag\n // to determine whether there is an ongoing attempt to initialize\n // bokeh, however for backward compatibility we also try to ensure\n // that we do not start loading a newer (Panel>=1.0 and Bokeh>3) version\n // before older versions are fully initialized.\n if (root._bokeh_is_initializing && Date.now() > root._bokeh_timeout) {\n // If the timeout and bokeh was not successfully loaded we reset\n // everything and try loading again\n root._bokeh_timeout = Date.now() + 5000;\n root._bokeh_is_initializing = false;\n root._bokeh_onload_callbacks = undefined;\n root._bokeh_is_loading = 0\n console.log(\"Bokeh: BokehJS was loaded multiple times but one version failed to initialize.\");\n load_or_wait();\n } else if (root._bokeh_is_initializing || (typeof root._bokeh_is_initializing === \"undefined\" && root._bokeh_onload_callbacks !== undefined)) {\n setTimeout(load_or_wait, 100);\n } else {\n root._bokeh_is_initializing = true\n root._bokeh_onload_callbacks = []\n const bokeh_loaded = root.Bokeh != null && (root.Bokeh.version === py_version || (root.Bokeh.versions !== undefined && root.Bokeh.versions.has(py_version)));\n if (!reloading && !bokeh_loaded) {\n if (root.Bokeh) {\n root.Bokeh = undefined;\n }\n console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n }\n load_libs(css_urls, js_urls, js_modules, js_exports, function() {\n console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n run_inline_js();\n });\n }\n }\n // Give older versions of the autoload script a head-start to ensure\n // they initialize before we start loading newer version.\n setTimeout(load_or_wait, 100)\n}(window));"
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
- "application/javascript": "\nif ((window.PyViz === undefined) || (window.PyViz instanceof HTMLElement)) {\n window.PyViz = {comms: {}, comm_status:{}, kernels:{}, receivers: {}, plot_index: []}\n}\n\n\n function JupyterCommManager() {\n }\n\n JupyterCommManager.prototype.register_target = function(plot_id, comm_id, msg_handler) {\n if (window.comm_manager || ((window.Jupyter !== undefined) && (Jupyter.notebook.kernel != null))) {\n var comm_manager = window.comm_manager || Jupyter.notebook.kernel.comm_manager;\n comm_manager.register_target(comm_id, function(comm) {\n comm.on_msg(msg_handler);\n });\n } else if ((plot_id in window.PyViz.kernels) && (window.PyViz.kernels[plot_id])) {\n window.PyViz.kernels[plot_id].registerCommTarget(comm_id, function(comm) {\n comm.onMsg = msg_handler;\n });\n } else if (typeof google != 'undefined' && google.colab.kernel != null) {\n google.colab.kernel.comms.registerTarget(comm_id, (comm) => {\n var messages = comm.messages[Symbol.asyncIterator]();\n function processIteratorResult(result) {\n var message = result.value;\n console.log(message)\n var content = {data: message.data, comm_id};\n var buffers = []\n for (var buffer of message.buffers || []) {\n buffers.push(new DataView(buffer))\n }\n var metadata = message.metadata || {};\n var msg = {content, buffers, metadata}\n msg_handler(msg);\n return messages.next().then(processIteratorResult);\n }\n return messages.next().then(processIteratorResult);\n })\n }\n }\n\n JupyterCommManager.prototype.get_client_comm = function(plot_id, comm_id, msg_handler) {\n if (comm_id in window.PyViz.comms) {\n return window.PyViz.comms[comm_id];\n } else if (window.comm_manager || ((window.Jupyter !== undefined) && (Jupyter.notebook.kernel != null))) {\n var comm_manager = window.comm_manager || Jupyter.notebook.kernel.comm_manager;\n var comm = comm_manager.new_comm(comm_id, {}, {}, {}, comm_id);\n if (msg_handler) {\n comm.on_msg(msg_handler);\n }\n } else if ((plot_id in window.PyViz.kernels) && (window.PyViz.kernels[plot_id])) {\n var comm = window.PyViz.kernels[plot_id].connectToComm(comm_id);\n comm.open();\n if (msg_handler) {\n comm.onMsg = msg_handler;\n }\n } else if (typeof google != 'undefined' && google.colab.kernel != null) {\n var comm_promise = google.colab.kernel.comms.open(comm_id)\n comm_promise.then((comm) => {\n window.PyViz.comms[comm_id] = comm;\n if (msg_handler) {\n var messages = comm.messages[Symbol.asyncIterator]();\n function processIteratorResult(result) {\n var message = result.value;\n var content = {data: message.data};\n var metadata = message.metadata || {comm_id};\n var msg = {content, metadata}\n msg_handler(msg);\n return messages.next().then(processIteratorResult);\n }\n return messages.next().then(processIteratorResult);\n }\n }) \n var sendClosure = (data, metadata, buffers, disposeOnDone) => {\n return comm_promise.then((comm) => {\n comm.send(data, metadata, buffers, disposeOnDone);\n });\n };\n var comm = {\n send: sendClosure\n };\n }\n window.PyViz.comms[comm_id] = comm;\n return comm;\n }\n window.PyViz.comm_manager = new JupyterCommManager();\n \n\n\nvar JS_MIME_TYPE = 'application/javascript';\nvar HTML_MIME_TYPE = 'text/html';\nvar EXEC_MIME_TYPE = 'application/vnd.holoviews_exec.v0+json';\nvar CLASS_NAME = 'output';\n\n/**\n * Render data to the DOM node\n */\nfunction render(props, node) {\n var div = document.createElement(\"div\");\n var script = document.createElement(\"script\");\n node.appendChild(div);\n node.appendChild(script);\n}\n\n/**\n * Handle when a new output is added\n */\nfunction handle_add_output(event, handle) {\n var output_area = handle.output_area;\n var output = handle.output;\n if ((output.data == undefined) || (!output.data.hasOwnProperty(EXEC_MIME_TYPE))) {\n return\n }\n var id = output.metadata[EXEC_MIME_TYPE][\"id\"];\n var toinsert = output_area.element.find(\".\" + CLASS_NAME.split(' ')[0]);\n if (id !== undefined) {\n var nchildren = toinsert.length;\n var html_node = toinsert[nchildren-1].children[0];\n html_node.innerHTML = output.data[HTML_MIME_TYPE];\n var scripts = [];\n var nodelist = html_node.querySelectorAll(\"script\");\n for (var i in nodelist) {\n if (nodelist.hasOwnProperty(i)) {\n scripts.push(nodelist[i])\n }\n }\n\n scripts.forEach( function (oldScript) {\n var newScript = document.createElement(\"script\");\n var attrs = [];\n var nodemap = oldScript.attributes;\n for (var j in nodemap) {\n if (nodemap.hasOwnProperty(j)) {\n attrs.push(nodemap[j])\n }\n }\n attrs.forEach(function(attr) { newScript.setAttribute(attr.name, attr.value) });\n newScript.appendChild(document.createTextNode(oldScript.innerHTML));\n oldScript.parentNode.replaceChild(newScript, oldScript);\n });\n if (JS_MIME_TYPE in output.data) {\n toinsert[nchildren-1].children[1].textContent = output.data[JS_MIME_TYPE];\n }\n output_area._hv_plot_id = id;\n if ((window.Bokeh !== undefined) && (id in Bokeh.index)) {\n window.PyViz.plot_index[id] = Bokeh.index[id];\n } else {\n window.PyViz.plot_index[id] = null;\n }\n } else if (output.metadata[EXEC_MIME_TYPE][\"server_id\"] !== undefined) {\n var bk_div = document.createElement(\"div\");\n bk_div.innerHTML = output.data[HTML_MIME_TYPE];\n var script_attrs = bk_div.children[0].attributes;\n for (var i = 0; i < script_attrs.length; i++) {\n toinsert[toinsert.length - 1].childNodes[1].setAttribute(script_attrs[i].name, script_attrs[i].value);\n }\n // store reference to server id on output_area\n output_area._bokeh_server_id = output.metadata[EXEC_MIME_TYPE][\"server_id\"];\n }\n}\n\n/**\n * Handle when an output is cleared or removed\n */\nfunction handle_clear_output(event, handle) {\n var id = handle.cell.output_area._hv_plot_id;\n var server_id = handle.cell.output_area._bokeh_server_id;\n if (((id === undefined) || !(id in PyViz.plot_index)) && (server_id !== undefined)) { return; }\n var comm = window.PyViz.comm_manager.get_client_comm(\"hv-extension-comm\", \"hv-extension-comm\", function () {});\n if (server_id !== null) {\n comm.send({event_type: 'server_delete', 'id': server_id});\n return;\n } else if (comm !== null) {\n comm.send({event_type: 'delete', 'id': id});\n }\n delete PyViz.plot_index[id];\n if ((window.Bokeh !== undefined) & (id in window.Bokeh.index)) {\n var doc = window.Bokeh.index[id].model.document\n doc.clear();\n const i = window.Bokeh.documents.indexOf(doc);\n if (i > -1) {\n window.Bokeh.documents.splice(i, 1);\n }\n }\n}\n\n/**\n * Handle kernel restart event\n */\nfunction handle_kernel_cleanup(event, handle) {\n delete PyViz.comms[\"hv-extension-comm\"];\n window.PyViz.plot_index = {}\n}\n\n/**\n * Handle update_display_data messages\n */\nfunction handle_update_output(event, handle) {\n handle_clear_output(event, {cell: {output_area: handle.output_area}})\n handle_add_output(event, handle)\n}\n\nfunction register_renderer(events, OutputArea) {\n function append_mime(data, metadata, element) {\n // create a DOM node to render to\n var toinsert = this.create_output_subarea(\n metadata,\n CLASS_NAME,\n EXEC_MIME_TYPE\n );\n this.keyboard_manager.register_events(toinsert);\n // Render to node\n var props = {data: data, metadata: metadata[EXEC_MIME_TYPE]};\n render(props, toinsert[0]);\n element.append(toinsert);\n return toinsert\n }\n\n events.on('output_added.OutputArea', handle_add_output);\n events.on('output_updated.OutputArea', handle_update_output);\n events.on('clear_output.CodeCell', handle_clear_output);\n events.on('delete.Cell', handle_clear_output);\n events.on('kernel_ready.Kernel', handle_kernel_cleanup);\n\n OutputArea.prototype.register_mime_type(EXEC_MIME_TYPE, append_mime, {\n safe: true,\n index: 0\n });\n}\n\nif (window.Jupyter !== undefined) {\n try {\n var events = require('base/js/events');\n var OutputArea = require('notebook/js/outputarea').OutputArea;\n if (OutputArea.prototype.mime_types().indexOf(EXEC_MIME_TYPE) == -1) {\n register_renderer(events, OutputArea);\n }\n } catch(err) {\n }\n}\n",
- "application/vnd.holoviews_load.v0+json": ""
+ "application/javascript": [
+ "\n",
+ "if ((window.PyViz === undefined) || (window.PyViz instanceof HTMLElement)) {\n",
+ " window.PyViz = {comms: {}, comm_status:{}, kernels:{}, receivers: {}, plot_index: []}\n",
+ "}\n",
+ "\n",
+ "\n",
+ " function JupyterCommManager() {\n",
+ " }\n",
+ "\n",
+ " JupyterCommManager.prototype.register_target = function(plot_id, comm_id, msg_handler) {\n",
+ " if (window.comm_manager || ((window.Jupyter !== undefined) && (Jupyter.notebook.kernel != null))) {\n",
+ " var comm_manager = window.comm_manager || Jupyter.notebook.kernel.comm_manager;\n",
+ " comm_manager.register_target(comm_id, function(comm) {\n",
+ " comm.on_msg(msg_handler);\n",
+ " });\n",
+ " } else if ((plot_id in window.PyViz.kernels) && (window.PyViz.kernels[plot_id])) {\n",
+ " window.PyViz.kernels[plot_id].registerCommTarget(comm_id, function(comm) {\n",
+ " comm.onMsg = msg_handler;\n",
+ " });\n",
+ " } else if (typeof google != 'undefined' && google.colab.kernel != null) {\n",
+ " google.colab.kernel.comms.registerTarget(comm_id, (comm) => {\n",
+ " var messages = comm.messages[Symbol.asyncIterator]();\n",
+ " function processIteratorResult(result) {\n",
+ " var message = result.value;\n",
+ " console.log(message)\n",
+ " var content = {data: message.data, comm_id};\n",
+ " var buffers = []\n",
+ " for (var buffer of message.buffers || []) {\n",
+ " buffers.push(new DataView(buffer))\n",
+ " }\n",
+ " var metadata = message.metadata || {};\n",
+ " var msg = {content, buffers, metadata}\n",
+ " msg_handler(msg);\n",
+ " return messages.next().then(processIteratorResult);\n",
+ " }\n",
+ " return messages.next().then(processIteratorResult);\n",
+ " })\n",
+ " }\n",
+ " }\n",
+ "\n",
+ " JupyterCommManager.prototype.get_client_comm = function(plot_id, comm_id, msg_handler) {\n",
+ " if (comm_id in window.PyViz.comms) {\n",
+ " return window.PyViz.comms[comm_id];\n",
+ " } else if (window.comm_manager || ((window.Jupyter !== undefined) && (Jupyter.notebook.kernel != null))) {\n",
+ " var comm_manager = window.comm_manager || Jupyter.notebook.kernel.comm_manager;\n",
+ " var comm = comm_manager.new_comm(comm_id, {}, {}, {}, comm_id);\n",
+ " if (msg_handler) {\n",
+ " comm.on_msg(msg_handler);\n",
+ " }\n",
+ " } else if ((plot_id in window.PyViz.kernels) && (window.PyViz.kernels[plot_id])) {\n",
+ " var comm = window.PyViz.kernels[plot_id].connectToComm(comm_id);\n",
+ " comm.open();\n",
+ " if (msg_handler) {\n",
+ " comm.onMsg = msg_handler;\n",
+ " }\n",
+ " } else if (typeof google != 'undefined' && google.colab.kernel != null) {\n",
+ " var comm_promise = google.colab.kernel.comms.open(comm_id)\n",
+ " comm_promise.then((comm) => {\n",
+ " window.PyViz.comms[comm_id] = comm;\n",
+ " if (msg_handler) {\n",
+ " var messages = comm.messages[Symbol.asyncIterator]();\n",
+ " function processIteratorResult(result) {\n",
+ " var message = result.value;\n",
+ " var content = {data: message.data};\n",
+ " var metadata = message.metadata || {comm_id};\n",
+ " var msg = {content, metadata}\n",
+ " msg_handler(msg);\n",
+ " return messages.next().then(processIteratorResult);\n",
+ " }\n",
+ " return messages.next().then(processIteratorResult);\n",
+ " }\n",
+ " }) \n",
+ " var sendClosure = (data, metadata, buffers, disposeOnDone) => {\n",
+ " return comm_promise.then((comm) => {\n",
+ " comm.send(data, metadata, buffers, disposeOnDone);\n",
+ " });\n",
+ " };\n",
+ " var comm = {\n",
+ " send: sendClosure\n",
+ " };\n",
+ " }\n",
+ " window.PyViz.comms[comm_id] = comm;\n",
+ " return comm;\n",
+ " }\n",
+ " window.PyViz.comm_manager = new JupyterCommManager();\n",
+ " \n",
+ "\n",
+ "\n",
+ "var JS_MIME_TYPE = 'application/javascript';\n",
+ "var HTML_MIME_TYPE = 'text/html';\n",
+ "var EXEC_MIME_TYPE = 'application/vnd.holoviews_exec.v0+json';\n",
+ "var CLASS_NAME = 'output';\n",
+ "\n",
+ "/**\n",
+ " * Render data to the DOM node\n",
+ " */\n",
+ "function render(props, node) {\n",
+ " var div = document.createElement(\"div\");\n",
+ " var script = document.createElement(\"script\");\n",
+ " node.appendChild(div);\n",
+ " node.appendChild(script);\n",
+ "}\n",
+ "\n",
+ "/**\n",
+ " * Handle when a new output is added\n",
+ " */\n",
+ "function handle_add_output(event, handle) {\n",
+ " var output_area = handle.output_area;\n",
+ " var output = handle.output;\n",
+ " if ((output.data == undefined) || (!output.data.hasOwnProperty(EXEC_MIME_TYPE))) {\n",
+ " return\n",
+ " }\n",
+ " var id = output.metadata[EXEC_MIME_TYPE][\"id\"];\n",
+ " var toinsert = output_area.element.find(\".\" + CLASS_NAME.split(' ')[0]);\n",
+ " if (id !== undefined) {\n",
+ " var nchildren = toinsert.length;\n",
+ " var html_node = toinsert[nchildren-1].children[0];\n",
+ " html_node.innerHTML = output.data[HTML_MIME_TYPE];\n",
+ " var scripts = [];\n",
+ " var nodelist = html_node.querySelectorAll(\"script\");\n",
+ " for (var i in nodelist) {\n",
+ " if (nodelist.hasOwnProperty(i)) {\n",
+ " scripts.push(nodelist[i])\n",
+ " }\n",
+ " }\n",
+ "\n",
+ " scripts.forEach( function (oldScript) {\n",
+ " var newScript = document.createElement(\"script\");\n",
+ " var attrs = [];\n",
+ " var nodemap = oldScript.attributes;\n",
+ " for (var j in nodemap) {\n",
+ " if (nodemap.hasOwnProperty(j)) {\n",
+ " attrs.push(nodemap[j])\n",
+ " }\n",
+ " }\n",
+ " attrs.forEach(function(attr) { newScript.setAttribute(attr.name, attr.value) });\n",
+ " newScript.appendChild(document.createTextNode(oldScript.innerHTML));\n",
+ " oldScript.parentNode.replaceChild(newScript, oldScript);\n",
+ " });\n",
+ " if (JS_MIME_TYPE in output.data) {\n",
+ " toinsert[nchildren-1].children[1].textContent = output.data[JS_MIME_TYPE];\n",
+ " }\n",
+ " output_area._hv_plot_id = id;\n",
+ " if ((window.Bokeh !== undefined) && (id in Bokeh.index)) {\n",
+ " window.PyViz.plot_index[id] = Bokeh.index[id];\n",
+ " } else {\n",
+ " window.PyViz.plot_index[id] = null;\n",
+ " }\n",
+ " } else if (output.metadata[EXEC_MIME_TYPE][\"server_id\"] !== undefined) {\n",
+ " var bk_div = document.createElement(\"div\");\n",
+ " bk_div.innerHTML = output.data[HTML_MIME_TYPE];\n",
+ " var script_attrs = bk_div.children[0].attributes;\n",
+ " for (var i = 0; i < script_attrs.length; i++) {\n",
+ " toinsert[toinsert.length - 1].childNodes[1].setAttribute(script_attrs[i].name, script_attrs[i].value);\n",
+ " }\n",
+ " // store reference to server id on output_area\n",
+ " output_area._bokeh_server_id = output.metadata[EXEC_MIME_TYPE][\"server_id\"];\n",
+ " }\n",
+ "}\n",
+ "\n",
+ "/**\n",
+ " * Handle when an output is cleared or removed\n",
+ " */\n",
+ "function handle_clear_output(event, handle) {\n",
+ " var id = handle.cell.output_area._hv_plot_id;\n",
+ " var server_id = handle.cell.output_area._bokeh_server_id;\n",
+ " if (((id === undefined) || !(id in PyViz.plot_index)) && (server_id !== undefined)) { return; }\n",
+ " var comm = window.PyViz.comm_manager.get_client_comm(\"hv-extension-comm\", \"hv-extension-comm\", function () {});\n",
+ " if (server_id !== null) {\n",
+ " comm.send({event_type: 'server_delete', 'id': server_id});\n",
+ " return;\n",
+ " } else if (comm !== null) {\n",
+ " comm.send({event_type: 'delete', 'id': id});\n",
+ " }\n",
+ " delete PyViz.plot_index[id];\n",
+ " if ((window.Bokeh !== undefined) & (id in window.Bokeh.index)) {\n",
+ " var doc = window.Bokeh.index[id].model.document\n",
+ " doc.clear();\n",
+ " const i = window.Bokeh.documents.indexOf(doc);\n",
+ " if (i > -1) {\n",
+ " window.Bokeh.documents.splice(i, 1);\n",
+ " }\n",
+ " }\n",
+ "}\n",
+ "\n",
+ "/**\n",
+ " * Handle kernel restart event\n",
+ " */\n",
+ "function handle_kernel_cleanup(event, handle) {\n",
+ " delete PyViz.comms[\"hv-extension-comm\"];\n",
+ " window.PyViz.plot_index = {}\n",
+ "}\n",
+ "\n",
+ "/**\n",
+ " * Handle update_display_data messages\n",
+ " */\n",
+ "function handle_update_output(event, handle) {\n",
+ " handle_clear_output(event, {cell: {output_area: handle.output_area}})\n",
+ " handle_add_output(event, handle)\n",
+ "}\n",
+ "\n",
+ "function register_renderer(events, OutputArea) {\n",
+ " function append_mime(data, metadata, element) {\n",
+ " // create a DOM node to render to\n",
+ " var toinsert = this.create_output_subarea(\n",
+ " metadata,\n",
+ " CLASS_NAME,\n",
+ " EXEC_MIME_TYPE\n",
+ " );\n",
+ " this.keyboard_manager.register_events(toinsert);\n",
+ " // Render to node\n",
+ " var props = {data: data, metadata: metadata[EXEC_MIME_TYPE]};\n",
+ " render(props, toinsert[0]);\n",
+ " element.append(toinsert);\n",
+ " return toinsert\n",
+ " }\n",
+ "\n",
+ " events.on('output_added.OutputArea', handle_add_output);\n",
+ " events.on('output_updated.OutputArea', handle_update_output);\n",
+ " events.on('clear_output.CodeCell', handle_clear_output);\n",
+ " events.on('delete.Cell', handle_clear_output);\n",
+ " events.on('kernel_ready.Kernel', handle_kernel_cleanup);\n",
+ "\n",
+ " OutputArea.prototype.register_mime_type(EXEC_MIME_TYPE, append_mime, {\n",
+ " safe: true,\n",
+ " index: 0\n",
+ " });\n",
+ "}\n",
+ "\n",
+ "if (window.Jupyter !== undefined) {\n",
+ " try {\n",
+ " var events = require('base/js/events');\n",
+ " var OutputArea = require('notebook/js/outputarea').OutputArea;\n",
+ " if (OutputArea.prototype.mime_types().indexOf(EXEC_MIME_TYPE) == -1) {\n",
+ " register_renderer(events, OutputArea);\n",
+ " }\n",
+ " } catch(err) {\n",
+ " }\n",
+ "}\n"
+ ],
+ "application/vnd.holoviews_load.v0+json": "\nif ((window.PyViz === undefined) || (window.PyViz instanceof HTMLElement)) {\n window.PyViz = {comms: {}, comm_status:{}, kernels:{}, receivers: {}, plot_index: []}\n}\n\n\n function JupyterCommManager() {\n }\n\n JupyterCommManager.prototype.register_target = function(plot_id, comm_id, msg_handler) {\n if (window.comm_manager || ((window.Jupyter !== undefined) && (Jupyter.notebook.kernel != null))) {\n var comm_manager = window.comm_manager || Jupyter.notebook.kernel.comm_manager;\n comm_manager.register_target(comm_id, function(comm) {\n comm.on_msg(msg_handler);\n });\n } else if ((plot_id in window.PyViz.kernels) && (window.PyViz.kernels[plot_id])) {\n window.PyViz.kernels[plot_id].registerCommTarget(comm_id, function(comm) {\n comm.onMsg = msg_handler;\n });\n } else if (typeof google != 'undefined' && google.colab.kernel != null) {\n google.colab.kernel.comms.registerTarget(comm_id, (comm) => {\n var messages = comm.messages[Symbol.asyncIterator]();\n function processIteratorResult(result) {\n var message = result.value;\n console.log(message)\n var content = {data: message.data, comm_id};\n var buffers = []\n for (var buffer of message.buffers || []) {\n buffers.push(new DataView(buffer))\n }\n var metadata = message.metadata || {};\n var msg = {content, buffers, metadata}\n msg_handler(msg);\n return messages.next().then(processIteratorResult);\n }\n return messages.next().then(processIteratorResult);\n })\n }\n }\n\n JupyterCommManager.prototype.get_client_comm = function(plot_id, comm_id, msg_handler) {\n if (comm_id in window.PyViz.comms) {\n return window.PyViz.comms[comm_id];\n } else if (window.comm_manager || ((window.Jupyter !== undefined) && (Jupyter.notebook.kernel != null))) {\n var comm_manager = window.comm_manager || Jupyter.notebook.kernel.comm_manager;\n var comm = comm_manager.new_comm(comm_id, {}, {}, {}, comm_id);\n if (msg_handler) {\n comm.on_msg(msg_handler);\n }\n } else if ((plot_id in window.PyViz.kernels) && (window.PyViz.kernels[plot_id])) {\n var comm = window.PyViz.kernels[plot_id].connectToComm(comm_id);\n comm.open();\n if (msg_handler) {\n comm.onMsg = msg_handler;\n }\n } else if (typeof google != 'undefined' && google.colab.kernel != null) {\n var comm_promise = google.colab.kernel.comms.open(comm_id)\n comm_promise.then((comm) => {\n window.PyViz.comms[comm_id] = comm;\n if (msg_handler) {\n var messages = comm.messages[Symbol.asyncIterator]();\n function processIteratorResult(result) {\n var message = result.value;\n var content = {data: message.data};\n var metadata = message.metadata || {comm_id};\n var msg = {content, metadata}\n msg_handler(msg);\n return messages.next().then(processIteratorResult);\n }\n return messages.next().then(processIteratorResult);\n }\n }) \n var sendClosure = (data, metadata, buffers, disposeOnDone) => {\n return comm_promise.then((comm) => {\n comm.send(data, metadata, buffers, disposeOnDone);\n });\n };\n var comm = {\n send: sendClosure\n };\n }\n window.PyViz.comms[comm_id] = comm;\n return comm;\n }\n window.PyViz.comm_manager = new JupyterCommManager();\n \n\n\nvar JS_MIME_TYPE = 'application/javascript';\nvar HTML_MIME_TYPE = 'text/html';\nvar EXEC_MIME_TYPE = 'application/vnd.holoviews_exec.v0+json';\nvar CLASS_NAME = 'output';\n\n/**\n * Render data to the DOM node\n */\nfunction render(props, node) {\n var div = document.createElement(\"div\");\n var script = document.createElement(\"script\");\n node.appendChild(div);\n node.appendChild(script);\n}\n\n/**\n * Handle when a new output is added\n */\nfunction handle_add_output(event, handle) {\n var output_area = handle.output_area;\n var output = handle.output;\n if ((output.data == undefined) || (!output.data.hasOwnProperty(EXEC_MIME_TYPE))) {\n return\n }\n var id = output.metadata[EXEC_MIME_TYPE][\"id\"];\n var toinsert = output_area.element.find(\".\" + CLASS_NAME.split(' ')[0]);\n if (id !== undefined) {\n var nchildren = toinsert.length;\n var html_node = toinsert[nchildren-1].children[0];\n html_node.innerHTML = output.data[HTML_MIME_TYPE];\n var scripts = [];\n var nodelist = html_node.querySelectorAll(\"script\");\n for (var i in nodelist) {\n if (nodelist.hasOwnProperty(i)) {\n scripts.push(nodelist[i])\n }\n }\n\n scripts.forEach( function (oldScript) {\n var newScript = document.createElement(\"script\");\n var attrs = [];\n var nodemap = oldScript.attributes;\n for (var j in nodemap) {\n if (nodemap.hasOwnProperty(j)) {\n attrs.push(nodemap[j])\n }\n }\n attrs.forEach(function(attr) { newScript.setAttribute(attr.name, attr.value) });\n newScript.appendChild(document.createTextNode(oldScript.innerHTML));\n oldScript.parentNode.replaceChild(newScript, oldScript);\n });\n if (JS_MIME_TYPE in output.data) {\n toinsert[nchildren-1].children[1].textContent = output.data[JS_MIME_TYPE];\n }\n output_area._hv_plot_id = id;\n if ((window.Bokeh !== undefined) && (id in Bokeh.index)) {\n window.PyViz.plot_index[id] = Bokeh.index[id];\n } else {\n window.PyViz.plot_index[id] = null;\n }\n } else if (output.metadata[EXEC_MIME_TYPE][\"server_id\"] !== undefined) {\n var bk_div = document.createElement(\"div\");\n bk_div.innerHTML = output.data[HTML_MIME_TYPE];\n var script_attrs = bk_div.children[0].attributes;\n for (var i = 0; i < script_attrs.length; i++) {\n toinsert[toinsert.length - 1].childNodes[1].setAttribute(script_attrs[i].name, script_attrs[i].value);\n }\n // store reference to server id on output_area\n output_area._bokeh_server_id = output.metadata[EXEC_MIME_TYPE][\"server_id\"];\n }\n}\n\n/**\n * Handle when an output is cleared or removed\n */\nfunction handle_clear_output(event, handle) {\n var id = handle.cell.output_area._hv_plot_id;\n var server_id = handle.cell.output_area._bokeh_server_id;\n if (((id === undefined) || !(id in PyViz.plot_index)) && (server_id !== undefined)) { return; }\n var comm = window.PyViz.comm_manager.get_client_comm(\"hv-extension-comm\", \"hv-extension-comm\", function () {});\n if (server_id !== null) {\n comm.send({event_type: 'server_delete', 'id': server_id});\n return;\n } else if (comm !== null) {\n comm.send({event_type: 'delete', 'id': id});\n }\n delete PyViz.plot_index[id];\n if ((window.Bokeh !== undefined) & (id in window.Bokeh.index)) {\n var doc = window.Bokeh.index[id].model.document\n doc.clear();\n const i = window.Bokeh.documents.indexOf(doc);\n if (i > -1) {\n window.Bokeh.documents.splice(i, 1);\n }\n }\n}\n\n/**\n * Handle kernel restart event\n */\nfunction handle_kernel_cleanup(event, handle) {\n delete PyViz.comms[\"hv-extension-comm\"];\n window.PyViz.plot_index = {}\n}\n\n/**\n * Handle update_display_data messages\n */\nfunction handle_update_output(event, handle) {\n handle_clear_output(event, {cell: {output_area: handle.output_area}})\n handle_add_output(event, handle)\n}\n\nfunction register_renderer(events, OutputArea) {\n function append_mime(data, metadata, element) {\n // create a DOM node to render to\n var toinsert = this.create_output_subarea(\n metadata,\n CLASS_NAME,\n EXEC_MIME_TYPE\n );\n this.keyboard_manager.register_events(toinsert);\n // Render to node\n var props = {data: data, metadata: metadata[EXEC_MIME_TYPE]};\n render(props, toinsert[0]);\n element.append(toinsert);\n return toinsert\n }\n\n events.on('output_added.OutputArea', handle_add_output);\n events.on('output_updated.OutputArea', handle_update_output);\n events.on('clear_output.CodeCell', handle_clear_output);\n events.on('delete.Cell', handle_clear_output);\n events.on('kernel_ready.Kernel', handle_kernel_cleanup);\n\n OutputArea.prototype.register_mime_type(EXEC_MIME_TYPE, append_mime, {\n safe: true,\n index: 0\n });\n}\n\nif (window.Jupyter !== undefined) {\n try {\n var events = require('base/js/events');\n var OutputArea = require('notebook/js/outputarea').OutputArea;\n if (OutputArea.prototype.mime_types().indexOf(EXEC_MIME_TYPE) == -1) {\n register_renderer(events, OutputArea);\n }\n } catch(err) {\n }\n}\n"
},
"metadata": {},
"output_type": "display_data"
@@ -52,12 +542,12 @@
"data": {
"application/vnd.holoviews_exec.v0+json": "",
"text/html": [
- "
\n",
- "
\n",
+ "
\n",
""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/javascript": [
+ "(function(root) {\n",
+ " function now() {\n",
+ " return new Date();\n",
+ " }\n",
+ "\n",
+ " const force = false;\n",
+ " const py_version = '3.6.0'.replace('rc', '-rc.').replace('.dev', '-dev.');\n",
+ " const reloading = true;\n",
+ " const Bokeh = root.Bokeh;\n",
+ "\n",
+ " // Set a timeout for this load but only if we are not already initializing\n",
+ " if (typeof (root._bokeh_timeout) === \"undefined\" || (force || !root._bokeh_is_initializing)) {\n",
+ " root._bokeh_timeout = Date.now() + 5000;\n",
+ " root._bokeh_failed_load = false;\n",
+ " }\n",
+ "\n",
+ " function run_callbacks() {\n",
+ " try {\n",
+ " root._bokeh_onload_callbacks.forEach(function(callback) {\n",
+ " if (callback != null)\n",
+ " callback();\n",
+ " });\n",
+ " } finally {\n",
+ " delete root._bokeh_onload_callbacks;\n",
+ " }\n",
+ " console.debug(\"Bokeh: all callbacks have finished\");\n",
+ " }\n",
+ "\n",
+ " function load_libs(css_urls, js_urls, js_modules, js_exports, callback) {\n",
+ " if (css_urls == null) css_urls = [];\n",
+ " if (js_urls == null) js_urls = [];\n",
+ " if (js_modules == null) js_modules = [];\n",
+ " if (js_exports == null) js_exports = {};\n",
+ "\n",
+ " root._bokeh_onload_callbacks.push(callback);\n",
+ "\n",
+ " if (root._bokeh_is_loading > 0) {\n",
+ " // Don't load bokeh if it is still initializing\n",
+ " console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n",
+ " return null;\n",
+ " } else if (js_urls.length === 0 && js_modules.length === 0 && Object.keys(js_exports).length === 0) {\n",
+ " // There is nothing to load\n",
+ " run_callbacks();\n",
+ " return null;\n",
+ " }\n",
+ "\n",
+ " function on_load() {\n",
+ " root._bokeh_is_loading--;\n",
+ " if (root._bokeh_is_loading === 0) {\n",
+ " console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n",
+ " run_callbacks()\n",
+ " }\n",
+ " }\n",
+ " window._bokeh_on_load = on_load\n",
+ "\n",
+ " function on_error(e) {\n",
+ " const src_el = e.srcElement\n",
+ " console.error(\"failed to load \" + (src_el.href || src_el.src));\n",
+ " }\n",
+ "\n",
+ " const skip = [];\n",
+ " if (window.requirejs) {\n",
+ " window.requirejs.config({'packages': {}, 'paths': {}, 'shim': {}});\n",
+ " root._bokeh_is_loading = css_urls.length + 0;\n",
+ " } else {\n",
+ " root._bokeh_is_loading = css_urls.length + js_urls.length + js_modules.length + Object.keys(js_exports).length;\n",
+ " }\n",
+ "\n",
+ " const existing_stylesheets = []\n",
+ " const links = document.getElementsByTagName('link')\n",
+ " for (let i = 0; i < links.length; i++) {\n",
+ " const link = links[i]\n",
+ " if (link.href != null) {\n",
+ " existing_stylesheets.push(link.href)\n",
+ " }\n",
+ " }\n",
+ " for (let i = 0; i < css_urls.length; i++) {\n",
+ " const url = css_urls[i];\n",
+ " const escaped = encodeURI(url)\n",
+ " if (existing_stylesheets.indexOf(escaped) !== -1) {\n",
+ " on_load()\n",
+ " continue;\n",
+ " }\n",
+ " const element = document.createElement(\"link\");\n",
+ " element.onload = on_load;\n",
+ " element.onerror = on_error;\n",
+ " element.rel = \"stylesheet\";\n",
+ " element.type = \"text/css\";\n",
+ " element.href = url;\n",
+ " console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n",
+ " document.body.appendChild(element);\n",
+ " } var existing_scripts = []\n",
+ " const scripts = document.getElementsByTagName('script')\n",
+ " for (let i = 0; i < scripts.length; i++) {\n",
+ " var script = scripts[i]\n",
+ " if (script.src != null) {\n",
+ " existing_scripts.push(script.src)\n",
+ " }\n",
+ " }\n",
+ " for (let i = 0; i < js_urls.length; i++) {\n",
+ " const url = js_urls[i];\n",
+ " const escaped = encodeURI(url)\n",
+ " if (skip.indexOf(escaped) !== -1 || existing_scripts.indexOf(escaped) !== -1) {\n",
+ " if (!window.requirejs) {\n",
+ " on_load();\n",
+ " }\n",
+ " continue;\n",
+ " }\n",
+ " const element = document.createElement('script');\n",
+ " element.onload = on_load;\n",
+ " element.onerror = on_error;\n",
+ " element.async = false;\n",
+ " element.src = url;\n",
+ " console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n",
+ " document.head.appendChild(element);\n",
+ " }\n",
+ " for (let i = 0; i < js_modules.length; i++) {\n",
+ " const url = js_modules[i];\n",
+ " const escaped = encodeURI(url)\n",
+ " if (skip.indexOf(escaped) !== -1 || existing_scripts.indexOf(escaped) !== -1) {\n",
+ " if (!window.requirejs) {\n",
+ " on_load();\n",
+ " }\n",
+ " continue;\n",
+ " }\n",
+ " var element = document.createElement('script');\n",
+ " element.onload = on_load;\n",
+ " element.onerror = on_error;\n",
+ " element.async = false;\n",
+ " element.src = url;\n",
+ " element.type = \"module\";\n",
+ " console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n",
+ " document.head.appendChild(element);\n",
+ " }\n",
+ " for (const name in js_exports) {\n",
+ " const url = js_exports[name];\n",
+ " const escaped = encodeURI(url)\n",
+ " if (skip.indexOf(escaped) >= 0 || root[name] != null) {\n",
+ " if (!window.requirejs) {\n",
+ " on_load();\n",
+ " }\n",
+ " continue;\n",
+ " }\n",
+ " var element = document.createElement('script');\n",
+ " element.onerror = on_error;\n",
+ " element.async = false;\n",
+ " element.type = \"module\";\n",
+ " console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n",
+ " element.textContent = `\n",
+ " import ${name} from \"${url}\"\n",
+ " window.${name} = ${name}\n",
+ " window._bokeh_on_load()\n",
+ " `\n",
+ " document.head.appendChild(element);\n",
+ " }\n",
+ " if (!js_urls.length && !js_modules.length) {\n",
+ " on_load()\n",
+ " }\n",
+ " };\n",
+ "\n",
+ " function inject_raw_css(css) {\n",
+ " const element = document.createElement(\"style\");\n",
+ " element.appendChild(document.createTextNode(css));\n",
+ " document.body.appendChild(element);\n",
+ " }\n",
+ "\n",
+ " const js_urls = [\"https://cdn.holoviz.org/panel/1.5.3/dist/bundled/reactiveesm/es-module-shims@^1.10.0/dist/es-module-shims.min.js\"];\n",
+ " const js_modules = [];\n",
+ " const js_exports = {};\n",
+ " const css_urls = [];\n",
+ " const inline_js = [ function(Bokeh) {\n",
+ " Bokeh.set_log_level(\"info\");\n",
+ " },\n",
+ "function(Bokeh) {} // ensure no trailing comma for IE\n",
+ " ];\n",
+ "\n",
+ " function run_inline_js() {\n",
+ " if ((root.Bokeh !== undefined) || (force === true)) {\n",
+ " for (let i = 0; i < inline_js.length; i++) {\n",
+ " try {\n",
+ " inline_js[i].call(root, root.Bokeh);\n",
+ " } catch(e) {\n",
+ " if (!reloading) {\n",
+ " throw e;\n",
+ " }\n",
+ " }\n",
+ " }\n",
+ " // Cache old bokeh versions\n",
+ " if (Bokeh != undefined && !reloading) {\n",
+ " var NewBokeh = root.Bokeh;\n",
+ " if (Bokeh.versions === undefined) {\n",
+ " Bokeh.versions = new Map();\n",
+ " }\n",
+ " if (NewBokeh.version !== Bokeh.version) {\n",
+ " Bokeh.versions.set(NewBokeh.version, NewBokeh)\n",
+ " }\n",
+ " root.Bokeh = Bokeh;\n",
+ " }\n",
+ " } else if (Date.now() < root._bokeh_timeout) {\n",
+ " setTimeout(run_inline_js, 100);\n",
+ " } else if (!root._bokeh_failed_load) {\n",
+ " console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n",
+ " root._bokeh_failed_load = true;\n",
+ " }\n",
+ " root._bokeh_is_initializing = false\n",
+ " }\n",
+ "\n",
+ " function load_or_wait() {\n",
+ " // Implement a backoff loop that tries to ensure we do not load multiple\n",
+ " // versions of Bokeh and its dependencies at the same time.\n",
+ " // In recent versions we use the root._bokeh_is_initializing flag\n",
+ " // to determine whether there is an ongoing attempt to initialize\n",
+ " // bokeh, however for backward compatibility we also try to ensure\n",
+ " // that we do not start loading a newer (Panel>=1.0 and Bokeh>3) version\n",
+ " // before older versions are fully initialized.\n",
+ " if (root._bokeh_is_initializing && Date.now() > root._bokeh_timeout) {\n",
+ " // If the timeout and bokeh was not successfully loaded we reset\n",
+ " // everything and try loading again\n",
+ " root._bokeh_timeout = Date.now() + 5000;\n",
+ " root._bokeh_is_initializing = false;\n",
+ " root._bokeh_onload_callbacks = undefined;\n",
+ " root._bokeh_is_loading = 0\n",
+ " console.log(\"Bokeh: BokehJS was loaded multiple times but one version failed to initialize.\");\n",
+ " load_or_wait();\n",
+ " } else if (root._bokeh_is_initializing || (typeof root._bokeh_is_initializing === \"undefined\" && root._bokeh_onload_callbacks !== undefined)) {\n",
+ " setTimeout(load_or_wait, 100);\n",
+ " } else {\n",
+ " root._bokeh_is_initializing = true\n",
+ " root._bokeh_onload_callbacks = []\n",
+ " const bokeh_loaded = root.Bokeh != null && (root.Bokeh.version === py_version || (root.Bokeh.versions !== undefined && root.Bokeh.versions.has(py_version)));\n",
+ " if (!reloading && !bokeh_loaded) {\n",
+ " if (root.Bokeh) {\n",
+ " root.Bokeh = undefined;\n",
+ " }\n",
+ " console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n",
+ " }\n",
+ " load_libs(css_urls, js_urls, js_modules, js_exports, function() {\n",
+ " console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n",
+ " run_inline_js();\n",
+ " });\n",
+ " }\n",
+ " }\n",
+ " // Give older versions of the autoload script a head-start to ensure\n",
+ " // they initialize before we start loading newer version.\n",
+ " setTimeout(load_or_wait, 100)\n",
+ "}(window));"
+ ],
+ "application/vnd.holoviews_load.v0+json": "(function(root) {\n function now() {\n return new Date();\n }\n\n const force = false;\n const py_version = '3.6.0'.replace('rc', '-rc.').replace('.dev', '-dev.');\n const reloading = true;\n const Bokeh = root.Bokeh;\n\n // Set a timeout for this load but only if we are not already initializing\n if (typeof (root._bokeh_timeout) === \"undefined\" || (force || !root._bokeh_is_initializing)) {\n root._bokeh_timeout = Date.now() + 5000;\n root._bokeh_failed_load = false;\n }\n\n function run_callbacks() {\n try {\n root._bokeh_onload_callbacks.forEach(function(callback) {\n if (callback != null)\n callback();\n });\n } finally {\n delete root._bokeh_onload_callbacks;\n }\n console.debug(\"Bokeh: all callbacks have finished\");\n }\n\n function load_libs(css_urls, js_urls, js_modules, js_exports, callback) {\n if (css_urls == null) css_urls = [];\n if (js_urls == null) js_urls = [];\n if (js_modules == null) js_modules = [];\n if (js_exports == null) js_exports = {};\n\n root._bokeh_onload_callbacks.push(callback);\n\n if (root._bokeh_is_loading > 0) {\n // Don't load bokeh if it is still initializing\n console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n return null;\n } else if (js_urls.length === 0 && js_modules.length === 0 && Object.keys(js_exports).length === 0) {\n // There is nothing to load\n run_callbacks();\n return null;\n }\n\n function on_load() {\n root._bokeh_is_loading--;\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n run_callbacks()\n }\n }\n window._bokeh_on_load = on_load\n\n function on_error(e) {\n const src_el = e.srcElement\n console.error(\"failed to load \" + (src_el.href || src_el.src));\n }\n\n const skip = [];\n if (window.requirejs) {\n window.requirejs.config({'packages': {}, 'paths': {}, 'shim': {}});\n root._bokeh_is_loading = css_urls.length + 0;\n } else {\n root._bokeh_is_loading = css_urls.length + js_urls.length + js_modules.length + Object.keys(js_exports).length;\n }\n\n const existing_stylesheets = []\n const links = document.getElementsByTagName('link')\n for (let i = 0; i < links.length; i++) {\n const link = links[i]\n if (link.href != null) {\n existing_stylesheets.push(link.href)\n }\n }\n for (let i = 0; i < css_urls.length; i++) {\n const url = css_urls[i];\n const escaped = encodeURI(url)\n if (existing_stylesheets.indexOf(escaped) !== -1) {\n on_load()\n continue;\n }\n const element = document.createElement(\"link\");\n element.onload = on_load;\n element.onerror = on_error;\n element.rel = \"stylesheet\";\n element.type = \"text/css\";\n element.href = url;\n console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n document.body.appendChild(element);\n } var existing_scripts = []\n const scripts = document.getElementsByTagName('script')\n for (let i = 0; i < scripts.length; i++) {\n var script = scripts[i]\n if (script.src != null) {\n existing_scripts.push(script.src)\n }\n }\n for (let i = 0; i < js_urls.length; i++) {\n const url = js_urls[i];\n const escaped = encodeURI(url)\n if (skip.indexOf(escaped) !== -1 || existing_scripts.indexOf(escaped) !== -1) {\n if (!window.requirejs) {\n on_load();\n }\n continue;\n }\n const element = document.createElement('script');\n element.onload = on_load;\n element.onerror = on_error;\n element.async = false;\n element.src = url;\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n document.head.appendChild(element);\n }\n for (let i = 0; i < js_modules.length; i++) {\n const url = js_modules[i];\n const escaped = encodeURI(url)\n if (skip.indexOf(escaped) !== -1 || existing_scripts.indexOf(escaped) !== -1) {\n if (!window.requirejs) {\n on_load();\n }\n continue;\n }\n var element = document.createElement('script');\n element.onload = on_load;\n element.onerror = on_error;\n element.async = false;\n element.src = url;\n element.type = \"module\";\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n document.head.appendChild(element);\n }\n for (const name in js_exports) {\n const url = js_exports[name];\n const escaped = encodeURI(url)\n if (skip.indexOf(escaped) >= 0 || root[name] != null) {\n if (!window.requirejs) {\n on_load();\n }\n continue;\n }\n var element = document.createElement('script');\n element.onerror = on_error;\n element.async = false;\n element.type = \"module\";\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n element.textContent = `\n import ${name} from \"${url}\"\n window.${name} = ${name}\n window._bokeh_on_load()\n `\n document.head.appendChild(element);\n }\n if (!js_urls.length && !js_modules.length) {\n on_load()\n }\n };\n\n function inject_raw_css(css) {\n const element = document.createElement(\"style\");\n element.appendChild(document.createTextNode(css));\n document.body.appendChild(element);\n }\n\n const js_urls = [\"https://cdn.holoviz.org/panel/1.5.3/dist/bundled/reactiveesm/es-module-shims@^1.10.0/dist/es-module-shims.min.js\"];\n const js_modules = [];\n const js_exports = {};\n const css_urls = [];\n const inline_js = [ function(Bokeh) {\n Bokeh.set_log_level(\"info\");\n },\nfunction(Bokeh) {} // ensure no trailing comma for IE\n ];\n\n function run_inline_js() {\n if ((root.Bokeh !== undefined) || (force === true)) {\n for (let i = 0; i < inline_js.length; i++) {\n try {\n inline_js[i].call(root, root.Bokeh);\n } catch(e) {\n if (!reloading) {\n throw e;\n }\n }\n }\n // Cache old bokeh versions\n if (Bokeh != undefined && !reloading) {\n var NewBokeh = root.Bokeh;\n if (Bokeh.versions === undefined) {\n Bokeh.versions = new Map();\n }\n if (NewBokeh.version !== Bokeh.version) {\n Bokeh.versions.set(NewBokeh.version, NewBokeh)\n }\n root.Bokeh = Bokeh;\n }\n } else if (Date.now() < root._bokeh_timeout) {\n setTimeout(run_inline_js, 100);\n } else if (!root._bokeh_failed_load) {\n console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n root._bokeh_failed_load = true;\n }\n root._bokeh_is_initializing = false\n }\n\n function load_or_wait() {\n // Implement a backoff loop that tries to ensure we do not load multiple\n // versions of Bokeh and its dependencies at the same time.\n // In recent versions we use the root._bokeh_is_initializing flag\n // to determine whether there is an ongoing attempt to initialize\n // bokeh, however for backward compatibility we also try to ensure\n // that we do not start loading a newer (Panel>=1.0 and Bokeh>3) version\n // before older versions are fully initialized.\n if (root._bokeh_is_initializing && Date.now() > root._bokeh_timeout) {\n // If the timeout and bokeh was not successfully loaded we reset\n // everything and try loading again\n root._bokeh_timeout = Date.now() + 5000;\n root._bokeh_is_initializing = false;\n root._bokeh_onload_callbacks = undefined;\n root._bokeh_is_loading = 0\n console.log(\"Bokeh: BokehJS was loaded multiple times but one version failed to initialize.\");\n load_or_wait();\n } else if (root._bokeh_is_initializing || (typeof root._bokeh_is_initializing === \"undefined\" && root._bokeh_onload_callbacks !== undefined)) {\n setTimeout(load_or_wait, 100);\n } else {\n root._bokeh_is_initializing = true\n root._bokeh_onload_callbacks = []\n const bokeh_loaded = root.Bokeh != null && (root.Bokeh.version === py_version || (root.Bokeh.versions !== undefined && root.Bokeh.versions.has(py_version)));\n if (!reloading && !bokeh_loaded) {\n if (root.Bokeh) {\n root.Bokeh = undefined;\n }\n console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n }\n load_libs(css_urls, js_urls, js_modules, js_exports, function() {\n console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n run_inline_js();\n });\n }\n }\n // Give older versions of the autoload script a head-start to ensure\n // they initialize before we start loading newer version.\n setTimeout(load_or_wait, 100)\n}(window));"
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/javascript": [
+ "\n",
+ "if ((window.PyViz === undefined) || (window.PyViz instanceof HTMLElement)) {\n",
+ " window.PyViz = {comms: {}, comm_status:{}, kernels:{}, receivers: {}, plot_index: []}\n",
+ "}\n",
+ "\n",
+ "\n",
+ " function JupyterCommManager() {\n",
+ " }\n",
+ "\n",
+ " JupyterCommManager.prototype.register_target = function(plot_id, comm_id, msg_handler) {\n",
+ " if (window.comm_manager || ((window.Jupyter !== undefined) && (Jupyter.notebook.kernel != null))) {\n",
+ " var comm_manager = window.comm_manager || Jupyter.notebook.kernel.comm_manager;\n",
+ " comm_manager.register_target(comm_id, function(comm) {\n",
+ " comm.on_msg(msg_handler);\n",
+ " });\n",
+ " } else if ((plot_id in window.PyViz.kernels) && (window.PyViz.kernels[plot_id])) {\n",
+ " window.PyViz.kernels[plot_id].registerCommTarget(comm_id, function(comm) {\n",
+ " comm.onMsg = msg_handler;\n",
+ " });\n",
+ " } else if (typeof google != 'undefined' && google.colab.kernel != null) {\n",
+ " google.colab.kernel.comms.registerTarget(comm_id, (comm) => {\n",
+ " var messages = comm.messages[Symbol.asyncIterator]();\n",
+ " function processIteratorResult(result) {\n",
+ " var message = result.value;\n",
+ " console.log(message)\n",
+ " var content = {data: message.data, comm_id};\n",
+ " var buffers = []\n",
+ " for (var buffer of message.buffers || []) {\n",
+ " buffers.push(new DataView(buffer))\n",
+ " }\n",
+ " var metadata = message.metadata || {};\n",
+ " var msg = {content, buffers, metadata}\n",
+ " msg_handler(msg);\n",
+ " return messages.next().then(processIteratorResult);\n",
+ " }\n",
+ " return messages.next().then(processIteratorResult);\n",
+ " })\n",
+ " }\n",
+ " }\n",
+ "\n",
+ " JupyterCommManager.prototype.get_client_comm = function(plot_id, comm_id, msg_handler) {\n",
+ " if (comm_id in window.PyViz.comms) {\n",
+ " return window.PyViz.comms[comm_id];\n",
+ " } else if (window.comm_manager || ((window.Jupyter !== undefined) && (Jupyter.notebook.kernel != null))) {\n",
+ " var comm_manager = window.comm_manager || Jupyter.notebook.kernel.comm_manager;\n",
+ " var comm = comm_manager.new_comm(comm_id, {}, {}, {}, comm_id);\n",
+ " if (msg_handler) {\n",
+ " comm.on_msg(msg_handler);\n",
+ " }\n",
+ " } else if ((plot_id in window.PyViz.kernels) && (window.PyViz.kernels[plot_id])) {\n",
+ " var comm = window.PyViz.kernels[plot_id].connectToComm(comm_id);\n",
+ " comm.open();\n",
+ " if (msg_handler) {\n",
+ " comm.onMsg = msg_handler;\n",
+ " }\n",
+ " } else if (typeof google != 'undefined' && google.colab.kernel != null) {\n",
+ " var comm_promise = google.colab.kernel.comms.open(comm_id)\n",
+ " comm_promise.then((comm) => {\n",
+ " window.PyViz.comms[comm_id] = comm;\n",
+ " if (msg_handler) {\n",
+ " var messages = comm.messages[Symbol.asyncIterator]();\n",
+ " function processIteratorResult(result) {\n",
+ " var message = result.value;\n",
+ " var content = {data: message.data};\n",
+ " var metadata = message.metadata || {comm_id};\n",
+ " var msg = {content, metadata}\n",
+ " msg_handler(msg);\n",
+ " return messages.next().then(processIteratorResult);\n",
+ " }\n",
+ " return messages.next().then(processIteratorResult);\n",
+ " }\n",
+ " }) \n",
+ " var sendClosure = (data, metadata, buffers, disposeOnDone) => {\n",
+ " return comm_promise.then((comm) => {\n",
+ " comm.send(data, metadata, buffers, disposeOnDone);\n",
+ " });\n",
+ " };\n",
+ " var comm = {\n",
+ " send: sendClosure\n",
+ " };\n",
+ " }\n",
+ " window.PyViz.comms[comm_id] = comm;\n",
+ " return comm;\n",
+ " }\n",
+ " window.PyViz.comm_manager = new JupyterCommManager();\n",
+ " \n",
+ "\n",
+ "\n",
+ "var JS_MIME_TYPE = 'application/javascript';\n",
+ "var HTML_MIME_TYPE = 'text/html';\n",
+ "var EXEC_MIME_TYPE = 'application/vnd.holoviews_exec.v0+json';\n",
+ "var CLASS_NAME = 'output';\n",
+ "\n",
+ "/**\n",
+ " * Render data to the DOM node\n",
+ " */\n",
+ "function render(props, node) {\n",
+ " var div = document.createElement(\"div\");\n",
+ " var script = document.createElement(\"script\");\n",
+ " node.appendChild(div);\n",
+ " node.appendChild(script);\n",
+ "}\n",
+ "\n",
+ "/**\n",
+ " * Handle when a new output is added\n",
+ " */\n",
+ "function handle_add_output(event, handle) {\n",
+ " var output_area = handle.output_area;\n",
+ " var output = handle.output;\n",
+ " if ((output.data == undefined) || (!output.data.hasOwnProperty(EXEC_MIME_TYPE))) {\n",
+ " return\n",
+ " }\n",
+ " var id = output.metadata[EXEC_MIME_TYPE][\"id\"];\n",
+ " var toinsert = output_area.element.find(\".\" + CLASS_NAME.split(' ')[0]);\n",
+ " if (id !== undefined) {\n",
+ " var nchildren = toinsert.length;\n",
+ " var html_node = toinsert[nchildren-1].children[0];\n",
+ " html_node.innerHTML = output.data[HTML_MIME_TYPE];\n",
+ " var scripts = [];\n",
+ " var nodelist = html_node.querySelectorAll(\"script\");\n",
+ " for (var i in nodelist) {\n",
+ " if (nodelist.hasOwnProperty(i)) {\n",
+ " scripts.push(nodelist[i])\n",
+ " }\n",
+ " }\n",
+ "\n",
+ " scripts.forEach( function (oldScript) {\n",
+ " var newScript = document.createElement(\"script\");\n",
+ " var attrs = [];\n",
+ " var nodemap = oldScript.attributes;\n",
+ " for (var j in nodemap) {\n",
+ " if (nodemap.hasOwnProperty(j)) {\n",
+ " attrs.push(nodemap[j])\n",
+ " }\n",
+ " }\n",
+ " attrs.forEach(function(attr) { newScript.setAttribute(attr.name, attr.value) });\n",
+ " newScript.appendChild(document.createTextNode(oldScript.innerHTML));\n",
+ " oldScript.parentNode.replaceChild(newScript, oldScript);\n",
+ " });\n",
+ " if (JS_MIME_TYPE in output.data) {\n",
+ " toinsert[nchildren-1].children[1].textContent = output.data[JS_MIME_TYPE];\n",
+ " }\n",
+ " output_area._hv_plot_id = id;\n",
+ " if ((window.Bokeh !== undefined) && (id in Bokeh.index)) {\n",
+ " window.PyViz.plot_index[id] = Bokeh.index[id];\n",
+ " } else {\n",
+ " window.PyViz.plot_index[id] = null;\n",
+ " }\n",
+ " } else if (output.metadata[EXEC_MIME_TYPE][\"server_id\"] !== undefined) {\n",
+ " var bk_div = document.createElement(\"div\");\n",
+ " bk_div.innerHTML = output.data[HTML_MIME_TYPE];\n",
+ " var script_attrs = bk_div.children[0].attributes;\n",
+ " for (var i = 0; i < script_attrs.length; i++) {\n",
+ " toinsert[toinsert.length - 1].childNodes[1].setAttribute(script_attrs[i].name, script_attrs[i].value);\n",
+ " }\n",
+ " // store reference to server id on output_area\n",
+ " output_area._bokeh_server_id = output.metadata[EXEC_MIME_TYPE][\"server_id\"];\n",
+ " }\n",
+ "}\n",
+ "\n",
+ "/**\n",
+ " * Handle when an output is cleared or removed\n",
+ " */\n",
+ "function handle_clear_output(event, handle) {\n",
+ " var id = handle.cell.output_area._hv_plot_id;\n",
+ " var server_id = handle.cell.output_area._bokeh_server_id;\n",
+ " if (((id === undefined) || !(id in PyViz.plot_index)) && (server_id !== undefined)) { return; }\n",
+ " var comm = window.PyViz.comm_manager.get_client_comm(\"hv-extension-comm\", \"hv-extension-comm\", function () {});\n",
+ " if (server_id !== null) {\n",
+ " comm.send({event_type: 'server_delete', 'id': server_id});\n",
+ " return;\n",
+ " } else if (comm !== null) {\n",
+ " comm.send({event_type: 'delete', 'id': id});\n",
+ " }\n",
+ " delete PyViz.plot_index[id];\n",
+ " if ((window.Bokeh !== undefined) & (id in window.Bokeh.index)) {\n",
+ " var doc = window.Bokeh.index[id].model.document\n",
+ " doc.clear();\n",
+ " const i = window.Bokeh.documents.indexOf(doc);\n",
+ " if (i > -1) {\n",
+ " window.Bokeh.documents.splice(i, 1);\n",
+ " }\n",
+ " }\n",
+ "}\n",
+ "\n",
+ "/**\n",
+ " * Handle kernel restart event\n",
+ " */\n",
+ "function handle_kernel_cleanup(event, handle) {\n",
+ " delete PyViz.comms[\"hv-extension-comm\"];\n",
+ " window.PyViz.plot_index = {}\n",
+ "}\n",
+ "\n",
+ "/**\n",
+ " * Handle update_display_data messages\n",
+ " */\n",
+ "function handle_update_output(event, handle) {\n",
+ " handle_clear_output(event, {cell: {output_area: handle.output_area}})\n",
+ " handle_add_output(event, handle)\n",
+ "}\n",
+ "\n",
+ "function register_renderer(events, OutputArea) {\n",
+ " function append_mime(data, metadata, element) {\n",
+ " // create a DOM node to render to\n",
+ " var toinsert = this.create_output_subarea(\n",
+ " metadata,\n",
+ " CLASS_NAME,\n",
+ " EXEC_MIME_TYPE\n",
+ " );\n",
+ " this.keyboard_manager.register_events(toinsert);\n",
+ " // Render to node\n",
+ " var props = {data: data, metadata: metadata[EXEC_MIME_TYPE]};\n",
+ " render(props, toinsert[0]);\n",
+ " element.append(toinsert);\n",
+ " return toinsert\n",
+ " }\n",
+ "\n",
+ " events.on('output_added.OutputArea', handle_add_output);\n",
+ " events.on('output_updated.OutputArea', handle_update_output);\n",
+ " events.on('clear_output.CodeCell', handle_clear_output);\n",
+ " events.on('delete.Cell', handle_clear_output);\n",
+ " events.on('kernel_ready.Kernel', handle_kernel_cleanup);\n",
+ "\n",
+ " OutputArea.prototype.register_mime_type(EXEC_MIME_TYPE, append_mime, {\n",
+ " safe: true,\n",
+ " index: 0\n",
+ " });\n",
+ "}\n",
+ "\n",
+ "if (window.Jupyter !== undefined) {\n",
+ " try {\n",
+ " var events = require('base/js/events');\n",
+ " var OutputArea = require('notebook/js/outputarea').OutputArea;\n",
+ " if (OutputArea.prototype.mime_types().indexOf(EXEC_MIME_TYPE) == -1) {\n",
+ " register_renderer(events, OutputArea);\n",
+ " }\n",
+ " } catch(err) {\n",
+ " }\n",
+ "}\n"
+ ],
+ "application/vnd.holoviews_load.v0+json": "\nif ((window.PyViz === undefined) || (window.PyViz instanceof HTMLElement)) {\n window.PyViz = {comms: {}, comm_status:{}, kernels:{}, receivers: {}, plot_index: []}\n}\n\n\n function JupyterCommManager() {\n }\n\n JupyterCommManager.prototype.register_target = function(plot_id, comm_id, msg_handler) {\n if (window.comm_manager || ((window.Jupyter !== undefined) && (Jupyter.notebook.kernel != null))) {\n var comm_manager = window.comm_manager || Jupyter.notebook.kernel.comm_manager;\n comm_manager.register_target(comm_id, function(comm) {\n comm.on_msg(msg_handler);\n });\n } else if ((plot_id in window.PyViz.kernels) && (window.PyViz.kernels[plot_id])) {\n window.PyViz.kernels[plot_id].registerCommTarget(comm_id, function(comm) {\n comm.onMsg = msg_handler;\n });\n } else if (typeof google != 'undefined' && google.colab.kernel != null) {\n google.colab.kernel.comms.registerTarget(comm_id, (comm) => {\n var messages = comm.messages[Symbol.asyncIterator]();\n function processIteratorResult(result) {\n var message = result.value;\n console.log(message)\n var content = {data: message.data, comm_id};\n var buffers = []\n for (var buffer of message.buffers || []) {\n buffers.push(new DataView(buffer))\n }\n var metadata = message.metadata || {};\n var msg = {content, buffers, metadata}\n msg_handler(msg);\n return messages.next().then(processIteratorResult);\n }\n return messages.next().then(processIteratorResult);\n })\n }\n }\n\n JupyterCommManager.prototype.get_client_comm = function(plot_id, comm_id, msg_handler) {\n if (comm_id in window.PyViz.comms) {\n return window.PyViz.comms[comm_id];\n } else if (window.comm_manager || ((window.Jupyter !== undefined) && (Jupyter.notebook.kernel != null))) {\n var comm_manager = window.comm_manager || Jupyter.notebook.kernel.comm_manager;\n var comm = comm_manager.new_comm(comm_id, {}, {}, {}, comm_id);\n if (msg_handler) {\n comm.on_msg(msg_handler);\n }\n } else if ((plot_id in window.PyViz.kernels) && (window.PyViz.kernels[plot_id])) {\n var comm = window.PyViz.kernels[plot_id].connectToComm(comm_id);\n comm.open();\n if (msg_handler) {\n comm.onMsg = msg_handler;\n }\n } else if (typeof google != 'undefined' && google.colab.kernel != null) {\n var comm_promise = google.colab.kernel.comms.open(comm_id)\n comm_promise.then((comm) => {\n window.PyViz.comms[comm_id] = comm;\n if (msg_handler) {\n var messages = comm.messages[Symbol.asyncIterator]();\n function processIteratorResult(result) {\n var message = result.value;\n var content = {data: message.data};\n var metadata = message.metadata || {comm_id};\n var msg = {content, metadata}\n msg_handler(msg);\n return messages.next().then(processIteratorResult);\n }\n return messages.next().then(processIteratorResult);\n }\n }) \n var sendClosure = (data, metadata, buffers, disposeOnDone) => {\n return comm_promise.then((comm) => {\n comm.send(data, metadata, buffers, disposeOnDone);\n });\n };\n var comm = {\n send: sendClosure\n };\n }\n window.PyViz.comms[comm_id] = comm;\n return comm;\n }\n window.PyViz.comm_manager = new JupyterCommManager();\n \n\n\nvar JS_MIME_TYPE = 'application/javascript';\nvar HTML_MIME_TYPE = 'text/html';\nvar EXEC_MIME_TYPE = 'application/vnd.holoviews_exec.v0+json';\nvar CLASS_NAME = 'output';\n\n/**\n * Render data to the DOM node\n */\nfunction render(props, node) {\n var div = document.createElement(\"div\");\n var script = document.createElement(\"script\");\n node.appendChild(div);\n node.appendChild(script);\n}\n\n/**\n * Handle when a new output is added\n */\nfunction handle_add_output(event, handle) {\n var output_area = handle.output_area;\n var output = handle.output;\n if ((output.data == undefined) || (!output.data.hasOwnProperty(EXEC_MIME_TYPE))) {\n return\n }\n var id = output.metadata[EXEC_MIME_TYPE][\"id\"];\n var toinsert = output_area.element.find(\".\" + CLASS_NAME.split(' ')[0]);\n if (id !== undefined) {\n var nchildren = toinsert.length;\n var html_node = toinsert[nchildren-1].children[0];\n html_node.innerHTML = output.data[HTML_MIME_TYPE];\n var scripts = [];\n var nodelist = html_node.querySelectorAll(\"script\");\n for (var i in nodelist) {\n if (nodelist.hasOwnProperty(i)) {\n scripts.push(nodelist[i])\n }\n }\n\n scripts.forEach( function (oldScript) {\n var newScript = document.createElement(\"script\");\n var attrs = [];\n var nodemap = oldScript.attributes;\n for (var j in nodemap) {\n if (nodemap.hasOwnProperty(j)) {\n attrs.push(nodemap[j])\n }\n }\n attrs.forEach(function(attr) { newScript.setAttribute(attr.name, attr.value) });\n newScript.appendChild(document.createTextNode(oldScript.innerHTML));\n oldScript.parentNode.replaceChild(newScript, oldScript);\n });\n if (JS_MIME_TYPE in output.data) {\n toinsert[nchildren-1].children[1].textContent = output.data[JS_MIME_TYPE];\n }\n output_area._hv_plot_id = id;\n if ((window.Bokeh !== undefined) && (id in Bokeh.index)) {\n window.PyViz.plot_index[id] = Bokeh.index[id];\n } else {\n window.PyViz.plot_index[id] = null;\n }\n } else if (output.metadata[EXEC_MIME_TYPE][\"server_id\"] !== undefined) {\n var bk_div = document.createElement(\"div\");\n bk_div.innerHTML = output.data[HTML_MIME_TYPE];\n var script_attrs = bk_div.children[0].attributes;\n for (var i = 0; i < script_attrs.length; i++) {\n toinsert[toinsert.length - 1].childNodes[1].setAttribute(script_attrs[i].name, script_attrs[i].value);\n }\n // store reference to server id on output_area\n output_area._bokeh_server_id = output.metadata[EXEC_MIME_TYPE][\"server_id\"];\n }\n}\n\n/**\n * Handle when an output is cleared or removed\n */\nfunction handle_clear_output(event, handle) {\n var id = handle.cell.output_area._hv_plot_id;\n var server_id = handle.cell.output_area._bokeh_server_id;\n if (((id === undefined) || !(id in PyViz.plot_index)) && (server_id !== undefined)) { return; }\n var comm = window.PyViz.comm_manager.get_client_comm(\"hv-extension-comm\", \"hv-extension-comm\", function () {});\n if (server_id !== null) {\n comm.send({event_type: 'server_delete', 'id': server_id});\n return;\n } else if (comm !== null) {\n comm.send({event_type: 'delete', 'id': id});\n }\n delete PyViz.plot_index[id];\n if ((window.Bokeh !== undefined) & (id in window.Bokeh.index)) {\n var doc = window.Bokeh.index[id].model.document\n doc.clear();\n const i = window.Bokeh.documents.indexOf(doc);\n if (i > -1) {\n window.Bokeh.documents.splice(i, 1);\n }\n }\n}\n\n/**\n * Handle kernel restart event\n */\nfunction handle_kernel_cleanup(event, handle) {\n delete PyViz.comms[\"hv-extension-comm\"];\n window.PyViz.plot_index = {}\n}\n\n/**\n * Handle update_display_data messages\n */\nfunction handle_update_output(event, handle) {\n handle_clear_output(event, {cell: {output_area: handle.output_area}})\n handle_add_output(event, handle)\n}\n\nfunction register_renderer(events, OutputArea) {\n function append_mime(data, metadata, element) {\n // create a DOM node to render to\n var toinsert = this.create_output_subarea(\n metadata,\n CLASS_NAME,\n EXEC_MIME_TYPE\n );\n this.keyboard_manager.register_events(toinsert);\n // Render to node\n var props = {data: data, metadata: metadata[EXEC_MIME_TYPE]};\n render(props, toinsert[0]);\n element.append(toinsert);\n return toinsert\n }\n\n events.on('output_added.OutputArea', handle_add_output);\n events.on('output_updated.OutputArea', handle_update_output);\n events.on('clear_output.CodeCell', handle_clear_output);\n events.on('delete.Cell', handle_clear_output);\n events.on('kernel_ready.Kernel', handle_kernel_cleanup);\n\n OutputArea.prototype.register_mime_type(EXEC_MIME_TYPE, append_mime, {\n safe: true,\n index: 0\n });\n}\n\nif (window.Jupyter !== undefined) {\n try {\n var events = require('base/js/events');\n var OutputArea = require('notebook/js/outputarea').OutputArea;\n if (OutputArea.prototype.mime_types().indexOf(EXEC_MIME_TYPE) == -1) {\n register_renderer(events, OutputArea);\n }\n } catch(err) {\n }\n}\n"
},
"metadata": {},
"output_type": "display_data"
@@ -216,8 +2207,8 @@
"output_type": "stream",
"text": [
"✅ All modules loaded successfully\n",
- "CPU times: user 282 ms, sys: 7.6 ms, total: 290 ms\n",
- "Wall time: 311 ms\n"
+ "CPU times: user 19.4 s, sys: 3.64 s, total: 23 s\n",
+ "Wall time: 14.6 s\n"
]
}
],
@@ -237,9 +2228,12 @@
},
{
"cell_type": "code",
- "execution_count": null,
+ "execution_count": 2,
"id": "d824dc4f-994b-4d1c-8d24-ce6674da141c",
"metadata": {
+ "jupyter": {
+ "source_hidden": true
+ },
"tags": []
},
"outputs": [
@@ -247,15 +2241,15 @@
"name": "stdout",
"output_type": "stream",
"text": [
- "✅ AWS credentials loaded from environment variables\n",
+ "✅ AWS credentials found in environment variables\n",
"✅ Dask cluster initialized\n",
- " Cluster: LocalCluster(be94629e, 'tcp://127.0.0.1:33823', workers=4, threads=40, memory=128.00 GiB)\n",
+ " Cluster: LocalCluster(cb371446, 'tcp://127.0.0.1:42195', workers=4, threads=40, memory=128.00 GiB)\n",
"✅ S3 access configured (requester_pays=True)\n",
"✅ Datacube connected (metadata only)\n",
"\n",
"======================================================================\n",
- "CPU times: user 231 ms, sys: 11.7 ms, total: 242 ms\n",
- "Wall time: 5.68 s\n"
+ "CPU times: user 1.26 s, sys: 22.7 ms, total: 1.28 s\n",
+ "Wall time: 6.33 s\n"
]
}
],
@@ -356,9 +2350,13 @@
},
{
"cell_type": "code",
- "execution_count": 12,
+ "execution_count": 3,
"id": "1e113730",
- "metadata": {},
+ "metadata": {
+ "jupyter": {
+ "source_hidden": true
+ }
+ },
"outputs": [
{
"name": "stdout",
@@ -391,8 +2389,8 @@
" - rededge2: s3://sentinel-cogs/sentinel-s2-l2a-cogs/56/M/NC/2023/5/S2B_56MNC_20230525_0_L2A/\n",
" - rededge3: s3://sentinel-cogs/sentinel-s2-l2a-cogs/56/M/NC/2023/5/S2B_56MNC_20230525_0_L2A/\n",
"======================================================================\n",
- "CPU times: user 1min 32s, sys: 11.1 s, total: 1min 43s\n",
- "Wall time: 5min 20s\n"
+ "CPU times: user 1min 27s, sys: 13.2 s, total: 1min 40s\n",
+ "Wall time: 5min 23s\n"
]
}
],
@@ -433,9 +2431,13 @@
},
{
"cell_type": "code",
- "execution_count": 13,
+ "execution_count": 4,
"id": "3cd69645",
- "metadata": {},
+ "metadata": {
+ "jupyter": {
+ "source_hidden": true
+ }
+ },
"outputs": [
{
"name": "stdout",
@@ -449,8 +2451,8 @@
" Will download from S3 and save cache\n",
" (Next run will use cache automatically)\n",
"======================================================================\n",
- "CPU times: user 765 μs, sys: 0 ns, total: 765 μs\n",
- "Wall time: 482 μs\n"
+ "CPU times: user 1.31 ms, sys: 0 ns, total: 1.31 ms\n",
+ "Wall time: 7.45 ms\n"
]
}
],
@@ -506,6 +2508,9 @@
"execution_count": null,
"id": "435f9f78-a9a4-4226-86ca-d4bec42d454e",
"metadata": {
+ "jupyter": {
+ "source_hidden": true
+ },
"tags": []
},
"outputs": [
@@ -514,48 +2519,26962 @@
"output_type": "stream",
"text": [
"======================================================================\n",
- "LOADING SENTINEL-2 DATA FROM S3 COGs (RASTERIO) - OPTIMAL ACCURACY\n",
+ "LOADING SENTINEL-2 DATA VIA dc.load() (ODC NATIVE)\n",
"======================================================================\n",
- "✅ S3 access configured for local process\n",
"\n",
- "📥 Downloading from S3...\n",
+ "[1] Finding native CRS...\n",
+ " CRS: EPSG:32648\n",
"\n",
- "📦 Found 180337 available scenes\n",
- " Date range: 2023-03-01 to 2023-12-31\n",
+ "[2] Loading data via dc.load() ...\n",
+ " Region : lon=(105.5, 106.4), lat=(9.2, 10.0)\n",
+ " Time : 2023-03-01 → 2023-12-31\n",
+ " Bands : ['blue', 'green', 'red', 'nir', 'swir16', 'swir22', 'coastal', 'rededge1', 'rededge2', 'rededge3', 'scl']\n",
+ "No datasets require offset correction\n",
+ "The valid_data_mask and scale (no offset) have been applied to the reflectance bands\n",
"\n",
- "[LOADING] Loading 1 scenes with ALL available bands...\n",
- " (Keeping NATIVE resolution - NO upsampling/magnification)\n",
- " Available bands: ['aot', 'nir', 'red', 'scl', 'wvp', 'blue', 'green', 'nir08', 'nir09', 'swir16', 'swir22', 'coastal', 'rededge1', 'rededge2', 'rededge3']\n",
+ "✅ Loaded 121 scenes via dc.load()\n",
+ " Dimensions: {'time': 121, 'y': 8874, 'x': 9902}\n",
"\n",
- " [ 1/1] S2B_56MNC_20230525_0_L2A (2023-05-25)\n",
- " ⚠️ Error loading aot: HTTP response code: 403\n",
- " ⚠️ Error loading nir: HTTP response code: 403\n",
- " ⚠️ Error loading red: HTTP response code: 403\n",
- " ⚠️ Error loading scl: HTTP response code: 403\n",
- " ⚠️ Error loading wvp: HTTP response code: 403\n",
- " ⚠️ Error loading blue: HTTP response code: 403\n",
- " ⚠️ Error loading green: HTTP response code: 403\n",
- " ⚠️ Error loading nir08: HTTP response code: 403\n",
- " ⚠️ Error loading nir09: HTTP response code: 403\n",
- " ⚠️ Error loading swir16: HTTP response code: 403\n",
- " ⚠️ Error loading swir22: HTTP response code: 403\n",
- " ⚠️ Error loading coastal: HTTP response code: 403\n",
- " ⚠️ Error loading rededge1: HTTP response code: 403\n",
- " ⚠️ Error loading rededge2: HTTP response code: 403\n",
- " ⚠️ Error loading rededge3: HTTP response code: 403\n",
- "❌ Error: Could not load any bands from any scene\n",
- "======================================================================\n",
- "CPU times: user 1min 37s, sys: 8.69 s, total: 1min 46s\n",
- "Wall time: 2min 32s\n"
+ "[3] Computing (triggering Dask download)...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
- "Traceback (most recent call last):\n",
- " File \"
\", line 88, in \n",
- "ValueError: Could not load any bands from any scene\n"
+ ":59: FutureWarning: The return type of `Dataset.dims` will be changed to return a set of dimension names in future, in order to be more consistent with `DataArray.dims`. To access a mapping from dimension names to lengths, please use `Dataset.sizes`.\n",
+ "/env/lib/python3.12/site-packages/distributed/client.py:3357: UserWarning: Sending large graph of size 10.76 MiB.\n",
+ "This may cause some slowdown.\n",
+ "Consider scattering data ahead of time and using futures.\n",
+ " warnings.warn(\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231022_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2B_48PXS_20231101_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231022_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231022_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231022_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231022_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231022_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2B_48PXS_20231101_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231022_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2B_48PXS_20231101_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231022_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231022_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231022_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231022_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231022_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231022_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2B_48PXS_20231101_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231022_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/SCL.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231022_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231022_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B04.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231022_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B05.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231022_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231022_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2B_48PXS_20231101_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2B_48PXS_20231101_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2B_48PXS_20231101_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2A_48PXS_20231106_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2A_48PXS_20231106_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2B_48PXS_20231101_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2A_48PXS_20231106_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2A_48PXS_20231106_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2A_48PXS_20231106_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2A_48PWS_20231106_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2A_48PXS_20231106_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230927_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2B_48PXS_20231101_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230927_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231022_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230927_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230927_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230927_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230927_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2A_48PXS_20231106_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2B_48PXS_20231101_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2B_48PXS_20231101_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2A_48PXS_20231106_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B04.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2A_48PXS_20231106_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2B_48PXS_20231101_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B02.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2A_48PWS_20231106_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2B_48PXS_20231101_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2A_48PWS_20231106_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2A_48PWS_20231106_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2A_48PXS_20231106_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2A_48PXS_20231106_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2A_48PXS_20231106_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2A_48PXS_20231106_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2A_48PXS_20231106_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2B_48PXS_20231101_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2A_48PWS_20231106_0_L2A/SCL.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2B_48PXS_20231101_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2A_48PWS_20231106_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2B_48PXS_20231101_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2B_48PXS_20231101_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2B_48PXS_20231101_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2A_48PWS_20231106_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2A_48PXS_20231106_0_L2A/SCL.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2A_48PXS_20231106_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2A_48PWS_20231106_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2B_48PXS_20231101_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2B_48PXS_20231101_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2A_48PXS_20231106_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2A_48PXS_20231106_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B04.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2A_48PWS_20231106_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2A_48PWS_20231106_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2A_48PWS_20231106_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B12.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B05.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2A_48PXS_20231106_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2A_48PXS_20231106_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2B_48PXS_20231101_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2A_48PXS_20231106_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2A_48PXS_20231106_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2B_48PXS_20231101_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2A_48PXS_20231106_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2A_48PXS_20231106_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2A_48PWS_20231106_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2A_48PWS_20231106_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2A_48PWS_20231106_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2A_48PXS_20231106_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2A_48PXS_20231106_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2A_48PXS_20231106_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B05.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2A_48PXS_20231106_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2A_48PWS_20231106_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2A_48PWS_20231106_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B05.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B05.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2A_48PWS_20231106_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2A_48PXS_20231106_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2A_48PWS_20231106_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2B_48PXS_20231101_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2B_48PXS_20231101_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2B_48PXS_20231101_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2B_48PXS_20231101_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B06.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2B_48PWS_20231101_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2B_48PWS_20231101_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2A_48PWS_20231106_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2B_48PWS_20231101_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2A_48PXS_20231106_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2B_48PWS_20231101_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2A_48PWS_20231106_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2A_48PWS_20231106_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2A_48PWS_20231106_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231022_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2B_48PXS_20231101_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231022_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B06.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2B_48PXS_20231101_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231007_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2B_48PWS_20231101_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231007_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2B_48PWS_20231101_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231007_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2A_48PWS_20231106_0_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231007_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231007_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2B_48PXS_20231101_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231007_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B06.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231007_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231007_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231007_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/SCL.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2B_48PWS_20231101_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2B_48PXS_20231101_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231007_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2A_48PWS_20231106_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231007_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B05.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2B_48PWS_20231101_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2A_48PXS_20231106_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2A_48PWS_20231106_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2A_48PXS_20231106_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B05.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231007_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B02.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2A_48PWS_20231106_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2A_48PWS_20231106_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B02.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B12.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2B_48PXS_20231101_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B04.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2A_48PWS_20231106_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B06.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231007_0_L2A/B06.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2A_48PWS_20231106_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2A_48PWS_20231106_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231007_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2B_48PWS_20231101_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B02.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2B_48PXS_20231101_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231007_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B06.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2A_48PWS_20231106_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2A_48PXS_20231106_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2B_48PXS_20231101_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231007_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2B_48PWS_20231101_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231007_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B06.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B06.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2A_48PWS_20231106_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2B_48PWS_20231101_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2A_48PWS_20231106_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231007_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231027_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231027_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231007_0_L2A/B12.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231027_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231007_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231027_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231027_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231027_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231007_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231027_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231027_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231027_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231027_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B05.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231027_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231027_0_L2A/B04.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2B_48PWS_20231101_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2B_48PWS_20231101_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231027_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231022_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231027_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231027_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231017_0_L2A/SCL.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2B_48PWS_20231101_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231027_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231027_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231027_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2B_48PWS_20231101_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B04.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231027_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231017_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231017_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231007_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231027_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2B_48PWS_20231101_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2B_48PWS_20231101_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231007_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231017_0_L2A/SCL.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231027_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231017_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231027_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2B_48PWS_20231101_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/SCL.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B07.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231027_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2B_48PWS_20231101_0_L2A/B07.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B06.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231007_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231017_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231027_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231007_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231027_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231012_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B07.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231007_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231007_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231027_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231027_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2B_48PWS_20231101_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231007_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B12.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231027_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231012_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2B_48PWS_20231101_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231007_0_L2A/B04.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231027_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231027_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231027_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231007_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231027_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231027_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B12.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231027_0_L2A/B12.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2B_48PWS_20231101_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B05.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B06.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231027_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2B_48PWS_20231101_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2B_48PWS_20231101_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231027_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231027_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231027_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231027_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B02.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231027_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2B_48PWS_20231101_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231007_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231027_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2B_48PWS_20231101_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231027_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231027_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2B_48PWS_20231101_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2B_48PWS_20231101_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231027_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2B_48PWS_20231101_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231027_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231027_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B04.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2B_48PWS_20231101_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231027_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231027_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231007_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231027_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231007_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B12.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/SCL.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231027_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231007_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2B_48PWS_20231101_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2B_48PWS_20231101_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231007_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231027_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2B_48PWS_20231101_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B05.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231027_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B07.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231027_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231027_0_L2A/B06.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B12.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231007_0_L2A/B05.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B05.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231007_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231027_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231027_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231007_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231007_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231017_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231017_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231007_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231017_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231027_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/SCL.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231027_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231017_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231017_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231007_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231007_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231007_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B12.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231027_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231007_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231012_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231002_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231002_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231027_0_L2A/SCL.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B02.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231002_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231027_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231002_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231012_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231002_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231027_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231002_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231002_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231002_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231002_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231002_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231027_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/SCL.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231002_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231002_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231027_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231002_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231012_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231027_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231012_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231002_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231002_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231002_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231002_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B06.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231012_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231002_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231002_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231027_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231002_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231012_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231012_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231002_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B12.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B02.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231002_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231002_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231002_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231002_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231002_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231002_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231002_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231002_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231002_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231002_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231002_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231002_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B05.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231002_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B05.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B05.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231002_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231002_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231002_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B12.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231002_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231002_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B04.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231002_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231002_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231002_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231002_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231002_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B04.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231002_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231002_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B05.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230927_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B04.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230927_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230321_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230321_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230927_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230927_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231022_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231022_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230927_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231022_0_L2A/B07.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231022_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231022_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231022_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231022_0_L2A/B12.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231022_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231022_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231022_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B07.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231022_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231022_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231022_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231022_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B06.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231022_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231022_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231022_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231022_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231022_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B06.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231022_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231022_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230927_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230927_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230927_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230927_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B02.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230927_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231022_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231022_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B07.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B04.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231022_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231022_0_L2A/B07.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231017_0_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231022_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B12.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231017_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231017_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231022_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231017_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231017_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B04.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231022_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230927_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231022_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230927_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231022_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231017_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231017_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B04.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231022_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231022_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230927_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231017_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231022_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230927_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230927_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231022_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231017_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231022_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231017_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231022_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231022_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231022_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231012_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231022_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231017_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231022_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231022_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231022_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231017_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231017_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231012_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231017_0_L2A/B06.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231017_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231017_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231017_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231017_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231017_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231012_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230927_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231022_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231017_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231017_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231017_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231012_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231017_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231012_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231017_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231017_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B04.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230927_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230927_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231017_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231017_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231017_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231017_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231017_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231017_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231017_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231017_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231017_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B02.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231002_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231017_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B07.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231017_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231002_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231017_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231017_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230927_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230927_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231002_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231017_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230927_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/SCL.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231002_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231017_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230927_0_L2A/B04.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231017_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230927_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230927_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230927_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231017_0_L2A/B12.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/SCL.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B05.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230927_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231017_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231017_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230927_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231017_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231017_0_L2A/B06.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B07.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230927_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231017_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230927_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231017_0_L2A/B06.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231017_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231017_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B12.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B04.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230927_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B06.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230927_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231017_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231017_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231017_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230321_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230321_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230321_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230927_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230321_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231017_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231012_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231012_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231012_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231012_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231012_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231012_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230927_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231012_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/SCL.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231012_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231012_0_L2A/SCL.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231012_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231012_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230927_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231012_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231012_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/SCL.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231012_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230927_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230927_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B07.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230927_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231012_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230927_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231007_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231007_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231007_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B02.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230927_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231002_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230927_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230927_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231002_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B02.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B12.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B12.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B12.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B12.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B07.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231017_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230922_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230927_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231012_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231012_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230922_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231012_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230922_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231012_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231012_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230922_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231012_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230922_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230922_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230922_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231012_0_L2A/B07.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230922_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230922_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230922_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230922_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231012_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230922_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230321_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230922_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231012_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230922_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231012_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230321_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230922_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230922_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231012_0_L2A/SCL.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231012_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B12.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231012_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230922_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230922_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230922_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230922_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231012_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231012_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231012_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231012_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230922_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230922_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231012_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230922_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231012_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230922_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231012_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230922_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231012_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231012_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230922_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231012_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231012_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B06.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230922_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231012_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231012_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231012_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231012_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/SCL.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230922_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231012_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230922_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231012_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B02.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230922_0_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231012_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230922_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230922_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231012_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231012_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231012_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230922_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231012_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230922_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230922_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231012_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230922_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230922_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231012_0_L2A/B06.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B12.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231007_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B06.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231007_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230922_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230922_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B02.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230922_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230922_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230922_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231007_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230922_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230922_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231007_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B06.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230922_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230922_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231007_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B02.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230922_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B04.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231007_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B06.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B04.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B07.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231002_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231002_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231002_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231007_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231007_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231002_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231002_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231007_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B02.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231002_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231002_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230927_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/SCL.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231002_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231007_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231002_0_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231007_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231007_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231002_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230922_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231007_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231007_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231007_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231002_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231007_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231007_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231007_0_L2A/B04.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230927_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230927_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230927_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230927_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231007_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230927_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230927_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230927_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230927_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230927_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230927_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/SCL.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231002_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B05.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230922_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231002_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B07.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B06.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231002_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230927_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230922_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/SCL.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230922_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230927_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B04.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230927_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230927_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/SCL.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230922_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230927_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230321_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230321_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230321_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230321_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B07.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B07.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B07.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230927_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230927_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230922_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230922_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230922_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230922_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B04.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B06.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230922_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230922_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230922_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B06.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230321_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230321_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230321_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230922_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230321_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230321_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230922_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230321_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230922_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B06.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230321_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B04.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B02.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230922_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230922_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230922_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230922_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230321_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230321_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230321_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230917_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230917_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230917_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230917_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230917_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230917_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230917_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230917_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230917_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230917_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230917_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230917_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B02.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230917_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230321_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230321_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230917_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230917_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230321_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230917_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230917_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230917_0_L2A/SCL.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230917_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230321_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230321_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230321_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230917_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230321_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230321_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230917_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230912_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230917_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230321_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230912_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230321_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230321_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230321_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B05.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230917_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230917_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B07.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230321_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230917_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230321_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230912_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B12.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B02.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230917_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230917_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B04.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230321_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230912_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230321_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230321_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230912_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B12.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230321_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230917_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230321_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230917_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230917_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230917_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230912_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230917_0_L2A/B04.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B07.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B04.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230912_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230917_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B12.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230917_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230917_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/SCL.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230917_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230912_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230321_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230912_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230321_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230912_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230917_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230912_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B07.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230917_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230912_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230912_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B02.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B12.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B12.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230321_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230912_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230321_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230321_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230912_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230917_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230917_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230917_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230912_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/SCL.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230917_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230917_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230912_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230321_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230917_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230917_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230917_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230917_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/SCL.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230912_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230917_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230917_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230917_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230321_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230917_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230321_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B06.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230917_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230917_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B04.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230917_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B05.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230321_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B05.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230917_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230917_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230321_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230321_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B02.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230917_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230917_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230321_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230912_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230917_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B04.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230321_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230912_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230912_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230912_0_L2A/B12.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230912_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230912_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B05.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230912_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230321_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230321_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230912_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B07.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B05.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230912_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230912_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230321_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230912_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230321_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230321_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B02.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230912_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230912_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230912_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230321_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230912_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230912_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B04.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230912_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B07.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230912_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230912_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230321_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B12.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230912_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230912_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230912_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230912_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230912_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/SCL.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230912_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230912_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/SCL.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230912_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230321_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230912_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230912_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B12.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B05.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230321_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230912_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230321_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230912_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230912_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230912_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230321_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230917_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B04.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230917_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230912_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230917_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B02.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230917_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230917_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230917_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230912_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230912_0_L2A/B02.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230321_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230912_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230912_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230917_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230912_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B06.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230912_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230912_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230912_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230912_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230912_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230912_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230907_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B07.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230912_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230912_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230907_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230907_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230907_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230907_0_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230907_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230907_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230902_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230912_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230907_0_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230907_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230907_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230907_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B04.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230907_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230907_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230907_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230907_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230907_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B02.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230902_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230902_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230907_0_L2A/SCL.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230907_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230907_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230902_0_L2A/B04.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B06.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230907_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230907_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230907_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230907_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230907_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230907_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230907_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230828_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230828_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230907_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230907_0_L2A/B06.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230907_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230828_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230828_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230907_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/SCL.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230828_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230907_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230907_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230907_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B02.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230907_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230907_0_L2A/B02.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230828_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230828_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230907_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230907_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230907_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230907_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230907_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230828_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230907_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230907_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230907_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230828_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230828_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230907_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230828_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230828_0_L2A/SCL.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230907_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230907_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230907_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/SCL.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B12.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230828_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230828_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B07.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230828_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B04.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B04.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230828_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230828_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230828_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B04.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230828_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230902_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230828_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230907_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B06.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B02.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230902_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B12.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230907_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230902_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230902_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B12.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230902_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230902_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B12.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230902_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B06.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230902_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/SCL.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B06.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230902_0_L2A/SCL.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B07.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230902_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B02.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230902_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230902_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230902_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B06.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B02.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230902_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230902_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/SCL.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230902_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B05.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230902_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230902_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230902_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230907_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230902_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230902_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B05.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230902_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B07.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230902_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230902_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230902_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B12.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230907_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B05.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230907_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230902_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230902_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230902_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230902_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230902_0_L2A/B02.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230902_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230902_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230902_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B02.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230907_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B12.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230902_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B06.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230907_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230902_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B02.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230907_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230902_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B06.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230907_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230902_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230902_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230902_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B04.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230907_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230902_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230902_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230907_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230902_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230907_0_L2A/B07.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230907_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B07.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230902_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230902_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230902_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230902_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230902_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230902_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230902_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230902_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230907_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230902_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230902_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230902_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230902_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230902_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230902_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230902_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230907_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230828_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230828_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230907_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230902_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230828_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230902_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230828_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230907_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230828_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230828_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230828_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230828_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230907_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230907_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230902_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230828_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230828_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230902_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230828_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230828_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230828_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230902_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230828_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230828_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230828_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230828_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230828_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230828_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230828_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230828_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230828_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230828_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B05.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B02.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230828_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230828_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230828_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230828_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230828_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230828_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230828_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230828_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230828_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230828_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230828_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230828_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230828_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230828_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230828_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230823_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230823_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/SCL.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/SCL.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230823_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230828_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230828_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230823_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230823_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230823_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230828_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230828_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230823_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230828_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B12.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230823_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230823_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230828_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230823_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230823_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230828_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230823_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/SCL.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230823_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230823_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230823_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B02.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230828_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230823_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230823_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B07.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230823_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230823_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230823_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230823_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230823_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230823_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230823_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230823_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230823_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230823_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230823_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230823_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230823_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230823_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230823_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230823_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230823_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B07.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230823_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230823_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230823_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230823_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230823_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230823_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230823_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/SCL.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230823_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230823_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230823_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230823_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B05.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230823_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230823_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230823_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230823_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B05.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230823_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230823_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230823_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230823_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B07.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230823_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230823_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/SCL.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B04.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230823_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230823_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230823_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230823_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230823_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230823_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230823_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230823_0_L2A/B06.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230823_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B04.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230823_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B05.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230823_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B12.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B02.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230818_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230818_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230818_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B12.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230818_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B06.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230818_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230818_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230818_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B12.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230818_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/SCL.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230818_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230818_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B12.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230818_0_L2A/B07.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B04.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230818_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230818_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230818_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B05.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230818_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230818_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230818_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230818_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230818_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230818_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230818_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230818_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230818_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230818_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230818_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230818_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230818_0_L2A/B05.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230818_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230818_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230818_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230818_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/SCL.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230818_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230818_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230818_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230813_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230818_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230818_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B12.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230813_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230818_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230818_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230818_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/SCL.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230818_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230818_0_L2A/B02.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230818_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230818_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230818_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230818_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230818_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230818_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230813_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230818_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230818_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230818_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230818_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B12.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B12.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B06.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230818_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230818_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230818_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230818_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230818_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230818_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B06.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B07.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230818_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B07.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230818_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230818_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230818_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230818_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230818_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230818_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230813_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B04.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230818_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B04.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230818_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B05.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B12.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230813_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/SCL.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230813_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230813_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230813_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230813_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B06.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230813_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230813_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230813_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230813_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230813_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230813_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230813_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230813_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B06.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230813_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230813_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230813_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230813_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230813_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230813_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230813_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230813_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/SCL.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230813_0_L2A/B12.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230813_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230813_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230813_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230813_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230813_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230813_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230813_0_L2A/SCL.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230813_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230813_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230813_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230813_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230813_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230813_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230813_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230813_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230813_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230813_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230813_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230813_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230813_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B07.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230813_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230813_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230808_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230813_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230808_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230808_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230813_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230813_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230813_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230808_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230808_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230808_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230808_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230808_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230808_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230808_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230813_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230808_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230813_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B06.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230808_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230808_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230808_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230813_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230808_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230808_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230813_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230813_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230813_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230813_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230808_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230813_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230813_0_L2A/B06.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230808_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230808_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230808_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230808_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230813_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230813_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230813_0_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230813_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/SCL.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B02.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230808_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230813_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230808_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230808_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230808_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230808_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230808_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230808_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230808_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B04.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230808_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230808_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230808_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230808_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230808_0_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230808_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230808_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230808_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230808_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230808_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230808_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230808_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230808_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230808_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230808_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230808_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230808_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230808_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230808_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230808_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230808_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/SCL.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230808_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230808_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230808_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230808_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230808_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230808_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230808_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230808_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/SCL.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2B_48PXS_20230316_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230808_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230808_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230808_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B02.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2B_48PXS_20230316_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230808_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230808_0_L2A/B12.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230808_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230808_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230808_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2B_48PXS_20230316_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2B_48PXS_20230316_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2B_48PXS_20230316_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2B_48PXS_20230316_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2B_48PXS_20230316_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2B_48PXS_20230316_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2B_48PXS_20230316_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2B_48PXS_20230316_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B06.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2B_48PXS_20230316_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2B_48PXS_20230316_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2B_48PXS_20230316_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2B_48PXS_20230316_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2B_48PXS_20230316_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2B_48PXS_20230316_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2B_48PXS_20230316_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B02.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2B_48PXS_20230316_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B07.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2B_48PXS_20230316_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2B_48PXS_20230316_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B07.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2B_48PXS_20230316_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2B_48PWS_20230316_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2B_48PXS_20230316_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2B_48PXS_20230316_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2B_48PXS_20230316_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2B_48PWS_20230316_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B04.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2B_48PXS_20230316_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2B_48PXS_20230316_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B12.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2B_48PWS_20230316_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2B_48PWS_20230316_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2B_48PWS_20230316_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2B_48PWS_20230316_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2B_48PWS_20230316_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2B_48PWS_20230316_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2B_48PWS_20230316_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B06.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2B_48PWS_20230316_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2B_48PXS_20230316_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2B_48PWS_20230316_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2B_48PXS_20230316_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2B_48PXS_20230316_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2B_48PWS_20230316_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2B_48PWS_20230316_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2B_48PWS_20230316_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2B_48PXS_20230316_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2B_48PWS_20230316_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2B_48PXS_20230316_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2B_48PWS_20230316_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B02.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2B_48PWS_20230316_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2B_48PWS_20230316_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2B_48PWS_20230316_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2B_48PXS_20230316_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2B_48PXS_20230316_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2B_48PWS_20230316_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2B_48PWS_20230316_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B12.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2B_48PWS_20230316_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2B_48PWS_20230316_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2B_48PWS_20230316_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2B_48PWS_20230316_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/SCL.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2B_48PWS_20230316_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2B_48PWS_20230316_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2B_48PWS_20230316_0_L2A/B12.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2B_48PWS_20230316_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2B_48PWS_20230316_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B06.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2B_48PWS_20230316_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2B_48PWS_20230316_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B12.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2B_48PWS_20230316_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230729_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230729_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230729_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B07.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230729_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B07.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B07.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B05.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230729_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230729_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230729_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230729_0_L2A/B06.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230729_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230729_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230729_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B12.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B05.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230729_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230729_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230729_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B12.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B05.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B07.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230729_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/SCL.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B02.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230729_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230729_0_L2A/B05.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230729_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B02.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230729_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230729_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230729_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B06.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/SCL.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230729_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230729_0_L2A/B02.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230729_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230729_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B12.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B12.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230729_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230729_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230729_0_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B05.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230729_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230729_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230729_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230729_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230729_0_L2A/SCL.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230729_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230729_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230729_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230729_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230729_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230729_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230729_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230729_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230729_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230729_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230729_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230724_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230729_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230729_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230729_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230729_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230729_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230729_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230729_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230729_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230729_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230729_0_L2A/B05.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B02.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230729_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230729_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230729_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230729_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230729_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230729_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230729_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230724_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230729_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230729_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230724_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230729_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230724_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230729_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230729_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230724_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B12.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230724_0_L2A/B07.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230724_0_L2A/SCL.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230724_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230724_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230724_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230724_0_L2A/B07.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/SCL.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B05.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230724_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230724_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230724_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230724_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B02.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230724_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B05.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230724_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230724_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230724_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230724_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230724_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230724_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230724_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230724_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230724_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230724_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B12.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230724_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230724_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230724_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B05.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230724_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230724_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230724_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230724_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230724_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230724_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230724_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230724_0_L2A/B04.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230724_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230724_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B06.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B04.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230724_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230724_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230724_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230724_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230724_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230724_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230724_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230724_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230724_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230724_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230724_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230724_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B05.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230724_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230724_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230724_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B05.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230724_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230724_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230724_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230724_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B02.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230724_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230724_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B05.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230719_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230719_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230724_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B04.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230724_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230724_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230719_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230724_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230724_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230719_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230719_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230719_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B07.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230724_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230719_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230719_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B04.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230719_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B05.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230719_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230719_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230719_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230719_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230719_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230719_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230719_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B02.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230719_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230719_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B06.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230719_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/SCL.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230719_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230719_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230719_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230719_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230719_0_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230719_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230719_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230719_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230719_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230719_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230719_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230719_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230719_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230719_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B06.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230719_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230719_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230719_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B07.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230719_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230719_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230719_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B02.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230719_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230719_0_L2A/B04.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230719_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230719_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230719_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230719_0_L2A/B12.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230719_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230719_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230719_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230719_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230719_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230719_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230719_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230719_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230719_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230719_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230719_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230719_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230719_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B07.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B06.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230719_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B02.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230719_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B12.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230714_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230714_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230719_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230719_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230719_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230714_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B02.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230714_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230719_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230714_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230714_0_L2A/B04.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230714_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230714_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230719_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230714_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230714_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230714_0_L2A/B12.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230714_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230719_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230714_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230714_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230714_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230714_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230714_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230714_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230714_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230714_0_L2A/B02.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230714_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230714_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230714_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B12.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230714_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230714_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230714_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230714_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230714_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230714_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230714_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230714_0_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230714_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230714_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230714_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230714_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230714_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230714_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230714_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230714_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230714_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230714_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230714_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230714_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230714_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/SCL.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230714_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/SCL.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230714_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230714_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230714_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230714_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230714_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230714_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230714_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B05.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230714_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230714_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230714_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B04.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230714_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B02.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B05.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230714_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230714_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B05.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230714_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230714_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230714_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230714_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230714_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230714_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230714_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B04.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230709_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230709_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230714_0_L2A/B06.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230709_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230714_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230709_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230709_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230709_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B06.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B07.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230709_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230709_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B06.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B04.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230709_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230709_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230709_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230709_0_L2A/B12.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B07.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230714_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230709_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230709_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230709_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230709_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230709_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230709_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230709_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B05.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230709_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230709_0_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B05.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230709_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230709_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/SCL.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230709_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B04.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230709_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B07.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230709_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230709_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230709_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230709_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230709_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230709_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230709_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230709_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230709_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230709_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B02.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230709_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230709_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230709_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230709_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230709_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230709_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230709_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230709_0_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230709_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B12.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230709_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B06.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230709_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230709_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B05.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230709_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230709_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230709_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230709_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230709_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230709_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230709_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230709_0_L2A/B02.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230709_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B05.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230709_0_L2A/B07.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230709_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230709_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230709_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230709_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230709_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230709_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230709_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230709_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230704_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230704_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230704_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230704_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230704_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230709_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230704_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230704_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B06.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230704_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230704_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230704_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230704_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230709_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230704_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230704_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230704_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230704_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B04.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230709_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B12.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230704_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B07.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230704_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/SCL.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B06.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230704_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230704_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230704_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B05.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230704_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B02.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230704_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230704_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230704_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230704_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230704_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230704_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230704_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230704_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230629_1_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230704_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230704_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230704_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230704_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230704_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230704_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230704_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230704_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230704_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230704_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230704_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230704_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230704_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230704_0_L2A/SCL.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230704_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230704_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230704_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230704_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230704_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230704_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230704_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230629_1_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230704_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230629_1_L2A/B07.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B12.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/SCL.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230629_1_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230704_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230704_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230704_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230629_1_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230704_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230704_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230629_1_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230704_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230629_1_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230629_1_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B06.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230629_1_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230629_1_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230704_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B07.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230629_1_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230629_1_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230629_1_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230704_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230704_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230704_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230629_1_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230704_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230629_1_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230704_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230629_1_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230704_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230629_1_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230629_1_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230629_1_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230704_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230704_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230629_1_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B12.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B05.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230629_1_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230704_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230629_1_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230629_1_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230629_1_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230629_1_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230629_1_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230629_1_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230704_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230629_1_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230629_1_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230629_1_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230629_1_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B04.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230629_1_L2A/B06.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230629_1_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230629_1_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230629_1_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230629_1_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230629_1_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230629_1_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230629_1_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B07.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230629_1_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230629_1_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230629_1_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230629_1_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230629_1_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230629_1_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230629_1_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230629_1_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230629_1_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230629_1_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2B_48PWS_20230624_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230629_1_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2B_48PXS_20230624_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2B_48PWS_20230624_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2B_48PXS_20230624_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2B_48PXS_20230624_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230629_1_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2B_48PXS_20230624_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2B_48PXS_20230624_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2B_48PWS_20230624_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2B_48PXS_20230624_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2B_48PXS_20230624_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B02.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2B_48PXS_20230624_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2B_48PXS_20230624_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2B_48PXS_20230624_0_L2A/SCL.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2B_48PXS_20230624_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B05.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230629_1_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2B_48PWS_20230624_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2B_48PWS_20230624_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230629_1_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2B_48PWS_20230624_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B12.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2B_48PWS_20230624_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2B_48PXS_20230624_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2B_48PXS_20230624_0_L2A/B12.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2B_48PXS_20230624_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2B_48PXS_20230624_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230629_1_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2B_48PXS_20230624_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B04.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2B_48PWS_20230624_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B02.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230629_1_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2B_48PWS_20230624_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230629_1_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2B_48PXS_20230624_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230629_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2B_48PXS_20230624_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2B_48PWS_20230624_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2B_48PWS_20230624_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2B_48PXS_20230624_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2B_48PWS_20230624_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2B_48PXS_20230624_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2B_48PWS_20230624_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2B_48PWS_20230624_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2B_48PWS_20230624_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2B_48PWS_20230624_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2B_48PWS_20230624_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B12.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2B_48PWS_20230624_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2B_48PWS_20230624_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2B_48PWS_20230624_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2B_48PWS_20230624_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2B_48PWS_20230624_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2B_48PWS_20230624_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2B_48PXS_20230624_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B04.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2B_48PWS_20230624_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B06.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2B_48PWS_20230624_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2B_48PWS_20230624_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2B_48PWS_20230624_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/SCL.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2B_48PXS_20230624_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2B_48PXS_20230624_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2B_48PXS_20230624_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2B_48PWS_20230624_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2B_48PWS_20230624_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2B_48PXS_20230624_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2B_48PXS_20230624_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2B_48PXS_20230624_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2B_48PXS_20230624_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2B_48PXS_20230624_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230619_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2B_48PWS_20230624_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2B_48PWS_20230624_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2B_48PXS_20230624_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230619_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2B_48PXS_20230624_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230619_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B06.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2B_48PXS_20230624_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2B_48PXS_20230624_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230619_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/SCL.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2B_48PWS_20230624_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2B_48PWS_20230624_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230619_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230624_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230619_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230619_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230619_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230619_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230619_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230619_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2B_48PWS_20230614_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230619_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230619_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/SCL.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230624_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230619_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230619_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230619_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230619_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230619_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230619_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B04.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230619_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230619_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230619_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230619_0_L2A/B05.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B06.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230619_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230619_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B07.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230619_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2B_48PWS_20230614_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230619_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2B_48PWS_20230614_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230619_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230619_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2B_48PWS_20230614_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230619_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230619_0_L2A/B04.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230619_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230619_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B06.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230619_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230619_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230619_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B04.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230619_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230619_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B07.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B02.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230619_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230619_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230619_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230619_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2B_48PWS_20230614_0_L2A/B04.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230619_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B04.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230619_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230619_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230619_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230619_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230619_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B02.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B05.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230619_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/SCL.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230619_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230619_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B02.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2B_48PWS_20230614_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2B_48PWS_20230614_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B07.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2B_48PWS_20230614_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2B_48PWS_20230614_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230619_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B05.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230619_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B12.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230619_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230619_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2B_48PWS_20230614_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230619_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2B_48PWS_20230614_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2B_48PWS_20230614_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2B_48PWS_20230614_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2B_48PWS_20230614_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230619_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230619_0_L2A/SCL.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230619_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230619_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230619_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2B_48PWS_20230614_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2B_48PWS_20230614_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B04.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B02.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B04.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/SCL.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230619_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2B_48PWS_20230614_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2B_48PWS_20230614_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230619_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2B_48PWS_20230614_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B07.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2B_48PWS_20230614_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230619_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230619_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B05.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2B_48PWS_20230614_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/SCL.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2B_48PWS_20230614_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230619_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/SCL.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/SCL.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230619_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2B_48PXS_20230614_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230619_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2B_48PXS_20230614_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2B_48PXS_20230614_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230311_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2B_48PXS_20230614_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B04.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2B_48PXS_20230614_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230311_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2B_48PXS_20230614_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2B_48PXS_20230614_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230311_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2B_48PXS_20230614_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2B_48PXS_20230614_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230311_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230311_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2B_48PWS_20230614_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230311_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2B_48PWS_20230614_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2B_48PXS_20230614_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230311_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2B_48PXS_20230614_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2B_48PXS_20230614_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2B_48PXS_20230614_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2B_48PWS_20230614_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2B_48PXS_20230614_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230311_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2B_48PXS_20230614_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B02.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2B_48PXS_20230614_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230311_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230311_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230311_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230311_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230311_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2B_48PXS_20230614_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2B_48PXS_20230614_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230311_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230311_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230311_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230311_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2B_48PXS_20230614_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2B_48PXS_20230614_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2B_48PXS_20230614_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2B_48PXS_20230614_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230311_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230311_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230311_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2B_48PXS_20230614_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2B_48PXS_20230614_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2B_48PWS_20230614_0_L2A/B02.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230311_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2B_48PWS_20230614_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2B_48PXS_20230614_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230311_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2B_48PXS_20230614_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2B_48PXS_20230614_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2B_48PXS_20230614_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2B_48PXS_20230614_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2B_48PWS_20230614_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2B_48PWS_20230614_0_L2A/B12.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2B_48PXS_20230614_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2B_48PWS_20230614_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2B_48PXS_20230614_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2B_48PXS_20230614_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2B_48PWS_20230614_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2B_48PXS_20230614_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230311_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230311_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2B_48PWS_20230614_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2B_48PWS_20230614_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230311_0_L2A/B04.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230311_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230311_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/B05.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230311_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B02.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230311_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2B_48PXR_20230614_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230311_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230311_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230311_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230311_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230311_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2B_48PWR_20230614_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230311_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B02.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230311_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230311_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230311_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230311_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230311_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230311_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230311_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B02.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230311_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230311_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230311_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230311_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230311_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230311_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230311_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230311_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230311_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230311_0_L2A/B05.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230311_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B05.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230311_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B06.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230311_0_L2A/SCL.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230311_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/SCL.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B05.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/SCL.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230311_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230311_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230311_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230311_0_L2A/B06.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230311_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230311_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230311_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230311_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230311_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B07.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230311_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230609_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230311_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B04.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/SCL.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230609_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230609_0_L2A/B07.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230609_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/SCL.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B04.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230311_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230609_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230609_0_L2A/B04.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230609_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230609_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230609_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230609_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230609_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230609_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230609_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230609_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230609_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B04.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230609_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230609_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230609_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230609_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230609_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230609_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/5/S2A_48PXS_20230530_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230609_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B07.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B04.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230609_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/5/S2A_48PXS_20230530_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230609_0_L2A/B12.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230609_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/5/S2A_48PXS_20230530_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/5/S2A_48PXS_20230530_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230609_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230609_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230609_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/5/S2A_48PXS_20230530_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230609_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230609_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B02.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230609_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230609_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B12.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230609_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230609_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230609_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230609_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230609_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230609_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230609_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230609_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230609_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B12.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230609_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230609_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230609_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230609_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/5/S2A_48PXS_20230530_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B12.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230609_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230609_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/5/S2A_48PXS_20230530_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/5/S2A_48PXS_20230530_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/5/S2A_48PXS_20230530_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230609_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B02.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/5/S2A_48PXS_20230530_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B12.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230609_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/6/S2A_48PXS_20230609_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230609_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/5/S2A_48PXS_20230530_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B07.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230609_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/5/S2A_48PXS_20230530_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230609_0_L2A/B05.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230609_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230609_0_L2A/B07.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/5/S2A_48PXS_20230530_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/5/S2A_48PXS_20230530_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230609_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230609_0_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/6/S2A_48PXR_20230609_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/5/S2A_48PXS_20230530_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230609_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B02.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230609_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/SCL.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B04.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230609_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/5/S2A_48PXS_20230530_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/5/S2A_48PXS_20230530_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/5/S2A_48PXS_20230530_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230609_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/5/S2A_48PXS_20230530_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/5/S2A_48PWS_20230530_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230609_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/5/S2A_48PWS_20230530_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/5/S2A_48PXS_20230530_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B07.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B05.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/5/S2A_48PWS_20230530_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230609_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230609_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/5/S2A_48PWS_20230530_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230609_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/SCL.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/5/S2A_48PWS_20230530_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/5/S2A_48PXS_20230530_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/5/S2A_48PXS_20230530_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/5/S2A_48PXS_20230530_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/5/S2A_48PWS_20230530_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/5/S2A_48PXS_20230530_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/5/S2A_48PWS_20230530_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/5/S2A_48PXS_20230530_0_L2A/B02.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/5/S2A_48PWS_20230530_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/5/S2A_48PWS_20230530_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/5/S2A_48PXS_20230530_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B07.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/5/S2A_48PWS_20230530_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/5/S2A_48PWS_20230530_0_L2A/B12.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/5/S2A_48PWS_20230530_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/5/S2A_48PXS_20230530_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/5/S2A_48PWS_20230530_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/5/S2A_48PWS_20230530_0_L2A/B07.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B12.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/5/S2A_48PWS_20230530_0_L2A/B02.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/5/S2A_48PXS_20230530_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/5/S2A_48PWS_20230530_0_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/5/S2A_48PWS_20230530_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/5/S2A_48PWS_20230530_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/5/S2A_48PXS_20230530_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/5/S2A_48PWS_20230530_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/5/S2A_48PWS_20230530_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/5/S2A_48PWS_20230530_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/5/S2A_48PXS_20230530_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/5/S2A_48PWS_20230530_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/6/S2A_48PWS_20230609_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/5/S2A_48PWS_20230530_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/5/S2A_48PWS_20230530_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/5/S2A_48PWS_20230530_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/5/S2A_48PWS_20230530_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B06.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B07.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/6/S2A_48PWR_20230609_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B05.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/5/S2A_48PWS_20230530_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/SCL.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/5/S2A_48PWS_20230530_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/5/S2A_48PWS_20230530_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/5/S2A_48PWS_20230530_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B03.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/5/S2A_48PWS_20230530_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/5/S2A_48PWS_20230530_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B08.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B12.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B02.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B06.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/5/S2A_48PWS_20230530_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B05.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B12.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B07.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B05.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/SCL.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B11.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B06.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B04.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B06.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2B_48PWR_20230525_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/5/S2A_48PXS_20230530_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B12.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2B_48PWR_20230525_0_L2A/B06.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B07.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2B_48PWR_20230525_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2B_48PWR_20230525_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B07.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2B_48PWR_20230525_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2B_48PWR_20230525_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B11.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/5/S2B_48PWS_20230525_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2B_48PWR_20230525_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/5/S2B_48PWS_20230525_0_L2A/B06.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2B_48PWR_20230525_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2B_48PWR_20230525_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B04.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B01.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/5/S2A_48PXR_20230530_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B08.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2B_48PWR_20230525_0_L2A/B03.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2B_48PWR_20230525_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2B_48PWR_20230525_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B07.tif\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/5/S2B_48PWS_20230525_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B05.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/5/S2A_48PXS_20230530_0_L2A/B01.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2B_48PWR_20230525_0_L2A/B02.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2B_48PWR_20230525_0_L2A/B05.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/5/S2B_48PWS_20230525_0_L2A/B01.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B02.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/SCL.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2B_48PWR_20230525_0_L2A/B08.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B11.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2B_48PWR_20230525_0_L2A/B03.tif\n",
+ "Ignoring Exception: HTTP response code: 403\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n",
+ "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/5/S2A_48PWR_20230530_0_L2A/B04.tif\n",
+ "Ignoring Exception: VPC endpoints do not support cross-region requests\n"
]
}
],
@@ -719,37 +29638,15 @@
},
{
"cell_type": "code",
- "execution_count": 15,
+ "execution_count": null,
"id": "d2585562-88aa-4c7d-bf70-1f6affcf65d4",
"metadata": {
+ "jupyter": {
+ "source_hidden": true
+ },
"tags": []
},
- "outputs": [
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "======================================================================\n",
- "TRAINING DATA SETUP\n",
- "======================================================================\n",
- "\n",
- "[1] Loading training data: train/ST_training data_updated_1130points_new.shp\n",
- " ❌ Error: train/ST_training data_updated_1130points_new.shp: No such file or directory\n",
- "\n",
- "[2] Label mapping:\n",
- " 0: Lua tom\n",
- " 1: Lua\n",
- " 2: CHN\n",
- " 3: CLN\n",
- " 4: TS\n",
- " 5: Song\n",
- " 6: Dat xay dung\n",
- " 7: Rung\n",
- "\n",
- "======================================================================\n"
- ]
- }
- ],
+ "outputs": [],
"source": [
"# 🎯 LOAD TRAINING DATA & EXTRACT FEATURES\n",
"print(\"=\"*70)\n",
@@ -790,36 +29687,15 @@
},
{
"cell_type": "code",
- "execution_count": 16,
+ "execution_count": null,
"id": "2e955884-d4af-422d-a8e6-d436199540e0",
"metadata": {
+ "jupyter": {
+ "source_hidden": true
+ },
"tags": []
},
- "outputs": [
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "======================================================================\n",
- "LAND USE CLASSIFICATION TRAINING\n",
- "======================================================================\n",
- "\n",
- "🎯 Mục tiêu: Dự đoán phân loại sử dụng đất (8 lớp)\n",
- " - NDVI/NDWI/NDBI/EVI là INPUT FEATURES\n",
- " - Sau khi predict xong → có thể hiển thị NDVI map như chỉ số phụ\n",
- "======================================================================\n",
- "❌ Missing training data or satellite data\n",
- "\n",
- "======================================================================\n",
- "📝 NOTE: Model này dự đoán PHÂN LOẠI SỬ DỤNG ĐẤT (8 lớp)\n",
- " NDVI là một trong các features đầu vào, không phải mục tiêu dự đoán\n",
- " Sau khi predict → có thể hiển thị NDVI map như chỉ số phụ\n",
- "======================================================================\n",
- "CPU times: user 215 μs, sys: 0 ns, total: 215 μs\n",
- "Wall time: 180 μs\n"
- ]
- }
- ],
+ "outputs": [],
"source": [
"%%time\n",
"# 🤖 LAND USE CLASSIFICATION MODEL TRAINING (MỤC TIÊU CHÍNH)\n",
@@ -959,24 +29835,15 @@
},
{
"cell_type": "code",
- "execution_count": 17,
+ "execution_count": null,
"id": "f1a14379-ed6e-4897-9ca4-2669743fab40",
"metadata": {
+ "jupyter": {
+ "source_hidden": true
+ },
"tags": []
},
- "outputs": [
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "======================================================================\n",
- "MODEL SAVING\n",
- "======================================================================\n",
- "❌ No model to save\n",
- "======================================================================\n"
- ]
- }
- ],
+ "outputs": [],
"source": [
"# 💾 SAVE MODEL WITH METADATA\n",
"print(\"=\"*70)\n",
@@ -1043,7 +29910,11 @@
{
"cell_type": "markdown",
"id": "4a8579f4",
- "metadata": {},
+ "metadata": {
+ "jupyter": {
+ "source_hidden": true
+ }
+ },
"source": [
"# 📖 Hướng dẫn sử dụng Model\n",
"\n",
@@ -1117,29 +29988,15 @@
},
{
"cell_type": "code",
- "execution_count": 18,
+ "execution_count": null,
"id": "33dd516d-9824-499e-96b9-5cd9224c194c",
"metadata": {
+ "jupyter": {
+ "source_hidden": true
+ },
"tags": []
},
- "outputs": [
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "======================================================================\n",
- "CLEANUP\n",
- "======================================================================\n",
- "\n",
- "🔄 Closing Dask client and cluster...\n",
- "✅ Cleanup complete\n",
- "\n",
- "======================================================================\n",
- "✅ PIPELINE COMPLETE\n",
- "======================================================================\n"
- ]
- }
- ],
+ "outputs": [],
"source": [
"# 🛑 CLEANUP\n",
"print(\"=\"*70)\n",
diff --git a/push.sh b/push.sh
new file mode 100755
index 0000000..9b21140
--- /dev/null
+++ b/push.sh
@@ -0,0 +1,3 @@
+git add .
+git commit -m 'result'
+git push origin dev_01
\ No newline at end of file