{
"cells": [
{
"cell_type": "markdown",
"id": "0c18e312-8421-47d7-84f9-ed7d5e47e7ee",
"metadata": {
"tags": []
},
"source": [
"#### Load packages and connect to SentinelHub"
]
},
{
"cell_type": "code",
"execution_count": 38,
"id": "b7ca7102-5fd9-481f-90cd-3ba60e288649",
"metadata": {},
"outputs": [],
"source": [
"# $ pip install sentinelhub\n",
"# pip install gdal\n",
"\n",
"import os\n",
"import json\n",
"import datetime\n",
"import numpy as np\n",
"import matplotlib.pyplot as plt\n",
"from pathlib import Path\n",
"from osgeo import gdal\n",
"\n",
"from sentinelhub import MimeType, CRS, BBox, SentinelHubRequest, SentinelHubDownloadClient, \\\n",
" DataCollection, bbox_to_dimensions, DownloadRequest, SHConfig, BBoxSplitter, read_data, Geometry, SentinelHubCatalog\n",
"\n",
"config = SHConfig()\n",
"catalog = SentinelHubCatalog(config=config)\n",
"\n",
"import time\n",
"import shutil\n",
"\n",
"import geopandas as gpd\n",
"from shapely.geometry import MultiLineString, MultiPolygon, Polygon, box, shape\n"
]
},
{
"cell_type": "markdown",
"id": "d19f7f18",
"metadata": {},
"source": []
},
{
"cell_type": "code",
"execution_count": 39,
"id": "330c967c-2742-4a7a-9a61-28bfdaf8eeca",
"metadata": {},
"outputs": [],
"source": [
"#pip install pipreqs"
]
},
{
"cell_type": "code",
"execution_count": 40,
"id": "49f8496a-a267-4b74-9500-a168e031ed68",
"metadata": {},
"outputs": [],
"source": [
"#import pipreqs\n",
"#pipreqs Resilience BV/4002 CMD App - General/4002 CMD Team/4002 TechnicalData/04 WP2 technical/python/Chemba_download.ipynb"
]
},
{
"cell_type": "code",
"execution_count": 41,
"id": "5491a840-779c-4f0c-8164-c3de738b3298",
"metadata": {},
"outputs": [],
"source": [
"config.sh_client_id = '1a72d811-4f0e-4447-8282-df09608cff44'\n",
"config.sh_client_secret = 'FcBlRL29i9ZmTzhmKTv1etSMFs5PxSos'"
]
},
{
"cell_type": "code",
"execution_count": 42,
"id": "eb1fb662-0e25-4ca9-8317-c6953290842b",
"metadata": {},
"outputs": [],
"source": [
"collection_id = '4e56d0cb-c402-40ff-97bb-c2b9e6bfcf2a'\n",
"byoc = DataCollection.define_byoc(\n",
" collection_id,\n",
" name='planet_data_8b',\n",
" is_timeless=True)"
]
},
{
"cell_type": "markdown",
"id": "6adb603d-8182-48c6-a051-869e16ee7bba",
"metadata": {
"tags": []
},
"source": [
"#### Set some variables\n",
"The only place anything might need to be changed."
]
},
{
"cell_type": "code",
"execution_count": 43,
"id": "060396e0-e5ee-4b54-b211-5d8bfcba167f",
"metadata": {},
"outputs": [],
"source": [
"#project = 'chemba' #or xinavane or chemba_test_8b\n",
"#project = 'xinavane' #or xinavane or chemba_test_8b\n",
"project = 'angata' #or xinavane or chemba_test_8b\n",
"resolution = 3"
]
},
{
"cell_type": "code",
"execution_count": 44,
"id": "d5a99e68",
"metadata": {},
"outputs": [],
"source": [
"# Adjust the number of days needed\n",
"days = 14 # default to 7 days for recent imagery (was 200)."
]
},
{
"cell_type": "code",
"execution_count": 45,
"id": "f2b0e629",
"metadata": {},
"outputs": [],
"source": [
"#delete all the satellite outputs -> then True\n",
"empty_folder_question = True"
]
},
{
"cell_type": "markdown",
"id": "81bbb513-0bd2-4277-83e8-6f94051ce70b",
"metadata": {
"tags": []
},
"source": [
"#### Define functions\n",
"After this block, no manual changes to parameters are required. \n"
]
},
{
"cell_type": "code",
"execution_count": 46,
"id": "3f7c8e04-4569-457b-b39d-283582c4ba36",
"metadata": {},
"outputs": [],
"source": [
"BASE_PATH = Path('../laravel_app/storage/app') / os.getenv('PROJECT_DIR',project) \n",
"BASE_PATH_SINGLE_IMAGES = Path(BASE_PATH / 'single_images_8b')\n",
"folder_for_merged_tifs = str(BASE_PATH / 'merged_tif_8b')\n",
"folder_for_virtual_raster = str(BASE_PATH / 'merged_virtual_8b')\n",
"geojson_file = Path(BASE_PATH /'Data'/ 'pivot.geojson') #the geojsons should have the same name\n",
" \n",
"# Check if the folders exist, and if not, create them\n",
"if not os.path.exists(BASE_PATH_SINGLE_IMAGES):\n",
" os.makedirs(BASE_PATH_SINGLE_IMAGES)\n",
" \n",
"if not os.path.exists(folder_for_merged_tifs):\n",
" os.makedirs(folder_for_merged_tifs)\n",
"\n",
"if not os.path.exists(folder_for_virtual_raster):\n",
" os.makedirs(folder_for_virtual_raster)"
]
},
{
"cell_type": "code",
"execution_count": 47,
"id": "244b5752-4f02-4347-9278-f6a0a46b88f4",
"metadata": {},
"outputs": [],
"source": [
"def merge_files(slot):\n",
" # List the downloaded Tiffs in the different subfolders with pathlib (native library)\n",
" slot_dir = Path(BASE_PATH_SINGLE_IMAGES / slot)\n",
" file_list = [str(p) for p in slot_dir.rglob('response.tiff') if p.is_file()]\n",
"\n",
" if not file_list:\n",
" print(f\"No response.tiff files found for slot {slot}\")\n",
" return False\n",
"\n",
" # Use the previously defined folder variables (which are directory paths)\n",
" merged_tif_path = str(Path(folder_for_merged_tifs) / f\"{slot}.tif\")\n",
" merged_vrt_path = str(Path(folder_for_virtual_raster) / f\"merged{slot}.vrt\")\n",
"\n",
" try:\n",
" # Create a virtual raster\n",
" vrt_all = gdal.BuildVRT(merged_vrt_path, file_list)\n",
" \n",
" if vrt_all is None:\n",
" print(f\"ERROR: Failed to create VRT for slot {slot}. Check file paths and GDAL installation.\")\n",
" print(f\" VRT path: {merged_vrt_path}\")\n",
" print(f\" File list sample (first 3): {file_list[:3]}\")\n",
" return False\n",
"\n",
" # Close the VRT dataset to ensure it's written to disk\n",
" vrt_all = None\n",
"\n",
" # Convert to TIFF (create tiled, compressed, multi-threaded output for better size)\n",
" options = gdal.TranslateOptions(\n",
" outputType=gdal.GDT_Float32,\n",
" creationOptions=[\n",
" 'COMPRESS=LZW',\n",
" 'TILED=YES',\n",
" 'BLOCKXSIZE=256',\n",
" 'BLOCKYSIZE=256',\n",
" 'NUM_THREADS=ALL_CPUS'\n",
" ]\n",
" )\n",
" result = gdal.Translate(merged_tif_path, merged_vrt_path, options=options)\n",
" \n",
" if result is None:\n",
" print(f\"ERROR: Failed to translate VRT to TIFF for slot {slot}\")\n",
" print(f\" TIFF path: {merged_tif_path}\")\n",
" print(f\" VRT path: {merged_vrt_path}\")\n",
" return False\n",
" \n",
" result = None # Close the dataset\n",
" print(f\"✓ Successfully merged {len(file_list)} tiles for slot {slot} into {merged_tif_path}\")\n",
" return True\n",
" \n",
" except Exception as e:\n",
" print(f\"Exception while processing slot {slot}: {e}\")\n",
" import traceback\n",
" traceback.print_exc()\n",
" return False\n"
]
},
{
"cell_type": "code",
"execution_count": 48,
"id": "848dc773-70d6-4ae6-b05c-d6ebfb41624d",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Monthly time windows:\n",
"\n",
"2025-12-11\n",
"2025-12-12\n",
"2025-12-13\n",
"...\n",
"2025-12-22\n",
"2025-12-23\n",
"2025-12-24\n"
]
}
],
"source": [
"days_needed = int(os.environ.get(\"DAYS\", days))\n",
"date_str = os.environ.get(\"DATE\")\n",
"\n",
"if date_str:\n",
" # Parse de datumstring naar een datetime.date object\n",
" end = datetime.datetime.strptime(date_str, \"%Y-%m-%d\").date()\n",
"else:\n",
" # Gebruik de huidige datum als fallback\n",
" end = datetime.date.today() \n",
"\n",
"start = end - datetime.timedelta(days=days_needed - 1)\n",
"\n",
"slots = [(start + datetime.timedelta(days=i)).strftime('%Y-%m-%d') for i in range(days_needed)]\n",
"\n",
"print('Monthly time windows:\\n')\n",
"if len(slots) > 10:\n",
" for slot in slots[:3]:\n",
" print(slot)\n",
" print(\"...\")\n",
" for slot in slots[-3:]:\n",
" print(slot)\n",
"else:\n",
" for slot in slots:\n",
" print(slot)\n",
"\n"
]
},
{
"cell_type": "markdown",
"id": "420b0a3d",
"metadata": {},
"source": [
"#### Define evalscript and download functions\n",
"The evalscript exports 9 bands: Red, Green, Blue, NIR, and 5 UDM (Usable Data Mask) bands for quality assessment."
]
},
{
"cell_type": "code",
"execution_count": 49,
"id": "3fd61860",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Evalscript loaded with 9 bands:\n",
" Spectral: Coastal Blue, Blue, Green I, Green, Yellow, Red, Red Edge, NIR\n",
" Quality: UDM1 (usable data mask)\n"
]
}
],
"source": [
"# Evalscript to download all 8 Planet Scope bands + UDM1 quality mask\n",
"# Planet Scope 8-band: Coastal Blue, Blue, Green I, Green, Yellow, Red, Red Edge, NIR\n",
"# UDM1: Usable Data Mask (0 = clear, 1 = unusable/cloud)\n",
"evalscript_with_udm = \"\"\"\n",
" //VERSION=3\n",
" function setup() {\n",
" return {\n",
" input: [{\n",
" bands: [\"coastal_blue\", \"blue\", \"green_i\", \"green\", \"yellow\", \"red\", \"rededge\", \"nir\", \"udm1\"],\n",
" units: \"DN\"\n",
" }],\n",
" output: {\n",
" bands: 9, // 8 spectral bands + UDM1\n",
" sampleType: \"FLOAT32\"\n",
" }\n",
" };\n",
" }\n",
" function evaluatePixel(sample) {\n",
" // Scale all 8 spectral bands from DN to reflectance (0-1 range)\n",
" // Planet Scope uses 10000 as the scaling factor\n",
" var scaledCoastalBlue = 2.5 * sample.coastal_blue / 10000;\n",
" var scaledBlue = 2.5 * sample.blue / 10000;\n",
" var scaledGreenI = 2.5 * sample.green_i / 10000;\n",
" var scaledGreen = 2.5 * sample.green / 10000;\n",
" var scaledYellow = 2.5 * sample.yellow / 10000;\n",
" var scaledRed = 2.5 * sample.red / 10000;\n",
" var scaledRedEdge = 2.5 * sample.rededge / 10000;\n",
" var scaledNIR = 2.5 * sample.nir / 10000;\n",
" \n",
" // UDM1: Usable Data Mask (0 = clear, 1 = unusable)\n",
" var udm1 = sample.udm1;\n",
" \n",
" // Return 9 bands: 8 spectral + UDM1 quality mask\n",
" return [scaledCoastalBlue, scaledBlue, scaledGreenI, scaledGreen, \n",
" scaledYellow, scaledRed, scaledRedEdge, scaledNIR, udm1];\n",
" }\n",
"\"\"\"\n",
"\n",
"print(\"✓ Evalscript loaded with 9 bands:\")\n",
"print(\" Spectral: Coastal Blue, Blue, Green I, Green, Yellow, Red, Red Edge, NIR\")\n",
"print(\" Quality: UDM1 (usable data mask)\")\n"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "af55505a",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Download functions defined\n"
]
}
],
"source": [
"# Function to check if imagery is available for a given date\n",
"def is_image_available(time_interval):\n",
" \"\"\"Check if Planet imagery is available for the given date.\"\"\"\n",
" try:\n",
" # Use first bbox to check availability (assumes all have similar coverage)\n",
" test_bbox = bbox_list[0] if bbox_list else None\n",
" if test_bbox is None:\n",
" return True # Skip check if no bbox available\n",
" \n",
" # Query catalog for available images\n",
" search_results = catalog.search(\n",
" collection=DataCollection.define_byoc(collection_id),\n",
" bbox=test_bbox,\n",
" time=(time_interval, time_interval),\n",
" filter=None\n",
" )\n",
" \n",
" # Check if any results\n",
" tiles = list(search_results)\n",
" if len(tiles) > 0:\n",
" print(f\"✓ Found {len(tiles)} image(s) for {time_interval}\")\n",
" return True\n",
" else:\n",
" print(f\"✗ No images found for {time_interval}\")\n",
" return False\n",
" except Exception as e:\n",
" print(f\"⚠ Error checking availability for {time_interval}: {e}\")\n",
" return True # Continue anyway on error\n",
"\n",
"# Function to download imagery for a specific date\n",
"def download_function(slot, bbox, size):\n",
" \"\"\"Download Planet imagery with UDM masks for a specific date and bbox.\"\"\"\n",
" try:\n",
" request = SentinelHubRequest(\n",
" evalscript=evalscript_with_udm,\n",
" input_data=[\n",
" SentinelHubRequest.input_data(\n",
" data_collection=byoc, # Use the BYOC collection defined earlier\n",
" time_interval=(slot, slot)\n",
" )\n",
" ],\n",
" responses=[\n",
" SentinelHubRequest.output_response('default', MimeType.TIFF)\n",
" ],\n",
" bbox=bbox,\n",
" size=size,\n",
" config=config,\n",
" data_folder=str(BASE_PATH_SINGLE_IMAGES / slot),\n",
" )\n",
" \n",
" # Download\n",
" list_of_requests = [request.download_list[0]]\n",
" data = SentinelHubDownloadClient(config=config).download(list_of_requests, max_threads=2)\n",
" print(f'✓ Downloaded image for {slot} and bbox {repr(bbox)}')\n",
" time.sleep(1)\n",
" \n",
" except Exception as e:\n",
" print(f'✗ Error downloading {slot} for bbox {repr(bbox)}: {e}')\n",
"\n",
"print(\"✓ Download functions defined\")\n"
]
},
{
"cell_type": "markdown",
"id": "f8ea846f-783b-4460-a951-7b522273555f",
"metadata": {},
"source": [
"#### Download images\n"
]
},
{
"cell_type": "code",
"execution_count": 51,
"id": "f145bdd1",
"metadata": {},
"outputs": [],
"source": [
"geo_json = gpd.read_file(str(geojson_file))"
]
},
{
"cell_type": "code",
"execution_count": 52,
"id": "f5064dd1",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"GeoJSON CRS: EPSG:4326\n",
"GeoJSON bounds: [34.4322794 -1.41221077 34.95112711 -0.74039441]\n",
"✓ GeoJSON is already in WGS84\n",
"WGS84 bounds (lon/lat): LON=34.43228-34.95113, LAT=-1.41221--0.74039\n"
]
}
],
"source": [
"\n",
"# Check and convert GeoJSON to WGS84 if needed\n",
"temp_gdf = gpd.read_file(str(geojson_file))\n",
"print(f\"GeoJSON CRS: {temp_gdf.crs}\")\n",
"print(f\"GeoJSON bounds: {temp_gdf.total_bounds}\")\n",
"\n",
"if temp_gdf.crs is None:\n",
" print(\"⚠️ WARNING: GeoJSON has no CRS defined. Assuming WGS84.\")\n",
" temp_gdf = temp_gdf.set_crs('EPSG:4326')\n",
"elif temp_gdf.crs != 'EPSG:4326':\n",
" print(f\"Converting from {temp_gdf.crs} to WGS84...\")\n",
" temp_gdf = temp_gdf.to_crs('EPSG:4326')\n",
" # Write the converted GeoJSON back\n",
" import tempfile\n",
" import shutil\n",
" with tempfile.NamedTemporaryFile(mode='w', suffix='.geojson', delete=False) as tmp:\n",
" temp_path = tmp.name\n",
" temp_gdf.to_file(temp_path, driver='GeoJSON')\n",
" shutil.move(temp_path, geojson_file)\n",
" print(f\"✓ GeoJSON converted to WGS84 and saved\")\n",
"else:\n",
" print(\"✓ GeoJSON is already in WGS84\")\n",
"\n",
"print(f\"WGS84 bounds (lon/lat): LON={temp_gdf.total_bounds[0]:.5f}-{temp_gdf.total_bounds[2]:.5f}, LAT={temp_gdf.total_bounds[1]:.5f}-{temp_gdf.total_bounds[3]:.5f}\")\n"
]
},
{
"cell_type": "code",
"execution_count": 53,
"id": "3e44fc64",
"metadata": {},
"outputs": [],
"source": [
"geometries = [Geometry(geometry, crs=CRS.WGS84) for geometry in geo_json.geometry]"
]
},
{
"cell_type": "code",
"execution_count": 54,
"id": "50419beb",
"metadata": {},
"outputs": [],
"source": [
"shapely_geometries = [geometry.geometry for geometry in geometries]"
]
},
{
"cell_type": "code",
"execution_count": 55,
"id": "308089ac",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Area extent: 57758m × 74787m\n",
"Max bbox size: 7500m (2500px @ 3m resolution)\n",
"Dynamic grid: 8×10 (80 total tiles)\n",
"Area bounding box: BBox(((34.43227940231912, -1.412210768346171), (34.9511271057322, -0.7403944081102)), crs=CRS('4326'))\n",
"\n"
]
}
],
"source": [
"def calculate_dynamic_grid(shapely_geometries, resolution=3, max_pixels=2500):\n",
" \"\"\"\n",
" Calculate optimal grid size based on area extent and pixel limits.\n",
" \n",
" Goal: Minimize API calls while respecting SentinelHub's ~2500px limit per request.\n",
" Smaller areas get fewer bboxes, larger areas get dynamically scaled grids.\n",
" \n",
" Args:\n",
" shapely_geometries: List of field polygon geometries\n",
" resolution: Target resolution in meters\n",
" max_pixels: Maximum pixels per download (~2500 for SentinelHub)\n",
" \n",
" Returns:\n",
" grid_size: Tuple (nx, ny) for BBoxSplitter\n",
" \"\"\"\n",
" from shapely.geometry import MultiPolygon\n",
" \n",
" # Flatten MultiPolygons to Polygons\n",
" flattened_geoms = []\n",
" for geom in shapely_geometries:\n",
" if isinstance(geom, MultiPolygon):\n",
" flattened_geoms.extend(list(geom.geoms))\n",
" else:\n",
" flattened_geoms.append(geom)\n",
" \n",
" # Get overall bounds\n",
" if len(flattened_geoms) == 1:\n",
" bounds = flattened_geoms[0].bounds\n",
" else:\n",
" # Combine all geometries\n",
" multi = MultiPolygon(flattened_geoms)\n",
" bounds = multi.bounds\n",
" \n",
" minx, miny, maxx, maxy = bounds\n",
" \n",
" # Convert to rough meters (11132 m per degree at equator, valid for Kenya)\n",
" width_m = (maxx - minx) * 111320\n",
" height_m = (maxy - miny) * 111320\n",
" \n",
" # Calculate max bbox size allowed\n",
" max_size_m = max_pixels * resolution\n",
" \n",
" # Calculate grid needed to stay under max_size_m per tile\n",
" nx = max(1, int(np.ceil(width_m / max_size_m)))\n",
" ny = max(1, int(np.ceil(height_m / max_size_m)))\n",
" \n",
" print(f\"Area extent: {width_m:.0f}m × {height_m:.0f}m\")\n",
" print(f\"Max bbox size: {max_size_m:.0f}m ({max_pixels}px @ {resolution}m resolution)\")\n",
" print(f\"Dynamic grid: {nx}×{ny} ({nx*ny} total tiles)\")\n",
" \n",
" return (nx, ny)\n",
"\n",
"# Calculate optimal grid size dynamically instead of hardcoded 5x5\n",
"grid_size = calculate_dynamic_grid(shapely_geometries, resolution=resolution)\n",
"\n",
"bbox_splitter = BBoxSplitter(\n",
" shapely_geometries, CRS.WGS84, grid_size, reduce_bbox_sizes=True\n",
") # Dynamic grid based on area size, respects ~2500px limit per tile\n",
"\n",
"# based on https://github.com/sentinel-hub/sentinelhub-py/blob/master/examples/large_area_utilities.ipynb \n",
"\n",
"print(\"Area bounding box: {}\\n\".format(bbox_splitter.get_area_bbox().__repr__()))\n",
"\n",
"bbox_list = bbox_splitter.get_bbox_list()\n",
"info_list = bbox_splitter.get_info_list()\n"
]
},
{
"cell_type": "code",
"execution_count": 56,
"id": "8e330d6b",
"metadata": {},
"outputs": [
{
"data": {
"image/svg+xml": [
""
],
"text/plain": [
""
]
},
"execution_count": 56,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"geometry_list = bbox_splitter.get_geometry_list()\n",
"\n",
"geometry_list[0]"
]
},
{
"cell_type": "code",
"execution_count": 57,
"id": "8d686f8e",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Will attempt download for all 14 slots\n",
"(Download function will skip any missing data)\n"
]
}
],
"source": [
"# Use all slots - let the download function handle missing data\n",
"# (Catalog availability check is unreliable, so we skip it)\n",
"available_slots = slots\n",
"print(f\"Will attempt download for all {len(available_slots)} slots\")\n",
"print(\"(Download function will skip any missing data)\")\n"
]
},
{
"cell_type": "code",
"execution_count": 58,
"id": "8536fb09",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"['2025-12-11', '2025-12-12', '2025-12-13', '2025-12-14', '2025-12-15', '2025-12-16', '2025-12-17', '2025-12-18', '2025-12-19', '2025-12-20', '2025-12-21', '2025-12-22', '2025-12-23', '2025-12-24']\n",
"Total slots: 14\n",
"Available slots: 14\n",
"Will attempt download for all 14 slots\n",
"\n",
"Note: Slots with no data will fail gracefully and be skipped during merge.\n"
]
}
],
"source": [
"print(available_slots)\n",
"print(f\"Total slots: {len(slots)}\")\n",
"print(f\"Available slots: {len(available_slots)}\")\n",
"print(f\"Will attempt download for all {len(available_slots)} slots\")\n",
"print(\"\\nNote: Slots with no data will fail gracefully and be skipped during merge.\")\n"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "950f29ae",
"metadata": {},
"outputs": [],
"source": []
},
{
"cell_type": "code",
"execution_count": 59,
"id": "5059aa6e",
"metadata": {},
"outputs": [],
"source": [
"def show_splitter(splitter, alpha=0.2, area_buffer=0.2, show_legend=False):\n",
" area_bbox = splitter.get_area_bbox()\n",
" minx, miny, maxx, maxy = area_bbox\n",
" lng, lat = area_bbox.middle\n",
" w, h = maxx - minx, maxy - miny\n",
" minx = minx - area_buffer * w\n",
" miny = miny - area_buffer * h\n",
" maxx = maxx + area_buffer * w\n",
" maxy = maxy + area_buffer * h\n",
"\n",
" fig = plt.figure(figsize=(10, 10))\n",
" ax = fig.add_subplot(111)\n",
"\n",
" base_map = Basemap(\n",
" projection=\"mill\",\n",
" lat_0=lat,\n",
" lon_0=lng,\n",
" llcrnrlon=minx,\n",
" llcrnrlat=miny,\n",
" urcrnrlon=maxx,\n",
" urcrnrlat=maxy,\n",
" resolution=\"l\",\n",
" epsg=4326,\n",
" )\n",
" base_map.drawcoastlines(color=(0, 0, 0, 0))\n",
"\n",
" area_shape = splitter.get_area_shape()\n",
"\n",
" if isinstance(area_shape, Polygon):\n",
" polygon_iter = [area_shape]\n",
" elif isinstance(area_shape, MultiPolygon):\n",
" polygon_iter = area_shape.geoms\n",
" else:\n",
" raise ValueError(f\"Geometry of type {type(area_shape)} is not supported\")\n",
"\n",
" for polygon in polygon_iter:\n",
" if isinstance(polygon.boundary, MultiLineString):\n",
" for linestring in polygon.boundary:\n",
" ax.add_patch(PltPolygon(np.array(linestring), closed=True, facecolor=(0, 0, 0, 0), edgecolor=\"red\"))\n",
" else:\n",
" ax.add_patch(\n",
" PltPolygon(np.array(polygon.boundary.coords), closed=True, facecolor=(0, 0, 0, 0), edgecolor=\"red\")\n",
" )\n",
"\n",
" bbox_list = splitter.get_bbox_list()\n",
" info_list = splitter.get_info_list()\n",
"\n",
" cm = plt.get_cmap(\"jet\", len(bbox_list))\n",
" legend_shapes = []\n",
" for i, bbox in enumerate(bbox_list):\n",
" wgs84_bbox = bbox.transform(CRS.WGS84).get_polygon()\n",
"\n",
" tile_color = tuple(list(cm(i))[:3] + [alpha])\n",
" ax.add_patch(PltPolygon(np.array(wgs84_bbox), closed=True, facecolor=tile_color, edgecolor=\"green\"))\n",
"\n",
" if show_legend:\n",
" legend_shapes.append(plt.Rectangle((0, 0), 1, 1, fc=cm(i)))\n",
"\n",
" if show_legend:\n",
" legend_names = []\n",
" for info in info_list:\n",
" legend_name = \"{},{}\".format(info[\"index_x\"], info[\"index_y\"])\n",
"\n",
" for prop in [\"grid_index\", \"tile\"]:\n",
" if prop in info:\n",
" legend_name = \"{},{}\".format(info[prop], legend_name)\n",
"\n",
" legend_names.append(legend_name)\n",
"\n",
" plt.legend(legend_shapes, legend_names)\n",
" plt.tight_layout()\n",
" plt.show()"
]
},
{
"cell_type": "code",
"execution_count": 60,
"id": "39fda909",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-11 and bbox BBox(((34.43227940231912, -0.793999407986412), (34.497135365245754, -0.7403944081102)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-11 and bbox BBox(((34.55261330210694, -1.083804707249124), (34.55322150210681, -1.08344230724974)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-11 and bbox BBox(((34.521159402137435, -1.075778207273357), (34.55742840213687, -1.0091209522045883)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-11 and bbox BBox(((34.52556940216726, -1.0091209522045883), (34.56039290218303, -0.955587007549713)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-11 and bbox BBox(((34.54763590222374, -0.930138407609361), (34.56199132817239, -0.88523790771812)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-11 and bbox BBox(((34.51268080227695, -0.824818207884998), (34.55822940227056, -0.814534307891659)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-11 and bbox BBox(((34.497135365245754, -0.762091508048122), (34.511345302318205, -0.74690160809055)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-11 and bbox BBox(((34.5838212020876, -1.138619407079261), (34.62538534525143, -1.076432307229334)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-11 and bbox BBox(((34.568494102148186, -1.074312907253548), (34.62673520212198, -1.0091209522045883)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-11 and bbox BBox(((34.563311202158715, -1.0091209522045883), (34.626847291099025, -0.942267007551495)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-11 and bbox BBox(((34.56199132817239, -0.941449707549291), (34.626847291099025, -0.876321607716925)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-11 and bbox BBox(((34.56347800226767, -0.87399740770272), (34.626847291099025, -0.81363750785296)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-11 and bbox BBox(((34.613649202274, -0.801855107884596), (34.62190740227478, -0.797749307891636)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-11 and bbox BBox(((34.67830803360075, -1.356609034433322), (34.68030210094881, -1.355692951914685)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-11 and bbox BBox(((34.64188625507163, -1.344434614886506), (34.69113005290548, -1.30320163846144)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-11 and bbox BBox(((34.632383506583714, -1.180765824506693), (34.691703254025654, -1.144975609549194)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-11 and bbox BBox(((34.63433309539487, -1.143093840283647), (34.691703254025654, -1.087252020318328)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-11 and bbox BBox(((34.62877830211843, -1.071516907223199), (34.654142802138736, -1.011229307358623)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-11 and bbox BBox(((34.626847291099025, -0.993926107410106), (34.68045980217185, -0.9419393161809912)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-11 and bbox BBox(((34.626847291099025, -0.9419393161809912), (34.67903620219773, -0.8747576801573942)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-11 and bbox BBox(((34.626847291099025, -0.8747576801573942), (34.66998300222408, -0.829664407806008)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-11 and bbox BBox(((34.63959660227943, -0.803591207857726), (34.657334802271585, -0.784550407909836)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-11 and bbox BBox(((34.70000388244584, -1.380900764861492), (34.75655921695229, -1.3457208431243182)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-11 and bbox BBox(((34.70121863274682, -1.342393922471034), (34.75465354843241, -1.288413504444275)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-11 and bbox BBox(((34.709516028805425, -1.27372782518881), (34.75655921695229, -1.212982677559312)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-11 and bbox BBox(((34.691703254025654, -1.19907908314579), (34.749915358796265, -1.151363991386982)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-11 and bbox BBox(((34.691703254025654, -1.136478014034044), (34.756464068206306, -1.079692492267479)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-11 and bbox BBox(((34.74324189727955, -1.074959121936869), (34.74479689658479, -1.074355786874899)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-11 and bbox BBox(((34.75186760218406, -0.919708007513814), (34.75280850218366, -0.918538107516727)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-11 and bbox BBox(((34.75655921695229, -1.412210768346171), (34.821415179878926, -1.345029132322574)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-11 and bbox BBox(((34.75758855011164, -1.345029132322574), (34.821415179878926, -1.312045718529463)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-11 and bbox BBox(((34.75655921695229, -1.271454864610378), (34.81093290636472, -1.25676863185304)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-11 and bbox BBox(((34.772510188980924, -1.185116891629961), (34.809441713667326, -1.146620643373369)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-11 and bbox BBox(((34.75768221020848, -1.142244001908187), (34.801516865060236, -1.0763025882281856)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-11 and bbox BBox(((34.76248022018568, -1.0763025882281856), (34.819008740094795, -1.04394149535437)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-11 and bbox BBox(((34.821415179878926, -1.367488345636844), (34.826280213906976, -1.352644055204083)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-11 and bbox BBox(((34.821415179878926, -1.337011682082542), (34.88627114280556, -1.282435882687366)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-11 and bbox BBox(((34.85785682190653, -1.234888930535722), (34.859755155750534, -1.232255597812907)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-11 and bbox BBox(((34.82491853642327, -1.19655235625633), (34.8266602029287, -1.195767357602643)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-11 and bbox BBox(((34.83133353466313, -1.122839035571771), (34.87729187285517, -1.077807356342888)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-11 and bbox BBox(((34.828193532775025, -1.073999014166914), (34.867517004223004, -1.011862443344008)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-11 and bbox BBox(((34.88627114280556, -1.3341315872494968), (34.90033527303906, -1.293290623371076)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-11 and bbox BBox(((34.94827955815591, -1.236276596382781), (34.9511271057322, -1.233834163848)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-12 and bbox BBox(((34.43227940231912, -0.793999407986412), (34.497135365245754, -0.7403944081102)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-12 and bbox BBox(((34.55261330210694, -1.083804707249124), (34.55322150210681, -1.08344230724974)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-12 and bbox BBox(((34.521159402137435, -1.075778207273357), (34.55742840213687, -1.0091209522045883)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-12 and bbox BBox(((34.52556940216726, -1.0091209522045883), (34.56039290218303, -0.955587007549713)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-12 and bbox BBox(((34.54763590222374, -0.930138407609361), (34.56199132817239, -0.88523790771812)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-12 and bbox BBox(((34.51268080227695, -0.824818207884998), (34.55822940227056, -0.814534307891659)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-12 and bbox BBox(((34.497135365245754, -0.762091508048122), (34.511345302318205, -0.74690160809055)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-12 and bbox BBox(((34.5838212020876, -1.138619407079261), (34.62538534525143, -1.076432307229334)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-12 and bbox BBox(((34.568494102148186, -1.074312907253548), (34.62673520212198, -1.0091209522045883)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-12 and bbox BBox(((34.563311202158715, -1.0091209522045883), (34.626847291099025, -0.942267007551495)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-12 and bbox BBox(((34.56199132817239, -0.941449707549291), (34.626847291099025, -0.876321607716925)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-12 and bbox BBox(((34.56347800226767, -0.87399740770272), (34.626847291099025, -0.81363750785296)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-12 and bbox BBox(((34.613649202274, -0.801855107884596), (34.62190740227478, -0.797749307891636)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-12 and bbox BBox(((34.67830803360075, -1.356609034433322), (34.68030210094881, -1.355692951914685)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-12 and bbox BBox(((34.64188625507163, -1.344434614886506), (34.69113005290548, -1.30320163846144)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-12 and bbox BBox(((34.632383506583714, -1.180765824506693), (34.691703254025654, -1.144975609549194)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-12 and bbox BBox(((34.63433309539487, -1.143093840283647), (34.691703254025654, -1.087252020318328)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-12 and bbox BBox(((34.62877830211843, -1.071516907223199), (34.654142802138736, -1.011229307358623)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-12 and bbox BBox(((34.626847291099025, -0.993926107410106), (34.68045980217185, -0.9419393161809912)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-12 and bbox BBox(((34.626847291099025, -0.9419393161809912), (34.67903620219773, -0.8747576801573942)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-12 and bbox BBox(((34.626847291099025, -0.8747576801573942), (34.66998300222408, -0.829664407806008)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-12 and bbox BBox(((34.63959660227943, -0.803591207857726), (34.657334802271585, -0.784550407909836)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-12 and bbox BBox(((34.70000388244584, -1.380900764861492), (34.75655921695229, -1.3457208431243182)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-12 and bbox BBox(((34.70121863274682, -1.342393922471034), (34.75465354843241, -1.288413504444275)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-12 and bbox BBox(((34.709516028805425, -1.27372782518881), (34.75655921695229, -1.212982677559312)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-12 and bbox BBox(((34.691703254025654, -1.19907908314579), (34.749915358796265, -1.151363991386982)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-12 and bbox BBox(((34.691703254025654, -1.136478014034044), (34.756464068206306, -1.079692492267479)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-12 and bbox BBox(((34.74324189727955, -1.074959121936869), (34.74479689658479, -1.074355786874899)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-12 and bbox BBox(((34.75186760218406, -0.919708007513814), (34.75280850218366, -0.918538107516727)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-12 and bbox BBox(((34.75655921695229, -1.412210768346171), (34.821415179878926, -1.345029132322574)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-12 and bbox BBox(((34.75758855011164, -1.345029132322574), (34.821415179878926, -1.312045718529463)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-12 and bbox BBox(((34.75655921695229, -1.271454864610378), (34.81093290636472, -1.25676863185304)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-12 and bbox BBox(((34.772510188980924, -1.185116891629961), (34.809441713667326, -1.146620643373369)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-12 and bbox BBox(((34.75768221020848, -1.142244001908187), (34.801516865060236, -1.0763025882281856)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-12 and bbox BBox(((34.76248022018568, -1.0763025882281856), (34.819008740094795, -1.04394149535437)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-12 and bbox BBox(((34.821415179878926, -1.367488345636844), (34.826280213906976, -1.352644055204083)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-12 and bbox BBox(((34.821415179878926, -1.337011682082542), (34.88627114280556, -1.282435882687366)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-12 and bbox BBox(((34.85785682190653, -1.234888930535722), (34.859755155750534, -1.232255597812907)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-12 and bbox BBox(((34.82491853642327, -1.19655235625633), (34.8266602029287, -1.195767357602643)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-12 and bbox BBox(((34.83133353466313, -1.122839035571771), (34.87729187285517, -1.077807356342888)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-12 and bbox BBox(((34.828193532775025, -1.073999014166914), (34.867517004223004, -1.011862443344008)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-12 and bbox BBox(((34.88627114280556, -1.3341315872494968), (34.90033527303906, -1.293290623371076)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-12 and bbox BBox(((34.94827955815591, -1.236276596382781), (34.9511271057322, -1.233834163848)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-13 and bbox BBox(((34.43227940231912, -0.793999407986412), (34.497135365245754, -0.7403944081102)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-13 and bbox BBox(((34.55261330210694, -1.083804707249124), (34.55322150210681, -1.08344230724974)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-13 and bbox BBox(((34.521159402137435, -1.075778207273357), (34.55742840213687, -1.0091209522045883)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-13 and bbox BBox(((34.52556940216726, -1.0091209522045883), (34.56039290218303, -0.955587007549713)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-13 and bbox BBox(((34.54763590222374, -0.930138407609361), (34.56199132817239, -0.88523790771812)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-13 and bbox BBox(((34.51268080227695, -0.824818207884998), (34.55822940227056, -0.814534307891659)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-13 and bbox BBox(((34.497135365245754, -0.762091508048122), (34.511345302318205, -0.74690160809055)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-13 and bbox BBox(((34.5838212020876, -1.138619407079261), (34.62538534525143, -1.076432307229334)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-13 and bbox BBox(((34.568494102148186, -1.074312907253548), (34.62673520212198, -1.0091209522045883)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-13 and bbox BBox(((34.563311202158715, -1.0091209522045883), (34.626847291099025, -0.942267007551495)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-13 and bbox BBox(((34.56199132817239, -0.941449707549291), (34.626847291099025, -0.876321607716925)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-13 and bbox BBox(((34.56347800226767, -0.87399740770272), (34.626847291099025, -0.81363750785296)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-13 and bbox BBox(((34.613649202274, -0.801855107884596), (34.62190740227478, -0.797749307891636)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-13 and bbox BBox(((34.67830803360075, -1.356609034433322), (34.68030210094881, -1.355692951914685)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-13 and bbox BBox(((34.64188625507163, -1.344434614886506), (34.69113005290548, -1.30320163846144)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-13 and bbox BBox(((34.632383506583714, -1.180765824506693), (34.691703254025654, -1.144975609549194)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-13 and bbox BBox(((34.63433309539487, -1.143093840283647), (34.691703254025654, -1.087252020318328)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-13 and bbox BBox(((34.62877830211843, -1.071516907223199), (34.654142802138736, -1.011229307358623)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-13 and bbox BBox(((34.626847291099025, -0.993926107410106), (34.68045980217185, -0.9419393161809912)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-13 and bbox BBox(((34.626847291099025, -0.9419393161809912), (34.67903620219773, -0.8747576801573942)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-13 and bbox BBox(((34.626847291099025, -0.8747576801573942), (34.66998300222408, -0.829664407806008)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-13 and bbox BBox(((34.63959660227943, -0.803591207857726), (34.657334802271585, -0.784550407909836)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-13 and bbox BBox(((34.70000388244584, -1.380900764861492), (34.75655921695229, -1.3457208431243182)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-13 and bbox BBox(((34.70121863274682, -1.342393922471034), (34.75465354843241, -1.288413504444275)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-13 and bbox BBox(((34.709516028805425, -1.27372782518881), (34.75655921695229, -1.212982677559312)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-13 and bbox BBox(((34.691703254025654, -1.19907908314579), (34.749915358796265, -1.151363991386982)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-13 and bbox BBox(((34.691703254025654, -1.136478014034044), (34.756464068206306, -1.079692492267479)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-13 and bbox BBox(((34.74324189727955, -1.074959121936869), (34.74479689658479, -1.074355786874899)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-13 and bbox BBox(((34.75186760218406, -0.919708007513814), (34.75280850218366, -0.918538107516727)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-13 and bbox BBox(((34.75655921695229, -1.412210768346171), (34.821415179878926, -1.345029132322574)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-13 and bbox BBox(((34.75758855011164, -1.345029132322574), (34.821415179878926, -1.312045718529463)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-13 and bbox BBox(((34.75655921695229, -1.271454864610378), (34.81093290636472, -1.25676863185304)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-13 and bbox BBox(((34.772510188980924, -1.185116891629961), (34.809441713667326, -1.146620643373369)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-13 and bbox BBox(((34.75768221020848, -1.142244001908187), (34.801516865060236, -1.0763025882281856)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-13 and bbox BBox(((34.76248022018568, -1.0763025882281856), (34.819008740094795, -1.04394149535437)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-13 and bbox BBox(((34.821415179878926, -1.367488345636844), (34.826280213906976, -1.352644055204083)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-13 and bbox BBox(((34.821415179878926, -1.337011682082542), (34.88627114280556, -1.282435882687366)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-13 and bbox BBox(((34.85785682190653, -1.234888930535722), (34.859755155750534, -1.232255597812907)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-13 and bbox BBox(((34.82491853642327, -1.19655235625633), (34.8266602029287, -1.195767357602643)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-13 and bbox BBox(((34.83133353466313, -1.122839035571771), (34.87729187285517, -1.077807356342888)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-13 and bbox BBox(((34.828193532775025, -1.073999014166914), (34.867517004223004, -1.011862443344008)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-13 and bbox BBox(((34.88627114280556, -1.3341315872494968), (34.90033527303906, -1.293290623371076)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-13 and bbox BBox(((34.94827955815591, -1.236276596382781), (34.9511271057322, -1.233834163848)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-14 and bbox BBox(((34.43227940231912, -0.793999407986412), (34.497135365245754, -0.7403944081102)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-14 and bbox BBox(((34.55261330210694, -1.083804707249124), (34.55322150210681, -1.08344230724974)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-14 and bbox BBox(((34.521159402137435, -1.075778207273357), (34.55742840213687, -1.0091209522045883)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-14 and bbox BBox(((34.52556940216726, -1.0091209522045883), (34.56039290218303, -0.955587007549713)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-14 and bbox BBox(((34.54763590222374, -0.930138407609361), (34.56199132817239, -0.88523790771812)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-14 and bbox BBox(((34.51268080227695, -0.824818207884998), (34.55822940227056, -0.814534307891659)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-14 and bbox BBox(((34.497135365245754, -0.762091508048122), (34.511345302318205, -0.74690160809055)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-14 and bbox BBox(((34.5838212020876, -1.138619407079261), (34.62538534525143, -1.076432307229334)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-14 and bbox BBox(((34.568494102148186, -1.074312907253548), (34.62673520212198, -1.0091209522045883)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-14 and bbox BBox(((34.563311202158715, -1.0091209522045883), (34.626847291099025, -0.942267007551495)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-14 and bbox BBox(((34.56199132817239, -0.941449707549291), (34.626847291099025, -0.876321607716925)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-14 and bbox BBox(((34.56347800226767, -0.87399740770272), (34.626847291099025, -0.81363750785296)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-14 and bbox BBox(((34.613649202274, -0.801855107884596), (34.62190740227478, -0.797749307891636)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-14 and bbox BBox(((34.67830803360075, -1.356609034433322), (34.68030210094881, -1.355692951914685)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-14 and bbox BBox(((34.64188625507163, -1.344434614886506), (34.69113005290548, -1.30320163846144)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-14 and bbox BBox(((34.632383506583714, -1.180765824506693), (34.691703254025654, -1.144975609549194)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-14 and bbox BBox(((34.63433309539487, -1.143093840283647), (34.691703254025654, -1.087252020318328)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-14 and bbox BBox(((34.62877830211843, -1.071516907223199), (34.654142802138736, -1.011229307358623)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-14 and bbox BBox(((34.626847291099025, -0.993926107410106), (34.68045980217185, -0.9419393161809912)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-14 and bbox BBox(((34.626847291099025, -0.9419393161809912), (34.67903620219773, -0.8747576801573942)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-14 and bbox BBox(((34.626847291099025, -0.8747576801573942), (34.66998300222408, -0.829664407806008)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-14 and bbox BBox(((34.63959660227943, -0.803591207857726), (34.657334802271585, -0.784550407909836)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-14 and bbox BBox(((34.70000388244584, -1.380900764861492), (34.75655921695229, -1.3457208431243182)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-14 and bbox BBox(((34.70121863274682, -1.342393922471034), (34.75465354843241, -1.288413504444275)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-14 and bbox BBox(((34.709516028805425, -1.27372782518881), (34.75655921695229, -1.212982677559312)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-14 and bbox BBox(((34.691703254025654, -1.19907908314579), (34.749915358796265, -1.151363991386982)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-14 and bbox BBox(((34.691703254025654, -1.136478014034044), (34.756464068206306, -1.079692492267479)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-14 and bbox BBox(((34.74324189727955, -1.074959121936869), (34.74479689658479, -1.074355786874899)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-14 and bbox BBox(((34.75186760218406, -0.919708007513814), (34.75280850218366, -0.918538107516727)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-14 and bbox BBox(((34.75655921695229, -1.412210768346171), (34.821415179878926, -1.345029132322574)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-14 and bbox BBox(((34.75758855011164, -1.345029132322574), (34.821415179878926, -1.312045718529463)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-14 and bbox BBox(((34.75655921695229, -1.271454864610378), (34.81093290636472, -1.25676863185304)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-14 and bbox BBox(((34.772510188980924, -1.185116891629961), (34.809441713667326, -1.146620643373369)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-14 and bbox BBox(((34.75768221020848, -1.142244001908187), (34.801516865060236, -1.0763025882281856)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-14 and bbox BBox(((34.76248022018568, -1.0763025882281856), (34.819008740094795, -1.04394149535437)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-14 and bbox BBox(((34.821415179878926, -1.367488345636844), (34.826280213906976, -1.352644055204083)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-14 and bbox BBox(((34.821415179878926, -1.337011682082542), (34.88627114280556, -1.282435882687366)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-14 and bbox BBox(((34.85785682190653, -1.234888930535722), (34.859755155750534, -1.232255597812907)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-14 and bbox BBox(((34.82491853642327, -1.19655235625633), (34.8266602029287, -1.195767357602643)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-14 and bbox BBox(((34.83133353466313, -1.122839035571771), (34.87729187285517, -1.077807356342888)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-14 and bbox BBox(((34.828193532775025, -1.073999014166914), (34.867517004223004, -1.011862443344008)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-14 and bbox BBox(((34.88627114280556, -1.3341315872494968), (34.90033527303906, -1.293290623371076)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-14 and bbox BBox(((34.94827955815591, -1.236276596382781), (34.9511271057322, -1.233834163848)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-15 and bbox BBox(((34.43227940231912, -0.793999407986412), (34.497135365245754, -0.7403944081102)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-15 and bbox BBox(((34.55261330210694, -1.083804707249124), (34.55322150210681, -1.08344230724974)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-15 and bbox BBox(((34.521159402137435, -1.075778207273357), (34.55742840213687, -1.0091209522045883)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-15 and bbox BBox(((34.52556940216726, -1.0091209522045883), (34.56039290218303, -0.955587007549713)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-15 and bbox BBox(((34.54763590222374, -0.930138407609361), (34.56199132817239, -0.88523790771812)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-15 and bbox BBox(((34.51268080227695, -0.824818207884998), (34.55822940227056, -0.814534307891659)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-15 and bbox BBox(((34.497135365245754, -0.762091508048122), (34.511345302318205, -0.74690160809055)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-15 and bbox BBox(((34.5838212020876, -1.138619407079261), (34.62538534525143, -1.076432307229334)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-15 and bbox BBox(((34.568494102148186, -1.074312907253548), (34.62673520212198, -1.0091209522045883)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-15 and bbox BBox(((34.563311202158715, -1.0091209522045883), (34.626847291099025, -0.942267007551495)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-15 and bbox BBox(((34.56199132817239, -0.941449707549291), (34.626847291099025, -0.876321607716925)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-15 and bbox BBox(((34.56347800226767, -0.87399740770272), (34.626847291099025, -0.81363750785296)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-15 and bbox BBox(((34.613649202274, -0.801855107884596), (34.62190740227478, -0.797749307891636)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-15 and bbox BBox(((34.67830803360075, -1.356609034433322), (34.68030210094881, -1.355692951914685)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-15 and bbox BBox(((34.64188625507163, -1.344434614886506), (34.69113005290548, -1.30320163846144)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-15 and bbox BBox(((34.632383506583714, -1.180765824506693), (34.691703254025654, -1.144975609549194)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-15 and bbox BBox(((34.63433309539487, -1.143093840283647), (34.691703254025654, -1.087252020318328)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-15 and bbox BBox(((34.62877830211843, -1.071516907223199), (34.654142802138736, -1.011229307358623)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-15 and bbox BBox(((34.626847291099025, -0.993926107410106), (34.68045980217185, -0.9419393161809912)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-15 and bbox BBox(((34.626847291099025, -0.9419393161809912), (34.67903620219773, -0.8747576801573942)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-15 and bbox BBox(((34.626847291099025, -0.8747576801573942), (34.66998300222408, -0.829664407806008)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-15 and bbox BBox(((34.63959660227943, -0.803591207857726), (34.657334802271585, -0.784550407909836)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-15 and bbox BBox(((34.70000388244584, -1.380900764861492), (34.75655921695229, -1.3457208431243182)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-15 and bbox BBox(((34.70121863274682, -1.342393922471034), (34.75465354843241, -1.288413504444275)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-15 and bbox BBox(((34.709516028805425, -1.27372782518881), (34.75655921695229, -1.212982677559312)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-15 and bbox BBox(((34.691703254025654, -1.19907908314579), (34.749915358796265, -1.151363991386982)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-15 and bbox BBox(((34.691703254025654, -1.136478014034044), (34.756464068206306, -1.079692492267479)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-15 and bbox BBox(((34.74324189727955, -1.074959121936869), (34.74479689658479, -1.074355786874899)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-15 and bbox BBox(((34.75186760218406, -0.919708007513814), (34.75280850218366, -0.918538107516727)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-15 and bbox BBox(((34.75655921695229, -1.412210768346171), (34.821415179878926, -1.345029132322574)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-15 and bbox BBox(((34.75758855011164, -1.345029132322574), (34.821415179878926, -1.312045718529463)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-15 and bbox BBox(((34.75655921695229, -1.271454864610378), (34.81093290636472, -1.25676863185304)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-15 and bbox BBox(((34.772510188980924, -1.185116891629961), (34.809441713667326, -1.146620643373369)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-15 and bbox BBox(((34.75768221020848, -1.142244001908187), (34.801516865060236, -1.0763025882281856)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-15 and bbox BBox(((34.76248022018568, -1.0763025882281856), (34.819008740094795, -1.04394149535437)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-15 and bbox BBox(((34.821415179878926, -1.367488345636844), (34.826280213906976, -1.352644055204083)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-15 and bbox BBox(((34.821415179878926, -1.337011682082542), (34.88627114280556, -1.282435882687366)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-15 and bbox BBox(((34.85785682190653, -1.234888930535722), (34.859755155750534, -1.232255597812907)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-15 and bbox BBox(((34.82491853642327, -1.19655235625633), (34.8266602029287, -1.195767357602643)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-15 and bbox BBox(((34.83133353466313, -1.122839035571771), (34.87729187285517, -1.077807356342888)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-15 and bbox BBox(((34.828193532775025, -1.073999014166914), (34.867517004223004, -1.011862443344008)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-15 and bbox BBox(((34.88627114280556, -1.3341315872494968), (34.90033527303906, -1.293290623371076)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-15 and bbox BBox(((34.94827955815591, -1.236276596382781), (34.9511271057322, -1.233834163848)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-16 and bbox BBox(((34.43227940231912, -0.793999407986412), (34.497135365245754, -0.7403944081102)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-16 and bbox BBox(((34.55261330210694, -1.083804707249124), (34.55322150210681, -1.08344230724974)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-16 and bbox BBox(((34.521159402137435, -1.075778207273357), (34.55742840213687, -1.0091209522045883)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-16 and bbox BBox(((34.52556940216726, -1.0091209522045883), (34.56039290218303, -0.955587007549713)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-16 and bbox BBox(((34.54763590222374, -0.930138407609361), (34.56199132817239, -0.88523790771812)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-16 and bbox BBox(((34.51268080227695, -0.824818207884998), (34.55822940227056, -0.814534307891659)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-16 and bbox BBox(((34.497135365245754, -0.762091508048122), (34.511345302318205, -0.74690160809055)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-16 and bbox BBox(((34.5838212020876, -1.138619407079261), (34.62538534525143, -1.076432307229334)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-16 and bbox BBox(((34.568494102148186, -1.074312907253548), (34.62673520212198, -1.0091209522045883)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-16 and bbox BBox(((34.563311202158715, -1.0091209522045883), (34.626847291099025, -0.942267007551495)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-16 and bbox BBox(((34.56199132817239, -0.941449707549291), (34.626847291099025, -0.876321607716925)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-16 and bbox BBox(((34.56347800226767, -0.87399740770272), (34.626847291099025, -0.81363750785296)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-16 and bbox BBox(((34.613649202274, -0.801855107884596), (34.62190740227478, -0.797749307891636)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-16 and bbox BBox(((34.67830803360075, -1.356609034433322), (34.68030210094881, -1.355692951914685)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-16 and bbox BBox(((34.64188625507163, -1.344434614886506), (34.69113005290548, -1.30320163846144)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-16 and bbox BBox(((34.632383506583714, -1.180765824506693), (34.691703254025654, -1.144975609549194)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-16 and bbox BBox(((34.63433309539487, -1.143093840283647), (34.691703254025654, -1.087252020318328)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-16 and bbox BBox(((34.62877830211843, -1.071516907223199), (34.654142802138736, -1.011229307358623)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-16 and bbox BBox(((34.626847291099025, -0.993926107410106), (34.68045980217185, -0.9419393161809912)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-16 and bbox BBox(((34.626847291099025, -0.9419393161809912), (34.67903620219773, -0.8747576801573942)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-16 and bbox BBox(((34.626847291099025, -0.8747576801573942), (34.66998300222408, -0.829664407806008)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-16 and bbox BBox(((34.63959660227943, -0.803591207857726), (34.657334802271585, -0.784550407909836)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-16 and bbox BBox(((34.70000388244584, -1.380900764861492), (34.75655921695229, -1.3457208431243182)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-16 and bbox BBox(((34.70121863274682, -1.342393922471034), (34.75465354843241, -1.288413504444275)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-16 and bbox BBox(((34.709516028805425, -1.27372782518881), (34.75655921695229, -1.212982677559312)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-16 and bbox BBox(((34.691703254025654, -1.19907908314579), (34.749915358796265, -1.151363991386982)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-16 and bbox BBox(((34.691703254025654, -1.136478014034044), (34.756464068206306, -1.079692492267479)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-16 and bbox BBox(((34.74324189727955, -1.074959121936869), (34.74479689658479, -1.074355786874899)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-16 and bbox BBox(((34.75186760218406, -0.919708007513814), (34.75280850218366, -0.918538107516727)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-16 and bbox BBox(((34.75655921695229, -1.412210768346171), (34.821415179878926, -1.345029132322574)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-16 and bbox BBox(((34.75758855011164, -1.345029132322574), (34.821415179878926, -1.312045718529463)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-16 and bbox BBox(((34.75655921695229, -1.271454864610378), (34.81093290636472, -1.25676863185304)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-16 and bbox BBox(((34.772510188980924, -1.185116891629961), (34.809441713667326, -1.146620643373369)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-16 and bbox BBox(((34.75768221020848, -1.142244001908187), (34.801516865060236, -1.0763025882281856)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-16 and bbox BBox(((34.76248022018568, -1.0763025882281856), (34.819008740094795, -1.04394149535437)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-16 and bbox BBox(((34.821415179878926, -1.367488345636844), (34.826280213906976, -1.352644055204083)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-16 and bbox BBox(((34.821415179878926, -1.337011682082542), (34.88627114280556, -1.282435882687366)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-16 and bbox BBox(((34.85785682190653, -1.234888930535722), (34.859755155750534, -1.232255597812907)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-16 and bbox BBox(((34.82491853642327, -1.19655235625633), (34.8266602029287, -1.195767357602643)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-16 and bbox BBox(((34.83133353466313, -1.122839035571771), (34.87729187285517, -1.077807356342888)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-16 and bbox BBox(((34.828193532775025, -1.073999014166914), (34.867517004223004, -1.011862443344008)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-16 and bbox BBox(((34.88627114280556, -1.3341315872494968), (34.90033527303906, -1.293290623371076)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-16 and bbox BBox(((34.94827955815591, -1.236276596382781), (34.9511271057322, -1.233834163848)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-17 and bbox BBox(((34.43227940231912, -0.793999407986412), (34.497135365245754, -0.7403944081102)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-17 and bbox BBox(((34.55261330210694, -1.083804707249124), (34.55322150210681, -1.08344230724974)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-17 and bbox BBox(((34.521159402137435, -1.075778207273357), (34.55742840213687, -1.0091209522045883)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-17 and bbox BBox(((34.52556940216726, -1.0091209522045883), (34.56039290218303, -0.955587007549713)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-17 and bbox BBox(((34.54763590222374, -0.930138407609361), (34.56199132817239, -0.88523790771812)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-17 and bbox BBox(((34.51268080227695, -0.824818207884998), (34.55822940227056, -0.814534307891659)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-17 and bbox BBox(((34.497135365245754, -0.762091508048122), (34.511345302318205, -0.74690160809055)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-17 and bbox BBox(((34.5838212020876, -1.138619407079261), (34.62538534525143, -1.076432307229334)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-17 and bbox BBox(((34.568494102148186, -1.074312907253548), (34.62673520212198, -1.0091209522045883)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-17 and bbox BBox(((34.563311202158715, -1.0091209522045883), (34.626847291099025, -0.942267007551495)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-17 and bbox BBox(((34.56199132817239, -0.941449707549291), (34.626847291099025, -0.876321607716925)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-17 and bbox BBox(((34.56347800226767, -0.87399740770272), (34.626847291099025, -0.81363750785296)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-17 and bbox BBox(((34.613649202274, -0.801855107884596), (34.62190740227478, -0.797749307891636)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-17 and bbox BBox(((34.67830803360075, -1.356609034433322), (34.68030210094881, -1.355692951914685)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-17 and bbox BBox(((34.64188625507163, -1.344434614886506), (34.69113005290548, -1.30320163846144)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-17 and bbox BBox(((34.632383506583714, -1.180765824506693), (34.691703254025654, -1.144975609549194)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-17 and bbox BBox(((34.63433309539487, -1.143093840283647), (34.691703254025654, -1.087252020318328)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-17 and bbox BBox(((34.62877830211843, -1.071516907223199), (34.654142802138736, -1.011229307358623)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-17 and bbox BBox(((34.626847291099025, -0.993926107410106), (34.68045980217185, -0.9419393161809912)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-17 and bbox BBox(((34.626847291099025, -0.9419393161809912), (34.67903620219773, -0.8747576801573942)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-17 and bbox BBox(((34.626847291099025, -0.8747576801573942), (34.66998300222408, -0.829664407806008)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-17 and bbox BBox(((34.63959660227943, -0.803591207857726), (34.657334802271585, -0.784550407909836)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-17 and bbox BBox(((34.70000388244584, -1.380900764861492), (34.75655921695229, -1.3457208431243182)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-17 and bbox BBox(((34.70121863274682, -1.342393922471034), (34.75465354843241, -1.288413504444275)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-17 and bbox BBox(((34.709516028805425, -1.27372782518881), (34.75655921695229, -1.212982677559312)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-17 and bbox BBox(((34.691703254025654, -1.19907908314579), (34.749915358796265, -1.151363991386982)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-17 and bbox BBox(((34.691703254025654, -1.136478014034044), (34.756464068206306, -1.079692492267479)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-17 and bbox BBox(((34.74324189727955, -1.074959121936869), (34.74479689658479, -1.074355786874899)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-17 and bbox BBox(((34.75186760218406, -0.919708007513814), (34.75280850218366, -0.918538107516727)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-17 and bbox BBox(((34.75655921695229, -1.412210768346171), (34.821415179878926, -1.345029132322574)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-17 and bbox BBox(((34.75758855011164, -1.345029132322574), (34.821415179878926, -1.312045718529463)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-17 and bbox BBox(((34.75655921695229, -1.271454864610378), (34.81093290636472, -1.25676863185304)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-17 and bbox BBox(((34.772510188980924, -1.185116891629961), (34.809441713667326, -1.146620643373369)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-17 and bbox BBox(((34.75768221020848, -1.142244001908187), (34.801516865060236, -1.0763025882281856)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-17 and bbox BBox(((34.76248022018568, -1.0763025882281856), (34.819008740094795, -1.04394149535437)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-17 and bbox BBox(((34.821415179878926, -1.367488345636844), (34.826280213906976, -1.352644055204083)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-17 and bbox BBox(((34.821415179878926, -1.337011682082542), (34.88627114280556, -1.282435882687366)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-17 and bbox BBox(((34.85785682190653, -1.234888930535722), (34.859755155750534, -1.232255597812907)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-17 and bbox BBox(((34.82491853642327, -1.19655235625633), (34.8266602029287, -1.195767357602643)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-17 and bbox BBox(((34.83133353466313, -1.122839035571771), (34.87729187285517, -1.077807356342888)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-17 and bbox BBox(((34.828193532775025, -1.073999014166914), (34.867517004223004, -1.011862443344008)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-17 and bbox BBox(((34.88627114280556, -1.3341315872494968), (34.90033527303906, -1.293290623371076)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-17 and bbox BBox(((34.94827955815591, -1.236276596382781), (34.9511271057322, -1.233834163848)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-18 and bbox BBox(((34.43227940231912, -0.793999407986412), (34.497135365245754, -0.7403944081102)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-18 and bbox BBox(((34.55261330210694, -1.083804707249124), (34.55322150210681, -1.08344230724974)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-18 and bbox BBox(((34.521159402137435, -1.075778207273357), (34.55742840213687, -1.0091209522045883)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-18 and bbox BBox(((34.52556940216726, -1.0091209522045883), (34.56039290218303, -0.955587007549713)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-18 and bbox BBox(((34.54763590222374, -0.930138407609361), (34.56199132817239, -0.88523790771812)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-18 and bbox BBox(((34.51268080227695, -0.824818207884998), (34.55822940227056, -0.814534307891659)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-18 and bbox BBox(((34.497135365245754, -0.762091508048122), (34.511345302318205, -0.74690160809055)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-18 and bbox BBox(((34.5838212020876, -1.138619407079261), (34.62538534525143, -1.076432307229334)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-18 and bbox BBox(((34.568494102148186, -1.074312907253548), (34.62673520212198, -1.0091209522045883)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-18 and bbox BBox(((34.563311202158715, -1.0091209522045883), (34.626847291099025, -0.942267007551495)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-18 and bbox BBox(((34.56199132817239, -0.941449707549291), (34.626847291099025, -0.876321607716925)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-18 and bbox BBox(((34.56347800226767, -0.87399740770272), (34.626847291099025, -0.81363750785296)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-18 and bbox BBox(((34.613649202274, -0.801855107884596), (34.62190740227478, -0.797749307891636)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-18 and bbox BBox(((34.67830803360075, -1.356609034433322), (34.68030210094881, -1.355692951914685)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-18 and bbox BBox(((34.64188625507163, -1.344434614886506), (34.69113005290548, -1.30320163846144)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-18 and bbox BBox(((34.632383506583714, -1.180765824506693), (34.691703254025654, -1.144975609549194)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-18 and bbox BBox(((34.63433309539487, -1.143093840283647), (34.691703254025654, -1.087252020318328)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-18 and bbox BBox(((34.62877830211843, -1.071516907223199), (34.654142802138736, -1.011229307358623)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-18 and bbox BBox(((34.626847291099025, -0.993926107410106), (34.68045980217185, -0.9419393161809912)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-18 and bbox BBox(((34.626847291099025, -0.9419393161809912), (34.67903620219773, -0.8747576801573942)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-18 and bbox BBox(((34.626847291099025, -0.8747576801573942), (34.66998300222408, -0.829664407806008)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-18 and bbox BBox(((34.63959660227943, -0.803591207857726), (34.657334802271585, -0.784550407909836)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-18 and bbox BBox(((34.70000388244584, -1.380900764861492), (34.75655921695229, -1.3457208431243182)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-18 and bbox BBox(((34.70121863274682, -1.342393922471034), (34.75465354843241, -1.288413504444275)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-18 and bbox BBox(((34.709516028805425, -1.27372782518881), (34.75655921695229, -1.212982677559312)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-18 and bbox BBox(((34.691703254025654, -1.19907908314579), (34.749915358796265, -1.151363991386982)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-18 and bbox BBox(((34.691703254025654, -1.136478014034044), (34.756464068206306, -1.079692492267479)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-18 and bbox BBox(((34.74324189727955, -1.074959121936869), (34.74479689658479, -1.074355786874899)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-18 and bbox BBox(((34.75186760218406, -0.919708007513814), (34.75280850218366, -0.918538107516727)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-18 and bbox BBox(((34.75655921695229, -1.412210768346171), (34.821415179878926, -1.345029132322574)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-18 and bbox BBox(((34.75758855011164, -1.345029132322574), (34.821415179878926, -1.312045718529463)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-18 and bbox BBox(((34.75655921695229, -1.271454864610378), (34.81093290636472, -1.25676863185304)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-18 and bbox BBox(((34.772510188980924, -1.185116891629961), (34.809441713667326, -1.146620643373369)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-18 and bbox BBox(((34.75768221020848, -1.142244001908187), (34.801516865060236, -1.0763025882281856)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-18 and bbox BBox(((34.76248022018568, -1.0763025882281856), (34.819008740094795, -1.04394149535437)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-18 and bbox BBox(((34.821415179878926, -1.367488345636844), (34.826280213906976, -1.352644055204083)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-18 and bbox BBox(((34.821415179878926, -1.337011682082542), (34.88627114280556, -1.282435882687366)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-18 and bbox BBox(((34.85785682190653, -1.234888930535722), (34.859755155750534, -1.232255597812907)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-18 and bbox BBox(((34.82491853642327, -1.19655235625633), (34.8266602029287, -1.195767357602643)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-18 and bbox BBox(((34.83133353466313, -1.122839035571771), (34.87729187285517, -1.077807356342888)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-18 and bbox BBox(((34.828193532775025, -1.073999014166914), (34.867517004223004, -1.011862443344008)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-18 and bbox BBox(((34.88627114280556, -1.3341315872494968), (34.90033527303906, -1.293290623371076)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-18 and bbox BBox(((34.94827955815591, -1.236276596382781), (34.9511271057322, -1.233834163848)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-19 and bbox BBox(((34.43227940231912, -0.793999407986412), (34.497135365245754, -0.7403944081102)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-19 and bbox BBox(((34.55261330210694, -1.083804707249124), (34.55322150210681, -1.08344230724974)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-19 and bbox BBox(((34.521159402137435, -1.075778207273357), (34.55742840213687, -1.0091209522045883)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-19 and bbox BBox(((34.52556940216726, -1.0091209522045883), (34.56039290218303, -0.955587007549713)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-19 and bbox BBox(((34.54763590222374, -0.930138407609361), (34.56199132817239, -0.88523790771812)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-19 and bbox BBox(((34.51268080227695, -0.824818207884998), (34.55822940227056, -0.814534307891659)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-19 and bbox BBox(((34.497135365245754, -0.762091508048122), (34.511345302318205, -0.74690160809055)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-19 and bbox BBox(((34.5838212020876, -1.138619407079261), (34.62538534525143, -1.076432307229334)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-19 and bbox BBox(((34.568494102148186, -1.074312907253548), (34.62673520212198, -1.0091209522045883)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-19 and bbox BBox(((34.563311202158715, -1.0091209522045883), (34.626847291099025, -0.942267007551495)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-19 and bbox BBox(((34.56199132817239, -0.941449707549291), (34.626847291099025, -0.876321607716925)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-19 and bbox BBox(((34.56347800226767, -0.87399740770272), (34.626847291099025, -0.81363750785296)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-19 and bbox BBox(((34.613649202274, -0.801855107884596), (34.62190740227478, -0.797749307891636)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-19 and bbox BBox(((34.67830803360075, -1.356609034433322), (34.68030210094881, -1.355692951914685)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-19 and bbox BBox(((34.64188625507163, -1.344434614886506), (34.69113005290548, -1.30320163846144)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-19 and bbox BBox(((34.632383506583714, -1.180765824506693), (34.691703254025654, -1.144975609549194)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-19 and bbox BBox(((34.63433309539487, -1.143093840283647), (34.691703254025654, -1.087252020318328)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-19 and bbox BBox(((34.62877830211843, -1.071516907223199), (34.654142802138736, -1.011229307358623)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-19 and bbox BBox(((34.626847291099025, -0.993926107410106), (34.68045980217185, -0.9419393161809912)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-19 and bbox BBox(((34.626847291099025, -0.9419393161809912), (34.67903620219773, -0.8747576801573942)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-19 and bbox BBox(((34.626847291099025, -0.8747576801573942), (34.66998300222408, -0.829664407806008)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-19 and bbox BBox(((34.63959660227943, -0.803591207857726), (34.657334802271585, -0.784550407909836)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-19 and bbox BBox(((34.70000388244584, -1.380900764861492), (34.75655921695229, -1.3457208431243182)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-19 and bbox BBox(((34.70121863274682, -1.342393922471034), (34.75465354843241, -1.288413504444275)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-19 and bbox BBox(((34.709516028805425, -1.27372782518881), (34.75655921695229, -1.212982677559312)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-19 and bbox BBox(((34.691703254025654, -1.19907908314579), (34.749915358796265, -1.151363991386982)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-19 and bbox BBox(((34.691703254025654, -1.136478014034044), (34.756464068206306, -1.079692492267479)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-19 and bbox BBox(((34.74324189727955, -1.074959121936869), (34.74479689658479, -1.074355786874899)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-19 and bbox BBox(((34.75186760218406, -0.919708007513814), (34.75280850218366, -0.918538107516727)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-19 and bbox BBox(((34.75655921695229, -1.412210768346171), (34.821415179878926, -1.345029132322574)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-19 and bbox BBox(((34.75758855011164, -1.345029132322574), (34.821415179878926, -1.312045718529463)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-19 and bbox BBox(((34.75655921695229, -1.271454864610378), (34.81093290636472, -1.25676863185304)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-19 and bbox BBox(((34.772510188980924, -1.185116891629961), (34.809441713667326, -1.146620643373369)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-19 and bbox BBox(((34.75768221020848, -1.142244001908187), (34.801516865060236, -1.0763025882281856)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-19 and bbox BBox(((34.76248022018568, -1.0763025882281856), (34.819008740094795, -1.04394149535437)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-19 and bbox BBox(((34.821415179878926, -1.367488345636844), (34.826280213906976, -1.352644055204083)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-19 and bbox BBox(((34.821415179878926, -1.337011682082542), (34.88627114280556, -1.282435882687366)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-19 and bbox BBox(((34.85785682190653, -1.234888930535722), (34.859755155750534, -1.232255597812907)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-19 and bbox BBox(((34.82491853642327, -1.19655235625633), (34.8266602029287, -1.195767357602643)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-19 and bbox BBox(((34.83133353466313, -1.122839035571771), (34.87729187285517, -1.077807356342888)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-19 and bbox BBox(((34.828193532775025, -1.073999014166914), (34.867517004223004, -1.011862443344008)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-19 and bbox BBox(((34.88627114280556, -1.3341315872494968), (34.90033527303906, -1.293290623371076)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-19 and bbox BBox(((34.94827955815591, -1.236276596382781), (34.9511271057322, -1.233834163848)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-20 and bbox BBox(((34.43227940231912, -0.793999407986412), (34.497135365245754, -0.7403944081102)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-20 and bbox BBox(((34.55261330210694, -1.083804707249124), (34.55322150210681, -1.08344230724974)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-20 and bbox BBox(((34.521159402137435, -1.075778207273357), (34.55742840213687, -1.0091209522045883)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-20 and bbox BBox(((34.52556940216726, -1.0091209522045883), (34.56039290218303, -0.955587007549713)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-20 and bbox BBox(((34.54763590222374, -0.930138407609361), (34.56199132817239, -0.88523790771812)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-20 and bbox BBox(((34.51268080227695, -0.824818207884998), (34.55822940227056, -0.814534307891659)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-20 and bbox BBox(((34.497135365245754, -0.762091508048122), (34.511345302318205, -0.74690160809055)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-20 and bbox BBox(((34.5838212020876, -1.138619407079261), (34.62538534525143, -1.076432307229334)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-20 and bbox BBox(((34.568494102148186, -1.074312907253548), (34.62673520212198, -1.0091209522045883)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-20 and bbox BBox(((34.563311202158715, -1.0091209522045883), (34.626847291099025, -0.942267007551495)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-20 and bbox BBox(((34.56199132817239, -0.941449707549291), (34.626847291099025, -0.876321607716925)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-20 and bbox BBox(((34.56347800226767, -0.87399740770272), (34.626847291099025, -0.81363750785296)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-20 and bbox BBox(((34.613649202274, -0.801855107884596), (34.62190740227478, -0.797749307891636)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-20 and bbox BBox(((34.67830803360075, -1.356609034433322), (34.68030210094881, -1.355692951914685)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-20 and bbox BBox(((34.64188625507163, -1.344434614886506), (34.69113005290548, -1.30320163846144)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-20 and bbox BBox(((34.632383506583714, -1.180765824506693), (34.691703254025654, -1.144975609549194)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-20 and bbox BBox(((34.63433309539487, -1.143093840283647), (34.691703254025654, -1.087252020318328)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-20 and bbox BBox(((34.62877830211843, -1.071516907223199), (34.654142802138736, -1.011229307358623)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-20 and bbox BBox(((34.626847291099025, -0.993926107410106), (34.68045980217185, -0.9419393161809912)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-20 and bbox BBox(((34.626847291099025, -0.9419393161809912), (34.67903620219773, -0.8747576801573942)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-20 and bbox BBox(((34.626847291099025, -0.8747576801573942), (34.66998300222408, -0.829664407806008)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-20 and bbox BBox(((34.63959660227943, -0.803591207857726), (34.657334802271585, -0.784550407909836)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-20 and bbox BBox(((34.70000388244584, -1.380900764861492), (34.75655921695229, -1.3457208431243182)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-20 and bbox BBox(((34.70121863274682, -1.342393922471034), (34.75465354843241, -1.288413504444275)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-20 and bbox BBox(((34.709516028805425, -1.27372782518881), (34.75655921695229, -1.212982677559312)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-20 and bbox BBox(((34.691703254025654, -1.19907908314579), (34.749915358796265, -1.151363991386982)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-20 and bbox BBox(((34.691703254025654, -1.136478014034044), (34.756464068206306, -1.079692492267479)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-20 and bbox BBox(((34.74324189727955, -1.074959121936869), (34.74479689658479, -1.074355786874899)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-20 and bbox BBox(((34.75186760218406, -0.919708007513814), (34.75280850218366, -0.918538107516727)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-20 and bbox BBox(((34.75655921695229, -1.412210768346171), (34.821415179878926, -1.345029132322574)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-20 and bbox BBox(((34.75758855011164, -1.345029132322574), (34.821415179878926, -1.312045718529463)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-20 and bbox BBox(((34.75655921695229, -1.271454864610378), (34.81093290636472, -1.25676863185304)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-20 and bbox BBox(((34.772510188980924, -1.185116891629961), (34.809441713667326, -1.146620643373369)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-20 and bbox BBox(((34.75768221020848, -1.142244001908187), (34.801516865060236, -1.0763025882281856)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-20 and bbox BBox(((34.76248022018568, -1.0763025882281856), (34.819008740094795, -1.04394149535437)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-20 and bbox BBox(((34.821415179878926, -1.367488345636844), (34.826280213906976, -1.352644055204083)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-20 and bbox BBox(((34.821415179878926, -1.337011682082542), (34.88627114280556, -1.282435882687366)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-20 and bbox BBox(((34.85785682190653, -1.234888930535722), (34.859755155750534, -1.232255597812907)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-20 and bbox BBox(((34.82491853642327, -1.19655235625633), (34.8266602029287, -1.195767357602643)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-20 and bbox BBox(((34.83133353466313, -1.122839035571771), (34.87729187285517, -1.077807356342888)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-20 and bbox BBox(((34.828193532775025, -1.073999014166914), (34.867517004223004, -1.011862443344008)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-20 and bbox BBox(((34.88627114280556, -1.3341315872494968), (34.90033527303906, -1.293290623371076)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-20 and bbox BBox(((34.94827955815591, -1.236276596382781), (34.9511271057322, -1.233834163848)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-21 and bbox BBox(((34.43227940231912, -0.793999407986412), (34.497135365245754, -0.7403944081102)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-21 and bbox BBox(((34.55261330210694, -1.083804707249124), (34.55322150210681, -1.08344230724974)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-21 and bbox BBox(((34.521159402137435, -1.075778207273357), (34.55742840213687, -1.0091209522045883)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-21 and bbox BBox(((34.52556940216726, -1.0091209522045883), (34.56039290218303, -0.955587007549713)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-21 and bbox BBox(((34.54763590222374, -0.930138407609361), (34.56199132817239, -0.88523790771812)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-21 and bbox BBox(((34.51268080227695, -0.824818207884998), (34.55822940227056, -0.814534307891659)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-21 and bbox BBox(((34.497135365245754, -0.762091508048122), (34.511345302318205, -0.74690160809055)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-21 and bbox BBox(((34.5838212020876, -1.138619407079261), (34.62538534525143, -1.076432307229334)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-21 and bbox BBox(((34.568494102148186, -1.074312907253548), (34.62673520212198, -1.0091209522045883)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-21 and bbox BBox(((34.563311202158715, -1.0091209522045883), (34.626847291099025, -0.942267007551495)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-21 and bbox BBox(((34.56199132817239, -0.941449707549291), (34.626847291099025, -0.876321607716925)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-21 and bbox BBox(((34.56347800226767, -0.87399740770272), (34.626847291099025, -0.81363750785296)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-21 and bbox BBox(((34.613649202274, -0.801855107884596), (34.62190740227478, -0.797749307891636)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-21 and bbox BBox(((34.67830803360075, -1.356609034433322), (34.68030210094881, -1.355692951914685)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-21 and bbox BBox(((34.64188625507163, -1.344434614886506), (34.69113005290548, -1.30320163846144)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-21 and bbox BBox(((34.632383506583714, -1.180765824506693), (34.691703254025654, -1.144975609549194)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-21 and bbox BBox(((34.63433309539487, -1.143093840283647), (34.691703254025654, -1.087252020318328)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-21 and bbox BBox(((34.62877830211843, -1.071516907223199), (34.654142802138736, -1.011229307358623)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-21 and bbox BBox(((34.626847291099025, -0.993926107410106), (34.68045980217185, -0.9419393161809912)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-21 and bbox BBox(((34.626847291099025, -0.9419393161809912), (34.67903620219773, -0.8747576801573942)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-21 and bbox BBox(((34.626847291099025, -0.8747576801573942), (34.66998300222408, -0.829664407806008)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-21 and bbox BBox(((34.63959660227943, -0.803591207857726), (34.657334802271585, -0.784550407909836)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-21 and bbox BBox(((34.70000388244584, -1.380900764861492), (34.75655921695229, -1.3457208431243182)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-21 and bbox BBox(((34.70121863274682, -1.342393922471034), (34.75465354843241, -1.288413504444275)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-21 and bbox BBox(((34.709516028805425, -1.27372782518881), (34.75655921695229, -1.212982677559312)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-21 and bbox BBox(((34.691703254025654, -1.19907908314579), (34.749915358796265, -1.151363991386982)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-21 and bbox BBox(((34.691703254025654, -1.136478014034044), (34.756464068206306, -1.079692492267479)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-21 and bbox BBox(((34.74324189727955, -1.074959121936869), (34.74479689658479, -1.074355786874899)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-21 and bbox BBox(((34.75186760218406, -0.919708007513814), (34.75280850218366, -0.918538107516727)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-21 and bbox BBox(((34.75655921695229, -1.412210768346171), (34.821415179878926, -1.345029132322574)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-21 and bbox BBox(((34.75758855011164, -1.345029132322574), (34.821415179878926, -1.312045718529463)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-21 and bbox BBox(((34.75655921695229, -1.271454864610378), (34.81093290636472, -1.25676863185304)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-21 and bbox BBox(((34.772510188980924, -1.185116891629961), (34.809441713667326, -1.146620643373369)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-21 and bbox BBox(((34.75768221020848, -1.142244001908187), (34.801516865060236, -1.0763025882281856)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-21 and bbox BBox(((34.76248022018568, -1.0763025882281856), (34.819008740094795, -1.04394149535437)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-21 and bbox BBox(((34.821415179878926, -1.367488345636844), (34.826280213906976, -1.352644055204083)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-21 and bbox BBox(((34.821415179878926, -1.337011682082542), (34.88627114280556, -1.282435882687366)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-21 and bbox BBox(((34.85785682190653, -1.234888930535722), (34.859755155750534, -1.232255597812907)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-21 and bbox BBox(((34.82491853642327, -1.19655235625633), (34.8266602029287, -1.195767357602643)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-21 and bbox BBox(((34.83133353466313, -1.122839035571771), (34.87729187285517, -1.077807356342888)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-21 and bbox BBox(((34.828193532775025, -1.073999014166914), (34.867517004223004, -1.011862443344008)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-21 and bbox BBox(((34.88627114280556, -1.3341315872494968), (34.90033527303906, -1.293290623371076)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-21 and bbox BBox(((34.94827955815591, -1.236276596382781), (34.9511271057322, -1.233834163848)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-22 and bbox BBox(((34.43227940231912, -0.793999407986412), (34.497135365245754, -0.7403944081102)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-22 and bbox BBox(((34.55261330210694, -1.083804707249124), (34.55322150210681, -1.08344230724974)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-22 and bbox BBox(((34.521159402137435, -1.075778207273357), (34.55742840213687, -1.0091209522045883)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-22 and bbox BBox(((34.52556940216726, -1.0091209522045883), (34.56039290218303, -0.955587007549713)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-22 and bbox BBox(((34.54763590222374, -0.930138407609361), (34.56199132817239, -0.88523790771812)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-22 and bbox BBox(((34.51268080227695, -0.824818207884998), (34.55822940227056, -0.814534307891659)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-22 and bbox BBox(((34.497135365245754, -0.762091508048122), (34.511345302318205, -0.74690160809055)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-22 and bbox BBox(((34.5838212020876, -1.138619407079261), (34.62538534525143, -1.076432307229334)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-22 and bbox BBox(((34.568494102148186, -1.074312907253548), (34.62673520212198, -1.0091209522045883)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-22 and bbox BBox(((34.563311202158715, -1.0091209522045883), (34.626847291099025, -0.942267007551495)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-22 and bbox BBox(((34.56199132817239, -0.941449707549291), (34.626847291099025, -0.876321607716925)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-22 and bbox BBox(((34.56347800226767, -0.87399740770272), (34.626847291099025, -0.81363750785296)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-22 and bbox BBox(((34.613649202274, -0.801855107884596), (34.62190740227478, -0.797749307891636)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-22 and bbox BBox(((34.67830803360075, -1.356609034433322), (34.68030210094881, -1.355692951914685)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-22 and bbox BBox(((34.64188625507163, -1.344434614886506), (34.69113005290548, -1.30320163846144)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-22 and bbox BBox(((34.632383506583714, -1.180765824506693), (34.691703254025654, -1.144975609549194)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-22 and bbox BBox(((34.63433309539487, -1.143093840283647), (34.691703254025654, -1.087252020318328)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-22 and bbox BBox(((34.62877830211843, -1.071516907223199), (34.654142802138736, -1.011229307358623)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-22 and bbox BBox(((34.626847291099025, -0.993926107410106), (34.68045980217185, -0.9419393161809912)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-22 and bbox BBox(((34.626847291099025, -0.9419393161809912), (34.67903620219773, -0.8747576801573942)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-22 and bbox BBox(((34.626847291099025, -0.8747576801573942), (34.66998300222408, -0.829664407806008)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-22 and bbox BBox(((34.63959660227943, -0.803591207857726), (34.657334802271585, -0.784550407909836)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-22 and bbox BBox(((34.70000388244584, -1.380900764861492), (34.75655921695229, -1.3457208431243182)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-22 and bbox BBox(((34.70121863274682, -1.342393922471034), (34.75465354843241, -1.288413504444275)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-22 and bbox BBox(((34.709516028805425, -1.27372782518881), (34.75655921695229, -1.212982677559312)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-22 and bbox BBox(((34.691703254025654, -1.19907908314579), (34.749915358796265, -1.151363991386982)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-22 and bbox BBox(((34.691703254025654, -1.136478014034044), (34.756464068206306, -1.079692492267479)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-22 and bbox BBox(((34.74324189727955, -1.074959121936869), (34.74479689658479, -1.074355786874899)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-22 and bbox BBox(((34.75186760218406, -0.919708007513814), (34.75280850218366, -0.918538107516727)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-22 and bbox BBox(((34.75655921695229, -1.412210768346171), (34.821415179878926, -1.345029132322574)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-22 and bbox BBox(((34.75758855011164, -1.345029132322574), (34.821415179878926, -1.312045718529463)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-22 and bbox BBox(((34.75655921695229, -1.271454864610378), (34.81093290636472, -1.25676863185304)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-22 and bbox BBox(((34.772510188980924, -1.185116891629961), (34.809441713667326, -1.146620643373369)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-22 and bbox BBox(((34.75768221020848, -1.142244001908187), (34.801516865060236, -1.0763025882281856)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-22 and bbox BBox(((34.76248022018568, -1.0763025882281856), (34.819008740094795, -1.04394149535437)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-22 and bbox BBox(((34.821415179878926, -1.367488345636844), (34.826280213906976, -1.352644055204083)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-22 and bbox BBox(((34.821415179878926, -1.337011682082542), (34.88627114280556, -1.282435882687366)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-22 and bbox BBox(((34.85785682190653, -1.234888930535722), (34.859755155750534, -1.232255597812907)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-22 and bbox BBox(((34.82491853642327, -1.19655235625633), (34.8266602029287, -1.195767357602643)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-22 and bbox BBox(((34.83133353466313, -1.122839035571771), (34.87729187285517, -1.077807356342888)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-22 and bbox BBox(((34.828193532775025, -1.073999014166914), (34.867517004223004, -1.011862443344008)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-22 and bbox BBox(((34.88627114280556, -1.3341315872494968), (34.90033527303906, -1.293290623371076)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-22 and bbox BBox(((34.94827955815591, -1.236276596382781), (34.9511271057322, -1.233834163848)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-23 and bbox BBox(((34.43227940231912, -0.793999407986412), (34.497135365245754, -0.7403944081102)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-23 and bbox BBox(((34.55261330210694, -1.083804707249124), (34.55322150210681, -1.08344230724974)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-23 and bbox BBox(((34.521159402137435, -1.075778207273357), (34.55742840213687, -1.0091209522045883)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-23 and bbox BBox(((34.52556940216726, -1.0091209522045883), (34.56039290218303, -0.955587007549713)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-23 and bbox BBox(((34.54763590222374, -0.930138407609361), (34.56199132817239, -0.88523790771812)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-23 and bbox BBox(((34.51268080227695, -0.824818207884998), (34.55822940227056, -0.814534307891659)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-23 and bbox BBox(((34.497135365245754, -0.762091508048122), (34.511345302318205, -0.74690160809055)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-23 and bbox BBox(((34.5838212020876, -1.138619407079261), (34.62538534525143, -1.076432307229334)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-23 and bbox BBox(((34.568494102148186, -1.074312907253548), (34.62673520212198, -1.0091209522045883)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-23 and bbox BBox(((34.563311202158715, -1.0091209522045883), (34.626847291099025, -0.942267007551495)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-23 and bbox BBox(((34.56199132817239, -0.941449707549291), (34.626847291099025, -0.876321607716925)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-23 and bbox BBox(((34.56347800226767, -0.87399740770272), (34.626847291099025, -0.81363750785296)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-23 and bbox BBox(((34.613649202274, -0.801855107884596), (34.62190740227478, -0.797749307891636)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-23 and bbox BBox(((34.67830803360075, -1.356609034433322), (34.68030210094881, -1.355692951914685)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-23 and bbox BBox(((34.64188625507163, -1.344434614886506), (34.69113005290548, -1.30320163846144)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-23 and bbox BBox(((34.632383506583714, -1.180765824506693), (34.691703254025654, -1.144975609549194)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-23 and bbox BBox(((34.63433309539487, -1.143093840283647), (34.691703254025654, -1.087252020318328)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-23 and bbox BBox(((34.62877830211843, -1.071516907223199), (34.654142802138736, -1.011229307358623)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-23 and bbox BBox(((34.626847291099025, -0.993926107410106), (34.68045980217185, -0.9419393161809912)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-23 and bbox BBox(((34.626847291099025, -0.9419393161809912), (34.67903620219773, -0.8747576801573942)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-23 and bbox BBox(((34.626847291099025, -0.8747576801573942), (34.66998300222408, -0.829664407806008)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-23 and bbox BBox(((34.63959660227943, -0.803591207857726), (34.657334802271585, -0.784550407909836)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-23 and bbox BBox(((34.70000388244584, -1.380900764861492), (34.75655921695229, -1.3457208431243182)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-23 and bbox BBox(((34.70121863274682, -1.342393922471034), (34.75465354843241, -1.288413504444275)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-23 and bbox BBox(((34.709516028805425, -1.27372782518881), (34.75655921695229, -1.212982677559312)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-23 and bbox BBox(((34.691703254025654, -1.19907908314579), (34.749915358796265, -1.151363991386982)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-23 and bbox BBox(((34.691703254025654, -1.136478014034044), (34.756464068206306, -1.079692492267479)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-23 and bbox BBox(((34.74324189727955, -1.074959121936869), (34.74479689658479, -1.074355786874899)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-23 and bbox BBox(((34.75186760218406, -0.919708007513814), (34.75280850218366, -0.918538107516727)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-23 and bbox BBox(((34.75655921695229, -1.412210768346171), (34.821415179878926, -1.345029132322574)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-23 and bbox BBox(((34.75758855011164, -1.345029132322574), (34.821415179878926, -1.312045718529463)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-23 and bbox BBox(((34.75655921695229, -1.271454864610378), (34.81093290636472, -1.25676863185304)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-23 and bbox BBox(((34.772510188980924, -1.185116891629961), (34.809441713667326, -1.146620643373369)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-23 and bbox BBox(((34.75768221020848, -1.142244001908187), (34.801516865060236, -1.0763025882281856)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-23 and bbox BBox(((34.76248022018568, -1.0763025882281856), (34.819008740094795, -1.04394149535437)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-23 and bbox BBox(((34.821415179878926, -1.367488345636844), (34.826280213906976, -1.352644055204083)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-23 and bbox BBox(((34.821415179878926, -1.337011682082542), (34.88627114280556, -1.282435882687366)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-23 and bbox BBox(((34.85785682190653, -1.234888930535722), (34.859755155750534, -1.232255597812907)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-23 and bbox BBox(((34.82491853642327, -1.19655235625633), (34.8266602029287, -1.195767357602643)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-23 and bbox BBox(((34.83133353466313, -1.122839035571771), (34.87729187285517, -1.077807356342888)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-23 and bbox BBox(((34.828193532775025, -1.073999014166914), (34.867517004223004, -1.011862443344008)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-23 and bbox BBox(((34.88627114280556, -1.3341315872494968), (34.90033527303906, -1.293290623371076)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-23 and bbox BBox(((34.94827955815591, -1.236276596382781), (34.9511271057322, -1.233834163848)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-24 and bbox BBox(((34.43227940231912, -0.793999407986412), (34.497135365245754, -0.7403944081102)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-24 and bbox BBox(((34.55261330210694, -1.083804707249124), (34.55322150210681, -1.08344230724974)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-24 and bbox BBox(((34.521159402137435, -1.075778207273357), (34.55742840213687, -1.0091209522045883)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-24 and bbox BBox(((34.52556940216726, -1.0091209522045883), (34.56039290218303, -0.955587007549713)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-24 and bbox BBox(((34.54763590222374, -0.930138407609361), (34.56199132817239, -0.88523790771812)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-24 and bbox BBox(((34.51268080227695, -0.824818207884998), (34.55822940227056, -0.814534307891659)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-24 and bbox BBox(((34.497135365245754, -0.762091508048122), (34.511345302318205, -0.74690160809055)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-24 and bbox BBox(((34.5838212020876, -1.138619407079261), (34.62538534525143, -1.076432307229334)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-24 and bbox BBox(((34.568494102148186, -1.074312907253548), (34.62673520212198, -1.0091209522045883)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-24 and bbox BBox(((34.563311202158715, -1.0091209522045883), (34.626847291099025, -0.942267007551495)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-24 and bbox BBox(((34.56199132817239, -0.941449707549291), (34.626847291099025, -0.876321607716925)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-24 and bbox BBox(((34.56347800226767, -0.87399740770272), (34.626847291099025, -0.81363750785296)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-24 and bbox BBox(((34.613649202274, -0.801855107884596), (34.62190740227478, -0.797749307891636)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-24 and bbox BBox(((34.67830803360075, -1.356609034433322), (34.68030210094881, -1.355692951914685)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-24 and bbox BBox(((34.64188625507163, -1.344434614886506), (34.69113005290548, -1.30320163846144)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-24 and bbox BBox(((34.632383506583714, -1.180765824506693), (34.691703254025654, -1.144975609549194)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-24 and bbox BBox(((34.63433309539487, -1.143093840283647), (34.691703254025654, -1.087252020318328)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-24 and bbox BBox(((34.62877830211843, -1.071516907223199), (34.654142802138736, -1.011229307358623)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-24 and bbox BBox(((34.626847291099025, -0.993926107410106), (34.68045980217185, -0.9419393161809912)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-24 and bbox BBox(((34.626847291099025, -0.9419393161809912), (34.67903620219773, -0.8747576801573942)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-24 and bbox BBox(((34.626847291099025, -0.8747576801573942), (34.66998300222408, -0.829664407806008)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-24 and bbox BBox(((34.63959660227943, -0.803591207857726), (34.657334802271585, -0.784550407909836)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-24 and bbox BBox(((34.70000388244584, -1.380900764861492), (34.75655921695229, -1.3457208431243182)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-24 and bbox BBox(((34.70121863274682, -1.342393922471034), (34.75465354843241, -1.288413504444275)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-24 and bbox BBox(((34.709516028805425, -1.27372782518881), (34.75655921695229, -1.212982677559312)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-24 and bbox BBox(((34.691703254025654, -1.19907908314579), (34.749915358796265, -1.151363991386982)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-24 and bbox BBox(((34.691703254025654, -1.136478014034044), (34.756464068206306, -1.079692492267479)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-24 and bbox BBox(((34.74324189727955, -1.074959121936869), (34.74479689658479, -1.074355786874899)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-24 and bbox BBox(((34.75186760218406, -0.919708007513814), (34.75280850218366, -0.918538107516727)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-24 and bbox BBox(((34.75655921695229, -1.412210768346171), (34.821415179878926, -1.345029132322574)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-24 and bbox BBox(((34.75758855011164, -1.345029132322574), (34.821415179878926, -1.312045718529463)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-24 and bbox BBox(((34.75655921695229, -1.271454864610378), (34.81093290636472, -1.25676863185304)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-24 and bbox BBox(((34.772510188980924, -1.185116891629961), (34.809441713667326, -1.146620643373369)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-24 and bbox BBox(((34.75768221020848, -1.142244001908187), (34.801516865060236, -1.0763025882281856)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-24 and bbox BBox(((34.76248022018568, -1.0763025882281856), (34.819008740094795, -1.04394149535437)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-24 and bbox BBox(((34.821415179878926, -1.367488345636844), (34.826280213906976, -1.352644055204083)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-24 and bbox BBox(((34.821415179878926, -1.337011682082542), (34.88627114280556, -1.282435882687366)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-24 and bbox BBox(((34.85785682190653, -1.234888930535722), (34.859755155750534, -1.232255597812907)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-24 and bbox BBox(((34.82491853642327, -1.19655235625633), (34.8266602029287, -1.195767357602643)), crs=CRS('4326'))\n",
"✓ Downloaded image for 2025-12-24 and bbox BBox(((34.83133353466313, -1.122839035571771), (34.87729187285517, -1.077807356342888)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-24 and bbox BBox(((34.828193532775025, -1.073999014166914), (34.867517004223004, -1.011862443344008)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-24 and bbox BBox(((34.88627114280556, -1.3341315872494968), (34.90033527303906, -1.293290623371076)), crs=CRS('4326'))\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\sentinelhub\\download\\sentinelhub_client.py:93: SHRateLimitWarning: Download rate limit hit\n",
" warnings.warn(\"Download rate limit hit\", category=SHRateLimitWarning)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Downloaded image for 2025-12-24 and bbox BBox(((34.94827955815591, -1.236276596382781), (34.9511271057322, -1.233834163848)), crs=CRS('4326'))\n"
]
}
],
"source": [
"# Check which slots already have downloaded data to avoid re-downloading\n",
"slots_to_download = []\n",
"for slot in available_slots:\n",
" slot_dir = Path(BASE_PATH_SINGLE_IMAGES / slot)\n",
" existing_files = list(slot_dir.rglob('response.tiff')) if slot_dir.exists() else []\n",
" if not existing_files:\n",
" slots_to_download.append(slot)\n",
" else:\n",
" print(f\"✓ Slot {slot} already has {len(existing_files)} file(s), skipping download\")\n",
"\n",
"print(f\"\\nDownloading for {len(slots_to_download)} slots (skipping {len(available_slots) - len(slots_to_download)} already downloaded)\")\n",
"\n",
"resolution = 3\n",
"for slot in slots_to_download:\n",
" for bbox in bbox_list:\n",
" size = bbox_to_dimensions(bbox, resolution=resolution)\n",
" download_function(slot, bbox, size)\n"
]
},
{
"cell_type": "code",
"execution_count": 61,
"id": "b7df8a5a",
"metadata": {},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\01812150cf6938c44cd3aaf9199950d5\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\046f9c6557051ab4f6995eb1848fb250\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\05d3552f10e0f89f906c479534aa02ab\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\0803d32c0e166480ca62db689a120e73\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\0a70d1d55c2c9f0cfbbba55e87798fe6\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\12d3bb8a0e689952736f99b2d075480f\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\1a4b3de0becf90caec1ecdb517ed996d\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\1ab9832d8514dffd36baf7fc459b23c9\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\1d4ab41df6dac61f3030ba3abc7c600f\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\23482a803afd66bd26dd63a038da40a7\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\28c6e5642440d345c0e23260c441a9a6\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\2d49537748c9765876c7f397129eac76\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\3cfba1317094d3d6477a414e0019f916\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\47e5b5c7c9367d2de50f9336a9da2ada\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\5305b481746c761abebe7fe59b85ce5d\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\5ff5dff37abbd119cf56b043e627f95b\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\654d418af2cb61cb018cf49e347cd342\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\689d5c6e692436542aa42f789ce9daa6\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\734e0131e54b38f6ae9d480e4f69473b\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\75e362330afe7ba00647d5399a48e6ce\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\79463ad9e9a37433962ad1cd1d47ef8a\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\7c3a25fd0c2ced719611af9392c8db0c\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\7c855bf240254426a7510668f2f541e9\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\7f263293674a9ea5a52bb0cf176697d2\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\836ddbd4884064c3d5c8b75dff1dc6d3\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\83bd5260395f3d45c6cebbe28d8e5cf2\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\942a8adef07680cb07abcf68f11521c1\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\9abde87efbacc2dc5d427c176ea7756d\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\a135abf943c808d4a215e788f944a4ab\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\a713a43fb3a801401068edcdadcf7a0f\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\b030f063a51b24242819ed0401d61d99\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\b60572ef50792d8fdaa31d87ec98acc1\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\c4229a469ca5ee7d27bcc0fab3e58517\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\c9ca843cecb6afd7ad3ae53a6f2b7c48\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\d2cbd407604f8f854b8747092e11dd74\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\d842934f40e6d35eb83f7d5a6d5ee8d9\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\d92f8c8100e2f0c331c76b3c52ba7c96\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\e263dd9a47fbc83ade32ad8f4e837767\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\ec62be9125ff572eba53532ec6e848a4\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\ed26b13b1a69c1e29986bb3f46c44677\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\f01940f08100506401ac0df62c6f6e9a\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\f29fee45cc8f31fa74c3aa7d7c097024\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\f4a4080e15847a40ddca104f1ab0f16a\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\3cfba1317094d3d6477a414e0019f916\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\b030f063a51b24242819ed0401d61d99\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\0a70d1d55c2c9f0cfbbba55e87798fe6\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\83bd5260395f3d45c6cebbe28d8e5cf2\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\0803d32c0e166480ca62db689a120e73\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\2d49537748c9765876c7f397129eac76\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\d842934f40e6d35eb83f7d5a6d5ee8d9\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\05d3552f10e0f89f906c479534aa02ab\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\12d3bb8a0e689952736f99b2d075480f\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\c9ca843cecb6afd7ad3ae53a6f2b7c48\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\ed26b13b1a69c1e29986bb3f46c44677\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\e263dd9a47fbc83ade32ad8f4e837767\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\28c6e5642440d345c0e23260c441a9a6\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\5ff5dff37abbd119cf56b043e627f95b\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\79463ad9e9a37433962ad1cd1d47ef8a\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\836ddbd4884064c3d5c8b75dff1dc6d3\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\b60572ef50792d8fdaa31d87ec98acc1\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\1a4b3de0becf90caec1ecdb517ed996d\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\046f9c6557051ab4f6995eb1848fb250\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\01812150cf6938c44cd3aaf9199950d5\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\1ab9832d8514dffd36baf7fc459b23c9\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\5305b481746c761abebe7fe59b85ce5d\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\a135abf943c808d4a215e788f944a4ab\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\a713a43fb3a801401068edcdadcf7a0f\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\7c855bf240254426a7510668f2f541e9\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\9abde87efbacc2dc5d427c176ea7756d\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\47e5b5c7c9367d2de50f9336a9da2ada\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\689d5c6e692436542aa42f789ce9daa6\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\d2cbd407604f8f854b8747092e11dd74\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\d92f8c8100e2f0c331c76b3c52ba7c96\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\f29fee45cc8f31fa74c3aa7d7c097024\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\23482a803afd66bd26dd63a038da40a7\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\734e0131e54b38f6ae9d480e4f69473b\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\7c3a25fd0c2ced719611af9392c8db0c\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\f4a4080e15847a40ddca104f1ab0f16a\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\7f263293674a9ea5a52bb0cf176697d2\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\f01940f08100506401ac0df62c6f6e9a\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\942a8adef07680cb07abcf68f11521c1\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\ec62be9125ff572eba53532ec6e848a4\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\75e362330afe7ba00647d5399a48e6ce\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\c4229a469ca5ee7d27bcc0fab3e58517\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\1d4ab41df6dac61f3030ba3abc7c600f\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11\\654d418af2cb61cb018cf49e347cd342\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Successfully merged 43 tiles for slot 2025-12-11 into ..\\laravel_app\\storage\\app\\angata\\merged_tif_8b\\2025-12-11.tif\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\0062660dba673a37e9353b247e219690\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\006d409c6ac074c747d603619b2f9396\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\014787dbee20540fe211a2e698f2f124\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\04e6d84d7b2a9c5ef3b276f6c57359d7\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\085e6b48719e737f58cf14431fa03b89\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\0942f3e9f6dff1d743cb754ba4dd101f\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\10cd9e490ce1fa6db20d519dca5aee34\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\140290f0524ecb4aeedd745a11d3198b\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\1aa80510919f3b4000ecc149e6a043cd\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\346f9811ac8adfde063eb74b28775ed2\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\36f8b9f7a0f83f64b373bb99d759725d\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\3e46f5f40f1e29341d18a53241fbd75b\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\40a5e5d7e2a4971a90135f3f0c51461e\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\47a877587d7adefde53edd5e073a5a6e\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\5247387dc110e08c232fb40d5aef3419\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\5599a7dc8dc3782ac7d76df106a9a991\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\57adcee1ca9c1c7502c0c97aaaecf0ea\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\611119574809621f828ac305e9324572\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\673002a661963187c57354d8e32f0ec4\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\7206011acff674598f5352f835d1938c\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\73c8c29839bb3c0dd0af5c7af322954f\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\7487f76c863bd18d14ecf4e90f75e12d\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\757de5cd55a8b2ef7418c3e6cc2ba636\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\7da5fafd81ff10dea9c59bd579b3f6a8\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\7df97730b8b3d02027f628b17bf6f2a9\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\80bfdcd960b1d5bc8f9a82fc4ba7276e\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\89161ebb43b567411cbb4b51cb44c8ea\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\97a3743e44cd7fb6cb822fe7174327fe\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\a92a944df4f024d58b3e209767b736d7\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\ab3d9c5cce2ee25503ce2b9f3ec44030\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\beff44de25fe62f4fbca672076276a8d\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\c01036198ac1d2b6973a2837c88cfbe2\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\c2777c7df3adbd91a09d10ab752aaa83\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\c323693ce2b25f0d50638231ff95bec1\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\c70f7bcc5b138c799e3e5956d86790e4\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\ca169e3525657fb42c87a60ba727c2d5\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\cb6c2603132e4cbad02c1e8af04e23bc\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\e312bad771efecc58c665198c009cf34\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\ea16b9fba41d0221e0e85289523fbdca\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\ed4109a979400e52c5db4d34fd4ab25c\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\ed6795e0f1d0ca28daaa3c0e0fc9c2e8\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\f400a46b0731e142d195b82c5782ca81\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\fe521e514c4853e2551990a19ed93b32\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\757de5cd55a8b2ef7418c3e6cc2ba636\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\ed4109a979400e52c5db4d34fd4ab25c\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\673002a661963187c57354d8e32f0ec4\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\7df97730b8b3d02027f628b17bf6f2a9\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\97a3743e44cd7fb6cb822fe7174327fe\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\beff44de25fe62f4fbca672076276a8d\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\04e6d84d7b2a9c5ef3b276f6c57359d7\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\7487f76c863bd18d14ecf4e90f75e12d\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\f400a46b0731e142d195b82c5782ca81\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\140290f0524ecb4aeedd745a11d3198b\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\10cd9e490ce1fa6db20d519dca5aee34\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\7da5fafd81ff10dea9c59bd579b3f6a8\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\40a5e5d7e2a4971a90135f3f0c51461e\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\346f9811ac8adfde063eb74b28775ed2\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\57adcee1ca9c1c7502c0c97aaaecf0ea\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\611119574809621f828ac305e9324572\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\fe521e514c4853e2551990a19ed93b32\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\a92a944df4f024d58b3e209767b736d7\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\c323693ce2b25f0d50638231ff95bec1\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\006d409c6ac074c747d603619b2f9396\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\5247387dc110e08c232fb40d5aef3419\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\73c8c29839bb3c0dd0af5c7af322954f\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\c2777c7df3adbd91a09d10ab752aaa83\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\ca169e3525657fb42c87a60ba727c2d5\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\47a877587d7adefde53edd5e073a5a6e\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\c01036198ac1d2b6973a2837c88cfbe2\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\0062660dba673a37e9353b247e219690\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\80bfdcd960b1d5bc8f9a82fc4ba7276e\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\ea16b9fba41d0221e0e85289523fbdca\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\1aa80510919f3b4000ecc149e6a043cd\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\7206011acff674598f5352f835d1938c\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\5599a7dc8dc3782ac7d76df106a9a991\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\ed6795e0f1d0ca28daaa3c0e0fc9c2e8\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\89161ebb43b567411cbb4b51cb44c8ea\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\014787dbee20540fe211a2e698f2f124\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\3e46f5f40f1e29341d18a53241fbd75b\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\085e6b48719e737f58cf14431fa03b89\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\c70f7bcc5b138c799e3e5956d86790e4\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\36f8b9f7a0f83f64b373bb99d759725d\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\e312bad771efecc58c665198c009cf34\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\cb6c2603132e4cbad02c1e8af04e23bc\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\0942f3e9f6dff1d743cb754ba4dd101f\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12\\ab3d9c5cce2ee25503ce2b9f3ec44030\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Successfully merged 43 tiles for slot 2025-12-12 into ..\\laravel_app\\storage\\app\\angata\\merged_tif_8b\\2025-12-12.tif\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\012fddcaaef15b306d3d8c887357a02f\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\019c78a572862116e22bdc9ddfd2ef77\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\0db7f72dd67572dd89619ce0e918d5de\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\0f9eea94b833a1b709dc69665cce19c2\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\102baec34185ab01ee7e15daa9211cb0\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\12706f2736853a6cf57240b165176e6c\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\13f41849255cb98e2254ccef1fd910ef\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\1fab983a1e3ece5e4b52a539dc2825d0\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\20d78ed4fc1516af1b637cd7916907e3\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\28fb3f17be2b5216b826ef99dd7ce543\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\30705424bbeb7a2bf9dba0d2ebc8cc5b\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\3705aaab14f373867ef30ca66d9605af\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\518fc6c1ee920bf5489d5a8de79d8859\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\668e8309432ed0ae09ff8cbfd45b0d4b\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\680270cf7862f5616d353674a603101e\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\6ac63268cdef2c22680d568e356a6808\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\6c4508da5e9a946b6966a1e1088066be\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\73907f1356ed221befb5ac3bc58e30f7\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\751dc2e92bfa6d04f456d794cb5941d2\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\90bbc739e62e7160a06cca9b77f95059\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\9596c0974e4658844be2e6a2472e17e8\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\97d466f41763fcb590e27f60b757b5d4\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\a028356d415d4cc355ba321aac34fbce\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\b59f50e92bf1c478c34b4b3e3bdb2edd\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\b9159cfcf7b6f9b2c8458cc049dedb50\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\bb2d22bb080bd838cff429b3a0bb2a3d\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\bc21e9fb2eabc37dddd39e2c2bccd0f1\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\c3f48e34270faa2453500a4135a87b9d\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\c92a0c99dd8878a4a3d9b7b265a3e6ce\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\cfadc6d47a851d4ffe7e35a985b46fdf\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\d2e1bbf4f9679b754b547819208887d3\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\d7bad88959eee1fd3c4db86c059d59a1\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\dd4037bdd290c8f19245e40fc18b33fa\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\e33e17dccc54b04ba407c98ba59e855a\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\e62849316cc60de1c315d5ee67852c7b\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\ecb77aa390079da4d8700c30be94c988\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\f07022664ccbf7dd039b066c91be152c\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\f20f0a41ff5e453b6d5cada4cc7c7539\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\f32aa82f751a5a690b4970750f986034\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\f61d4ec7a87362a7e019e6d15855b559\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\f808a51ccea1b622a98c2c9cc0ce085b\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\f9a5e6e49a7bc3dcc6c69332b3bc1872\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\fa965ba437fae86e5820abeac8a8fbe1\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\0f9eea94b833a1b709dc69665cce19c2\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\d2e1bbf4f9679b754b547819208887d3\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\f9a5e6e49a7bc3dcc6c69332b3bc1872\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\0db7f72dd67572dd89619ce0e918d5de\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\9596c0974e4658844be2e6a2472e17e8\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\ecb77aa390079da4d8700c30be94c988\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\751dc2e92bfa6d04f456d794cb5941d2\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\1fab983a1e3ece5e4b52a539dc2825d0\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\f61d4ec7a87362a7e019e6d15855b559\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\f20f0a41ff5e453b6d5cada4cc7c7539\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\13f41849255cb98e2254ccef1fd910ef\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\b59f50e92bf1c478c34b4b3e3bdb2edd\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\97d466f41763fcb590e27f60b757b5d4\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\a028356d415d4cc355ba321aac34fbce\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\012fddcaaef15b306d3d8c887357a02f\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\12706f2736853a6cf57240b165176e6c\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\e62849316cc60de1c315d5ee67852c7b\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\cfadc6d47a851d4ffe7e35a985b46fdf\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\d7bad88959eee1fd3c4db86c059d59a1\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\019c78a572862116e22bdc9ddfd2ef77\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\668e8309432ed0ae09ff8cbfd45b0d4b\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\6c4508da5e9a946b6966a1e1088066be\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\bb2d22bb080bd838cff429b3a0bb2a3d\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\e33e17dccc54b04ba407c98ba59e855a\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\90bbc739e62e7160a06cca9b77f95059\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\f808a51ccea1b622a98c2c9cc0ce085b\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\30705424bbeb7a2bf9dba0d2ebc8cc5b\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\c92a0c99dd8878a4a3d9b7b265a3e6ce\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\518fc6c1ee920bf5489d5a8de79d8859\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\102baec34185ab01ee7e15daa9211cb0\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\c3f48e34270faa2453500a4135a87b9d\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\20d78ed4fc1516af1b637cd7916907e3\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\dd4037bdd290c8f19245e40fc18b33fa\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\73907f1356ed221befb5ac3bc58e30f7\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\f32aa82f751a5a690b4970750f986034\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\3705aaab14f373867ef30ca66d9605af\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\28fb3f17be2b5216b826ef99dd7ce543\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\f07022664ccbf7dd039b066c91be152c\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\680270cf7862f5616d353674a603101e\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\b9159cfcf7b6f9b2c8458cc049dedb50\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\6ac63268cdef2c22680d568e356a6808\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\bc21e9fb2eabc37dddd39e2c2bccd0f1\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13\\fa965ba437fae86e5820abeac8a8fbe1\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Successfully merged 43 tiles for slot 2025-12-13 into ..\\laravel_app\\storage\\app\\angata\\merged_tif_8b\\2025-12-13.tif\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\0f6be38e6a90d6f0fd08f8e155d04499\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\129adac36667194791f845e0371930f6\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\1b04d1c7f5425fdc7cfa4f7f15f27e02\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\1b0d214e67776cb98bdbcef548340a29\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\1d36a401135bd7f19e065410e4ab268e\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\35999838aba1c6a1ac4ecfd01a53fa82\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\37aa24cf1b6133ee279052645633992e\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\3de83c47b96220ce9152e88b76149a4f\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\3e20bb7a96874a54b11c9745c90f82d9\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\41d12c4bb20e440331aceb5f624d6930\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\4ae32ad341b9431f4701cbfc423a8d5b\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\4b076f3707847b81cc749bfde0294c37\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\50748b3dcff2baf52bd09dbd34c81400\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\515b4814b9c4c4ac2e69432ef2c1f804\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\5a41ba3a46908adb9ac26e3957f30abe\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\5d1854c1c6657009f35cadf8b2284f3a\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\5d986969691d257febdb0c063195b5ce\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\6b2f06638a183149e10e208602822e23\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\7dc0e277ec91d94b54ba15a4332b6a5a\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\8636efebbde460247fd35b487928b40b\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\874bcafdae0eba56e284793ecd44b47e\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\a36b6f8a527dc5c2a8dda3b82240ae36\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\a884556021312cff815c1fc0d15f1649\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\ada370fe5cdab45be870dcded84793de\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\b4e0576e29fe13296806095014764fc0\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\bfecfde383ff8ff584b2045927f3aca0\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\c6b62fb661349d8f7069736e80d29ed8\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\c77264745850b22d5ba9e00cbc02b571\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\cac16ef601995198283d23ed13141e58\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\caf84c2f043c8403cbe91d7e7b6aae46\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\cc80dddb5e698f10930a5886da0cbba5\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\d239be5636dd7d275fcf93f6b13e080b\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\d601b62c554d08ad77533978ed233a5a\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\db7f51effc35a7b7ae4b7dc8984e2ccf\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\e516f4c2e8cb6692ed22ee2254924837\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\e97ef42b6726345795cb1f1219291aa3\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\edf2ee33f8c616efb642da2b0f948418\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\efa3b5f9b20d1869a55af734f3161ebb\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\efbb1b6168dccd8be4790aae8144b6e9\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\f3bf47ef55ca5d64383ed47ae5e6a98a\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\f478aa6d870d40da76f29e76c64b7747\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\f8bc8d6d0cbede826291cef51fec5db8\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\fc19705055577adca01fe782f81a4925\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\37aa24cf1b6133ee279052645633992e\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\f478aa6d870d40da76f29e76c64b7747\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\efa3b5f9b20d1869a55af734f3161ebb\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\5a41ba3a46908adb9ac26e3957f30abe\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\a884556021312cff815c1fc0d15f1649\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\d601b62c554d08ad77533978ed233a5a\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\f3bf47ef55ca5d64383ed47ae5e6a98a\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\caf84c2f043c8403cbe91d7e7b6aae46\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\d239be5636dd7d275fcf93f6b13e080b\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\1d36a401135bd7f19e065410e4ab268e\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\35999838aba1c6a1ac4ecfd01a53fa82\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\c6b62fb661349d8f7069736e80d29ed8\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\e516f4c2e8cb6692ed22ee2254924837\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\1b0d214e67776cb98bdbcef548340a29\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\6b2f06638a183149e10e208602822e23\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\cac16ef601995198283d23ed13141e58\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\fc19705055577adca01fe782f81a4925\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\8636efebbde460247fd35b487928b40b\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\f8bc8d6d0cbede826291cef51fec5db8\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\41d12c4bb20e440331aceb5f624d6930\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\515b4814b9c4c4ac2e69432ef2c1f804\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\bfecfde383ff8ff584b2045927f3aca0\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\db7f51effc35a7b7ae4b7dc8984e2ccf\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\efbb1b6168dccd8be4790aae8144b6e9\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\4ae32ad341b9431f4701cbfc423a8d5b\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\ada370fe5cdab45be870dcded84793de\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\3e20bb7a96874a54b11c9745c90f82d9\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\cc80dddb5e698f10930a5886da0cbba5\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\a36b6f8a527dc5c2a8dda3b82240ae36\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\5d1854c1c6657009f35cadf8b2284f3a\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\e97ef42b6726345795cb1f1219291aa3\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\874bcafdae0eba56e284793ecd44b47e\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\c77264745850b22d5ba9e00cbc02b571\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\4b076f3707847b81cc749bfde0294c37\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\0f6be38e6a90d6f0fd08f8e155d04499\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\1b04d1c7f5425fdc7cfa4f7f15f27e02\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\edf2ee33f8c616efb642da2b0f948418\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\129adac36667194791f845e0371930f6\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\50748b3dcff2baf52bd09dbd34c81400\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\b4e0576e29fe13296806095014764fc0\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\5d986969691d257febdb0c063195b5ce\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\3de83c47b96220ce9152e88b76149a4f\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14\\7dc0e277ec91d94b54ba15a4332b6a5a\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Successfully merged 43 tiles for slot 2025-12-14 into ..\\laravel_app\\storage\\app\\angata\\merged_tif_8b\\2025-12-14.tif\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\01dfa8c50d2b8c323733492d977da6b3\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\0487fafa3f89ede34730f7f7d349f09a\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\0d19b8cb89c8d6b992d6e6b81fb50bf1\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\15a98ed22e99334db9536f4a2e6f8878\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\1e78ebad0332e646fd61953217af8886\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\33eed6665df60aa2d6f320365abb7a9a\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\382620c2f247dc30f2904f06d6b85032\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\3cec79117aa2b92fc96082cd594c2886\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\419765d081a12b9fae21dd31c5187177\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\45ab3cd1f005c4e324e04b7326c31c0c\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\4f64804214d97b28a76a63ad5a4ebd7b\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\50a973fb69035eb7010c6df0c9f7e858\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\55916ff400a9096ceb176fb70e570387\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\59d0cd7a0aca7b5cd47057b6bb3ac0ba\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\5da12941c20e7fabdda1e899558778b0\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\6402cb18bee2de7c3a7b1a1c7cbac57f\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\6d63809e2f96f3b307bbad13c78bc337\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\724ef5a6c06018222084b1ad9be87a18\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\741862be6c9f5ec16e2e0a34ee794298\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\74e4913c7b1092926558486056db7c0b\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\7eebfda573d5f42abaaa4668e826a650\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\8aba8ebf5b9f54ba7233cb0ed7dd5fb9\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\90348450c873cd7a0201dd72bc461cc2\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\90d201a113d658dde4148a609e45613d\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\9718ed4ebf88b9ff9f75eb50365e8abd\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\97ddb5458bf62b87ea69be8e21df639b\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\9a190ca0b406ae0f955e65846fcd5358\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\a1b959cb10ced110e956dfdba55daf59\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\ab8c7d80dfa5f0e144fc21814857c4e9\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\ae057254ddff089d2982c55a15545c6a\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\b7754aa8982040fd384b0f3421914332\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\bf0906f90c7622be43c85630d8a663cc\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\c0df28506c45aeeb54477485960aed0c\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\c407da35e215743c4e191a3d27c15ef6\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\d3fc38180cb7c8d5434a7e3d6f19567e\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\d77f8f89ebe595d1fe35aa4fa4e5e176\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\d7d41eb3598075b9b5993e3d9fb73ca5\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\dcdcebce806c56947a181e73ce28ba04\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\e24a93c9afde742b16535b824a035afc\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\e41091f98318e9511b63077387a05452\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\e7e4766d096c3eadb131f28ff2a6f4e5\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\f53be29226bbd2a0fc702dfa07bc9422\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\fbc9bb895add7c6b5b1bd3831b3b5403\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\55916ff400a9096ceb176fb70e570387\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\ae057254ddff089d2982c55a15545c6a\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\4f64804214d97b28a76a63ad5a4ebd7b\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\fbc9bb895add7c6b5b1bd3831b3b5403\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\741862be6c9f5ec16e2e0a34ee794298\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\bf0906f90c7622be43c85630d8a663cc\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\90348450c873cd7a0201dd72bc461cc2\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\d3fc38180cb7c8d5434a7e3d6f19567e\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\f53be29226bbd2a0fc702dfa07bc9422\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\59d0cd7a0aca7b5cd47057b6bb3ac0ba\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\ab8c7d80dfa5f0e144fc21814857c4e9\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\0487fafa3f89ede34730f7f7d349f09a\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\3cec79117aa2b92fc96082cd594c2886\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\5da12941c20e7fabdda1e899558778b0\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\33eed6665df60aa2d6f320365abb7a9a\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\50a973fb69035eb7010c6df0c9f7e858\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\b7754aa8982040fd384b0f3421914332\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\e24a93c9afde742b16535b824a035afc\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\e41091f98318e9511b63077387a05452\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\01dfa8c50d2b8c323733492d977da6b3\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\0d19b8cb89c8d6b992d6e6b81fb50bf1\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\74e4913c7b1092926558486056db7c0b\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\90d201a113d658dde4148a609e45613d\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\9718ed4ebf88b9ff9f75eb50365e8abd\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\7eebfda573d5f42abaaa4668e826a650\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\8aba8ebf5b9f54ba7233cb0ed7dd5fb9\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\45ab3cd1f005c4e324e04b7326c31c0c\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\724ef5a6c06018222084b1ad9be87a18\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\97ddb5458bf62b87ea69be8e21df639b\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\e7e4766d096c3eadb131f28ff2a6f4e5\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\d77f8f89ebe595d1fe35aa4fa4e5e176\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\419765d081a12b9fae21dd31c5187177\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\a1b959cb10ced110e956dfdba55daf59\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\9a190ca0b406ae0f955e65846fcd5358\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\c0df28506c45aeeb54477485960aed0c\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\d7d41eb3598075b9b5993e3d9fb73ca5\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\1e78ebad0332e646fd61953217af8886\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\382620c2f247dc30f2904f06d6b85032\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\15a98ed22e99334db9536f4a2e6f8878\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\dcdcebce806c56947a181e73ce28ba04\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\6d63809e2f96f3b307bbad13c78bc337\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\6402cb18bee2de7c3a7b1a1c7cbac57f\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15\\c407da35e215743c4e191a3d27c15ef6\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Successfully merged 43 tiles for slot 2025-12-15 into ..\\laravel_app\\storage\\app\\angata\\merged_tif_8b\\2025-12-15.tif\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\03d002d1f80ca45cc3c66e614a646f68\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\055bd5caacca407440364f755623017a\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\0bb9cb8783b2ee24d3150a40bbaf67f5\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\0de5c23dae1684841b31f26b9660c68e\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\0e1d14dd79d4a3ae7a5da51a02b9407f\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\0e98f3df5d1dbe150563efe41506ffb3\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\16eeb5a77487822b0cf6aa1d749e6097\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\1ea361b639cbdce5e09e30799a252891\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\3516454eda3b852f4daf68696ec53144\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\3593710b2910ffe71eea5e32369a5e7a\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\3915facc7250d39fb269a0acdf9abd1d\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\448719df6f5719f418f1864385fca90f\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\481ddac61baacd8a52ae13edca70452c\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\489c034f12ec4b32ca873ab6b0ef1cd7\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\49422ae2e798c45729ec2c6de23c1f2c\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\4f1720c917b76c1fdedb4760c04d97d8\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\4fb0557a9d28e37fe4af27f148ec258c\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\624ae26ebec32c8babd60e303316d403\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\67591adfa3d0356002002defa0a51ca2\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\6c4c5426847494bb6314aa1a28da9662\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\6e3a39a919916adab60f52e9d69b670e\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\6ef73109ee831392109845ffa05d003d\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\73ae491e31017c43a8d9f5ab794c04d6\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\77bd388f9ccc5a8cc0e295d640c2f7b9\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\7acf7219635d6254c4cddc253f04737b\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\7c024c978c8ab07b262b41bb68101acc\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\7e0dfd72b7348d3e5c6d2f921ceb0869\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\80683d7ce577e42d750535a0de51d192\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\856ff1a24e6a94983f78155af6ea8c08\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\87e532f23ec4e62cf8705f7af81e733f\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\8af9fd234fdcfe8c5c6d37cbeeb08943\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\8d2bf310e9fa4072bd064c48aacd99f4\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\96b5d0039e3283ef2eb28b19fc10dbd4\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\a5f2dca018b6334cd9568c94bd592f33\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\a6b15ebdb425d3c02e2ebe5f1d3ac29f\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\a9cf4e3b3525f4c6bdd5e84c58c891eb\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\b6281b00ead00421529789ec2fed3d2c\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\b944fa07073a87818cfc4631e2498f0d\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\bbc49efcf2befcd106f21854a679eff4\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\beaf5265a7b0286e9c01b81ce9ca3bd4\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\e4e9dfc70ed54b518bf8713ed75ab82f\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\ee3780b8d7b12c219edf75f5d7d6d147\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\f65894d7824a6d5585994a25bcae122c\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\6c4c5426847494bb6314aa1a28da9662\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\6e3a39a919916adab60f52e9d69b670e\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\0e1d14dd79d4a3ae7a5da51a02b9407f\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\a9cf4e3b3525f4c6bdd5e84c58c891eb\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\856ff1a24e6a94983f78155af6ea8c08\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\f65894d7824a6d5585994a25bcae122c\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\3915facc7250d39fb269a0acdf9abd1d\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\a6b15ebdb425d3c02e2ebe5f1d3ac29f\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\b944fa07073a87818cfc4631e2498f0d\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\489c034f12ec4b32ca873ab6b0ef1cd7\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\8d2bf310e9fa4072bd064c48aacd99f4\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\67591adfa3d0356002002defa0a51ca2\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\4fb0557a9d28e37fe4af27f148ec258c\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\49422ae2e798c45729ec2c6de23c1f2c\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\0bb9cb8783b2ee24d3150a40bbaf67f5\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\1ea361b639cbdce5e09e30799a252891\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\7c024c978c8ab07b262b41bb68101acc\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\96b5d0039e3283ef2eb28b19fc10dbd4\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\055bd5caacca407440364f755623017a\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\0de5c23dae1684841b31f26b9660c68e\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\3516454eda3b852f4daf68696ec53144\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\87e532f23ec4e62cf8705f7af81e733f\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\beaf5265a7b0286e9c01b81ce9ca3bd4\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\e4e9dfc70ed54b518bf8713ed75ab82f\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\624ae26ebec32c8babd60e303316d403\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\80683d7ce577e42d750535a0de51d192\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\16eeb5a77487822b0cf6aa1d749e6097\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\77bd388f9ccc5a8cc0e295d640c2f7b9\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\b6281b00ead00421529789ec2fed3d2c\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\6ef73109ee831392109845ffa05d003d\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\481ddac61baacd8a52ae13edca70452c\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\448719df6f5719f418f1864385fca90f\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\ee3780b8d7b12c219edf75f5d7d6d147\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\7acf7219635d6254c4cddc253f04737b\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\4f1720c917b76c1fdedb4760c04d97d8\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\03d002d1f80ca45cc3c66e614a646f68\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\8af9fd234fdcfe8c5c6d37cbeeb08943\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\bbc49efcf2befcd106f21854a679eff4\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\a5f2dca018b6334cd9568c94bd592f33\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\73ae491e31017c43a8d9f5ab794c04d6\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\7e0dfd72b7348d3e5c6d2f921ceb0869\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\0e98f3df5d1dbe150563efe41506ffb3\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16\\3593710b2910ffe71eea5e32369a5e7a\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Successfully merged 43 tiles for slot 2025-12-16 into ..\\laravel_app\\storage\\app\\angata\\merged_tif_8b\\2025-12-16.tif\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\015afc5dc5349c56bcdd685bead0a5f1\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\082bbeb18d8044fb5cdd1b47df4cf451\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\0c19750c71f438fcae2ee6e362659e98\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\171375eb58f9e20b5ee5da571f01cd92\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\181547c571e897d92b4e6657b2762f0d\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\1d15cb5acd310b94ef8965eebc4eb2dc\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\20305efc5a23ebb9ca325df3826fe410\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\2b5b8a048a9914c1e957a2925eef58f3\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\2db0f69043d52abf383df4468cec367a\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\3b5b43aa8bc623af40cce0957f9d60cd\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\3fa74497aeb8d8e00ba9bcfd94d85f68\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\40fde6d22e4fa068b466c32f6aea671a\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\49298a0c0b2dc3034303ea8993ffa231\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\6c97a195a671097c0b7848386d631c7a\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\703a9854c4024569b479e1fba1168f73\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\7360305f506c6cfcff421069c6dc4845\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\77badb55f1ee6479af37d89ca3196c44\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\7b94d04eeb73e1a1369a8a72b3215357\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\8022370d91a0530132630d5ddb5836d1\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\812be6862e5727ea914614bf05ad200d\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\851eba06b4b58b171cae54cf3f2277f5\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\879f35a30699e82ce2ac58965fc79f9a\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\8a9ddf3f442bf3bba2eff7030da09483\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\8b56eaee5b39bc163bd5ccf1f22225d1\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\8f2ce3cddb398386d24dfa36aaa0295d\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\926defbca536a7766fd7f3723d414493\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\938bf85a9f642713583e8b77d8753b3f\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\9bde3781beb55135bd69c464606757e8\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\a7d232070bf652d95b9ecef67abcc307\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\a8f5242ceb5c580a8961d19ac024369d\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\af53f58e094e6ee33b1c693fab4860ee\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\bcffdae2188d594a8df1d58746e48aa6\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\cbc885bc0e46eadd38862c87ecc81ac3\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\d1e86b727b4085773742e485dcaf4105\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\d61eb469aed00812436d2938c1388fd8\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\da06fda56f0209582a531661ab8e8e1f\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\dfca28f6f108008ab9532383169d8df2\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\e12a315a94f89aaab15b4dc809aa29d7\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\e67c90ea591b68b2f950df141b967de9\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\ec948e6c34557726c17b8aaade8d01be\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\ef804abd1f8e4f61f95ae5fa7a4d5d60\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\f1ab5fe13740f0c1a79b4779fccd9656\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\f3828cc77595e1819653412ab4e94c73\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\cbc885bc0e46eadd38862c87ecc81ac3\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\da06fda56f0209582a531661ab8e8e1f\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\40fde6d22e4fa068b466c32f6aea671a\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\e12a315a94f89aaab15b4dc809aa29d7\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\181547c571e897d92b4e6657b2762f0d\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\e67c90ea591b68b2f950df141b967de9\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\20305efc5a23ebb9ca325df3826fe410\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\851eba06b4b58b171cae54cf3f2277f5\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\d1e86b727b4085773742e485dcaf4105\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\8a9ddf3f442bf3bba2eff7030da09483\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\8b56eaee5b39bc163bd5ccf1f22225d1\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\0c19750c71f438fcae2ee6e362659e98\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\926defbca536a7766fd7f3723d414493\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\49298a0c0b2dc3034303ea8993ffa231\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\2b5b8a048a9914c1e957a2925eef58f3\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\938bf85a9f642713583e8b77d8753b3f\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\a8f5242ceb5c580a8961d19ac024369d\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\3b5b43aa8bc623af40cce0957f9d60cd\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\ef804abd1f8e4f61f95ae5fa7a4d5d60\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\015afc5dc5349c56bcdd685bead0a5f1\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\082bbeb18d8044fb5cdd1b47df4cf451\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\3fa74497aeb8d8e00ba9bcfd94d85f68\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\9bde3781beb55135bd69c464606757e8\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\a7d232070bf652d95b9ecef67abcc307\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\171375eb58f9e20b5ee5da571f01cd92\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\703a9854c4024569b479e1fba1168f73\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\7360305f506c6cfcff421069c6dc4845\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\8022370d91a0530132630d5ddb5836d1\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\2db0f69043d52abf383df4468cec367a\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\7b94d04eeb73e1a1369a8a72b3215357\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\f1ab5fe13740f0c1a79b4779fccd9656\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\812be6862e5727ea914614bf05ad200d\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\8f2ce3cddb398386d24dfa36aaa0295d\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\f3828cc77595e1819653412ab4e94c73\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\1d15cb5acd310b94ef8965eebc4eb2dc\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\af53f58e094e6ee33b1c693fab4860ee\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\dfca28f6f108008ab9532383169d8df2\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\ec948e6c34557726c17b8aaade8d01be\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\77badb55f1ee6479af37d89ca3196c44\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\bcffdae2188d594a8df1d58746e48aa6\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\d61eb469aed00812436d2938c1388fd8\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\6c97a195a671097c0b7848386d631c7a\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17\\879f35a30699e82ce2ac58965fc79f9a\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Successfully merged 43 tiles for slot 2025-12-17 into ..\\laravel_app\\storage\\app\\angata\\merged_tif_8b\\2025-12-17.tif\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\00fc0888e05065f7d9d379fe85316dc7\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\0ca0a4fb0e6d98e14e5bcec1f2733c9f\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\0f2d606ccf96f1c16b6e34ca9fa2861e\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\0fc14cde5d3d04d70bbe17a15e29a7b7\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\1e5d62933615ab2cf9070cbe7d5e3d96\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\2bd7742b6ece79595ab14e9ff298d966\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\3172f1cbe40d4771893188d4dbab9cdb\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\3353e3db2a0c1192774b8be61adec73e\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\39cca1d50821eafb5bd44a0dc540df6b\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\42a84257d2d0ed3a14bec61399bca60e\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\4879bc15dad8c75e6731a68d1299710e\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\4efff7be03d8299bb7bbc07b382559ca\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\51697f9d4984027d789c49c969c55ab4\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\53dc03bf3c851ab5dc8ef1a9b6aa67cf\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\56ab5c5fcc504ca656ea9cbb95d17702\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\57155471c57855f1b3b3fd0ce0de5fac\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\5b77b02ec83020193fedb17471f4f031\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\5f0647f12d79df856813646c71c29a26\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\6699e47273abc320466987fa8233e436\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\67d265d1dc856a6bceaae4e3bbfce759\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\84dacb0674d94bae19263c42755115eb\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\88c4c7628c8afe166f6bbf95598add03\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\89790cb8ef197b474087ed2aac0331a9\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\aa0613ce8cc7369e5a54b2dc1d0384eb\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\ac2c27a9f2a1b4f0198f6c04f1e61808\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\b1d140ddbb17715dbd6fea489b26c2fa\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\b411d10e7ecc1b84ca13545cefc5ade5\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\b5c149a6f2f84676cee143e55ad5c991\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\b638458b904251e9eb20ec118c9f7fe1\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\b8a65d9ab1706d81cbced5a34bd09740\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\bafb56361c0cc741778a23068b0a7a8b\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\c068874ca0174b6b2d8b6d65951d57b3\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\c32b4f42b10415816bed8ae9ff7d7e4c\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\d0763fe269fd02df70040fbf117b8367\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\d0db16f8a3557f4c2e4c4dad5cf58495\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\d2e87a4dc30fd3dbaae8b6ad61be8e02\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\d39d8caac47291041a5179a232da0b4c\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\dc4cd0a1819b32d7ed32aa28c0475349\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\e418d78068aa69ff58241357039a3e78\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\e76610255d16aa6a61cb3bb8add1148b\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\e99ce111c7d89fb10068dacb87fec7e2\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\fd3f99f7d0134c896da6bfc303dca02a\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\ff24286f4f34eaadde3436ad6764c9cb\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\89790cb8ef197b474087ed2aac0331a9\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\d39d8caac47291041a5179a232da0b4c\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\b8a65d9ab1706d81cbced5a34bd09740\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\aa0613ce8cc7369e5a54b2dc1d0384eb\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\4efff7be03d8299bb7bbc07b382559ca\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\e76610255d16aa6a61cb3bb8add1148b\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\3172f1cbe40d4771893188d4dbab9cdb\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\dc4cd0a1819b32d7ed32aa28c0475349\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\ff24286f4f34eaadde3436ad6764c9cb\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\d0db16f8a3557f4c2e4c4dad5cf58495\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\1e5d62933615ab2cf9070cbe7d5e3d96\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\e418d78068aa69ff58241357039a3e78\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\0f2d606ccf96f1c16b6e34ca9fa2861e\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\c068874ca0174b6b2d8b6d65951d57b3\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\84dacb0674d94bae19263c42755115eb\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\b5c149a6f2f84676cee143e55ad5c991\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\d0763fe269fd02df70040fbf117b8367\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\42a84257d2d0ed3a14bec61399bca60e\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\88c4c7628c8afe166f6bbf95598add03\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\39cca1d50821eafb5bd44a0dc540df6b\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\56ab5c5fcc504ca656ea9cbb95d17702\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\67d265d1dc856a6bceaae4e3bbfce759\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\b1d140ddbb17715dbd6fea489b26c2fa\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\e99ce111c7d89fb10068dacb87fec7e2\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\3353e3db2a0c1192774b8be61adec73e\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\fd3f99f7d0134c896da6bfc303dca02a\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\0ca0a4fb0e6d98e14e5bcec1f2733c9f\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\6699e47273abc320466987fa8233e436\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\57155471c57855f1b3b3fd0ce0de5fac\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\53dc03bf3c851ab5dc8ef1a9b6aa67cf\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\00fc0888e05065f7d9d379fe85316dc7\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\4879bc15dad8c75e6731a68d1299710e\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\5b77b02ec83020193fedb17471f4f031\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\0fc14cde5d3d04d70bbe17a15e29a7b7\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\b638458b904251e9eb20ec118c9f7fe1\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\ac2c27a9f2a1b4f0198f6c04f1e61808\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\c32b4f42b10415816bed8ae9ff7d7e4c\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\bafb56361c0cc741778a23068b0a7a8b\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\51697f9d4984027d789c49c969c55ab4\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\b411d10e7ecc1b84ca13545cefc5ade5\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\5f0647f12d79df856813646c71c29a26\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\2bd7742b6ece79595ab14e9ff298d966\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18\\d2e87a4dc30fd3dbaae8b6ad61be8e02\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Successfully merged 43 tiles for slot 2025-12-18 into ..\\laravel_app\\storage\\app\\angata\\merged_tif_8b\\2025-12-18.tif\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\036f33da47ae7d1d2a877e6f8997350e\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\0b4d37e201bff0eccc41ebc4cf87560a\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\0c31c64640bcd2fd93c7b99e53c59fc7\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\1013b230e61abc5cf26e521954d12ef9\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\17dcc99ca4d23e80ce0490109737e2a7\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\2622cb1e8e863d6ca089c15abe73c8d2\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\2c4d9a2867827ac117bca4581a28e354\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\2d9add96eef70da428f72d4f2f26c328\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\307bd0607327641151f775b5904abf33\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\3546f3758156df5bac7cbe6b24d2a745\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\355042932e9d7dd6d1d9f807eba4207a\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\4339fbb9ca4c16417b2f270e690c9b65\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\498c28cc4b091f9ebf7705241a863084\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\4e86f22edd3bfe22ae47ebd9a405b7d3\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\536fe9a526379c216b8d9be00f53cdad\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\5bb332cbf171a671d1670bd2b664465b\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\5cffa2e4d57d68be90817a0d19e20ee8\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\60427a9c2df2f30cb66151e748544bb3\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\6afcb4eb881c06afb4bfde586b0a8cee\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\756776a6fcd4d45b474560c9d1b7459e\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\77b074cdc500bc66d55e24a6358152f6\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\7f5ba3f8928038055a83d8a3577d8ce5\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\81afef0a57a600f67e2c6415ea08df54\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\84aa63f0702a43d85443c666536d627e\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\889124aab00e5cc668a7dbc89bb861cd\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\8a54f444cecb836ec0a30a9631e52ed9\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\91b0d0cc9aa4840c5c311963b58de250\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\abb5e4fadd48be228f4f1624a19c70b6\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\ae245a4aa4af4ec4967e1571a4a4b808\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\b633fd5ad388eeeab66ef7f4a8ed38ae\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\b7107a9c9fabc5731baa31562790dd00\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\b85ff8e4c07086f4cc8c540987caf40d\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\baeac97c7a788c83682e9cf6f40b9931\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\bc16867fe508802aa2edc70d17087503\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\bcc9d6fa7afb73b42694d7b001cccf11\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\be1e664fd64b6da9ebb20ec3ae13f12b\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\bea32ec651dff2f698a3a3c7e2c88d1b\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\c5397da2d7d0cc8c6df035a3852d3366\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\c606c696387900e67c82d2debc2fcea4\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\cd1e41b370b65f44ce8ccfbdb004141d\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\d572fb7f45dee6ad0eebac991f41fb91\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\df3aef0379b8e1c7f5a47b10fac5ac4b\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\e0b488b5dc8a97bb69880d9bd48d1559\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\307bd0607327641151f775b5904abf33\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\5cffa2e4d57d68be90817a0d19e20ee8\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\c5397da2d7d0cc8c6df035a3852d3366\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\bc16867fe508802aa2edc70d17087503\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\8a54f444cecb836ec0a30a9631e52ed9\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\d572fb7f45dee6ad0eebac991f41fb91\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\5bb332cbf171a671d1670bd2b664465b\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\4339fbb9ca4c16417b2f270e690c9b65\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\cd1e41b370b65f44ce8ccfbdb004141d\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\036f33da47ae7d1d2a877e6f8997350e\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\baeac97c7a788c83682e9cf6f40b9931\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\bcc9d6fa7afb73b42694d7b001cccf11\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\81afef0a57a600f67e2c6415ea08df54\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\0b4d37e201bff0eccc41ebc4cf87560a\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\2c4d9a2867827ac117bca4581a28e354\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\355042932e9d7dd6d1d9f807eba4207a\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\ae245a4aa4af4ec4967e1571a4a4b808\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\2622cb1e8e863d6ca089c15abe73c8d2\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\84aa63f0702a43d85443c666536d627e\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\0c31c64640bcd2fd93c7b99e53c59fc7\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\17dcc99ca4d23e80ce0490109737e2a7\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\4e86f22edd3bfe22ae47ebd9a405b7d3\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\6afcb4eb881c06afb4bfde586b0a8cee\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\be1e664fd64b6da9ebb20ec3ae13f12b\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\c606c696387900e67c82d2debc2fcea4\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\df3aef0379b8e1c7f5a47b10fac5ac4b\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\498c28cc4b091f9ebf7705241a863084\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\756776a6fcd4d45b474560c9d1b7459e\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\2d9add96eef70da428f72d4f2f26c328\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\7f5ba3f8928038055a83d8a3577d8ce5\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\77b074cdc500bc66d55e24a6358152f6\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\60427a9c2df2f30cb66151e748544bb3\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\e0b488b5dc8a97bb69880d9bd48d1559\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\889124aab00e5cc668a7dbc89bb861cd\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\3546f3758156df5bac7cbe6b24d2a745\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\bea32ec651dff2f698a3a3c7e2c88d1b\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\536fe9a526379c216b8d9be00f53cdad\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\b85ff8e4c07086f4cc8c540987caf40d\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\b7107a9c9fabc5731baa31562790dd00\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\b633fd5ad388eeeab66ef7f4a8ed38ae\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\1013b230e61abc5cf26e521954d12ef9\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\91b0d0cc9aa4840c5c311963b58de250\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19\\abb5e4fadd48be228f4f1624a19c70b6\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Successfully merged 43 tiles for slot 2025-12-19 into ..\\laravel_app\\storage\\app\\angata\\merged_tif_8b\\2025-12-19.tif\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\03c07fe5804be03938016d5306342f52\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\068e56bf49b51582a810e670f08078fd\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\0a5911f6301327b705a8f5738dccc10c\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\0cd1c20139686845b43094c4fa4372e5\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\0e281fd6fe96fae442d014ae2adb4171\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\12d3eecf8abc9a50eab9311f6a74c5e3\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\1994124d75e78f23ef0df7bd23e96c89\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\1a27828fff8e675376700a2f4fcbbeca\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\1a436671ad712103fdd0f2a44c1f066a\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\2a10d867a6fc1ec2129b7893cfdcb068\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\34a9b20b3c1bd638ac4584af8cb5a79c\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\3ff7b51fed971b3c427f0ef6d999bb51\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\48d62315b773a7713cd52f976dc9b01f\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\4cfd2f0ce655594d9944c478ba6c4f55\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\58203664f3b6792a5745085b361f183f\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\6e6d47683d7c600eccc5a29c2ef58f80\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\711c6282018cf58846b34b8b400ac79d\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\77177c834884d81fe0e81600cf0c3a3d\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\7b3f94cac5454b7f1e16eca7aed62b8d\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\7df4f0b8ff47b2e090b12589e3a3499a\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\7ea51f3c098cbf55cc07686f25be3410\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\82e837efeb16d7aa9d2ff120022a852c\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\85b85b381ac725cb02115f526b4b66a1\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\877cd672555a76f971d0d4dec7f661dd\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\8ae5790e98d3478793d3e83d02d6fdbf\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\9525380171c39c6e8669fbfe75edd098\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\954c1a3cc158d83b1740efecbea08eb6\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\95bf32bf7f9f20275cd3a73d0ed5274c\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\963d075405283a47c1400ef0e17cfb5c\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\99fc6c7856455eef2b7d65d81cfc55dc\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\a7a5359a9d520dd5f7b0a90a9f9c873c\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\bb83f344c7342b0e09d001c84077526f\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\c31ae758886704cb80d3ba6afb233995\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\c573c129ee98c1d36568db41a6cb36b2\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\cf603cb3bfc034862b271641fa126b27\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\d22a3ab268610ddbb400e54f9bd41755\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\d3a95cd3313b83ada85b5a0f46f4f536\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\d627bd358ea7d770bc6351ab627ee279\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\eaebdab7939340c2b55a5533d0ce12c0\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\eb168e2d6097555e3fec89ef40938a01\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\f33f8a9e3b8aa5cb17c4fd095cfa409b\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\f4c26bee4401c705f96e2889325d12f6\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\fefcd1e723d8fe3ea5cbd8fb3a9e7601\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\0a5911f6301327b705a8f5738dccc10c\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\0cd1c20139686845b43094c4fa4372e5\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\58203664f3b6792a5745085b361f183f\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\4cfd2f0ce655594d9944c478ba6c4f55\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\7b3f94cac5454b7f1e16eca7aed62b8d\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\f33f8a9e3b8aa5cb17c4fd095cfa409b\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\99fc6c7856455eef2b7d65d81cfc55dc\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\1a436671ad712103fdd0f2a44c1f066a\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\3ff7b51fed971b3c427f0ef6d999bb51\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\bb83f344c7342b0e09d001c84077526f\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\c573c129ee98c1d36568db41a6cb36b2\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\1a27828fff8e675376700a2f4fcbbeca\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\77177c834884d81fe0e81600cf0c3a3d\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\0e281fd6fe96fae442d014ae2adb4171\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\1994124d75e78f23ef0df7bd23e96c89\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\95bf32bf7f9f20275cd3a73d0ed5274c\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\d22a3ab268610ddbb400e54f9bd41755\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\fefcd1e723d8fe3ea5cbd8fb3a9e7601\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\877cd672555a76f971d0d4dec7f661dd\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\6e6d47683d7c600eccc5a29c2ef58f80\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\7df4f0b8ff47b2e090b12589e3a3499a\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\8ae5790e98d3478793d3e83d02d6fdbf\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\c31ae758886704cb80d3ba6afb233995\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\f4c26bee4401c705f96e2889325d12f6\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\711c6282018cf58846b34b8b400ac79d\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\85b85b381ac725cb02115f526b4b66a1\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\2a10d867a6fc1ec2129b7893cfdcb068\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\d3a95cd3313b83ada85b5a0f46f4f536\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\7ea51f3c098cbf55cc07686f25be3410\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\954c1a3cc158d83b1740efecbea08eb6\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\03c07fe5804be03938016d5306342f52\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\12d3eecf8abc9a50eab9311f6a74c5e3\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\48d62315b773a7713cd52f976dc9b01f\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\34a9b20b3c1bd638ac4584af8cb5a79c\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\d627bd358ea7d770bc6351ab627ee279\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\eb168e2d6097555e3fec89ef40938a01\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\9525380171c39c6e8669fbfe75edd098\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\068e56bf49b51582a810e670f08078fd\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\eaebdab7939340c2b55a5533d0ce12c0\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\82e837efeb16d7aa9d2ff120022a852c\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\cf603cb3bfc034862b271641fa126b27\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\963d075405283a47c1400ef0e17cfb5c\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20\\a7a5359a9d520dd5f7b0a90a9f9c873c\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Successfully merged 43 tiles for slot 2025-12-20 into ..\\laravel_app\\storage\\app\\angata\\merged_tif_8b\\2025-12-20.tif\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\047017d10a992f4839d3850e7cb5341f\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\0c2cf7384b101938439cd37cb395cea1\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\129a0787f8dd4ec7c7d43dcad0e81e75\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\25fc604617dc6f5c557ac17884db95f3\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\29f8a8f6f168d16c54bc86c3002b1f33\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\308db80e682ae3d77fc5e7a577140ec3\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\34e1162855b04cd208c383bf58cb22f2\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\39c46130e80a15552d477b602b3d24e0\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\3d3e7b59a0b1091a7343aed66c468ad4\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\459c36aa6900318f65248d196fb6c204\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\4aff362d3d4e984955a79b7375f7891f\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\560ab14e92977af2de4b5fc457b2a6b0\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\5c7b5e301892abbf588b8382fb18a449\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\6255a2d73fee04cde70aee6fa6c2e098\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\64750604b4e8a91db7333315de059b68\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\6ec5b47f3a48bd9432a0513d02d82488\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\78973fb8aa7cd6907b250ff53a07a5b0\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\7be6895dcb3643976f7204bc32383016\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\7e1429258f4dd8945bfb1e960423b8bd\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\800fcb10f094244201779bec1f126345\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\8a5d466e02f2eab782ff82c9755d7fa3\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\8d32fb510545f8db05a88d63fe9feb90\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\8e4636b4121b5739cef29c2155b79c62\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\9d107803a64a25532e14844cb9d851e9\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\a1e359a1fd16890ee1c91aebb2543fee\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\ab2e26d6e3f97989988d31c6da1b0074\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\ad3c5ce5ef447a001b40c67613804192\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\b14eeb5845551cc6360372500103f73e\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\b6a155ef213a23c78dbeef991fc71b57\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\b9259ad07ee6c8f96eb36de1ea6e063c\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\ba282529d56ee678bebc9b743742809f\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\bfb988f1eece6efb7f881ac93def96b3\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\c2adff02d698fcbd6dd5add7b3547a7d\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\d2fd20f1d7a624a946a8a632899ec22c\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\d7b908b0735775293cb4efaa18463b2e\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\d9b815a7c3867da4ccacc0a6346169ac\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\e963bac265f09161555074c3257e3f8a\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\ec5705b585d9708763f758b5d95c5fb9\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\f15f9ea690be9d3f052ae69895a3686a\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\f62f6a544f1171becbbfaaa650a378cb\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\fa415c352c723e3a88d22af6a087cf44\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\fb2e7929a172ac9dad90f20071ba79b4\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\fec6c4c74080ef52e27558f6dffa3ba5\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\560ab14e92977af2de4b5fc457b2a6b0\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\64750604b4e8a91db7333315de059b68\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\fec6c4c74080ef52e27558f6dffa3ba5\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\8e4636b4121b5739cef29c2155b79c62\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\5c7b5e301892abbf588b8382fb18a449\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\f15f9ea690be9d3f052ae69895a3686a\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\0c2cf7384b101938439cd37cb395cea1\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\800fcb10f094244201779bec1f126345\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\b9259ad07ee6c8f96eb36de1ea6e063c\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\129a0787f8dd4ec7c7d43dcad0e81e75\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\d7b908b0735775293cb4efaa18463b2e\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\6ec5b47f3a48bd9432a0513d02d82488\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\4aff362d3d4e984955a79b7375f7891f\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\ad3c5ce5ef447a001b40c67613804192\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\29f8a8f6f168d16c54bc86c3002b1f33\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\bfb988f1eece6efb7f881ac93def96b3\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\d9b815a7c3867da4ccacc0a6346169ac\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\8d32fb510545f8db05a88d63fe9feb90\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\ba282529d56ee678bebc9b743742809f\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\308db80e682ae3d77fc5e7a577140ec3\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\6255a2d73fee04cde70aee6fa6c2e098\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\a1e359a1fd16890ee1c91aebb2543fee\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\ab2e26d6e3f97989988d31c6da1b0074\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\c2adff02d698fcbd6dd5add7b3547a7d\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\459c36aa6900318f65248d196fb6c204\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\fa415c352c723e3a88d22af6a087cf44\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\b14eeb5845551cc6360372500103f73e\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\b6a155ef213a23c78dbeef991fc71b57\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\047017d10a992f4839d3850e7cb5341f\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\3d3e7b59a0b1091a7343aed66c468ad4\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\9d107803a64a25532e14844cb9d851e9\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\39c46130e80a15552d477b602b3d24e0\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\d2fd20f1d7a624a946a8a632899ec22c\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\ec5705b585d9708763f758b5d95c5fb9\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\fb2e7929a172ac9dad90f20071ba79b4\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\25fc604617dc6f5c557ac17884db95f3\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\e963bac265f09161555074c3257e3f8a\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\8a5d466e02f2eab782ff82c9755d7fa3\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\78973fb8aa7cd6907b250ff53a07a5b0\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\7e1429258f4dd8945bfb1e960423b8bd\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\34e1162855b04cd208c383bf58cb22f2\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\7be6895dcb3643976f7204bc32383016\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21\\f62f6a544f1171becbbfaaa650a378cb\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Successfully merged 43 tiles for slot 2025-12-21 into ..\\laravel_app\\storage\\app\\angata\\merged_tif_8b\\2025-12-21.tif\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\043619f46b5fcf4bd22ab111766ebfd1\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\051eb06f67b5732673d1842d1903cfcc\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\05a6f4afafbd1babad3a9a935bf514fb\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\077151534bceb31209077a75d10e8a7f\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\0c79404b467cf360261c1ea959fdf69b\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\0ceb50ddce02d6637f305cb689b2baac\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\1123647fd65f989b670dd2c950ddc22d\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\12af3a443040bd89e209eda97afc1f9d\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\196bcf864e69e834f65ae10c9ad410da\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\1fa11a4ce653ed9fd2a79f6ced4db7fe\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\2aa235c7397d5f375ef4c6194fa39be4\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\2c3127f8bbd313afb2bf0c8177942717\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\31ce1f0a24a210546fdd7fa1dc853db6\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\3940004325d5519dac2af31ffc536522\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\3ab12a03bbb0f4b764eee13620e28ae0\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\3f8f2fcae5242113ee829d33f01ffbd0\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\4eb90eeeffa2a95b80b7a890004e0d26\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\53b46049c99d5810f12c63392890f01a\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\54920c6e99b2f9d1cb819676fe9b7f6a\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\57082c00070491bc1612fa07bc0d562f\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\61de716f16303f1e814732d21b1cf670\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\6251d32156d355d04056e50754e5f030\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\709c8a6698afffe4080074b1828191a8\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\858088f725b291eb68081349a273e6fa\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\86c589fca097d911ce3e2ad33fed7b0e\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\908613cd2d6c5fc019056c27aa930780\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\940f67cd262ba842dda34b3ba430b947\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\9c29b2e9978d115daa91943fc502f63f\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\a710e094fd528c00bcdea8092db036f4\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\ab838d3dbfcc54566d0b2b169ddf4cae\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\b31de7cff305fb01786351a09b006f97\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\bb69a4ecee2c900292a83e92670e7c1e\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\bc264d5296f57ca1f57d4a3b9bb198e6\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\c0488389348e0ee8ae90c08fdf6dc6a5\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\c7b411b39b988a1c3137e36d3975eae6\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\c7eb5628cc4a8084b0e275adfde44a7e\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\cbf1cbf528ea2aed23ed1eeb9bc5f3d0\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\d850651f71f1aee1304f465369dcba94\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\d8e20a47820232ccee4e46633cb93d1d\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\dd3eedfaadea3c8f48d721c2684b8fa9\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\e8151162868f2e3a6252b966296aacc9\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\ecc126021d2bdbd26d165d727efcfe74\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\fba96109992ccdd9e1d34c6e19fcc85e\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\53b46049c99d5810f12c63392890f01a\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\61de716f16303f1e814732d21b1cf670\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\57082c00070491bc1612fa07bc0d562f\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\0c79404b467cf360261c1ea959fdf69b\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\2c3127f8bbd313afb2bf0c8177942717\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\4eb90eeeffa2a95b80b7a890004e0d26\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\c7eb5628cc4a8084b0e275adfde44a7e\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\a710e094fd528c00bcdea8092db036f4\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\cbf1cbf528ea2aed23ed1eeb9bc5f3d0\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\54920c6e99b2f9d1cb819676fe9b7f6a\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\c0488389348e0ee8ae90c08fdf6dc6a5\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\3f8f2fcae5242113ee829d33f01ffbd0\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\3940004325d5519dac2af31ffc536522\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\3ab12a03bbb0f4b764eee13620e28ae0\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\05a6f4afafbd1babad3a9a935bf514fb\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\196bcf864e69e834f65ae10c9ad410da\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\908613cd2d6c5fc019056c27aa930780\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\ecc126021d2bdbd26d165d727efcfe74\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\0ceb50ddce02d6637f305cb689b2baac\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\043619f46b5fcf4bd22ab111766ebfd1\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\1fa11a4ce653ed9fd2a79f6ced4db7fe\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\6251d32156d355d04056e50754e5f030\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\709c8a6698afffe4080074b1828191a8\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\dd3eedfaadea3c8f48d721c2684b8fa9\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\1123647fd65f989b670dd2c950ddc22d\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\86c589fca097d911ce3e2ad33fed7b0e\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\051eb06f67b5732673d1842d1903cfcc\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\077151534bceb31209077a75d10e8a7f\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\d850651f71f1aee1304f465369dcba94\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\9c29b2e9978d115daa91943fc502f63f\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\2aa235c7397d5f375ef4c6194fa39be4\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\ab838d3dbfcc54566d0b2b169ddf4cae\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\bc264d5296f57ca1f57d4a3b9bb198e6\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\c7b411b39b988a1c3137e36d3975eae6\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\858088f725b291eb68081349a273e6fa\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\b31de7cff305fb01786351a09b006f97\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\bb69a4ecee2c900292a83e92670e7c1e\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\31ce1f0a24a210546fdd7fa1dc853db6\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\d8e20a47820232ccee4e46633cb93d1d\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\12af3a443040bd89e209eda97afc1f9d\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\e8151162868f2e3a6252b966296aacc9\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\940f67cd262ba842dda34b3ba430b947\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22\\fba96109992ccdd9e1d34c6e19fcc85e\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Successfully merged 43 tiles for slot 2025-12-22 into ..\\laravel_app\\storage\\app\\angata\\merged_tif_8b\\2025-12-22.tif\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\08e6c805da8542cf69fe0703cc570b64\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\0de8abe4feffe73bfc104421fe409f02\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\142292cfa5e181ec51df5d85eb2b5254\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\177ef71a73c87637237b8fff56e5c149\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\1cb45cdab0cc7a0a3249b21e558d19c7\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\21616f2916aeb69dd782391f5f7c5a8f\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\27c142f424794563121c4ca92442e27c\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\2bb1c80cd7e4115abaf0c71a1c0e85d5\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\3071679f7e9f7891c927bd330212a2de\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\3610f7b66e7d44e15790f8e19c4c619a\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\3745a70580ae0aa59ede5b3af2f18032\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\397ea9bc423ebd21c5cfb5e57f16cc29\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\3f9a6e2b46d34b1732629a97c0f2b6b7\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\46b48d5f524c6513a5428c7b0d341d7b\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\51b1ec54f0f436301c4ddbc4147e7b30\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\5aa9d7db74eca99c2f1854eaebc153d5\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\5b60f295204b440a1a48d6c1454aa482\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\5e8645348969b192c9ca63230bdd15dd\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\6cdc5d3910ab92cf6ff2d0af22fe1131\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\6d175ca99eea1cfeb26550d14ba69086\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\6f1a3a48fb0ec06a064123e7909722af\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\71562acc27a17c3518eba1ac6eacfe04\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\76e7aaa55306c248334750565397aebd\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\799f5d982f539f0c4a2992dbffa68307\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\7a3de1f7f84009c73395a0f2cb2a35e2\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\7b9e3eccbaa5f5035607cb153311585b\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\824c3fc66ce999ddca6e671e41372c1f\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\8d07dfefd617cd1c5b5f8f7a3c52ed13\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\8f2ceab131d082fbdf89874875431376\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\8fbc222f6496765d0f54da323b60935f\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\905b1126149ce8fcbdd245e8c838b051\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\a9cd6f2988d6e2096074414c48060de2\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\c7f95528abcf4e52f421c7af57b854d9\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\ccc2226a2673ddb5cb18a2a9b70ec223\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\d4fca46d36e596f592661d9bcc168e43\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\d8cebd6b77edbf9a1b6a7e80b8535313\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\dc511788a15105b30bdd91b2dc35f958\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\e0ffcb99b049a9387e58cc1a736b0814\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\e5cd1e1c808ac073e97b07d7fc8a620f\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\ea9393e130b57c72491e13fdaee0bd72\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\eb349c30ee167b0beb00563628e2e217\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\ebd7203d1249a5994b911f8181fc2956\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\edd31e5122e3ebc4ceb1e10825cb1b38\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\46b48d5f524c6513a5428c7b0d341d7b\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\e5cd1e1c808ac073e97b07d7fc8a620f\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\6f1a3a48fb0ec06a064123e7909722af\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\142292cfa5e181ec51df5d85eb2b5254\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\5b60f295204b440a1a48d6c1454aa482\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\ebd7203d1249a5994b911f8181fc2956\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\eb349c30ee167b0beb00563628e2e217\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\08e6c805da8542cf69fe0703cc570b64\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\3610f7b66e7d44e15790f8e19c4c619a\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\3f9a6e2b46d34b1732629a97c0f2b6b7\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\6d175ca99eea1cfeb26550d14ba69086\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\e0ffcb99b049a9387e58cc1a736b0814\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\7b9e3eccbaa5f5035607cb153311585b\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\0de8abe4feffe73bfc104421fe409f02\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\21616f2916aeb69dd782391f5f7c5a8f\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\76e7aaa55306c248334750565397aebd\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\c7f95528abcf4e52f421c7af57b854d9\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\d4fca46d36e596f592661d9bcc168e43\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\824c3fc66ce999ddca6e671e41372c1f\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\177ef71a73c87637237b8fff56e5c149\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\27c142f424794563121c4ca92442e27c\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\2bb1c80cd7e4115abaf0c71a1c0e85d5\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\7a3de1f7f84009c73395a0f2cb2a35e2\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\a9cd6f2988d6e2096074414c48060de2\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\1cb45cdab0cc7a0a3249b21e558d19c7\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\ccc2226a2673ddb5cb18a2a9b70ec223\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\6cdc5d3910ab92cf6ff2d0af22fe1131\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\799f5d982f539f0c4a2992dbffa68307\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\5aa9d7db74eca99c2f1854eaebc153d5\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\edd31e5122e3ebc4ceb1e10825cb1b38\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\dc511788a15105b30bdd91b2dc35f958\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\397ea9bc423ebd21c5cfb5e57f16cc29\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\ea9393e130b57c72491e13fdaee0bd72\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\8d07dfefd617cd1c5b5f8f7a3c52ed13\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\71562acc27a17c3518eba1ac6eacfe04\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\d8cebd6b77edbf9a1b6a7e80b8535313\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\8f2ceab131d082fbdf89874875431376\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\5e8645348969b192c9ca63230bdd15dd\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\51b1ec54f0f436301c4ddbc4147e7b30\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\3071679f7e9f7891c927bd330212a2de\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\905b1126149ce8fcbdd245e8c838b051\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\3745a70580ae0aa59ede5b3af2f18032\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23\\8fbc222f6496765d0f54da323b60935f\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Successfully merged 43 tiles for slot 2025-12-23 into ..\\laravel_app\\storage\\app\\angata\\merged_tif_8b\\2025-12-23.tif\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\0d0ff574f3ba4dd3cdd937f6c14ef930\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\13cf7b7256f9bc04b671c6f1b45e9949\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\142ae0dbdc9ad2cb4fc802c1c74cdd07\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\14db3d1a3f0194204fc3341ffea1b997\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\20c98a8e9bbef166846368b7dbb49700\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\2171efd111c7c3a7b8f899bd0f63de8e\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\2581086a8f669d2d33db237056183597\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\2e48a0af5346e2283baccda55bf450da\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\3236e245ae490496582814d3a15c3230\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\35fca1b5da02bff0f6ec95d1f82e6bbc\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\3a90bd5a2b8151dc7254cfb2c80cfc2d\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\423602d27ff3ea8a27db06f36953d558\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\43523826d0fdeed9b0a06c0948b48a2e\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\45cf4263e0668bb1063efe838f842bae\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\51a4bfd57497622e9ec76553ef56e651\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\55b7cc8c68bdbaca610f7a16fb8fdcc7\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\57d1f7de1b0fefb787893c5abce8173b\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\596f3a2471133b9ead84581e133de955\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\5af3eab332f9e08d3edd5667cfaa6af0\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\5dd05289cb17a0f841c6a5598b37784f\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\5fb4654f0251db107ccede9d06586852\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\69261f54c4a4655d3cdb9614139d0674\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\6f09524126f2f5853528058e3d39de8a\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\7180ce67b2a54011d96c9fbfcd6bd26b\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\767a708cbd067448c95c78f4158713b5\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\7c857fe4e3fbd3b358ccc2ed9fa28528\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\87820bb45410586f4b68ede3bf5b5807\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\8a007e4aa8f2c16666357114ef2b7c81\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\8f052486a9362fa565cad0c75f319a99\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\9c147cdbf9532117384cfb5a0af6a460\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\9f0a2d11e04428441be7e91815a04ea9\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\a250461edc37ed132de07efa4c41ade1\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\a3839607f3713667a8d750cace1cfb17\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\a6b1c5c1176c68273abdb74d997c4ffb\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\aabe12dba8c8df41620cbe0266f5dd6a\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\b17175a97d62ce51084a88379750c946\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\b6ad6f442083a3f3dca548b4f77c383c\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\ca314a8b6e67fd5e52d9228d05e8bc88\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\cc521a4339c40b59b69fc669be26ac4e\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\d23bb08bb96fb39456351d72408f3251\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\d4920a9d47175ebf750b2b5a420c00b3\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\d76f6ff4afaada0df74c4bc24f97d48f\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4939: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\f06792c76ebf081f0a8ecdb351427f85\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.BuildVRTInternalNames(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\5fb4654f0251db107ccede9d06586852\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\7180ce67b2a54011d96c9fbfcd6bd26b\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\3236e245ae490496582814d3a15c3230\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\2581086a8f669d2d33db237056183597\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\43523826d0fdeed9b0a06c0948b48a2e\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\d76f6ff4afaada0df74c4bc24f97d48f\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\423602d27ff3ea8a27db06f36953d558\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\51a4bfd57497622e9ec76553ef56e651\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\57d1f7de1b0fefb787893c5abce8173b\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\8a007e4aa8f2c16666357114ef2b7c81\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\a3839607f3713667a8d750cace1cfb17\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\596f3a2471133b9ead84581e133de955\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\55b7cc8c68bdbaca610f7a16fb8fdcc7\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\aabe12dba8c8df41620cbe0266f5dd6a\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\69261f54c4a4655d3cdb9614139d0674\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\8f052486a9362fa565cad0c75f319a99\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\a250461edc37ed132de07efa4c41ade1\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\ca314a8b6e67fd5e52d9228d05e8bc88\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\b6ad6f442083a3f3dca548b4f77c383c\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\0d0ff574f3ba4dd3cdd937f6c14ef930\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\3a90bd5a2b8151dc7254cfb2c80cfc2d\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\9c147cdbf9532117384cfb5a0af6a460\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\cc521a4339c40b59b69fc669be26ac4e\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\d23bb08bb96fb39456351d72408f3251\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\45cf4263e0668bb1063efe838f842bae\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\d4920a9d47175ebf750b2b5a420c00b3\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\6f09524126f2f5853528058e3d39de8a\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\a6b1c5c1176c68273abdb74d997c4ffb\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\2171efd111c7c3a7b8f899bd0f63de8e\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\f06792c76ebf081f0a8ecdb351427f85\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\767a708cbd067448c95c78f4158713b5\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\2e48a0af5346e2283baccda55bf450da\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\87820bb45410586f4b68ede3bf5b5807\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\20c98a8e9bbef166846368b7dbb49700\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\5dd05289cb17a0f841c6a5598b37784f\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\5af3eab332f9e08d3edd5667cfaa6af0\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\14db3d1a3f0194204fc3341ffea1b997\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\b17175a97d62ce51084a88379750c946\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\13cf7b7256f9bc04b671c6f1b45e9949\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\35fca1b5da02bff0f6ec95d1f82e6bbc\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\7c857fe4e3fbd3b358ccc2ed9fa28528\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\142ae0dbdc9ad2cb4fc802c1c74cdd07\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n",
"c:\\Users\\timon\\anaconda3\\Lib\\site-packages\\osgeo\\gdal.py:4793: RuntimeWarning: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24\\9f0a2d11e04428441be7e91815a04ea9\\response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
" return _gdal.TranslateInternal(*args)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"✓ Successfully merged 43 tiles for slot 2025-12-24 into ..\\laravel_app\\storage\\app\\angata\\merged_tif_8b\\2025-12-24.tif\n",
"\n",
"✓ Successfully merged 14 out of 14 slots\n",
" Slots with data: ['2025-12-11', '2025-12-12', '2025-12-13', '2025-12-14', '2025-12-15', '2025-12-16', '2025-12-17', '2025-12-18', '2025-12-19', '2025-12-20', '2025-12-21', '2025-12-22', '2025-12-23', '2025-12-24']\n"
]
}
],
"source": [
"successful_slots = []\n",
"for slot in available_slots:\n",
" if merge_files(slot):\n",
" successful_slots.append(slot)\n",
"\n",
"print(f\"\\n✓ Successfully merged {len(successful_slots)} out of {len(available_slots)} slots\")\n",
"if successful_slots:\n",
" print(f\" Slots with data: {successful_slots}\")\n"
]
},
{
"cell_type": "markdown",
"id": "4274d8e7-1ea3-46db-9528-069ede0b2132",
"metadata": {
"tags": []
},
"source": [
"#### Delete intermediate files\n"
]
},
{
"cell_type": "code",
"execution_count": 62,
"id": "cb3fa856-a550-4899-844a-e69209bba3ad",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Cleaning folder: ..\\laravel_app\\storage\\app\\angata\\merged_virtual_8b\n",
"Deleted file: ..\\laravel_app\\storage\\app\\angata\\merged_virtual_8b\\merged2025-12-11.vrt\n",
"Deleted file: ..\\laravel_app\\storage\\app\\angata\\merged_virtual_8b\\merged2025-12-12.vrt\n",
"Deleted file: ..\\laravel_app\\storage\\app\\angata\\merged_virtual_8b\\merged2025-12-13.vrt\n",
"Deleted file: ..\\laravel_app\\storage\\app\\angata\\merged_virtual_8b\\merged2025-12-14.vrt\n",
"Deleted file: ..\\laravel_app\\storage\\app\\angata\\merged_virtual_8b\\merged2025-12-15.vrt\n",
"Deleted file: ..\\laravel_app\\storage\\app\\angata\\merged_virtual_8b\\merged2025-12-16.vrt\n",
"Deleted file: ..\\laravel_app\\storage\\app\\angata\\merged_virtual_8b\\merged2025-12-17.vrt\n",
"Deleted file: ..\\laravel_app\\storage\\app\\angata\\merged_virtual_8b\\merged2025-12-18.vrt\n",
"Deleted file: ..\\laravel_app\\storage\\app\\angata\\merged_virtual_8b\\merged2025-12-19.vrt\n",
"Deleted file: ..\\laravel_app\\storage\\app\\angata\\merged_virtual_8b\\merged2025-12-20.vrt\n",
"Deleted file: ..\\laravel_app\\storage\\app\\angata\\merged_virtual_8b\\merged2025-12-21.vrt\n",
"Deleted file: ..\\laravel_app\\storage\\app\\angata\\merged_virtual_8b\\merged2025-12-22.vrt\n",
"Deleted file: ..\\laravel_app\\storage\\app\\angata\\merged_virtual_8b\\merged2025-12-23.vrt\n",
"Deleted file: ..\\laravel_app\\storage\\app\\angata\\merged_virtual_8b\\merged2025-12-24.vrt\n",
"Emptied folder: ..\\laravel_app\\storage\\app\\angata\\merged_virtual_8b\n",
"Cleaning folder: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\n",
"Error deleting ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-11: [WinError 5] Toegang geweigerd: '..\\\\laravel_app\\\\storage\\\\app\\\\angata\\\\single_images_8b\\\\2025-12-11\\\\01812150cf6938c44cd3aaf9199950d5'\n",
"Error deleting ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-12: [WinError 5] Toegang geweigerd: '..\\\\laravel_app\\\\storage\\\\app\\\\angata\\\\single_images_8b\\\\2025-12-12\\\\0062660dba673a37e9353b247e219690'\n",
"Error deleting ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-13: [WinError 5] Toegang geweigerd: '..\\\\laravel_app\\\\storage\\\\app\\\\angata\\\\single_images_8b\\\\2025-12-13\\\\012fddcaaef15b306d3d8c887357a02f'\n",
"Error deleting ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-14: [WinError 5] Toegang geweigerd: '..\\\\laravel_app\\\\storage\\\\app\\\\angata\\\\single_images_8b\\\\2025-12-14\\\\0f6be38e6a90d6f0fd08f8e155d04499'\n",
"Error deleting ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-15: [WinError 5] Toegang geweigerd: '..\\\\laravel_app\\\\storage\\\\app\\\\angata\\\\single_images_8b\\\\2025-12-15\\\\01dfa8c50d2b8c323733492d977da6b3'\n",
"Error deleting ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-16: [WinError 5] Toegang geweigerd: '..\\\\laravel_app\\\\storage\\\\app\\\\angata\\\\single_images_8b\\\\2025-12-16\\\\03d002d1f80ca45cc3c66e614a646f68'\n",
"Error deleting ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-17: [WinError 5] Toegang geweigerd: '..\\\\laravel_app\\\\storage\\\\app\\\\angata\\\\single_images_8b\\\\2025-12-17\\\\015afc5dc5349c56bcdd685bead0a5f1'\n",
"Error deleting ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-18: [WinError 5] Toegang geweigerd: '..\\\\laravel_app\\\\storage\\\\app\\\\angata\\\\single_images_8b\\\\2025-12-18\\\\00fc0888e05065f7d9d379fe85316dc7'\n",
"Error deleting ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-19: [WinError 5] Toegang geweigerd: '..\\\\laravel_app\\\\storage\\\\app\\\\angata\\\\single_images_8b\\\\2025-12-19\\\\036f33da47ae7d1d2a877e6f8997350e'\n",
"Error deleting ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-20: [WinError 5] Toegang geweigerd: '..\\\\laravel_app\\\\storage\\\\app\\\\angata\\\\single_images_8b\\\\2025-12-20\\\\03c07fe5804be03938016d5306342f52'\n",
"Error deleting ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-21: [WinError 5] Toegang geweigerd: '..\\\\laravel_app\\\\storage\\\\app\\\\angata\\\\single_images_8b\\\\2025-12-21\\\\047017d10a992f4839d3850e7cb5341f'\n",
"Error deleting ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-22: [WinError 5] Toegang geweigerd: '..\\\\laravel_app\\\\storage\\\\app\\\\angata\\\\single_images_8b\\\\2025-12-22\\\\043619f46b5fcf4bd22ab111766ebfd1'\n",
"Error deleting ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-23: [WinError 5] Toegang geweigerd: '..\\\\laravel_app\\\\storage\\\\app\\\\angata\\\\single_images_8b\\\\2025-12-23\\\\08e6c805da8542cf69fe0703cc570b64'\n",
"Error deleting ..\\laravel_app\\storage\\app\\angata\\single_images_8b\\2025-12-24: [WinError 5] Toegang geweigerd: '..\\\\laravel_app\\\\storage\\\\app\\\\angata\\\\single_images_8b\\\\2025-12-24\\\\0d0ff574f3ba4dd3cdd937f6c14ef930'\n",
"Emptied folder: ..\\laravel_app\\storage\\app\\angata\\single_images_8b\n",
"Cleanup complete.\n"
]
}
],
"source": [
"# List of folder names\n",
"\n",
"folders_to_empty = [Path(folder_for_virtual_raster), BASE_PATH_SINGLE_IMAGES]\n",
" \n",
"# Function to empty folders\n",
"\n",
"def empty_folders(folders, run=True):\n",
" if not run:\n",
" print(\"Skipping empty_folders function.\")\n",
" return\n",
" \n",
" for folder in folders:\n",
" folder = Path(folder)\n",
" print(f\"Cleaning folder: {folder}\")\n",
" try:\n",
" if not folder.exists():\n",
" print(f\"Folder {folder} does not exist, skipping.\")\n",
" continue\n",
" for filename in folder.iterdir():\n",
" file_path = folder / filename.name\n",
" try:\n",
" if file_path.is_file():\n",
" file_path.unlink()\n",
" print(f\"Deleted file: {file_path}\")\n",
" elif file_path.is_dir():\n",
" shutil.rmtree(file_path)\n",
" print(f\"Deleted directory: {file_path}\")\n",
" except Exception as e:\n",
" print(f\"Error deleting {file_path}: {e}\")\n",
" print(f\"Emptied folder: {folder}\")\n",
" except OSError as e:\n",
" print(f\"Error: {e}\")\n",
"\n",
"# Call the function to empty folders only if the 'run' parameter is set to True\n",
"empty_folders(folders_to_empty, run=empty_folder_question)\n",
"print('Cleanup complete.')\n"
]
},
{
"cell_type": "code",
"execution_count": 63,
"id": "0145b399-dfad-448a-9f0d-fa975fb01ad2",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"True"
]
},
"execution_count": 63,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"empty_folder_question"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "base",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.12.3"
}
},
"nbformat": 4,
"nbformat_minor": 5
}