10360 lines
1.2 MiB
10360 lines
1.2 MiB
{
|
||
"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": [
|
||
"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"100.0\" height=\"100.0\" viewBox=\"34.429685163802056 -0.7965936465034774 0.07004443996076049 0.05879347691034287\" preserveAspectRatio=\"xMinYMin meet\"><g transform=\"matrix(1,0,0,-1,0,-1.534393816096612)\"><g><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.497135365245754,-0.7546713722042167 L 34.497128102316495,-0.754657108072904 L 34.49712070231653,-0.754638308072953 L 34.49711190231651,-0.754618008072998 L 34.49710120231654,-0.754599608073049 L 34.49709380231655,-0.754582608073107 L 34.49708290231657,-0.754564308073157 L 34.49706590231658,-0.754544008073222 L 34.49705170231659,-0.754523708073266 L 34.49704040231661,-0.754505408073328 L 34.49703130231661,-0.754481908073392 L 34.49701790231664,-0.754458208073451 L 34.497004102316644,-0.754432208073534 L 34.49699420231668,-0.754409908073585 L 34.49697980231669,-0.754388108073655 L 34.4969655023167,-0.754362708073712 L 34.49695470231673,-0.754338708073787 L 34.49693770231673,-0.754314708073849 L 34.496924002316746,-0.754290208073915 L 34.49691070231677,-0.754265208074 L 34.49689830231677,-0.754242908074051 L 34.496885002316795,-0.754217608074124 L 34.496876802316805,-0.754189908074202 L 34.496863602316836,-0.754169308074255 L 34.49684220231684,-0.75415320807431 L 34.496827602316856,-0.754127908074377 L 34.49682340231686,-0.754108908074426 L 34.4968153023169,-0.754089208074473 L 34.4967993023169,-0.754070908074529 L 34.4967804023169,-0.754057308074577 L 34.496769802316926,-0.75403860807463 L 34.496758502316915,-0.754020308074675 L 34.49674500231695,-0.753998008074756 L 34.49673830231696,-0.753980508074794 L 34.496724802316976,-0.753964908074832 L 34.49670880231698,-0.75395040807489 L 34.49668970231699,-0.753932808074932 L 34.496675102317006,-0.753915308074998 L 34.49667110231702,-0.753896108075037 L 34.49666820231703,-0.753877508075089 L 34.496672402317046,-0.753855908075142 L 34.49669180231706,-0.753836608075162 L 34.496714802317065,-0.753822808075184 L 34.49673230231705,-0.753833808075145 L 34.496758302317055,-0.75382390807515 L 34.49678920231707,-0.753811108075172 L 34.49680620231706,-0.75380480807518 L 34.49683850231707,-0.753792408075188 L 34.496855402317074,-0.753785908075195 L 34.49688500231707,-0.753778508075188 L 34.49691300231708,-0.753765408075196 L 34.49693750231708,-0.753755408075205 L 34.49696750231708,-0.753742608075215 L 34.496996402317095,-0.753730408075241 L 34.497018902317095,-0.753715608075259 L 34.49704060231709,-0.75369990807529 L 34.497064802317105,-0.753686608075303 L 34.497093102317116,-0.753675208075322 L 34.49712720231711,-0.753666508075305 L 34.497135365245754,-0.7536642672713668 L 34.497135365245754,-0.7546713722042167 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.497135365245754,-0.7570173844481518 L 34.49713110231504,-0.757018608067153 L 34.497111102315024,-0.757024308067148 L 34.49709030231504,-0.757033708067153 L 34.49706440231503,-0.757040008067151 L 34.49704170231502,-0.757038708067163 L 34.497019102315036,-0.757037108067178 L 34.49699730231502,-0.757048908067165 L 34.49698150231503,-0.757036708067196 L 34.496979802315046,-0.75701760806725 L 34.49697720231507,-0.7569994080673 L 34.49696990231507,-0.756980408067344 L 34.496972602315076,-0.756959608067399 L 34.496983902315094,-0.756943908067435 L 34.4969894023151,-0.75691670806749 L 34.49698600231512,-0.756897408067549 L 34.496984102315146,-0.756874808067611 L 34.49698330231516,-0.756853608067645 L 34.49697760231518,-0.756830008067709 L 34.49697230231518,-0.756812108067761 L 34.49696830231519,-0.756792008067805 L 34.496973302315205,-0.75677030806785 L 34.49697140231522,-0.756750508067912 L 34.496964202315226,-0.75673390806794 L 34.49695950231524,-0.756713408068005 L 34.49695680231526,-0.756685008068072 L 34.49695730231528,-0.756663308068131 L 34.49695320231528,-0.756633308068203 L 34.49695330231531,-0.756611408068251 L 34.49695110231532,-0.756586208068324 L 34.49695150231535,-0.756566408068358 L 34.496951902315345,-0.756547708068401 L 34.49695200231536,-0.756526408068477 L 34.49693550231537,-0.756509408068516 L 34.496922502315385,-0.756489408068565 L 34.496918702315405,-0.756464508068627 L 34.49691810231542,-0.756441808068697 L 34.49691530231542,-0.756420508068749 L 34.49691600231544,-0.756401908068784 L 34.49692090231546,-0.756378408068837 L 34.49692820231545,-0.756361708068874 L 34.496922802315474,-0.756338708068925 L 34.496911902315496,-0.756316808069003 L 34.4969131023155,-0.756292308069052 L 34.49690650231553,-0.756266808069113 L 34.496901302315536,-0.75624000806919 L 34.49690170231556,-0.756218208069245 L 34.49689480231557,-0.756191808069311 L 34.49688780231559,-0.756174508069358 L 34.4968814023156,-0.756155208069421 L 34.496874102315616,-0.756129908069461 L 34.49686840231562,-0.756108808069527 L 34.49686750231565,-0.756081108069605 L 34.49686740231566,-0.756050908069669 L 34.49686590231568,-0.756026008069739 L 34.4968703023157,-0.756000708069783 L 34.4968698023157,-0.755982608069839 L 34.49687220231572,-0.755962608069885 L 34.496894502315705,-0.755971508069845 L 34.496922502315705,-0.755969608069836 L 34.49694120231572,-0.755968808069829 L 34.4969677023157,-0.755969408069813 L 34.4969908023157,-0.755967408069791 L 34.4970114023157,-0.75597000806979 L 34.49703950231569,-0.755977708069745 L 34.49705860231569,-0.75597860806973 L 34.49708340231569,-0.755976808069708 L 34.49710310231569,-0.755974308069715 L 34.49713120231568,-0.755967808069712 L 34.497135365245754,-0.7559675752742782 L 34.497135365245754,-0.7570173844481518 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.47611230229544,-0.792622307993901 L 34.47609650229542,-0.792636807993879 L 34.476082902295424,-0.792654507993829 L 34.4760695022954,-0.792674007993793 L 34.47605670229541,-0.792696107993763 L 34.47604750229539,-0.792716107993697 L 34.47603750229538,-0.792737607993666 L 34.476026002295356,-0.792755007993632 L 34.47601110229535,-0.79277280799359 L 34.47599670229533,-0.792792507993556 L 34.47598380229536,-0.792809107993529 L 34.47596900229532,-0.792821107993506 L 34.47595080229534,-0.792820207993518 L 34.475933302295324,-0.792827907993499 L 34.475924102295316,-0.792843607993477 L 34.47590680229531,-0.792859807993444 L 34.47589670229531,-0.792877907993412 L 34.4758944022953,-0.792899907993376 L 34.47587420229527,-0.792916007993335 L 34.47586810229527,-0.792936707993282 L 34.47585850229526,-0.792957507993244 L 34.47585330229524,-0.792979707993184 L 34.47585770229522,-0.793002507993132 L 34.47585860229523,-0.79302390799308 L 34.4758532022952,-0.793042707993045 L 34.47584300229519,-0.793060207993 L 34.47584020229518,-0.793079907992956 L 34.47582820229518,-0.793095207992939 L 34.475812802295174,-0.793112207992907 L 34.47579400229517,-0.793123907992879 L 34.475776002295156,-0.793140307992845 L 34.47576240229514,-0.793154707992832 L 34.47574900229514,-0.793173607992782 L 34.47573860229512,-0.793197707992731 L 34.47572570229512,-0.7932138079927 L 34.47571120229511,-0.793229407992681 L 34.475694102295094,-0.793251307992634 L 34.475678902295094,-0.793267507992608 L 34.475669002295085,-0.793284407992576 L 34.475654502295065,-0.793304107992529 L 34.47564180229506,-0.793319007992497 L 34.47563050229504,-0.793343707992459 L 34.47562220229503,-0.793365407992411 L 34.47561160229503,-0.793383307992358 L 34.475588102295035,-0.793382207992385 L 34.47556740229503,-0.793383607992383 L 34.47544760229497,-0.793500807992181 L 34.475448002294954,-0.79352530799212 L 34.47544560229493,-0.793548907992068 L 34.47544440229492,-0.793570107992018 L 34.47544310229492,-0.793601107991944 L 34.47543790229489,-0.793626607991876 L 34.47543390229488,-0.793648007991826 L 34.47542170229489,-0.793665407991807 L 34.47540120229486,-0.793677207991773 L 34.47538280229487,-0.793689507991783 L 34.475368302294854,-0.793702107991754 L 34.47536430229485,-0.793721807991714 L 34.47535490229483,-0.793741107991663 L 34.475341702294834,-0.793757007991634 L 34.47532500229482,-0.793770907991607 L 34.47531410229481,-0.793787107991565 L 34.475320102294816,-0.793767207991625 L 34.47530920229484,-0.793749307991673 L 34.47529270229484,-0.793738707991697 L 34.47527930229485,-0.793724407991745 L 34.47526220229486,-0.793718307991772 L 34.475249602294866,-0.793703207991827 L 34.47523510229487,-0.793690807991846 L 34.475214202294886,-0.793695307991867 L 34.475197902294866,-0.793703407991856 L 34.47518770229489,-0.793687607991886 L 34.475172502294896,-0.793671307991944 L 34.47515530229491,-0.793657907991993 L 34.4751346022949,-0.793660407992 L 34.47511590229492,-0.79364860799203 L 34.47511160229493,-0.793629607992076 L 34.47509870229493,-0.793616107992111 L 34.475081202294945,-0.793600407992182 L 34.47506520229496,-0.793588707992219 L 34.475055302294976,-0.793569307992262 L 34.47503490229497,-0.793556907992301 L 34.475020402294994,-0.793543807992352 L 34.475003802295014,-0.793529707992402 L 34.474998402295,-0.793512007992442 L 34.47497940229503,-0.793501907992475 L 34.47495830229503,-0.793495607992507 L 34.47493810229504,-0.793491607992518 L 34.474923102295044,-0.793471907992596 L 34.47490400229506,-0.793463207992608 L 34.47488140229508,-0.793454307992669 L 34.474864902295074,-0.793442607992692 L 34.474845402295074,-0.793444907992711 L 34.47483040229508,-0.793458207992679 L 34.474824202295046,-0.793475207992643 L 34.47479900229507,-0.793469607992681 L 34.47477910229507,-0.793474407992666 L 34.474757802295066,-0.793479607992669 L 34.47473580229506,-0.79347460799271 L 34.474714002295066,-0.793484807992675 L 34.47469110229507,-0.793499607992655 L 34.474670402295075,-0.79350230799268 L 34.47464990229506,-0.793511707992648 L 34.47463050229506,-0.793518807992645 L 34.474609202295035,-0.793533407992634 L 34.474586302295045,-0.793538207992634 L 34.47456320229506,-0.793532907992662 L 34.47454120229505,-0.793537307992662 L 34.474516002295054,-0.793535507992672 L 34.474490402295054,-0.793537007992703 L 34.47446130229506,-0.793544607992692 L 34.47443650229507,-0.793549507992688 L 34.47441330229507,-0.793548407992707 L 34.47439490229507,-0.793547107992741 L 34.47437640229507,-0.793543207992757 L 34.474364702295084,-0.793529407992804 L 34.474346002295086,-0.793519807992829 L 34.474318202295095,-0.793515707992854 L 34.4743146022951,-0.793494207992898 L 34.47433320229512,-0.793475907992929 L 34.47434830229513,-0.79346170799298 L 34.47436770229512,-0.79345770799296 L 34.47439390229513,-0.793447107992979 L 34.474410202295154,-0.793416707993042 L 34.474429102295154,-0.793393607993089 L 34.47444490229517,-0.793376707993115 L 34.47445710229516,-0.793359207993156 L 34.47446940229518,-0.793341607993191 L 34.4744789022952,-0.793321307993234 L 34.4744970022952,-0.793306507993253 L 34.4745147022952,-0.793285507993303 L 34.474520802295224,-0.793259707993351 L 34.47454100229523,-0.793241607993377 L 34.47455760229524,-0.793231407993385 L 34.47455850229525,-0.793207307993457 L 34.47456430229526,-0.793187507993494 L 34.474591402295275,-0.793166707993531 L 34.47461770229529,-0.79315230799354 L 34.4746371022953,-0.793137207993584 L 34.4746512022953,-0.793119707993607 L 34.474666402295306,-0.79309460799365 L 34.474678402295325,-0.793069207993703 L 34.474687302295344,-0.79304690799376 L 34.474700102295365,-0.793027807993808 L 34.47471940229537,-0.793016807993822 L 34.47473940229535,-0.793012207993813 L 34.47475110229536,-0.792990107993863 L 34.47476280229537,-0.792971407993903 L 34.474775402295386,-0.792953407993931 L 34.474787802295396,-0.792938307993971 L 34.474799602295406,-0.792919107993993 L 34.474810702295414,-0.792902007994023 L 34.47482400229542,-0.792886507994071 L 34.47483750229542,-0.792873907994081 L 34.47485890229543,-0.792866607994096 L 34.47487780229545,-0.792853907994104 L 34.47488870229544,-0.792839207994138 L 34.47489760229545,-0.792822607994185 L 34.47490830229547,-0.792806307994218 L 34.474916902295455,-0.792790007994241 L 34.474934402295496,-0.792773007994269 L 34.474954202295486,-0.792761107994287 L 34.474972502295486,-0.792751607994309 L 34.474994002295496,-0.792737707994333 L 34.4750041022955,-0.79272120799436 L 34.47501180229551,-0.792701807994402 L 34.47502980229552,-0.792681007994439 L 34.475050902295514,-0.792692507994402 L 34.475061102295506,-0.792714707994334 L 34.4750854022955,-0.792717607994303 L 34.475101902295506,-0.79270490799434 L 34.47510960229552,-0.792684207994385 L 34.47513280229552,-0.792674007994383 L 34.47514950229552,-0.792666407994393 L 34.47516360229554,-0.792651707994434 L 34.47517760229554,-0.792638607994456 L 34.47519000229552,-0.792663007994385 L 34.4751966022955,-0.792684707994321 L 34.47520120229548,-0.79270880799426 L 34.475209602295465,-0.792731307994206 L 34.475223502295464,-0.792752207994149 L 34.47523230229544,-0.792777807994064 L 34.475225602295424,-0.792801807994023 L 34.47522570229542,-0.792826707993965 L 34.47523390229539,-0.792849307993889 L 34.47524830229539,-0.792864807993859 L 34.47527590229537,-0.792878907993807 L 34.47530080229538,-0.792858407993835 L 34.4752962022954,-0.792829507993898 L 34.47528830229542,-0.79280350799397 L 34.475283702295435,-0.792775107994034 L 34.47529190229546,-0.792746107994115 L 34.47531290229546,-0.792733507994126 L 34.47532420229547,-0.792718907994157 L 34.475324902295476,-0.792696907994217 L 34.4753190022955,-0.792674907994259 L 34.475312702295525,-0.792654107994315 L 34.47530980229553,-0.792632707994384 L 34.47531780229553,-0.792608307994427 L 34.475319902295546,-0.792584107994488 L 34.47533600229555,-0.792567207994513 L 34.47535300229558,-0.792556007994529 L 34.475367402295575,-0.79254060799457 L 34.47537600229559,-0.792521907994599 L 34.47539060229559,-0.792501307994634 L 34.475404602295605,-0.792489907994669 L 34.47541320229561,-0.792473607994697 L 34.475424402295616,-0.792456507994733 L 34.47543590229563,-0.792442107994763 L 34.47545470229562,-0.792431807994781 L 34.47547180229564,-0.79241780799479 L 34.47548760229565,-0.792400407994837 L 34.47550370229564,-0.79239130799484 L 34.475519502295654,-0.792380007994868 L 34.47553540229567,-0.792366807994869 L 34.47554950229568,-0.792353907994897 L 34.475563402295684,-0.792339607994933 L 34.47557800229569,-0.792316507994981 L 34.4755851022957,-0.792298707995006 L 34.47559160229571,-0.792279007995068 L 34.475605202295704,-0.792263007995084 L 34.47562080229573,-0.792250207995117 L 34.47563370229574,-0.792229207995155 L 34.47565690229573,-0.792215207995175 L 34.47567760229574,-0.792201607995188 L 34.47569720229575,-0.792188907995209 L 34.475716302295766,-0.792178507995225 L 34.47573330229576,-0.792168907995234 L 34.47574940229576,-0.792158107995242 L 34.47576700229577,-0.792151307995262 L 34.47578690229579,-0.792138107995272 L 34.47580340229576,-0.792153207995231 L 34.47581690229574,-0.792173907995168 L 34.47582730229574,-0.792194107995117 L 34.47583700229572,-0.792210007995069 L 34.47584850229572,-0.79222650799503 L 34.47586170229571,-0.792241407994978 L 34.47587430229569,-0.792260107994926 L 34.47588830229567,-0.792271407994896 L 34.47590680229568,-0.792263107994892 L 34.47592450229566,-0.792287307994821 L 34.47593560229566,-0.792304007994772 L 34.47594940229565,-0.792316207994731 L 34.475964302295644,-0.792326407994711 L 34.47604370229558,-0.79240980799445 L 34.47604360229556,-0.792428007994421 L 34.476039802295546,-0.792447907994366 L 34.47605120229554,-0.79246450799433 L 34.47605910229552,-0.792488307994243 L 34.476069102295504,-0.792508607994195 L 34.4760850022955,-0.792519607994163 L 34.4761004022955,-0.792534007994129 L 34.47611580229548,-0.792554007994062 L 34.476127102295465,-0.792575907994005 L 34.47612670229545,-0.792601807993935 L 34.47611230229544,-0.792622307993901 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.482940602295244,-0.791646107991983 L 34.48294110229523,-0.791666207991935 L 34.48294430229521,-0.79168910799187 L 34.48294090229521,-0.791713907991817 L 34.48294320229518,-0.79173420799177 L 34.48295200229517,-0.791757507991708 L 34.48295590229516,-0.791777107991654 L 34.48296030229514,-0.791795707991593 L 34.48296680229514,-0.791815507991561 L 34.482974302295126,-0.791833307991492 L 34.48297830229511,-0.791854407991454 L 34.48298210229509,-0.791882107991377 L 34.48297660229508,-0.791907907991311 L 34.48297950229506,-0.791927907991267 L 34.482978802295044,-0.791951407991221 L 34.48297660229505,-0.791971807991173 L 34.48297900229502,-0.791994307991112 L 34.482984102295006,-0.792015707991055 L 34.48299130229499,-0.792040807990997 L 34.482996602294975,-0.792059407990932 L 34.48300110229497,-0.792083107990874 L 34.48299570229496,-0.792100707990839 L 34.48299080229494,-0.7921195079908 L 34.48298920229493,-0.792138607990752 L 34.48298980229492,-0.792164707990683 L 34.482994702294896,-0.792183107990649 L 34.48299900229489,-0.792208007990583 L 34.483000202294875,-0.792226407990523 L 34.483003302294875,-0.792252807990459 L 34.483002302294835,-0.792284607990396 L 34.48300220229483,-0.792307207990334 L 34.483006302294804,-0.792331307990265 L 34.4830112022948,-0.792352707990217 L 34.48301650229479,-0.792377107990156 L 34.48301860229478,-0.792397207990113 L 34.483023902294754,-0.792423707990031 L 34.48302170229473,-0.792452107989966 L 34.48302100229473,-0.792482607989898 L 34.4830277022947,-0.792504207989849 L 34.48303000229468,-0.792530107989784 L 34.48303240229467,-0.792552507989728 L 34.483037302294655,-0.792570007989668 L 34.48304520229464,-0.792592307989613 L 34.48303920229464,-0.792613307989563 L 34.48303430229461,-0.792632307989525 L 34.483036002294604,-0.792650307989493 L 34.48303810229459,-0.792671207989417 L 34.48303550229456,-0.792693107989381 L 34.48303410229457,-0.792713107989338 L 34.48303780229456,-0.792733607989287 L 34.48304630229454,-0.79275730798922 L 34.48305040229453,-0.792782707989154 L 34.483048202294505,-0.792806507989092 L 34.483039002294504,-0.792823507989057 L 34.483045502294495,-0.792842907989013 L 34.48305580229448,-0.79286160798895 L 34.48306720229448,-0.792883307988893 L 34.483071602294444,-0.792909807988822 L 34.48306330229442,-0.792932507988771 L 34.48306550229442,-0.792952507988726 L 34.483071802294404,-0.792977807988659 L 34.48307510229439,-0.792996607988616 L 34.48306890229438,-0.793015307988577 L 34.48306640229437,-0.793038907988534 L 34.48306220229434,-0.793060707988464 L 34.483073202294335,-0.793089207988393 L 34.483074502294315,-0.793108707988354 L 34.483071802294305,-0.7931279079883 L 34.4830630022943,-0.793155207988246 L 34.48306290229427,-0.793185307988159 L 34.48307810229426,-0.793202607988114 L 34.48308610229426,-0.793227507988058 L 34.48309050229423,-0.793246007987998 L 34.483104302294215,-0.793273807987928 L 34.48311850229421,-0.793291007987871 L 34.48312630229419,-0.793317307987809 L 34.48311980229417,-0.793338907987759 L 34.483121102294156,-0.793366207987681 L 34.48312140229413,-0.793388107987642 L 34.48313470229413,-0.793407307987579 L 34.48313710229412,-0.793425407987534 L 34.4831382022941,-0.793444107987506 L 34.48314420229408,-0.793465407987434 L 34.48313270229408,-0.793485907987393 L 34.483124402294074,-0.793504807987358 L 34.483127202294064,-0.793523907987303 L 34.483133002294046,-0.79354170798726 L 34.48313260229402,-0.793567507987204 L 34.48313250229402,-0.79359050798714 L 34.48314170229399,-0.793615107987084 L 34.48314700229398,-0.793640307987003 L 34.48314280229397,-0.793662907986948 L 34.48314480229394,-0.79369110798689 L 34.48314760229394,-0.793718907986829 L 34.48314650229391,-0.793749007986745 L 34.48312970229391,-0.793771507986701 L 34.48311390229388,-0.793799107986648 L 34.483106802293875,-0.793828107986578 L 34.48310260229386,-0.793857407986516 L 34.483110802293844,-0.793881907986443 L 34.483123202293825,-0.793905407986379 L 34.48313360229381,-0.793923807986332 L 34.48313210229379,-0.793951407986257 L 34.483117102293775,-0.793969707986235 L 34.483098002293765,-0.79398260798621 L 34.48307750229378,-0.793979507986233 L 34.483062702293786,-0.793968207986275 L 34.4830382022938,-0.793964407986298 L 34.48301930229379,-0.793953307986325 L 34.483000602293814,-0.793935007986398 L 34.48297760229383,-0.793928907986422 L 34.482951902293834,-0.793923507986449 L 34.482933802293836,-0.793918607986465 L 34.48291650229383,-0.793930707986449 L 34.48290530229382,-0.793949007986419 L 34.48288590229382,-0.793955707986411 L 34.48286720229381,-0.793970407986377 L 34.48284460229381,-0.7939713079864 L 34.48282250229382,-0.793970607986415 L 34.48280320229382,-0.793978807986409 L 34.482781902293816,-0.793981507986413 L 34.48275850229383,-0.793979307986447 L 34.482737202293826,-0.793984307986439 L 34.48272100229381,-0.793999407986412 L 34.48269830229383,-0.793985707986449 L 34.48268910229384,-0.793960707986519 L 34.482687402293855,-0.793939907986563 L 34.482680202293864,-0.793913907986652 L 34.48267690229388,-0.793893007986687 L 34.48267900229388,-0.79387260798675 L 34.48267830229391,-0.793852107986799 L 34.482674802293936,-0.793827107986865 L 34.48266660229394,-0.793804107986913 L 34.48266560229395,-0.793782807986968 L 34.482663602293975,-0.793764107987019 L 34.48266080229397,-0.793742607987062 L 34.48265540229399,-0.793725107987116 L 34.482642702294,-0.793695907987192 L 34.48263750229402,-0.793676007987236 L 34.48263910229404,-0.7936538079873 L 34.482648302294045,-0.793634107987341 L 34.482642402294076,-0.793611007987396 L 34.482633802294075,-0.793591807987443 L 34.48262500229408,-0.79356580798752 L 34.482623402294095,-0.793544007987585 L 34.48261380229412,-0.793526007987619 L 34.48261340229412,-0.793501607987674 L 34.482616802294146,-0.793479907987729 L 34.48261530229417,-0.793450307987804 L 34.482613702294174,-0.793430907987851 L 34.48260980229419,-0.793404507987906 L 34.4826076022942,-0.793385707987956 L 34.48261590229423,-0.793362007988017 L 34.48261850229422,-0.793343207988073 L 34.48262010229425,-0.793308907988159 L 34.48260670229426,-0.793286607988195 L 34.48258970229428,-0.793271607988249 L 34.48258330229429,-0.793247207988332 L 34.482584202294305,-0.793221007988375 L 34.48257990229431,-0.793200107988436 L 34.482563602294334,-0.793172707988517 L 34.48257600229435,-0.793151007988542 L 34.482557902294374,-0.793120107988645 L 34.48254410229439,-0.793097107988701 L 34.4825409022944,-0.793065707988781 L 34.482526402294425,-0.793039507988858 L 34.48251910229443,-0.793016707988925 L 34.48252000229446,-0.792997407988973 L 34.482528702294466,-0.79297890798901 L 34.48253190229447,-0.79295420798907 L 34.48252480229449,-0.792936707989103 L 34.4825144022945,-0.792917707989156 L 34.482514102294516,-0.79288880798922 L 34.48251200229453,-0.792869907989268 L 34.482519702294546,-0.792838307989347 L 34.482546402294545,-0.792832207989332 L 34.482571002294556,-0.792826807989347 L 34.482593802294566,-0.792817107989362 L 34.48261770229454,-0.792826807989316 L 34.482643202294554,-0.792828707989301 L 34.48266720229455,-0.792820307989294 L 34.48268820229455,-0.792819107989299 L 34.48270700229453,-0.792833907989237 L 34.48272960229452,-0.792842807989202 L 34.482743602294526,-0.792825007989239 L 34.48275290229454,-0.792805607989278 L 34.482738902294564,-0.792788907989323 L 34.48272710229456,-0.792770407989391 L 34.48271380229458,-0.792752707989439 L 34.48271440229459,-0.792730807989498 L 34.48272340229461,-0.792714407989517 L 34.48272480229462,-0.792687507989597 L 34.482725602294636,-0.792663807989643 L 34.48272570229465,-0.792643307989695 L 34.48272500229467,-0.792620307989755 L 34.48272240229468,-0.792596207989805 L 34.4827183022947,-0.792565107989892 L 34.482720702294706,-0.792543407989928 L 34.482723002294726,-0.792517807989992 L 34.48271870229474,-0.792492207990058 L 34.48270630229475,-0.792473507990112 L 34.48271800229478,-0.792450907990156 L 34.48271700229479,-0.792424707990232 L 34.4827068022948,-0.79240040799028 L 34.48270250229482,-0.792376507990349 L 34.482698502294845,-0.792354207990395 L 34.482695202294856,-0.792322007990504 L 34.48269260229486,-0.792303507990549 L 34.48268510229488,-0.792281707990603 L 34.48269740229488,-0.792263507990645 L 34.4826962022949,-0.792241407990687 L 34.482691802294916,-0.792222107990746 L 34.48268390229493,-0.792197207990806 L 34.48266700229494,-0.792175107990858 L 34.48265330229497,-0.792150407990936 L 34.48264490229498,-0.792123007991004 L 34.482638602295005,-0.792096207991081 L 34.48264330229501,-0.792072707991139 L 34.482636202295026,-0.792046107991189 L 34.48263630229505,-0.792018607991274 L 34.48264960229507,-0.791989607991333 L 34.48264100229508,-0.791969807991381 L 34.48262950229509,-0.791944107991449 L 34.48261970229512,-0.791924207991499 L 34.48260990229512,-0.79190390799156 L 34.48261150229515,-0.791882707991603 L 34.48263140229515,-0.791869307991633 L 34.48265200229515,-0.791853307991653 L 34.48267280229515,-0.791853707991629 L 34.48269520229514,-0.791864607991603 L 34.48271220229511,-0.791892607991522 L 34.48273920229511,-0.791899507991485 L 34.4827656022951,-0.791903807991448 L 34.4827946022951,-0.791895407991456 L 34.48280890229512,-0.791868507991514 L 34.48280770229513,-0.791841307991584 L 34.48280600229515,-0.791817107991641 L 34.482804402295166,-0.791788507991729 L 34.482798702295185,-0.791761407991795 L 34.4827969022952,-0.791730007991864 L 34.48279630229522,-0.791710907991895 L 34.48279730229524,-0.791692307991952 L 34.48281000229526,-0.791655107992033 L 34.48280560229527,-0.791622607992105 L 34.482793202295284,-0.791598807992177 L 34.4827975022953,-0.791573107992243 L 34.48280310229532,-0.791542207992314 L 34.482807402295336,-0.791524307992355 L 34.48281100229536,-0.791491207992438 L 34.48288810229537,-0.791454907992467 L 34.48290910229536,-0.791465107992429 L 34.482927102295356,-0.791470507992406 L 34.48292910229534,-0.791488507992357 L 34.48293110229534,-0.791510307992312 L 34.4829359022953,-0.791531007992257 L 34.4829369022953,-0.791553507992198 L 34.48293890229529,-0.791572107992154 L 34.48294340229528,-0.791595307992096 L 34.48294370229526,-0.791620507992034 L 34.482940602295244,-0.791646107991983 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.4752889023009,-0.783965108015417 L 34.47527850230092,-0.783946908015469 L 34.475262402300906,-0.783929108015515 L 34.47524620230093,-0.783906308015591 L 34.47524940230094,-0.783887208015623 L 34.47526970230094,-0.783879108015632 L 34.47528730230095,-0.783872608015649 L 34.475310202300946,-0.783862908015653 L 34.47532820230096,-0.783857108015655 L 34.47534710230096,-0.783846608015669 L 34.475372402300955,-0.783835608015688 L 34.47539430230095,-0.783825508015681 L 34.47541490230096,-0.783813708015712 L 34.47543510230098,-0.783795308015737 L 34.47545430230099,-0.783779108015779 L 34.47547240230099,-0.783764508015778 L 34.475490802300996,-0.783753808015798 L 34.47550890230101,-0.783739908015829 L 34.47552220230101,-0.783726508015859 L 34.47553570230101,-0.783709108015886 L 34.47555040230103,-0.783697308015901 L 34.475565602301046,-0.783686408015917 L 34.47558630230104,-0.783670608015931 L 34.47560470230104,-0.78365640801596 L 34.47563280230104,-0.783647508015974 L 34.47565170230104,-0.783646508015956 L 34.47567080230104,-0.783642208015955 L 34.47568740230104,-0.783633508015981 L 34.47570290230106,-0.783623208015991 L 34.47571870230106,-0.783612608016012 L 34.47573270230107,-0.783601008016028 L 34.475751002301074,-0.783593108016038 L 34.475769302301075,-0.783587008016028 L 34.47578650230107,-0.783581608016025 L 34.475810402301065,-0.783578408016027 L 34.47583730230107,-0.78357290801602 L 34.47585900230106,-0.783572808016006 L 34.47588670230106,-0.783567508015997 L 34.475906702301074,-0.783563208016004 L 34.47592360230107,-0.783553508016028 L 34.47594260230107,-0.783543208016033 L 34.47596600230108,-0.783534008016034 L 34.47598840230108,-0.783527208016041 L 34.476010102301075,-0.783524808016021 L 34.47602920230107,-0.783525908016018 L 34.47605420230108,-0.783525508015992 L 34.47607220230107,-0.783521008015994 L 34.47608890230107,-0.783513608016019 L 34.476108702301076,-0.783504408016031 L 34.476128302301085,-0.783492108016044 L 34.47614450230108,-0.783480308016059 L 34.47616930230109,-0.783469408016074 L 34.476185802301096,-0.783459708016076 L 34.47620800230111,-0.783451308016083 L 34.47622870230111,-0.783443908016099 L 34.4762486023011,-0.783438908016084 L 34.4762704023011,-0.783437508016092 L 34.4762891023011,-0.783437608016065 L 34.47631570230109,-0.783434308016056 L 34.47633960230112,-0.783432508016057 L 34.47636660230109,-0.78342720801606 L 34.47640000230109,-0.78342360801604 L 34.476423202301085,-0.783420108016016 L 34.476442802301094,-0.783421908016015 L 34.47646840230108,-0.783422208015994 L 34.47649000230109,-0.783414108016003 L 34.476507002301084,-0.783405908016006 L 34.4765287023011,-0.783397108016019 L 34.47654720230109,-0.783393608016006 L 34.4765657023011,-0.783385508016025 L 34.476581802301105,-0.783375608016052 L 34.47660210230111,-0.783367008016046 L 34.47666230230112,-0.783333608016078 L 34.47667320230113,-0.783318408016124 L 34.47667970230112,-0.783336408016069 L 34.476694902301105,-0.783352808016029 L 34.4766964023011,-0.783375208015963 L 34.47669380230108,-0.783393008015922 L 34.47670680230106,-0.783414408015869 L 34.476718002301055,-0.783429808015835 L 34.47673140230104,-0.783447308015766 L 34.47673880230104,-0.783465508015731 L 34.476743602301035,-0.783486108015652 L 34.47674430230101,-0.783505708015633 L 34.476750002301,-0.783522808015578 L 34.476762202300975,-0.783538108015529 L 34.47677090230096,-0.783563208015463 L 34.476776302300955,-0.783580808015421 L 34.47678730230094,-0.783605608015351 L 34.476788302300925,-0.78362660801531 L 34.47680030230092,-0.783645008015246 L 34.4768061023009,-0.783665408015196 L 34.47680500230088,-0.7836999080151 L 34.476808402300875,-0.783720508015047 L 34.476818102300854,-0.783740308015008 L 34.47682900230084,-0.783766408014919 L 34.476850202300824,-0.783778408014896 L 34.47685700230081,-0.783795808014847 L 34.476855702300796,-0.783816908014797 L 34.47684050230078,-0.783831508014778 L 34.47685140230079,-0.783855108014696 L 34.476862302300766,-0.783879208014635 L 34.476873002300735,-0.783900808014573 L 34.47688570230072,-0.783916808014531 L 34.476891102300726,-0.783934908014478 L 34.476895102300716,-0.783953608014441 L 34.476905202300685,-0.783976408014377 L 34.47690160230068,-0.783994908014335 L 34.476903502300665,-0.78401320801429 L 34.476905002300654,-0.784033208014237 L 34.47689950230064,-0.784051508014185 L 34.47689930230063,-0.784070408014151 L 34.47690670230063,-0.784087208014118 L 34.4769152023006,-0.784108008014044 L 34.476918402300605,-0.784133108013998 L 34.47692290230058,-0.784156308013927 L 34.476929802300575,-0.784178408013875 L 34.47693150230056,-0.784196808013828 L 34.476924802300545,-0.784215508013786 L 34.47693410230053,-0.784240908013711 L 34.47694530230051,-0.784263408013649 L 34.47695620230049,-0.784288508013593 L 34.476959502300474,-0.784307908013538 L 34.47695800230047,-0.784331608013467 L 34.47696830230047,-0.784348808013434 L 34.476973302300436,-0.78437110801337 L 34.476976102300426,-0.784389308013334 L 34.476968702300404,-0.784419008013255 L 34.476977802300404,-0.784446708013194 L 34.476984502300375,-0.784465208013141 L 34.476997102300366,-0.784481708013084 L 34.47700730230034,-0.784506808013036 L 34.47701630230035,-0.784526308012959 L 34.47702030230033,-0.784547408012909 L 34.47703050230031,-0.784567608012858 L 34.477043302300295,-0.784584508012812 L 34.47705640230029,-0.784600908012768 L 34.477065402300276,-0.784622708012714 L 34.47707260230026,-0.784642008012659 L 34.477083702300234,-0.78465980801261 L 34.47709420230024,-0.784682808012542 L 34.47708550230022,-0.78470410801251 L 34.47708720230021,-0.784724308012449 L 34.4770848023002,-0.784745108012396 L 34.47708540230019,-0.784769808012332 L 34.47708910230017,-0.784790908012293 L 34.47709740230016,-0.78480950801223 L 34.477109702300154,-0.784829108012166 L 34.47712330230012,-0.784851608012114 L 34.47712070230011,-0.784871208012067 L 34.47710830230011,-0.78488780801203 L 34.47710660230009,-0.784907908011986 L 34.477108502300084,-0.784929008011936 L 34.47710810230007,-0.784954808011886 L 34.47712070230005,-0.784977508011807 L 34.47713630230003,-0.78499840801175 L 34.47714580230002,-0.785023608011695 L 34.4771435023,-0.785045908011616 L 34.47714350229999,-0.785070908011573 L 34.47713900229997,-0.785100608011502 L 34.477125402299954,-0.785118808011454 L 34.47713330229994,-0.78514350801139 L 34.477144202299925,-0.785158008011359 L 34.47715160229992,-0.78518030801129 L 34.47717130229991,-0.785204408011227 L 34.47718620229988,-0.785226608011158 L 34.47719720229987,-0.785242408011118 L 34.477196502299854,-0.785273708011045 L 34.477185002299855,-0.785289708011001 L 34.47716290229985,-0.785297208010996 L 34.477141602299845,-0.785307108010996 L 34.47711960229984,-0.785307408011019 L 34.47709430229983,-0.785317808010988 L 34.477075202299844,-0.785322308011 L 34.47705250229984,-0.785323908011008 L 34.47703230229984,-0.785331508011004 L 34.47700700229984,-0.785343008011005 L 34.476988802299836,-0.785350208010983 L 34.47696830229984,-0.785350408011001 L 34.476946802299835,-0.785356408010996 L 34.47692200229985,-0.785347408011045 L 34.47691540229984,-0.785365608010999 L 34.47689570229985,-0.785348708011054 L 34.47687040229985,-0.785344908011073 L 34.47686170229985,-0.785364708011031 L 34.47684010229984,-0.785369908011026 L 34.47682300229986,-0.785358808011075 L 34.47679630229984,-0.785353208011098 L 34.476771502299854,-0.785356908011109 L 34.476748602299864,-0.7853685080111 L 34.476727202299834,-0.785384708011065 L 34.47671880229983,-0.785401408011028 L 34.47669380229983,-0.785406908011032 L 34.476671502299844,-0.785397808011078 L 34.476649202299846,-0.785394808011096 L 34.47662460229985,-0.785390308011109 L 34.476609202299855,-0.785401308011112 L 34.476589502299845,-0.785406808011102 L 34.47656850229985,-0.785408508011113 L 34.47655040229985,-0.78540950801111 L 34.47653290229984,-0.785420208011107 L 34.47650750229984,-0.785428108011096 L 34.47648840229984,-0.785431608011103 L 34.47646910229984,-0.785432708011112 L 34.47645120229984,-0.785430708011129 L 34.47642490229985,-0.785422108011165 L 34.476410302299854,-0.785433008011161 L 34.47638980229984,-0.785441408011157 L 34.47636580229985,-0.785446608011143 L 34.47633520229985,-0.785442708011169 L 34.476316102299855,-0.785434108011208 L 34.47630480229986,-0.785456508011145 L 34.47627990229984,-0.785457108011175 L 34.47625200229985,-0.785460808011176 L 34.47624250229985,-0.785481508011146 L 34.47622840229983,-0.785493108011126 L 34.47620940229983,-0.785498508011121 L 34.47618690229984,-0.785505808011113 L 34.47616050229982,-0.785519708011104 L 34.47613570229984,-0.785510208011128 L 34.47612070229984,-0.785523308011114 L 34.47610250229984,-0.785525908011129 L 34.476076202299815,-0.785551208011074 L 34.47606360229981,-0.785565408011044 L 34.47605160229982,-0.785548108011106 L 34.476031402299824,-0.785544808011116 L 34.47600510229983,-0.785548208011123 L 34.47597930229981,-0.785560708011117 L 34.47596410229981,-0.785571208011085 L 34.475954402299834,-0.785548208011154 L 34.47594300229985,-0.785533008011203 L 34.475936202299856,-0.785512408011259 L 34.47593000229987,-0.785494108011315 L 34.47592120229988,-0.785475708011352 L 34.4759083022999,-0.785456208011422 L 34.4758956022999,-0.78544020801145 L 34.47588860229992,-0.785420008011503 L 34.475879702299935,-0.785393708011583 L 34.47586730229995,-0.785374808011635 L 34.47586000229997,-0.785353908011702 L 34.47585610229998,-0.785334508011737 L 34.47584900229998,-0.78531600801179 L 34.475838602300016,-0.785293508011846 L 34.47582490230001,-0.785279608011881 L 34.47581270230003,-0.785260208011939 L 34.47580060230004,-0.785241508012003 L 34.47579660230007,-0.785217608012059 L 34.47579800230007,-0.785199408012104 L 34.47579450230008,-0.785177908012158 L 34.47578500230011,-0.785157508012227 L 34.475775102300105,-0.785139808012261 L 34.47576810230012,-0.7851228080123 L 34.47576370230013,-0.78510160801237 L 34.47575790230014,-0.785080708012408 L 34.47574910230015,-0.785059908012478 L 34.475740502300184,-0.785040608012529 L 34.475725902300184,-0.785021708012591 L 34.47571460230021,-0.784998408012647 L 34.475708502300215,-0.78497890801269 L 34.475700402300234,-0.784958208012746 L 34.47569710230025,-0.784935208012815 L 34.475694602300244,-0.784908308012888 L 34.475683302300276,-0.78489010801292 L 34.47567580230029,-0.784867008012979 L 34.4756697023003,-0.784846608013049 L 34.475662102300326,-0.784817408013115 L 34.47565060230033,-0.784802408013158 L 34.47563700230033,-0.784785008013206 L 34.47562660230035,-0.784763308013268 L 34.47561720230038,-0.784735408013338 L 34.475612502300386,-0.784713508013395 L 34.475603302300414,-0.784691908013462 L 34.475585902300416,-0.784675808013513 L 34.475580302300436,-0.784656608013554 L 34.475571402300446,-0.784639508013603 L 34.47556690230045,-0.78462050801365 L 34.47555820230046,-0.784596208013709 L 34.475551602300484,-0.784569508013789 L 34.47554490230051,-0.784544408013852 L 34.475535002300525,-0.7845292080139 L 34.47551830230052,-0.784512708013938 L 34.47550760230054,-0.784495208013985 L 34.47550490230054,-0.784475508014042 L 34.475495002300576,-0.784448708014121 L 34.47548600230058,-0.784429108014173 L 34.475473702300604,-0.784409608014228 L 34.47546420230061,-0.784386708014291 L 34.47545050230063,-0.784366608014339 L 34.475446002300636,-0.78434760801439 L 34.47544920230066,-0.784328308014431 L 34.475446502300656,-0.784310308014478 L 34.47543230230067,-0.784291508014541 L 34.47541690230069,-0.784278908014575 L 34.475407002300685,-0.784263208014618 L 34.47536540230077,-0.784180308014843 L 34.47535850230077,-0.784158408014909 L 34.475348502300776,-0.784137708014957 L 34.47533860230077,-0.784119008015011 L 34.4753282023008,-0.784094408015076 L 34.47531890230081,-0.784073208015138 L 34.475315202300834,-0.784046908015203 L 34.47530890230085,-0.784027708015242 L 34.47530310230086,-0.784003408015301 L 34.47529660230087,-0.783985908015358 L 34.4752889023009,-0.783965108015417 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.474486602300566,-0.784630408014302 L 34.474460702300576,-0.784634508014311 L 34.47444090230057,-0.784638108014311 L 34.47441960230058,-0.784645308014322 L 34.474397202300565,-0.784650808014314 L 34.47437180230058,-0.784651608014331 L 34.47434230230058,-0.784650108014342 L 34.474314902300584,-0.784660408014337 L 34.474291102300576,-0.784675308014325 L 34.474266202300555,-0.784686508014307 L 34.47424170230055,-0.784698008014305 L 34.47421510230056,-0.784708408014275 L 34.47418710230056,-0.784706908014315 L 34.474158402300574,-0.784703508014329 L 34.47413450230059,-0.784691708014387 L 34.47411570230058,-0.784676808014426 L 34.4741020023006,-0.784658508014481 L 34.47409260230062,-0.784636308014529 L 34.47408310230063,-0.784616208014602 L 34.474070702300644,-0.78459520801465 L 34.47406240230066,-0.784576908014707 L 34.47405160230067,-0.784560808014749 L 34.47403670230067,-0.784542508014798 L 34.47403060230069,-0.784519008014875 L 34.474019502300706,-0.784494308014932 L 34.4740113023007,-0.784473308014982 L 34.47400100230073,-0.784452108015035 L 34.47399090230074,-0.784430208015094 L 34.473985502300756,-0.784408008015163 L 34.47397820230078,-0.784390008015202 L 34.473972302300794,-0.784370408015255 L 34.47396430230081,-0.784346808015329 L 34.47395690230082,-0.784318808015401 L 34.47394360230083,-0.784295908015468 L 34.47392630230087,-0.784267708015533 L 34.47390340230087,-0.784250508015607 L 34.47389260230089,-0.78422940801565 L 34.47388380230088,-0.784245308015623 L 34.473880702300896,-0.784224508015683 L 34.4738685023009,-0.784203208015725 L 34.47386000230092,-0.784181908015803 L 34.47385260230096,-0.784157108015854 L 34.47385110230095,-0.784132608015917 L 34.47384900230096,-0.784113508015961 L 34.47384040230098,-0.784090708016027 L 34.47383150230099,-0.784069608016078 L 34.47383010230101,-0.784048908016147 L 34.47383130230103,-0.784018208016214 L 34.473823002301046,-0.783987608016283 L 34.47381400230106,-0.783961408016347 L 34.473807602301086,-0.783934608016421 L 34.4737928023011,-0.783912208016487 L 34.47378020230111,-0.783886108016554 L 34.473770402301135,-0.783862208016624 L 34.47376040230115,-0.783837308016697 L 34.473747402301164,-0.783815808016746 L 34.47374080230117,-0.78379320801681 L 34.4737293023012,-0.783770908016868 L 34.473717402301205,-0.78375030801693 L 34.47370710230122,-0.783729608016982 L 34.47370040230123,-0.78370980801703 L 34.473687502301246,-0.783693208017081 L 34.473678202301265,-0.783667208017153 L 34.47367570230128,-0.78364140801722 L 34.47367880230129,-0.783622508017273 L 34.47367890230131,-0.783599008017313 L 34.473666702301315,-0.783575008017382 L 34.47364840230133,-0.78356590801741 L 34.47362790230132,-0.78357040801742 L 34.47360460230133,-0.783583008017393 L 34.473584802301325,-0.783581708017403 L 34.47356420230134,-0.783569608017462 L 34.47354000230134,-0.783568008017483 L 34.473518302301336,-0.783586108017443 L 34.47349680230133,-0.783603108017422 L 34.473476002301304,-0.783623508017376 L 34.4734585023013,-0.783645208017346 L 34.473437602301296,-0.783665608017317 L 34.4734143023013,-0.783679208017299 L 34.47339010230128,-0.783682308017294 L 34.47336770230129,-0.783684508017316 L 34.473343902301295,-0.78369040801731 L 34.47332570230129,-0.783696308017305 L 34.47330440230129,-0.783702008017294 L 34.47328220230128,-0.783711708017303 L 34.473256002301284,-0.783713708017311 L 34.47323630230128,-0.783725508017292 L 34.47321550230127,-0.783731708017275 L 34.47319410230127,-0.783737108017275 L 34.47317510230128,-0.783735108017297 L 34.47315890230127,-0.783743908017298 L 34.473139002301274,-0.78374820801729 L 34.473112202301266,-0.783753808017293 L 34.47308650230128,-0.783755508017312 L 34.473061302301275,-0.783764608017308 L 34.47304020230127,-0.78377500801729 L 34.47301600230128,-0.783779908017295 L 34.47299600230128,-0.783783108017309 L 34.47297530230126,-0.783794908017296 L 34.47295900230126,-0.783807608017252 L 34.472943502301256,-0.78382250801725 L 34.47292410230125,-0.783828408017233 L 34.472905302301264,-0.783835108017243 L 34.472887402301254,-0.783838708017237 L 34.47286590230126,-0.783839408017252 L 34.47284230230125,-0.783837708017263 L 34.47282090230126,-0.783840908017263 L 34.47280080230125,-0.783854608017243 L 34.47277950230126,-0.783852008017284 L 34.47276350230127,-0.783838708017303 L 34.472754402301284,-0.783819108017378 L 34.47274090230129,-0.783798708017422 L 34.47273130230131,-0.783776208017475 L 34.47272630230132,-0.783757408017535 L 34.47271270230132,-0.783735708017597 L 34.47270750230134,-0.783714608017639 L 34.472700202301354,-0.7836936080177 L 34.47269350230137,-0.783668408017769 L 34.47268920230138,-0.783642208017836 L 34.4726721023014,-0.783631008017871 L 34.47266280230142,-0.78360600801794 L 34.47265840230143,-0.783581108017999 L 34.47264100230145,-0.78356040801807 L 34.472625902301466,-0.783540108018123 L 34.472621002301466,-0.783520908018186 L 34.47261470230149,-0.783497408018231 L 34.47260840230149,-0.783473408018283 L 34.47260650230151,-0.783447308018354 L 34.47260170230154,-0.783423908018426 L 34.47259370230154,-0.783400808018485 L 34.47258610230157,-0.783377208018543 L 34.47257370230158,-0.783357008018594 L 34.47255970230161,-0.783339008018653 L 34.47255100230161,-0.7833195080187 L 34.47254190230163,-0.78329700801878 L 34.47252860230163,-0.783275008018836 L 34.47251990230165,-0.783251708018897 L 34.47251140230167,-0.783228008018952 L 34.47250620230169,-0.783205108019011 L 34.4725028023017,-0.783181108019079 L 34.472493302301714,-0.783157708019133 L 34.47248500230172,-0.783134408019208 L 34.472474302301755,-0.783109208019262 L 34.47246340230177,-0.783083308019334 L 34.47245340230178,-0.783060608019399 L 34.47244290230179,-0.783037408019471 L 34.47243250230181,-0.783015008019504 L 34.47242910230183,-0.78299070801958 L 34.472423002301845,-0.78296720801963 L 34.472419402301874,-0.782939408019707 L 34.47241540230188,-0.782910708019777 L 34.47240550230189,-0.782885708019851 L 34.47239610230191,-0.782863608019895 L 34.47238590230192,-0.782838708019965 L 34.472376202301945,-0.782812608020048 L 34.472371502301954,-0.782790808020095 L 34.47236940230196,-0.782767308020169 L 34.472363802302,-0.782742908020227 L 34.472361002302,-0.782722308020273 L 34.47235550230203,-0.782699508020333 L 34.472333902302026,-0.782676008020405 L 34.472328402302054,-0.78265880802044 L 34.47234380230204,-0.782642808020476 L 34.47236650230205,-0.782636708020476 L 34.472390502302055,-0.782633308020471 L 34.47241450230206,-0.782623008020485 L 34.47243300230206,-0.782612008020498 L 34.47245350230206,-0.782602808020507 L 34.472470902302064,-0.782589508020518 L 34.47249020230208,-0.782578108020543 L 34.472511902302074,-0.782570408020551 L 34.47253460230208,-0.782559808020552 L 34.47255830230209,-0.78255060802057 L 34.47258490230209,-0.782542308020561 L 34.47260870230209,-0.782530808020586 L 34.4726320023021,-0.782521008020596 L 34.47265520230211,-0.782506608020623 L 34.47268160230211,-0.782496508020622 L 34.472709102302105,-0.782488308020614 L 34.4727346023021,-0.782479408020629 L 34.47275880230212,-0.782468908020644 L 34.472780102302124,-0.782460408020646 L 34.47280250230211,-0.782454508020633 L 34.47282580230211,-0.782447408020649 L 34.472847002302125,-0.782435608020665 L 34.472869502302125,-0.782425108020683 L 34.47289640230213,-0.782416008020682 L 34.47292510230212,-0.782408108020678 L 34.47295200230214,-0.782395908020694 L 34.472975802302145,-0.782379008020726 L 34.47300360230214,-0.782365608020728 L 34.47302820230216,-0.782345308020777 L 34.473055302302164,-0.782332008020789 L 34.47307930230217,-0.78232270802078 L 34.47310750230216,-0.782312008020793 L 34.473133502302176,-0.782302108020801 L 34.47316100230217,-0.782295208020805 L 34.473188002302166,-0.782288008020811 L 34.47320880230218,-0.782278208020813 L 34.473233402302185,-0.782272308020824 L 34.47326020230218,-0.782265308020813 L 34.473289602302174,-0.782258108020829 L 34.47331480230218,-0.782246108020835 L 34.47334090230219,-0.782233708020843 L 34.47336800230219,-0.782222708020854 L 34.473395302302194,-0.782207508020862 L 34.47341100230221,-0.782198508020893 L 34.47343590230221,-0.782182508020894 L 34.473460402302216,-0.782167508020925 L 34.47348490230223,-0.782147308020959 L 34.47350870230223,-0.78213110802099 L 34.47353410230224,-0.782120208020998 L 34.47356320230224,-0.782115508020993 L 34.47358900230223,-0.782122208020957 L 34.47361210230221,-0.782138508020906 L 34.473636902302204,-0.782159508020842 L 34.47365680230218,-0.782190208020759 L 34.47364130230217,-0.782199408020745 L 34.47365080230217,-0.782217308020695 L 34.47366020230214,-0.782234008020632 L 34.47366800230214,-0.782252308020605 L 34.47367600230212,-0.782273208020534 L 34.47368630230212,-0.782289308020492 L 34.473701402302105,-0.782305308020451 L 34.47371930230209,-0.782322208020398 L 34.473732902302075,-0.782339008020354 L 34.473746102302066,-0.782356308020283 L 34.473758302302045,-0.782373708020233 L 34.47377190230204,-0.782393208020201 L 34.473783202302016,-0.782415508020131 L 34.473790302302014,-0.782435308020066 L 34.473798602302004,-0.782453808020028 L 34.47380370230198,-0.782472408019979 L 34.473813102301975,-0.782489808019925 L 34.473822502301964,-0.782510408019868 L 34.47382950230195,-0.782529708019829 L 34.47383480230194,-0.782551208019765 L 34.47383960230192,-0.782573508019717 L 34.47384580230191,-0.782594708019654 L 34.47384880230188,-0.78261970801958 L 34.47385820230188,-0.78264230801953 L 34.473870302301876,-0.782658508019468 L 34.47387640230185,-0.782678608019429 L 34.473885502301854,-0.782699008019373 L 34.47389490230182,-0.782718808019321 L 34.4739010023018,-0.782736708019263 L 34.473914602301804,-0.782751508019227 L 34.473931302301786,-0.782774908019159 L 34.473940202301776,-0.782792508019118 L 34.47394790230177,-0.782810308019063 L 34.47395730230175,-0.782827808019012 L 34.473968602301746,-0.782844708018964 L 34.47397750230172,-0.782863408018917 L 34.47398570230171,-0.782881108018883 L 34.473994102301695,-0.78289860801882 L 34.47399850230169,-0.78291820801877 L 34.47400970230168,-0.782945008018687 L 34.47402570230165,-0.782961008018643 L 34.47404230230165,-0.782979208018588 L 34.47405120230164,-0.782999208018547 L 34.47405320230162,-0.7830200080185 L 34.474052102301606,-0.783042608018437 L 34.4740599023016,-0.783066608018375 L 34.47407190230158,-0.783082108018322 L 34.47408220230156,-0.783097908018281 L 34.47409570230155,-0.783118608018234 L 34.47410040230153,-0.78315010801814 L 34.474105702301514,-0.783180308018061 L 34.47411540230151,-0.783200808018008 L 34.474130102301494,-0.783215008017966 L 34.474146902301484,-0.783229208017923 L 34.47416040230147,-0.783245408017883 L 34.47416620230145,-0.783262908017825 L 34.47416980230143,-0.783284908017756 L 34.47417830230143,-0.783303508017715 L 34.47418550230141,-0.783323908017679 L 34.4741941023014,-0.783346008017604 L 34.474200702301374,-0.783368008017536 L 34.47420740230137,-0.7833888080175 L 34.47421980230136,-0.783404708017454 L 34.47423520230135,-0.783421208017407 L 34.47425150230134,-0.783434808017363 L 34.474267602301325,-0.783450208017308 L 34.47427880230133,-0.783471308017256 L 34.4742951023013,-0.783490808017206 L 34.47431100230129,-0.783510308017125 L 34.474318802301276,-0.783528808017081 L 34.47432790230126,-0.783545508017035 L 34.474334602301255,-0.783566208016989 L 34.47433490230124,-0.783589108016935 L 34.474346602301225,-0.783610608016866 L 34.47435900230122,-0.783630808016815 L 34.4743705023012,-0.783649008016768 L 34.474381002301186,-0.783666208016702 L 34.47438830230117,-0.783684508016662 L 34.47439410230115,-0.783704708016598 L 34.474400902301134,-0.783722208016559 L 34.474410602301134,-0.783737608016531 L 34.474411902301114,-0.783762308016469 L 34.4744183023011,-0.783781608016409 L 34.47443080230109,-0.783797708016362 L 34.47444430230108,-0.783817308016312 L 34.47445330230106,-0.783837308016262 L 34.474460402301055,-0.783854208016202 L 34.47447210230104,-0.783873608016166 L 34.47447860230103,-0.78389110801611 L 34.47448150230102,-0.783909108016076 L 34.47448620230101,-0.783926908016002 L 34.474505002301015,-0.783943308015964 L 34.47451480230098,-0.783960308015915 L 34.47451890230098,-0.783979608015867 L 34.47452630230095,-0.783999308015825 L 34.474539502300935,-0.784018108015765 L 34.47455310230095,-0.784033408015707 L 34.474568802300915,-0.784053108015652 L 34.4745801023009,-0.784077708015584 L 34.47458310230089,-0.784096308015544 L 34.47459370230088,-0.784117208015487 L 34.47460700230086,-0.784130608015436 L 34.47461890230086,-0.784144208015414 L 34.47462280230085,-0.784169608015326 L 34.47462460230084,-0.784193008015279 L 34.474628802300806,-0.784213608015221 L 34.474643602300794,-0.784235908015163 L 34.47465010230078,-0.784255708015103 L 34.474659002300776,-0.78427650801505 L 34.47466730230076,-0.784299508014998 L 34.47468360230075,-0.784317408014945 L 34.474693102300726,-0.784334008014903 L 34.474701902300716,-0.784353008014836 L 34.47471070230071,-0.784370008014804 L 34.474721102300684,-0.784385708014751 L 34.47472910230068,-0.784402908014704 L 34.47474800230067,-0.784422008014651 L 34.474770202300654,-0.784445908014574 L 34.47477200230063,-0.784467508014526 L 34.474769202300635,-0.784486708014478 L 34.474777302300616,-0.784506108014422 L 34.474784302300606,-0.784523208014393 L 34.47470410230059,-0.784550408014366 L 34.4746859023006,-0.784553508014384 L 34.4746592023006,-0.784555208014378 L 34.47463550230059,-0.784564508014372 L 34.47461670230059,-0.784581108014342 L 34.47459990230058,-0.784599008014316 L 34.47458230230057,-0.784612008014296 L 34.474561602300575,-0.784614708014288 L 34.47453620230058,-0.784620008014297 L 34.47451140230057,-0.784627308014296 L 34.474486602300566,-0.784630408014302 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.44704900230607,-0.7808993080406 L 34.44704500230606,-0.780919008040549 L 34.447036902306046,-0.780941808040515 L 34.447025202306044,-0.780956008040479 L 34.44701820230604,-0.780973708040442 L 34.44701110230602,-0.780994308040392 L 34.44700450230601,-0.781016008040338 L 34.446999902306004,-0.781035608040287 L 34.44698950230599,-0.781054108040261 L 34.44698260230598,-0.781071908040233 L 34.446969102305964,-0.781091808040173 L 34.44695950230595,-0.78111190804013 L 34.44695320230594,-0.781133308040093 L 34.44694980230593,-0.781155508040043 L 34.44693600230592,-0.781168408040011 L 34.44692330230592,-0.781181808039987 L 34.4469110023059,-0.781198008039954 L 34.4469020023059,-0.781219408039915 L 34.446891702305884,-0.781240108039866 L 34.44688080230588,-0.78126030803982 L 34.446880502305866,-0.781279008039777 L 34.446875902305855,-0.781296408039753 L 34.44686740230585,-0.781317208039695 L 34.44685650230582,-0.781336608039657 L 34.44684510230581,-0.781360008039604 L 34.446835602305796,-0.781375808039587 L 34.44682400230579,-0.781393708039546 L 34.44681410230578,-0.781409908039517 L 34.44680680230577,-0.781428708039472 L 34.44680110230577,-0.781448508039422 L 34.44679240230575,-0.781469108039366 L 34.44677630230575,-0.781483908039344 L 34.44676580230574,-0.781503408039317 L 34.446747702305736,-0.781516608039291 L 34.446740802305705,-0.781537908039238 L 34.4467335023057,-0.781560508039183 L 34.4467298023057,-0.781578908039152 L 34.446722802305686,-0.781599408039111 L 34.44671380230567,-0.781619908039045 L 34.44670510230566,-0.781639208039023 L 34.446695702305654,-0.781656008038975 L 34.44668960230563,-0.781680408038936 L 34.44668650230561,-0.781700008038881 L 34.44668170230561,-0.781717608038843 L 34.446668602305614,-0.78173750803879 L 34.44665060230561,-0.781736108038807 L 34.446635802305615,-0.781718408038867 L 34.446629602305634,-0.781698208038927 L 34.44661840230565,-0.781677708038985 L 34.446618102305656,-0.781654008039041 L 34.44661150230568,-0.781633108039086 L 34.44660300230569,-0.781610008039155 L 34.44659630230571,-0.781588808039212 L 34.44659030230571,-0.781570008039258 L 34.44658820230573,-0.781551908039292 L 34.44657640230574,-0.781531508039363 L 34.446564102305764,-0.781513908039404 L 34.44656220230576,-0.781492408039456 L 34.44656600230578,-0.781472308039506 L 34.446557302305784,-0.781453208039561 L 34.446547502305805,-0.781434408039608 L 34.446534902305814,-0.781420108039655 L 34.446531602305825,-0.781399708039697 L 34.44651320230583,-0.781387708039739 L 34.446505602305855,-0.781368708039797 L 34.446520502305866,-0.781355808039829 L 34.44652750230587,-0.781339108039855 L 34.44654600230588,-0.781328108039872 L 34.44655730230588,-0.781312808039904 L 34.44657020230589,-0.781292108039947 L 34.44657780230591,-0.781272308039997 L 34.446578902305916,-0.781249208040047 L 34.44658070230594,-0.781228008040098 L 34.44658930230594,-0.781210908040137 L 34.44660040230595,-0.781185508040184 L 34.44661320230596,-0.78116830804022 L 34.446622002305965,-0.781146708040259 L 34.44663070230599,-0.781125408040313 L 34.446638602305995,-0.781109208040348 L 34.446635702306,-0.781087708040398 L 34.44664220230601,-0.781067608040449 L 34.44664970230603,-0.781049608040493 L 34.44665700230604,-0.781031808040531 L 34.44667250230605,-0.781009508040555 L 34.44668060230607,-0.780992708040606 L 34.446693102306064,-0.780973308040643 L 34.44669770230608,-0.780953408040688 L 34.44670830230611,-0.780930408040731 L 34.446714602306116,-0.780906808040787 L 34.44672040230612,-0.780888508040827 L 34.44672860230614,-0.780870908040879 L 34.44674230230614,-0.780847108040917 L 34.44675100230616,-0.780824708040969 L 34.446760702306165,-0.780803308041002 L 34.446768902306175,-0.780782808041059 L 34.4467815023062,-0.780756508041108 L 34.446786302306215,-0.780732508041168 L 34.44679290230622,-0.780708408041219 L 34.44680290230623,-0.780688808041268 L 34.446815102306246,-0.780666508041318 L 34.44681950230627,-0.780643308041361 L 34.44681980230627,-0.780622408041415 L 34.44682700230629,-0.780596908041468 L 34.4468421023063,-0.780577608041517 L 34.4468549023063,-0.780561208041539 L 34.44687670230631,-0.780540508041578 L 34.446884602306326,-0.780517408041638 L 34.446889802306345,-0.78049320804168 L 34.44689790230636,-0.780472508041715 L 34.44691050230638,-0.780453108041769 L 34.44692190230638,-0.780429008041816 L 34.446926302306395,-0.78040880804186 L 34.44693320230641,-0.780388908041906 L 34.446953002306415,-0.780375208041933 L 34.44697490230641,-0.7803876080419 L 34.44699650230638,-0.78039840804185 L 34.44701830230638,-0.780405308041828 L 34.44703800230637,-0.780412808041789 L 34.447055602306364,-0.780425308041745 L 34.44708060230636,-0.780440608041698 L 34.447103302306346,-0.780451908041651 L 34.447124502306345,-0.780461908041602 L 34.44714780230634,-0.780475208041557 L 34.44716590230633,-0.780487308041517 L 34.447183102306305,-0.78049520804149 L 34.44719910230631,-0.780504808041461 L 34.447215102306295,-0.780519408041411 L 34.44721690230629,-0.780539208041355 L 34.447211302306265,-0.780560008041315 L 34.447196002306256,-0.78057780804128 L 34.447185902306245,-0.780594408041251 L 34.447178502306244,-0.780612308041221 L 34.44716570230623,-0.78063190804117 L 34.447152602306225,-0.780656808041125 L 34.4471511023062,-0.78067550804108 L 34.4471354023062,-0.780684308041064 L 34.447130502306194,-0.780706308041018 L 34.44711990230618,-0.78072370804099 L 34.447109402306175,-0.780741808040951 L 34.44709990230615,-0.780760708040903 L 34.44709500230614,-0.780781408040852 L 34.447086402306134,-0.780802008040809 L 34.447080002306116,-0.780821108040772 L 34.44707320230612,-0.780837908040726 L 34.447063802306104,-0.7808545080407 L 34.447056802306086,-0.780880108040634 L 34.44704900230607,-0.7808993080406 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.441449602307465,-0.779704108047001 L 34.441461102307464,-0.779689908047037 L 34.441477202307475,-0.779678308047047 L 34.44150100230748,-0.779667608047072 L 34.441524202307484,-0.779665808047068 L 34.44154710230749,-0.779674208047027 L 34.441567502307464,-0.779679308046997 L 34.441582702307464,-0.779691508046969 L 34.44160270230745,-0.779693308046947 L 34.44162410230746,-0.779699108046917 L 34.441646102307445,-0.779702608046906 L 34.44167420230744,-0.779697308046888 L 34.44170060230745,-0.779694308046875 L 34.441723002307434,-0.779690808046881 L 34.44174630230744,-0.779683108046889 L 34.441764202307446,-0.779677908046876 L 34.44178550230743,-0.779683008046849 L 34.44180880230743,-0.779680408046859 L 34.44182880230745,-0.779669008046876 L 34.441850302307444,-0.77966960804685 L 34.441874502307435,-0.77966850804684 L 34.441894702307444,-0.779662708046835 L 34.44191440230744,-0.779665608046822 L 34.44193270230744,-0.779665708046805 L 34.44195130230743,-0.779673008046776 L 34.44197242738471,-0.77968520579014 L 34.441981302307404,-0.77969580804671 L 34.44198500230739,-0.779713908046652 L 34.441980002307375,-0.779740108046596 L 34.44198590230737,-0.779762808046535 L 34.44197400230736,-0.779782108046504 L 34.44196510230736,-0.779804208046439 L 34.44196020230733,-0.779824708046398 L 34.44196260230732,-0.779843208046358 L 34.441957302307316,-0.779864208046316 L 34.44194670230729,-0.77989090804625 L 34.441934102307286,-0.77990660804621 L 34.441927702307275,-0.779924608046171 L 34.44191870230726,-0.779943308046145 L 34.441911702307245,-0.779964608046089 L 34.44190640230725,-0.779985008046032 L 34.44189900230723,-0.780007408045999 L 34.441888602307216,-0.780030208045945 L 34.44187840230721,-0.780051108045898 L 34.4418670023072,-0.780072408045866 L 34.44185820230717,-0.780097208045815 L 34.44184920230717,-0.780116408045764 L 34.44184670230717,-0.780135408045725 L 34.441839802307136,-0.780161808045652 L 34.44182300230713,-0.780175208045648 L 34.44180570230713,-0.780193208045601 L 34.44179380230711,-0.780214508045557 L 34.4417727023071,-0.780224008045561 L 34.44175000230712,-0.780221308045572 L 34.44172400230711,-0.780218108045596 L 34.441702702307126,-0.780216908045619 L 34.441684302307124,-0.780218508045622 L 34.44166300230712,-0.780222608045625 L 34.44161200230714,-0.780207408045687 L 34.44155860230714,-0.780211808045717 L 34.44153380230715,-0.780214008045733 L 34.441513502307146,-0.780205008045762 L 34.441495902307175,-0.780194408045793 L 34.44147010230718,-0.780168308045863 L 34.44145900230719,-0.780146908045947 L 34.4414418023072,-0.780127708046004 L 34.441430102307216,-0.78011080804604 L 34.441427902307225,-0.780091408046089 L 34.44143490230724,-0.780069308046137 L 34.44145380230725,-0.780044808046186 L 34.44145440230726,-0.780026608046246 L 34.441444302307296,-0.780001908046293 L 34.44142000230729,-0.779983508046353 L 34.44141050230733,-0.779948508046452 L 34.44140270230735,-0.77990370804657 L 34.44138360230739,-0.779860208046682 L 34.441376002307386,-0.779833708046743 L 34.4413821023074,-0.779815008046794 L 34.441393802307424,-0.779798108046834 L 34.441403102307426,-0.779776708046861 L 34.44141860230743,-0.779755608046916 L 34.44142990230745,-0.779736908046942 L 34.44143960230746,-0.779721708046983 L 34.441449602307465,-0.779704108047001 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.44197520230742,-0.779686808046741 L 34.44197242738471,-0.77968520579014 L 34.44196879052251,-0.779680861082255 L 34.44197520230742,-0.779686808046741 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.44196640230742,-0.779678008046752 L 34.44196879052251,-0.779680861082255 L 34.44196300368524,-0.779675493759959 L 34.44196640230742,-0.779678008046752 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.44192830230745,-0.779643308046863 L 34.44196300368524,-0.779675493759959 L 34.44194680230743,-0.779663508046791 L 34.44192830230745,-0.779643308046863 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.441614102307675,-0.779350608047772 L 34.441606902307655,-0.779345308047788 L 34.441609201870236,-0.779340864825168 L 34.441614102307675,-0.779350608047772 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.44152710230776,-0.779221508048133 L 34.44150730230776,-0.779215108048153 L 34.44148730230776,-0.779211608048191 L 34.441460202307766,-0.77921030804821 L 34.441437502307785,-0.779209208048224 L 34.44141640230779,-0.779206108048247 L 34.44139280230779,-0.779199208048283 L 34.4413754023078,-0.779191808048316 L 34.44135780230782,-0.779171308048365 L 34.44134930230782,-0.779145808048438 L 34.44133520230783,-0.779119308048506 L 34.44131720230786,-0.779100408048564 L 34.44130260230788,-0.779078708048621 L 34.44129410230788,-0.779062308048668 L 34.44127430230791,-0.779048708048724 L 34.44126490230791,-0.779028208048766 L 34.441250502307916,-0.779016308048814 L 34.441233702307926,-0.778996008048864 L 34.44122700230794,-0.778973708048923 L 34.44123040230796,-0.778953208048979 L 34.44123380230797,-0.778930808049029 L 34.44123650230799,-0.778909108049085 L 34.441243802308,-0.778886308049129 L 34.441251102308,-0.778864508049183 L 34.441254702308015,-0.778841708049225 L 34.441257602308035,-0.778819808049279 L 34.44126550230805,-0.778799408049334 L 34.44126870230807,-0.77877970804937 L 34.44127540230808,-0.778754408049447 L 34.4412815023081,-0.778727808049503 L 34.4412855023081,-0.77870500804954 L 34.44129020230812,-0.778682308049599 L 34.44129880230812,-0.778663708049633 L 34.44130500230814,-0.778643208049684 L 34.44130470230816,-0.778619408049748 L 34.441311902308165,-0.778595708049786 L 34.44132120230818,-0.778572908049833 L 34.4413245023082,-0.778549608049898 L 34.441329402308206,-0.778528408049945 L 34.44133430230822,-0.778509008049988 L 34.441341602308235,-0.778491508050042 L 34.44134710230824,-0.778469308050069 L 34.441350602308255,-0.778449008050122 L 34.44135780230827,-0.778422508050197 L 34.44137130230828,-0.778402208050237 L 34.44138950230829,-0.778393008050246 L 34.44141430230828,-0.778384808050244 L 34.441436002308286,-0.778389608050208 L 34.44145460230828,-0.7783873080502 L 34.44147400230827,-0.778385208050202 L 34.44148860230827,-0.778399308050161 L 34.44150890230825,-0.778421508050096 L 34.441530102308235,-0.778431408050058 L 34.441554402308235,-0.778436108050026 L 34.44158250230824,-0.778437508050009 L 34.441601302308236,-0.778442708049987 L 34.44162570230823,-0.778444408049961 L 34.441648402308225,-0.778449408049929 L 34.44168190230821,-0.77845330804991 L 34.441731302308206,-0.778457108049862 L 34.44177490230819,-0.778460008049848 L 34.4417965023082,-0.778463208049799 L 34.4418184023082,-0.778467708049792 L 34.44183670230819,-0.77847050804976 L 34.44186090230818,-0.77847460804974 L 34.441882602308176,-0.778478808049723 L 34.44188990230816,-0.778499108049671 L 34.44188570230814,-0.778517008049628 L 34.44187640230814,-0.778534808049588 L 34.441871402308124,-0.778552808049539 L 34.44186740230813,-0.778570608049512 L 34.441860602308104,-0.778589908049454 L 34.4418541023081,-0.778612208049408 L 34.44184550230808,-0.778633508049378 L 34.44183990230807,-0.778654608049317 L 34.44183340230806,-0.778675308049265 L 34.441821102308054,-0.778695908049236 L 34.441805202308046,-0.778715908049189 L 34.44179780230803,-0.778739308049129 L 34.441789102308014,-0.778762208049094 L 34.441785902308,-0.778782408049036 L 34.44177950230799,-0.778803408048992 L 34.441768702307975,-0.778818808048971 L 34.44175870230797,-0.778836508048935 L 34.441748102307955,-0.778857608048889 L 34.441745302307936,-0.778880808048834 L 34.44173610230793,-0.778898308048796 L 34.441722502307925,-0.778917308048757 L 34.44171330230793,-0.778935208048722 L 34.44171200230791,-0.778954708048674 L 34.441710702307894,-0.778975708048611 L 34.441710502307885,-0.77900210804856 L 34.44170830230786,-0.779031508048498 L 34.44170390230781,-0.779098108048324 L 34.441692002307796,-0.779123208048275 L 34.44168140230779,-0.77914050804825 L 34.44167400230777,-0.779161008048198 L 34.441666702307764,-0.779184408048144 L 34.44166220230776,-0.779203608048087 L 34.44165260230774,-0.779220608048053 L 34.441644902307736,-0.779237508048029 L 34.44163960230773,-0.779255708047985 L 34.44162660230771,-0.779278708047943 L 34.44162370230771,-0.779301408047877 L 34.44161870230767,-0.779322508047841 L 34.441609201870236,-0.779340864825168 L 34.441605602307675,-0.779333708047815 L 34.44159600230768,-0.779312808047884 L 34.44158610230772,-0.779294208047938 L 34.44157630230772,-0.779274808047989 L 34.44156000230773,-0.779253208048049 L 34.44154870230775,-0.779230508048119 L 34.44152710230776,-0.779221508048133 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.448369702308646,-0.776510008050425 L 34.448359002308635,-0.776526208050395 L 34.44834870230862,-0.776542408050351 L 34.448344902308605,-0.776562008050308 L 34.44833650230861,-0.776583508050277 L 34.44832590230859,-0.776604508050221 L 34.448318302308564,-0.776629608050168 L 34.448306202308565,-0.77665180805011 L 34.44830040230854,-0.776669908050072 L 34.44829640230852,-0.776689508050034 L 34.44828650230852,-0.776713408049987 L 34.448274502308514,-0.776737908049941 L 34.44826450230849,-0.776765208049878 L 34.44826040230848,-0.776789708049821 L 34.448249002308465,-0.776805208049789 L 34.448246302308455,-0.77682590804974 L 34.448241102308444,-0.776852008049681 L 34.44823260230843,-0.776869208049652 L 34.448221802308424,-0.776886508049623 L 34.44820210230841,-0.776910508049567 L 34.4481838023084,-0.776929408049526 L 34.44817260230838,-0.776952308049486 L 34.44816260230837,-0.776979408049409 L 34.44814560230837,-0.776988108049415 L 34.44814880230835,-0.777013208049338 L 34.448136002308345,-0.777031108049303 L 34.448127802308335,-0.777051408049276 L 34.44812190230831,-0.777071308049212 L 34.44810760230832,-0.77709140804918 L 34.4480976023083,-0.777107808049146 L 34.448094102308296,-0.777126708049103 L 34.448089302308276,-0.77714890804905 L 34.44808000230826,-0.777169908049019 L 34.44806180230826,-0.777187208048985 L 34.448052402308235,-0.777207808048922 L 34.44804410230823,-0.777231708048875 L 34.44803060230822,-0.777253308048833 L 34.4480204023082,-0.777275308048791 L 34.448014402308196,-0.777299708048727 L 34.448006402308174,-0.777321608048688 L 34.44800180230816,-0.777340208048635 L 34.44799530230816,-0.777361308048584 L 34.44798840230815,-0.777380408048544 L 34.44797920230813,-0.777400408048504 L 34.44796600230812,-0.777421108048476 L 34.4479475023081,-0.777444608048426 L 34.44793480230809,-0.777472508048377 L 34.44791900230808,-0.777493608048316 L 34.447894402308094,-0.77748990804836 L 34.4478674023081,-0.777477808048396 L 34.447841102308104,-0.777464008048434 L 34.44782430230812,-0.777447608048499 L 34.44781070230812,-0.777429608048548 L 34.447812102308156,-0.777409808048599 L 34.447827202308154,-0.777390808048629 L 34.44783950230818,-0.777361708048691 L 34.44784160230819,-0.777333508048747 L 34.4478492023082,-0.777308408048827 L 34.44785930230821,-0.777283308048857 L 34.44786660230823,-0.777256608048918 L 34.447878102308245,-0.777228208049002 L 34.44789460230826,-0.777202008049048 L 34.44790420230829,-0.777178208049088 L 34.44791820230829,-0.777152108049148 L 34.44792710230831,-0.777123008049229 L 34.44794130230832,-0.777096708049279 L 34.447951002308336,-0.77706960804933 L 34.44795750230836,-0.77703970804941 L 34.44796120230838,-0.777010508049473 L 34.44796720230839,-0.776985408049539 L 34.447979002308415,-0.7769570080496 L 34.44799240230842,-0.776928208049655 L 34.44800130230844,-0.776898008049717 L 34.44801140230846,-0.776869208049791 L 34.44802060230847,-0.77685360804981 L 34.448033902308474,-0.776825208049884 L 34.4480488023085,-0.776794808049939 L 34.44806400230852,-0.776768808049981 L 34.44808190230852,-0.776749208050039 L 34.44809600230853,-0.776726308050076 L 34.44810080230856,-0.776697708050149 L 34.448114402308576,-0.776669808050208 L 34.448127602308595,-0.776645008050253 L 34.448136602308594,-0.776618508050316 L 34.448149602308625,-0.776591108050371 L 34.44815840230862,-0.776561908050428 L 34.44816620230865,-0.77653910805048 L 34.44817650230866,-0.776516008050545 L 34.448190602308664,-0.776492108050592 L 34.4482056023087,-0.776464208050642 L 34.448221302308696,-0.776439108050703 L 34.44824090230871,-0.776417408050747 L 34.44825150230872,-0.776393808050796 L 34.448261802308714,-0.776376508050827 L 34.44826630230873,-0.776376508050824 L 34.448283002308735,-0.776389308050778 L 34.44829630230872,-0.776402608050741 L 34.4483130023087,-0.7764120080507 L 34.448330902308705,-0.776416308050675 L 34.448353902308696,-0.776421308050648 L 34.44837410230869,-0.776429508050622 L 34.44839150230868,-0.776447208050562 L 34.44838780230866,-0.776466008050512 L 34.44837820230866,-0.776489308050483 L 34.448369702308646,-0.776510008050425 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.44191173404716,-0.776185598151956 L 34.4419133023096,-0.776180008055273 L 34.4419126023096,-0.776189008055263 L 34.44191173404716,-0.776185598151956 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.44191173404716,-0.776185598151956 L 34.44190710230959,-0.776202108055222 L 34.44190520230957,-0.776220608055203 L 34.44190310230955,-0.776241108055144 L 34.441899102309534,-0.776265808055087 L 34.44189620230952,-0.776294308055019 L 34.441897302309506,-0.776316508054966 L 34.4419050023095,-0.776335608054912 L 34.44190860230948,-0.776353508054871 L 34.44191500230947,-0.776373408054805 L 34.441908902309464,-0.776393608054754 L 34.44190810230945,-0.776413408054718 L 34.441903202309426,-0.776440008054667 L 34.44189760230942,-0.776458508054618 L 34.441090002309814,-0.775986708056274 L 34.441152502309805,-0.775977608056257 L 34.441184702309805,-0.775966908056256 L 34.44119380230982,-0.7759478080563 L 34.441200702309835,-0.775930408056351 L 34.44118850230985,-0.775906608056399 L 34.44118510230985,-0.77588150805646 L 34.44118280230989,-0.77586020805652 L 34.44117880230989,-0.775836308056579 L 34.4411844023099,-0.775813808056617 L 34.44119010230992,-0.775792208056687 L 34.44120840230991,-0.775783708056695 L 34.441228602309906,-0.775793408056664 L 34.441251402309895,-0.775806708056603 L 34.441270702309886,-0.775818708056572 L 34.44129700230988,-0.775825108056543 L 34.44131790230987,-0.775834708056483 L 34.44133800230986,-0.775847208056446 L 34.441357502309856,-0.775857408056428 L 34.44137720230984,-0.775865308056379 L 34.44139800230984,-0.77587810805634 L 34.441419902309825,-0.775891908056288 L 34.44144130230981,-0.775903108056264 L 34.44146350230981,-0.775912808056215 L 34.441486402309806,-0.775926208056174 L 34.44151120230979,-0.775931608056147 L 34.441536302309785,-0.775939908056112 L 34.441557102309766,-0.775952408056049 L 34.44157830230977,-0.775970408056008 L 34.44160090230976,-0.775984708055951 L 34.441620702309734,-0.775998208055911 L 34.44164270230974,-0.776010308055866 L 34.44166610230972,-0.776020908055831 L 34.4416911023097,-0.776026908055796 L 34.4417121023097,-0.776042208055745 L 34.44173080230969,-0.776058308055708 L 34.441750802309684,-0.776070608055655 L 34.441768102309666,-0.776080408055626 L 34.44178590230966,-0.776091508055566 L 34.44180520230965,-0.77610780805553 L 34.44182820230965,-0.776120908055489 L 34.441849802309626,-0.776135008055445 L 34.44187300230963,-0.77614660805539 L 34.44189510230961,-0.776152108055368 L 34.4419071023096,-0.776167408055333 L 34.44191173404716,-0.776185598151956 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.44492260230954,-0.77571030805454 L 34.444929102309544,-0.775686308054593 L 34.44493710230956,-0.775667208054642 L 34.44494000230957,-0.775647008054682 L 34.44494300230958,-0.775624808054726 L 34.44494050230959,-0.775603608054787 L 34.44494080230962,-0.775580708054842 L 34.44493920230963,-0.775557708054891 L 34.444941802309636,-0.775536508054939 L 34.44495280230966,-0.775516108054979 L 34.44495590230965,-0.775497608055027 L 34.444960302309674,-0.775474008055093 L 34.444957366591694,-0.775460707455388 L 34.4449609023097,-0.775440108055169 L 34.44496310230972,-0.775413708055246 L 34.444967602309724,-0.775389508055289 L 34.44497920230973,-0.775369108055332 L 34.44499650230974,-0.775356508055352 L 34.44500720230974,-0.77537270805531 L 34.44502500230973,-0.775392608055245 L 34.44504570230971,-0.775405408055185 L 34.445068602309696,-0.775411908055168 L 34.445092902309696,-0.775419208055139 L 34.445113802309685,-0.775443008055069 L 34.44511740230966,-0.775471008055 L 34.44511480230964,-0.775493008054947 L 34.44510720230963,-0.775516908054892 L 34.445100702309624,-0.775535808054859 L 34.445090802309615,-0.775555008054808 L 34.4450772023096,-0.775575108054779 L 34.44506150230959,-0.77558480805476 L 34.44504920230959,-0.77559920805472 L 34.44504680230957,-0.775625508054656 L 34.445042302309545,-0.775651608054603 L 34.44502070230954,-0.775686008054527 L 34.44501600230951,-0.775716208054453 L 34.445018002309496,-0.775744808054391 L 34.44502880230948,-0.775771408054324 L 34.44502260230947,-0.77579030805428 L 34.44501790230946,-0.775808208054231 L 34.44500870230946,-0.77583120805418 L 34.44499590230943,-0.77585370805415 L 34.44498220230943,-0.775872308054103 L 34.44497390230942,-0.775897108054053 L 34.444973602309396,-0.775917208053999 L 34.444976802309384,-0.775944808053928 L 34.44496880230936,-0.775970708053877 L 34.44496240230935,-0.775989908053834 L 34.44494550230933,-0.776025008053742 L 34.44493290230934,-0.776039108053721 L 34.44491990230933,-0.776058808053697 L 34.44490350230933,-0.776042708053742 L 34.44489420230935,-0.776012008053831 L 34.44489660230936,-0.775984208053883 L 34.4448974023094,-0.775955108053971 L 34.4448935023094,-0.775936508054005 L 34.44489500230942,-0.775909308054071 L 34.44490010230942,-0.775886308054119 L 34.44489920230945,-0.775862308054169 L 34.44490790230945,-0.775842708054225 L 34.44490760230946,-0.775823908054278 L 34.44490940230948,-0.775798908054327 L 34.444910402309496,-0.775773508054392 L 34.444911802309505,-0.775748308054466 L 34.44492080230951,-0.775728708054482 L 34.44492260230954,-0.77571030805454 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.444957366591694,-0.775460707455388 L 34.44495630230967,-0.77546690805511 L 34.4449554023097,-0.775451808055157 L 34.444957366591694,-0.775460707455388 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.45549710230978,-0.773328808053674 L 34.455473502309786,-0.773321008053728 L 34.45545140230979,-0.773315908053736 L 34.455426802309795,-0.773311308053767 L 34.45540850230981,-0.773304408053793 L 34.455389402309805,-0.773299708053816 L 34.455364602309814,-0.773295208053841 L 34.45533960230983,-0.773291308053866 L 34.45531750230983,-0.773282908053906 L 34.45529570230984,-0.773280008053927 L 34.45527240230983,-0.773280208053939 L 34.45525800230984,-0.773267608053977 L 34.45524500230985,-0.773246708054042 L 34.455237402309876,-0.773223208054094 L 34.45525260230988,-0.773213508054109 L 34.45526940230988,-0.773204008054129 L 34.4552879023099,-0.773187108054156 L 34.4553017023099,-0.773164508054209 L 34.45531320230991,-0.773147508054241 L 34.455331802309914,-0.773139608054248 L 34.45534910230992,-0.773131308054254 L 34.455371702309925,-0.773121108054266 L 34.455385202309934,-0.773106108054279 L 34.45540500230993,-0.773094308054302 L 34.45542690230993,-0.773089508054301 L 34.45544950230995,-0.773077008054324 L 34.45546670230994,-0.773068308054323 L 34.45548980230996,-0.773053108054353 L 34.455506202309955,-0.773035208054396 L 34.45552760230996,-0.77303680805437 L 34.45555080230994,-0.773040308054335 L 34.455574602309945,-0.773043308054309 L 34.45559620230995,-0.773040908054323 L 34.45561770230995,-0.77303250805433 L 34.45564450230995,-0.773017908054353 L 34.45567370230995,-0.77300820805435 L 34.45569880230996,-0.772999108054342 L 34.45572230230996,-0.772994608054347 L 34.45574660230995,-0.772990108054348 L 34.45576780230995,-0.772988308054341 L 34.45579030230995,-0.772984908054334 L 34.45580980230995,-0.772972708054355 L 34.45583140230996,-0.772962808054363 L 34.45585430230998,-0.772947408054383 L 34.45587700230998,-0.772930008054408 L 34.45589470230999,-0.772913208054434 L 34.455909302310005,-0.772893808054477 L 34.45592770231001,-0.772879808054505 L 34.45595110231001,-0.772865908054515 L 34.45597380231003,-0.772845508054556 L 34.45599590231003,-0.772822608054589 L 34.45601390231005,-0.772804208054637 L 34.45603140231005,-0.772791508054653 L 34.456054002310054,-0.772772708054697 L 34.45606970231007,-0.77275350805472 L 34.45608170231009,-0.772738108054755 L 34.456099202310085,-0.772723308054778 L 34.45611770231009,-0.772708108054791 L 34.45613340231009,-0.772694208054827 L 34.4561528023101,-0.772682908054839 L 34.456173602310116,-0.772665608054858 L 34.45619030231012,-0.772650108054897 L 34.45620820231013,-0.772634408054922 L 34.45622240231013,-0.772616808054954 L 34.45624460231014,-0.772604108054974 L 34.45626680231014,-0.772590008054984 L 34.45628850231016,-0.772569908055026 L 34.456303502310156,-0.772557208055036 L 34.456320702310165,-0.77254740805505 L 34.45633980231017,-0.772558608055016 L 34.45635530231015,-0.77257460805497 L 34.456374102310136,-0.772593208054904 L 34.456399802310116,-0.772608808054864 L 34.456416902310124,-0.772621408054815 L 34.456436602310106,-0.772637408054771 L 34.45645800231008,-0.772651908054708 L 34.456473402310074,-0.772673008054668 L 34.45648770231006,-0.77268460805461 L 34.45649460231006,-0.772701808054567 L 34.456483402310035,-0.772716908054562 L 34.45646370231003,-0.772732708054531 L 34.45644400231002,-0.772751508054484 L 34.45643170231002,-0.772765208054471 L 34.45641900231001,-0.772778808054446 L 34.456400702310006,-0.772802308054384 L 34.45638550231,-0.772815408054365 L 34.45636680230999,-0.77282040805436 L 34.45635120231,-0.772829808054358 L 34.45633470230999,-0.772843308054323 L 34.45632160230996,-0.772859708054297 L 34.456307802309965,-0.772876708054261 L 34.45629120230996,-0.772899108054232 L 34.45626540230995,-0.772916108054197 L 34.45624060230993,-0.772933008054176 L 34.456228702309915,-0.772954108054136 L 34.456218502309916,-0.772973708054083 L 34.456196602309916,-0.772975608054086 L 34.456181402309916,-0.772990508054068 L 34.456164702309906,-0.773010108054034 L 34.45614720230988,-0.773029408053996 L 34.456128502309866,-0.773050008053952 L 34.456112502309864,-0.773069208053913 L 34.45609710230986,-0.773087208053882 L 34.45607740230985,-0.773101008053864 L 34.456061702309846,-0.773117308053841 L 34.45604250230984,-0.77313650805381 L 34.456026802309815,-0.773150408053788 L 34.45601440230982,-0.773166008053751 L 34.45599670230982,-0.77317370805373 L 34.455977902309826,-0.773185908053739 L 34.45595550230981,-0.773188308053733 L 34.455936402309796,-0.773194808053735 L 34.455920802309805,-0.773204808053718 L 34.4558998023098,-0.773214908053709 L 34.4558921023098,-0.773232308053673 L 34.455883302309786,-0.773250108053622 L 34.455870602309766,-0.773265008053597 L 34.45586090230975,-0.773282908053567 L 34.45584390230976,-0.773304408053525 L 34.45583210230975,-0.773318208053498 L 34.45582620230973,-0.773338208053453 L 34.45581180230971,-0.773361208053395 L 34.45579250230971,-0.77337890805338 L 34.455777002309716,-0.773391408053353 L 34.4557632023097,-0.773410208053316 L 34.45574420230968,-0.773427908053284 L 34.45571930230968,-0.773442708053251 L 34.45570460230969,-0.773434308053291 L 34.4556824023097,-0.773424108053338 L 34.45564410230971,-0.773407808053393 L 34.455626202309716,-0.773401808053419 L 34.45560820230973,-0.77339250805346 L 34.45558740230974,-0.773382908053484 L 34.455569002309744,-0.77337150805354 L 34.45555320230975,-0.773357408053569 L 34.45553060230976,-0.773342908053624 L 34.45551480230978,-0.77333380805365 L 34.45549710230978,-0.773328808053674 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.488537902306334,-0.772656708034556 L 34.488556602306346,-0.772656008034539 L 34.48858020230633,-0.772667008034487 L 34.48860000230633,-0.77267610803445 L 34.488617802306315,-0.772691308034428 L 34.48864290230631,-0.77270340803437 L 34.488657702306284,-0.772715008034335 L 34.48867630230629,-0.772726708034279 L 34.48869730230628,-0.772734608034265 L 34.48872130230627,-0.772741408034226 L 34.488740202306275,-0.772748008034204 L 34.48875880230626,-0.772754908034159 L 34.48879010230625,-0.772765008034114 L 34.48881650230624,-0.772775108034086 L 34.48884720230623,-0.772777908034054 L 34.48888060230623,-0.772786808034018 L 34.488898802306224,-0.772794408033983 L 34.488918102306215,-0.77280130803396 L 34.4889366023062,-0.772810408033923 L 34.48895630230619,-0.772816708033898 L 34.48897530230619,-0.772822208033872 L 34.48899130230619,-0.772831608033828 L 34.489014902306174,-0.772847008033785 L 34.48904500230616,-0.772855908033737 L 34.48906960230617,-0.772864808033715 L 34.48910470230614,-0.772874308033654 L 34.489124402306146,-0.772877008033644 L 34.48914310230613,-0.772880208033635 L 34.48916040230613,-0.772886008033598 L 34.48917960230612,-0.772890308033579 L 34.48920060230612,-0.772893908033558 L 34.48923450230611,-0.772898908033514 L 34.489257202306106,-0.772904508033493 L 34.48927810230609,-0.772909908033451 L 34.4892973023061,-0.772916308033438 L 34.4893160023061,-0.772924308033407 L 34.489335702306086,-0.772933908033376 L 34.489355802306065,-0.772941608033337 L 34.48937470230607,-0.772947308033319 L 34.489394702306065,-0.772954608033272 L 34.48941570230606,-0.772962808033258 L 34.48943370230605,-0.772967808033231 L 34.489462202306036,-0.772981808033189 L 34.48947530230602,-0.772997408033141 L 34.48947120230601,-0.773016408033082 L 34.489461202306,-0.773034908033046 L 34.489454802305985,-0.773055108033006 L 34.489435102305976,-0.773078708032964 L 34.48942200230595,-0.773097708032912 L 34.489405202305974,-0.77310630803291 L 34.48938940230596,-0.773118608032888 L 34.48937900230595,-0.773143908032841 L 34.48936550230593,-0.773157908032811 L 34.48933910230595,-0.773144208032856 L 34.48930770230595,-0.773130208032911 L 34.48928820230597,-0.773129608032919 L 34.489265702305964,-0.773131308032934 L 34.48924550230597,-0.773131708032944 L 34.48921410230597,-0.773124608032989 L 34.48919300230599,-0.773115008033025 L 34.489171202306004,-0.773104608033051 L 34.489140202306004,-0.773100908033093 L 34.48911170230601,-0.773090008033128 L 34.48908250230602,-0.773072508033198 L 34.48905840230603,-0.773057008033233 L 34.48903600230604,-0.773044408033296 L 34.48900480230606,-0.773034508033331 L 34.48898810230607,-0.77302670803336 L 34.48896450230608,-0.773013908033416 L 34.48894230230608,-0.773012108033424 L 34.48891260230608,-0.773009808033453 L 34.488879702306086,-0.773007708033482 L 34.48884170230609,-0.773006508033502 L 34.4888236023061,-0.773006108033519 L 34.4887911023061,-0.773005908033544 L 34.488765202306105,-0.773001208033567 L 34.488739802306114,-0.772995108033611 L 34.48871720230612,-0.772987208033638 L 34.48869400230613,-0.772967808033699 L 34.488667102306145,-0.77295810803374 L 34.48863470230616,-0.772950008033778 L 34.48861690230616,-0.77294630803379 L 34.488598602306155,-0.772944508033823 L 34.48856720230618,-0.772941808033839 L 34.488543402306156,-0.77294270803386 L 34.48851600230616,-0.772937008033876 L 34.48849170230618,-0.772927108033921 L 34.488465002306185,-0.772920908033951 L 34.48843570230619,-0.772911608034003 L 34.4884075023062,-0.772899808034036 L 34.48838460230621,-0.772891608034075 L 34.48836600230623,-0.772889008034099 L 34.48833880230623,-0.772884108034122 L 34.488334002306246,-0.772865608034172 L 34.48834110230626,-0.772847108034205 L 34.488358602306285,-0.772791908034321 L 34.488357302306284,-0.772771308034373 L 34.4883648023063,-0.772745208034432 L 34.488368202306326,-0.772723908034489 L 34.48838470230633,-0.772702508034535 L 34.488404902306335,-0.772691208034555 L 34.48842350230635,-0.772681608034554 L 34.488438902306356,-0.772654208034622 L 34.48845610230636,-0.772639808034641 L 34.48847850230636,-0.772641008034632 L 34.48850460230635,-0.772653208034577 L 34.488537902306334,-0.772656708034556 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.452591802310415,-0.772832408056711 L 34.45260200231041,-0.772854408056648 L 34.452610302310404,-0.772877608056579 L 34.45261740231038,-0.77290050805652 L 34.45262910231037,-0.772920708056468 L 34.45264170231036,-0.772934808056428 L 34.45262770231034,-0.772956508056384 L 34.45260970231033,-0.772960408056385 L 34.45259060231034,-0.772967608056383 L 34.45257220231033,-0.772979608056351 L 34.45255340231034,-0.772983008056374 L 34.45253470231033,-0.772981308056392 L 34.452507302310345,-0.772982208056408 L 34.45249020231034,-0.772988208056397 L 34.45247120231033,-0.773000308056386 L 34.45244840231033,-0.773013608056355 L 34.45242170231034,-0.773019008056361 L 34.45239500231033,-0.773024008056375 L 34.45237050231033,-0.773035108056363 L 34.45235180231033,-0.773035008056376 L 34.452330402310324,-0.773042608056361 L 34.45230610231032,-0.773053008056367 L 34.452280902310314,-0.773061708056351 L 34.45225220231032,-0.773055808056374 L 34.45222420231033,-0.773059508056376 L 34.45220730231031,-0.773065908056398 L 34.45217480231033,-0.773077508056371 L 34.452155702310314,-0.773083208056385 L 34.45213270231032,-0.773086408056398 L 34.45210930231031,-0.773089708056389 L 34.45209140231033,-0.773093508056396 L 34.45207490231032,-0.77310260805639 L 34.45205620231033,-0.773092708056413 L 34.45204730231033,-0.77307130805647 L 34.452037902310344,-0.773053408056518 L 34.45202760231036,-0.773034708056573 L 34.45201990231038,-0.773018108056613 L 34.4520126023104,-0.773000208056667 L 34.45199710231039,-0.772979308056712 L 34.45197890231041,-0.772974408056746 L 34.45197090231041,-0.772957908056801 L 34.45196000231042,-0.772938308056853 L 34.45195360231046,-0.772914908056907 L 34.451938602310456,-0.772892608056971 L 34.451929802310474,-0.772874108057038 L 34.45192410231049,-0.772844508057096 L 34.4519246023105,-0.772823008057144 L 34.45192680231053,-0.772798808057215 L 34.45192310231053,-0.772774308057263 L 34.45193190231055,-0.772756208057308 L 34.45195210231055,-0.772751408057327 L 34.451975302310544,-0.772743408057315 L 34.45199810231055,-0.772734508057319 L 34.45201760231055,-0.772729808057326 L 34.45204090231055,-0.772721708057343 L 34.45205940231056,-0.77271770805731 L 34.45208140231055,-0.772707708057344 L 34.45210520231055,-0.772705408057324 L 34.452130702310555,-0.772703308057329 L 34.45214760231056,-0.772694508057324 L 34.452164702310554,-0.772684808057338 L 34.45218230231056,-0.772675508057354 L 34.45220370231057,-0.772669608057358 L 34.45222240231057,-0.772669508057337 L 34.45224310231056,-0.772668908057326 L 34.45226470231055,-0.772670408057315 L 34.45228620231057,-0.772663208057327 L 34.45230690231057,-0.772659408057301 L 34.45233240231057,-0.772651608057302 L 34.45235080231057,-0.772644208057322 L 34.452367702310575,-0.772637008057332 L 34.452390202310575,-0.772629008057333 L 34.45241140231058,-0.772624508057344 L 34.45243410231057,-0.772617808057332 L 34.452451202310584,-0.772611908057336 L 34.452470302310594,-0.772603008057361 L 34.452485002310574,-0.772605308057335 L 34.452491902310555,-0.772628608057267 L 34.45250120231054,-0.772651508057208 L 34.45250670231053,-0.772673508057143 L 34.45252050231052,-0.772693308057098 L 34.452534902310504,-0.772715008057036 L 34.45254200231049,-0.77273740805698 L 34.45255170231048,-0.772767108056886 L 34.452565102310466,-0.772788508056823 L 34.45257860231044,-0.772811608056763 L 34.452591802310415,-0.772832408056711 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.4582330023101,-0.772288408054487 L 34.458239402310085,-0.772308808054433 L 34.45824320231008,-0.772329008054385 L 34.45824630231006,-0.772351908054327 L 34.45825160231005,-0.772369908054281 L 34.45825360231002,-0.772394208054227 L 34.45825480231003,-0.772414108054163 L 34.45824770231001,-0.772431208054133 L 34.45822680231,-0.772446108054111 L 34.458209802309995,-0.772463608054091 L 34.45818990230999,-0.772480208054044 L 34.458169102309974,-0.772493908054024 L 34.458150802309966,-0.772511708053992 L 34.45813520230996,-0.772529408053966 L 34.45812150230995,-0.772547708053932 L 34.45810790230995,-0.772560708053901 L 34.458090302309955,-0.772573608053889 L 34.45807280230993,-0.772589608053854 L 34.45805530230993,-0.772603408053835 L 34.45803440230993,-0.772615208053819 L 34.45801980230993,-0.772626308053802 L 34.457998202309916,-0.772636008053803 L 34.45797490230991,-0.77265250805377 L 34.45795400230989,-0.772667008053735 L 34.457928502309905,-0.772682508053727 L 34.45791140230988,-0.772691908053717 L 34.45789170230989,-0.7727021080537 L 34.457870202309884,-0.772714708053687 L 34.45784830230988,-0.772728108053661 L 34.45782760230987,-0.772743208053637 L 34.45780830230987,-0.772755908053607 L 34.457785002309855,-0.772777708053577 L 34.45776470230984,-0.772799908053549 L 34.45775090230984,-0.772812708053529 L 34.457737402309824,-0.772825808053494 L 34.45771750230982,-0.772844008053454 L 34.457704802309806,-0.77285810805344 L 34.4576895023098,-0.77287380805341 L 34.4576644023098,-0.772890208053377 L 34.457642202309785,-0.772906808053345 L 34.457617302309785,-0.772926208053314 L 34.45759650230978,-0.772938808053317 L 34.45757310230978,-0.77294380805331 L 34.457552102309776,-0.772943908053338 L 34.45753270230979,-0.772932008053367 L 34.4575147023098,-0.7729168080534 L 34.45749350230981,-0.772901608053461 L 34.45746760230983,-0.772892008053496 L 34.45744610230983,-0.772879008053542 L 34.457430602309834,-0.772860808053612 L 34.45743100230987,-0.772837508053663 L 34.45744640230987,-0.77281120805372 L 34.45746850230988,-0.772787608053748 L 34.457489902309895,-0.772767408053796 L 34.4575118023099,-0.772746608053836 L 34.457525602309914,-0.77272420805387 L 34.457538102309925,-0.77270920805391 L 34.457552302309935,-0.772695208053936 L 34.457568002309934,-0.772680708053961 L 34.45759610230995,-0.772661608053985 L 34.45761460230995,-0.772644108054008 L 34.457635202309966,-0.772623208054051 L 34.457649602309985,-0.772598108054101 L 34.45766640230998,-0.772581708054139 L 34.457682102309995,-0.772562108054175 L 34.457698802310006,-0.772540208054213 L 34.457716202310024,-0.772521508054244 L 34.45773420231003,-0.772502508054286 L 34.45776010231004,-0.772485108054306 L 34.457780502310044,-0.772466908054343 L 34.45779930231006,-0.772455408054348 L 34.457812202310066,-0.772442408054379 L 34.45782990231009,-0.772426608054412 L 34.45785380231008,-0.772410308054445 L 34.45787510231008,-0.772392308054474 L 34.45789120231008,-0.772367308054515 L 34.45790520231011,-0.772341008054565 L 34.457922302310116,-0.772322708054602 L 34.45793810231013,-0.772306308054621 L 34.457959102310134,-0.772292808054655 L 34.45797730231014,-0.772280108054675 L 34.457996802310134,-0.772264808054692 L 34.45801920231016,-0.772248108054716 L 34.45803820231016,-0.772228708054763 L 34.45804860231017,-0.772208108054805 L 34.45806190231018,-0.77218960805484 L 34.45807410231019,-0.77216980805488 L 34.45810000231021,-0.772155908054882 L 34.4581157023102,-0.772140008054927 L 34.458128902310214,-0.772117208054974 L 34.45814680231023,-0.772095108055017 L 34.45816180231025,-0.772081608055039 L 34.458174902310255,-0.772066808055065 L 34.45819000231024,-0.772079708055022 L 34.458204602310225,-0.77209180805499 L 34.45821540231022,-0.772106208054945 L 34.458224102310204,-0.772125208054885 L 34.45822970231019,-0.772146508054832 L 34.45823310231019,-0.772164708054784 L 34.45823690231017,-0.772183108054736 L 34.458220102310165,-0.772202708054709 L 34.45822590231014,-0.772226808054645 L 34.45823250231013,-0.772243908054595 L 34.45823150231012,-0.772266808054549 L 34.4582330023101,-0.772288408054487 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.456476702310596,-0.771818108056749 L 34.45645120231059,-0.771825308056736 L 34.456431102310596,-0.771833708056712 L 34.456410602310584,-0.771843408056725 L 34.45638980231058,-0.7718552080567 L 34.456370902310574,-0.771865208056682 L 34.45634900231058,-0.771878408056665 L 34.45633020231057,-0.771892108056648 L 34.45630850231056,-0.771902808056637 L 34.45628770231056,-0.771917508056608 L 34.45626390231057,-0.771925908056609 L 34.45624380231057,-0.771928008056626 L 34.456224702310564,-0.771933008056618 L 34.45620060231057,-0.771940708056611 L 34.456183602310546,-0.771953208056592 L 34.45616190231054,-0.771959508056597 L 34.456139302310554,-0.771966308056583 L 34.45611480231055,-0.771977008056583 L 34.456089202310544,-0.771984408056568 L 34.456061102310535,-0.771987608056593 L 34.45603190231054,-0.771993308056602 L 34.45600360231055,-0.772003408056573 L 34.45598370231053,-0.772016308056569 L 34.45596200231053,-0.772027208056546 L 34.455942302310525,-0.772033108056558 L 34.45592310231053,-0.772041408056539 L 34.45589830231053,-0.772050408056537 L 34.45587590231052,-0.772062508056527 L 34.45585700231051,-0.772075408056492 L 34.455837302310506,-0.772085708056487 L 34.45581230231051,-0.772096508056467 L 34.4557872023105,-0.772101608056484 L 34.45576690231049,-0.77210840805648 L 34.455743902310495,-0.77211340805648 L 34.4557189023105,-0.772123608056478 L 34.4556985023105,-0.772118408056499 L 34.45569000231052,-0.772098108056553 L 34.45569230231053,-0.772079308056596 L 34.45569630231054,-0.772061508056622 L 34.455714002310536,-0.772053508056633 L 34.45573510231054,-0.772041408056658 L 34.45575140231054,-0.772030508056673 L 34.45577290231055,-0.772020008056683 L 34.455790402310555,-0.772011308056702 L 34.45580930231056,-0.772002108056719 L 34.45583290231056,-0.771993308056709 L 34.45585480231056,-0.771983608056717 L 34.45586890231058,-0.771971408056733 L 34.45588780231059,-0.771958108056774 L 34.45590170231059,-0.771944308056777 L 34.455919102310595,-0.771929508056815 L 34.4559391023106,-0.771918808056833 L 34.4559617023106,-0.771912908056826 L 34.455978402310606,-0.771905508056844 L 34.45600040231061,-0.771895108056849 L 34.45601660231061,-0.771886508056852 L 34.45603250231061,-0.771874808056869 L 34.45605280231062,-0.771861408056901 L 34.456074002310636,-0.77184970805691 L 34.456098402310644,-0.771835108056928 L 34.45612000231065,-0.77182160805695 L 34.45613610231064,-0.771811708056956 L 34.45615620231064,-0.77180180805698 L 34.456176502310655,-0.771792508056997 L 34.45620210231067,-0.771779808056996 L 34.45621890231065,-0.77176800805701 L 34.45623620231067,-0.771754508057037 L 34.456256502310666,-0.771739908057058 L 34.45627690231068,-0.771727608057075 L 34.456292502310696,-0.77171250805711 L 34.456310702310695,-0.771700008057138 L 34.4563263023107,-0.771687308057144 L 34.4563505023107,-0.771670608057172 L 34.456373602310705,-0.771659108057179 L 34.45639850231071,-0.771649008057197 L 34.45641600231071,-0.771640608057207 L 34.45643530231071,-0.771629408057216 L 34.456452402310724,-0.771618808057251 L 34.45646720231073,-0.771607708057248 L 34.45648280231073,-0.771596308057265 L 34.45650880231074,-0.771587408057274 L 34.45652890231076,-0.771576708057289 L 34.456543502310744,-0.7715632080573 L 34.456561302310746,-0.771552408057332 L 34.45657840231077,-0.771534208057371 L 34.45659510231077,-0.771521308057371 L 34.456616802310776,-0.77150870805739 L 34.45663480231078,-0.771501108057413 L 34.45665270231076,-0.771515308057356 L 34.45666800231075,-0.771529608057312 L 34.456681802310754,-0.771545608057276 L 34.45669030231072,-0.771564908057217 L 34.45669920231073,-0.771580608057174 L 34.45671020231071,-0.771600908057118 L 34.456720502310695,-0.77162470805705 L 34.45672470231068,-0.77164520805701 L 34.45673570231066,-0.771665508056939 L 34.456743902310656,-0.771683708056902 L 34.45673080231065,-0.771701108056845 L 34.45670900231064,-0.771710008056848 L 34.45669040231063,-0.771731808056802 L 34.45667180231062,-0.771740508056799 L 34.45665480231063,-0.771752008056791 L 34.45663340231061,-0.771761408056775 L 34.456613202310606,-0.771766908056774 L 34.45659350231061,-0.771775908056758 L 34.456565202310614,-0.771782108056763 L 34.45653910231062,-0.771788308056777 L 34.45651720231062,-0.77179960805676 L 34.4564970023106,-0.771810008056752 L 34.456476702310596,-0.771818108056749 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.47585190230887,-0.770978608046599 L 34.475824902308865,-0.770979408046615 L 34.475796502308874,-0.770976608046644 L 34.475769002308866,-0.770976608046652 L 34.47573750230887,-0.770981108046664 L 34.47571030230889,-0.770981308046686 L 34.47568540230888,-0.770982408046685 L 34.47566000230888,-0.77098710804671 L 34.47563280230889,-0.770991808046711 L 34.47560780230888,-0.770994008046705 L 34.475581002308886,-0.770998608046726 L 34.47555420230888,-0.771011008046715 L 34.47552750230888,-0.771009608046732 L 34.47549800230888,-0.771009508046751 L 34.47547450230889,-0.771008108046771 L 34.47544940230889,-0.771009008046766 L 34.475428902308884,-0.771011908046782 L 34.4754060023089,-0.771020008046785 L 34.47537770230889,-0.771024908046792 L 34.475352702308896,-0.771030808046782 L 34.47532800230889,-0.771034608046795 L 34.47529560230889,-0.771034308046814 L 34.475270002308896,-0.771037408046822 L 34.475245202308905,-0.771043708046823 L 34.47521820230889,-0.771048008046845 L 34.4751908023089,-0.771051008046842 L 34.4751638023089,-0.771051308046866 L 34.47513850230891,-0.771049108046889 L 34.47511490230892,-0.771047808046897 L 34.475088702308916,-0.771042508046926 L 34.47506270230892,-0.77104320804694 L 34.47504080230891,-0.771049108046939 L 34.47501250230892,-0.771052908046947 L 34.47498990230891,-0.771054608046954 L 34.474967302308926,-0.771059808046957 L 34.47493590230892,-0.77105610804698 L 34.47492020230892,-0.771065608046979 L 34.474896502308916,-0.771072908046974 L 34.47486950230891,-0.771079808046963 L 34.47484270230892,-0.771080308046984 L 34.47481430230893,-0.771082808047002 L 34.47479250230891,-0.771088708046996 L 34.47477090230893,-0.771091208047007 L 34.47474430230892,-0.771092308047019 L 34.47471820230893,-0.771089308047045 L 34.47469470230893,-0.771085108047074 L 34.47466990230894,-0.771085508047087 L 34.47464580230893,-0.771093508047073 L 34.47462110230893,-0.771101408047075 L 34.474588102308935,-0.771107408047073 L 34.47457010230894,-0.771110208047088 L 34.47453730230893,-0.771114608047095 L 34.47450640230894,-0.771120008047103 L 34.47447810230893,-0.771132208047086 L 34.474448902308936,-0.771136908047095 L 34.47442360230893,-0.771140808047095 L 34.474394102308935,-0.771143408047116 L 34.474366702308934,-0.771137608047131 L 34.474341302308936,-0.771144208047138 L 34.474316002308946,-0.771149008047146 L 34.474289002308936,-0.771150608047159 L 34.47426050230894,-0.771159608047168 L 34.47422720230895,-0.771162508047165 L 34.47420150230894,-0.77116620804717 L 34.47417860230894,-0.771168308047184 L 34.47415920230895,-0.771167808047205 L 34.47415080230895,-0.771149908047246 L 34.47415200230897,-0.771125408047303 L 34.47415010230898,-0.77110270804736 L 34.47414290230899,-0.771076908047432 L 34.47414400230902,-0.771052408047493 L 34.47415160230904,-0.771021608047575 L 34.474151902309046,-0.771002108047619 L 34.47414410230906,-0.770971108047691 L 34.47413480230909,-0.770946408047763 L 34.4741346023091,-0.77092180804783 L 34.47416070230909,-0.770916608047813 L 34.47418500230911,-0.770913408047803 L 34.474203802309084,-0.770912708047791 L 34.4742231023091,-0.7709115080478 L 34.474252602309086,-0.770912808047763 L 34.47427890230909,-0.770915108047743 L 34.474307302309086,-0.770917208047712 L 34.47433500230908,-0.770915808047696 L 34.474362002309086,-0.770913508047697 L 34.474381502309065,-0.770910908047694 L 34.47441020230907,-0.770913508047661 L 34.474434602309074,-0.770916208047637 L 34.47445640230906,-0.770923408047619 L 34.474480402309055,-0.770929808047579 L 34.474502202309054,-0.770927408047578 L 34.47452430230904,-0.770922708047569 L 34.47454610230905,-0.770916508047566 L 34.47457200230906,-0.770923708047531 L 34.474590502309034,-0.770925308047529 L 34.474609602309044,-0.770920908047526 L 34.47462990230904,-0.770910608047538 L 34.47465040230905,-0.770901908047548 L 34.47467820230905,-0.77089850804754 L 34.47470400230905,-0.770894308047541 L 34.474729402309045,-0.770890708047516 L 34.47475630230906,-0.7708917080475 L 34.47478950230903,-0.770887608047487 L 34.47481860230904,-0.770881908047497 L 34.474847102309035,-0.770879108047481 L 34.474874002309036,-0.770877508047465 L 34.47489340230903,-0.770869508047455 L 34.47491600230904,-0.770865408047454 L 34.47494410230905,-0.770866708047433 L 34.47495990230905,-0.770850708047479 L 34.47498250230906,-0.770846108047475 L 34.475007302309045,-0.770843108047466 L 34.47502930230905,-0.770839308047459 L 34.47505620230905,-0.770838908047447 L 34.47507690230905,-0.770845608047423 L 34.47508820230902,-0.770867908047352 L 34.47509670230902,-0.770891308047271 L 34.47511380230902,-0.770885508047295 L 34.475142702309,-0.770884508047282 L 34.475163902309006,-0.770876908047285 L 34.47518540230901,-0.77087170804729 L 34.47521200230901,-0.770872008047248 L 34.475239702309004,-0.770863308047268 L 34.47526150230902,-0.770854508047264 L 34.475279602309016,-0.770848008047275 L 34.475304202309005,-0.770845808047256 L 34.475334602309,-0.770842108047254 L 34.475370502309,-0.770844308047224 L 34.475398902309,-0.770844808047213 L 34.47542260230901,-0.77083930804721 L 34.475449002309,-0.770832908047199 L 34.475468802308995,-0.77083150804719 L 34.475494302308995,-0.770834008047185 L 34.475525702308985,-0.77083240804715 L 34.475543502309,-0.770829708047157 L 34.47556210230899,-0.77083070804714 L 34.475592002308986,-0.770837408047111 L 34.47562530230898,-0.770841808047061 L 34.47565640230897,-0.770839308047056 L 34.47568330230897,-0.770841208047048 L 34.47570670230896,-0.770843408047016 L 34.475729802308955,-0.770845308047004 L 34.47575970230894,-0.770855108046958 L 34.475783402308934,-0.770855208046942 L 34.47580650230894,-0.770840508046968 L 34.475829502308954,-0.770830208046976 L 34.475855902308965,-0.770827608046974 L 34.475887202308975,-0.770818808046969 L 34.47590630230895,-0.770816108046971 L 34.47592990230894,-0.770818908046948 L 34.47593420230895,-0.770819408046922 L 34.47594220230895,-0.770837708046882 L 34.475945002308926,-0.770860208046834 L 34.475948702308905,-0.770879808046786 L 34.47595390230891,-0.770900908046716 L 34.47595790230888,-0.77092560804666 L 34.47596410230886,-0.770946308046607 L 34.47595530230886,-0.770968308046565 L 34.47593220230887,-0.770969008046559 L 34.47591190230885,-0.770973108046578 L 34.475884902308856,-0.770976108046588 L 34.47585190230887,-0.770978608046599 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.477190302309005,-0.770501808046915 L 34.477221902309005,-0.770498808046905 L 34.477250102309,-0.770493408046912 L 34.477277502308986,-0.770494708046875 L 34.477305502308994,-0.770495408046873 L 34.47733370230899,-0.770494108046841 L 34.47736380230897,-0.770505108046786 L 34.47739090230898,-0.770506508046778 L 34.477412202308976,-0.770507808046763 L 34.47743230230896,-0.77050660804676 L 34.47745790230899,-0.770503908046739 L 34.47747910230897,-0.770494908046758 L 34.47749990230897,-0.770484408046777 L 34.47752190230898,-0.770475208046772 L 34.477541902308985,-0.770475708046765 L 34.47756780230899,-0.770478308046726 L 34.47758870230897,-0.770480208046724 L 34.47761240230896,-0.770485308046696 L 34.47764240230896,-0.770485008046674 L 34.47766870230896,-0.77048640804664 L 34.477692602308956,-0.770486808046646 L 34.47771720230896,-0.77048250804663 L 34.47773950230895,-0.770485508046614 L 34.47775830230895,-0.770486408046595 L 34.47778640230894,-0.770486008046579 L 34.47781760230894,-0.770487908046553 L 34.477846802308946,-0.770484108046546 L 34.47786730230894,-0.770476708046558 L 34.47787800230893,-0.770500908046489 L 34.477897302308925,-0.770500408046466 L 34.47792410230892,-0.770494708046474 L 34.477943302308915,-0.770500208046442 L 34.47796600230892,-0.770511708046414 L 34.47799800230891,-0.770507808046405 L 34.4780236023089,-0.770504308046399 L 34.4780505023089,-0.77049410804639 L 34.47807420230891,-0.770482808046406 L 34.47809550230891,-0.770491208046366 L 34.478114402308904,-0.77048930804638 L 34.4781254023089,-0.770507908046315 L 34.47813080230888,-0.770525108046271 L 34.47813470230886,-0.770552308046197 L 34.47813870230885,-0.770582508046121 L 34.47814990230883,-0.770604408046059 L 34.47816640230881,-0.770624308045995 L 34.47816960230881,-0.770652908045937 L 34.47816420230878,-0.770673708045884 L 34.47814260230878,-0.770687008045858 L 34.47812250230878,-0.770686908045889 L 34.478108302308804,-0.770675508045919 L 34.4780849023088,-0.77066430804597 L 34.4780582023088,-0.770664308045991 L 34.47803110230881,-0.770660808046011 L 34.47800320230881,-0.770660808046033 L 34.47797620230881,-0.770653908046046 L 34.47794320230882,-0.770648108046089 L 34.477922802308825,-0.770643908046119 L 34.477899002308824,-0.770642008046135 L 34.47787180230885,-0.770640108046157 L 34.47784220230884,-0.77063720804619 L 34.47781320230885,-0.77063510804621 L 34.47778200230886,-0.770629608046241 L 34.477753402308856,-0.770623508046262 L 34.477729502308875,-0.770618008046305 L 34.477709402308875,-0.770614908046314 L 34.47767620230888,-0.770607808046344 L 34.477640902308885,-0.770604608046392 L 34.4776226023089,-0.770601608046415 L 34.4775958023089,-0.770597508046428 L 34.47757650230889,-0.770593508046447 L 34.477586602308875,-0.770624208046377 L 34.47756160230888,-0.770627508046381 L 34.477535802308886,-0.770616608046418 L 34.47750570230889,-0.77061510804644 L 34.4774783023089,-0.770615908046448 L 34.477450702308886,-0.770614808046474 L 34.4774331023089,-0.770620708046482 L 34.477408602308905,-0.770619508046506 L 34.47738410230891,-0.770620508046507 L 34.477360802308915,-0.770620108046514 L 34.47734090230892,-0.770622808046527 L 34.47732200230891,-0.770627708046538 L 34.47730720230893,-0.770614108046578 L 34.477303502308935,-0.770591908046613 L 34.47728490230893,-0.770598508046631 L 34.47726640230892,-0.770610808046616 L 34.47724000230893,-0.770608708046634 L 34.477205602308935,-0.77060260804667 L 34.477186202308935,-0.77059770804669 L 34.47715870230895,-0.770594708046702 L 34.477135702308935,-0.770596808046731 L 34.477111302308955,-0.770599408046738 L 34.47708760230895,-0.770600808046744 L 34.47705920230897,-0.770593108046767 L 34.477036702308965,-0.770592008046791 L 34.47701110230896,-0.77059540804679 L 34.47698530230898,-0.770594108046818 L 34.47696030230897,-0.770593908046823 L 34.476939302308985,-0.770579308046886 L 34.476942302309,-0.770556008046948 L 34.47694190230902,-0.770529708047006 L 34.47690960230904,-0.770504308047088 L 34.47693350230903,-0.770520808047028 L 34.476970502309015,-0.770526808046996 L 34.47698900230901,-0.770523308046981 L 34.47701900230902,-0.770513908046998 L 34.47704810230902,-0.770508608046993 L 34.477074502309016,-0.770495708046999 L 34.47709860230902,-0.770490208047007 L 34.477119502309016,-0.770492808046987 L 34.477141102309005,-0.770498108046959 L 34.477167602309,-0.770504208046918 L 34.477190302309005,-0.770501808046915 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.49637530230766,-0.769056208038366 L 34.49638540230768,-0.769025908038433 L 34.4963989023077,-0.768996908038495 L 34.49641510230771,-0.768971808038539 L 34.49642830230772,-0.768937608038614 L 34.49643230230775,-0.768907708038686 L 34.496439402307765,-0.768880908038759 L 34.49645410230777,-0.768851508038811 L 34.496465202307796,-0.768826808038857 L 34.4964722023078,-0.76879680803895 L 34.49648100230782,-0.768779408038974 L 34.496490202307825,-0.768762808039007 L 34.496501502307844,-0.768747508039038 L 34.49652050230786,-0.768716308039101 L 34.49654150230786,-0.768685008039153 L 34.496550502307876,-0.768665808039208 L 34.4965587023079,-0.768643508039258 L 34.49656100230793,-0.768622408039304 L 34.496564702307914,-0.768600708039345 L 34.49657100230793,-0.768580108039396 L 34.49657390230795,-0.768556308039448 L 34.49657760230796,-0.76853010803951 L 34.49657510230797,-0.76851020803957 L 34.49658490230799,-0.76848910803962 L 34.496599202307976,-0.768510608039548 L 34.49659940230795,-0.768532408039501 L 34.49660390230794,-0.768560508039433 L 34.49660750230793,-0.768585808039364 L 34.49660630230791,-0.768613608039291 L 34.49661090230789,-0.768640808039221 L 34.496613602307875,-0.768665308039162 L 34.496610102307855,-0.768692408039091 L 34.49660940230785,-0.768710908039068 L 34.49660640230783,-0.768730408039009 L 34.49660070230782,-0.76875270803896 L 34.4965951023078,-0.76877460803892 L 34.496590002307805,-0.768795308038863 L 34.496586502307785,-0.768818108038821 L 34.49658360230778,-0.768839408038777 L 34.49658420230776,-0.76886000803872 L 34.49658320230775,-0.768884008038646 L 34.496579402307724,-0.768909008038583 L 34.49657610230772,-0.768932108038549 L 34.4965727023077,-0.768960308038482 L 34.49656260230768,-0.768985208038424 L 34.496548302307666,-0.769007408038385 L 34.49653380230767,-0.769026808038329 L 34.49651500230766,-0.769051108038286 L 34.496495302307636,-0.769076108038251 L 34.49647530230764,-0.769100208038195 L 34.496452602307606,-0.769122608038148 L 34.4964354023076,-0.7691458080381 L 34.49642530230758,-0.769170908038058 L 34.49641750230756,-0.76919980803799 L 34.49640970230755,-0.769227308037931 L 34.49639780230753,-0.769255508037874 L 34.49638090230751,-0.769288408037797 L 34.4963659023075,-0.769316608037748 L 34.49634940230749,-0.769342708037692 L 34.496330002307474,-0.769367808037627 L 34.496310902307464,-0.769390408037595 L 34.496290802307456,-0.76940840803756 L 34.49627120230745,-0.76941750803755 L 34.49624140230747,-0.769407908037596 L 34.496227702307465,-0.76938970803765 L 34.49621450230749,-0.769362108037713 L 34.4962093023075,-0.76933980803778 L 34.49623330230751,-0.769318308037824 L 34.49623960230753,-0.769295208037875 L 34.49625030230752,-0.769280208037893 L 34.49626060230755,-0.769262208037935 L 34.49627340230755,-0.769240708037994 L 34.496285502307565,-0.769221608038009 L 34.49629870230758,-0.76920270803805 L 34.4963124023076,-0.769179808038105 L 34.49632590230761,-0.769156108038163 L 34.49633690230761,-0.769138208038196 L 34.49634530230764,-0.769113808038233 L 34.49636140230765,-0.769083808038303 L 34.49637530230766,-0.769056208038366 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.46492660231169,-0.768471608059554 L 34.46494560231167,-0.768498608059482 L 34.46495420231167,-0.768521408059418 L 34.464964802311634,-0.768539208059367 L 34.46497140231164,-0.768558508059317 L 34.464953802311626,-0.768562408059306 L 34.46493580231163,-0.768571208059319 L 34.46492430231162,-0.768585808059284 L 34.46490440231162,-0.768604408059255 L 34.464879602311605,-0.768616108059247 L 34.46485400231161,-0.768625508059226 L 34.46479610231158,-0.768670708059146 L 34.464790202311576,-0.768691308059108 L 34.464770502311566,-0.768694308059104 L 34.46475210231156,-0.768709208059106 L 34.464733602311554,-0.768726408059063 L 34.464709102311545,-0.768738108059046 L 34.464682802311536,-0.768750708059037 L 34.46465780231154,-0.768763008059017 L 34.46462820231152,-0.768777408059018 L 34.46460190231152,-0.768797508058972 L 34.464585702311524,-0.768806608058956 L 34.46454970231152,-0.768815608058957 L 34.46452860231151,-0.768841508058903 L 34.4645062023115,-0.768858608058875 L 34.464482702311486,-0.768881708058851 L 34.46446270231147,-0.768900308058812 L 34.46443770231147,-0.768919608058788 L 34.464413102311475,-0.768939808058731 L 34.464383202311446,-0.768951808058729 L 34.464352902311454,-0.76896430805871 L 34.46433770231146,-0.768974508058705 L 34.46432200231144,-0.768984708058689 L 34.46429370231143,-0.769000808058668 L 34.46426390231143,-0.769015208058645 L 34.46423830231143,-0.769030208058623 L 34.46421340231142,-0.769045208058616 L 34.46418670231141,-0.769061908058587 L 34.46417170231141,-0.769072908058565 L 34.46414280231139,-0.769088808058562 L 34.464124702311395,-0.769101008058519 L 34.46410470231139,-0.769113208058523 L 34.464082502311385,-0.769126308058485 L 34.46405760231138,-0.769138908058478 L 34.464026002311364,-0.769155108058468 L 34.46401180231136,-0.769167208058439 L 34.46398680231135,-0.769184108058426 L 34.46396450231134,-0.769204608058392 L 34.463937202311335,-0.769218708058375 L 34.46390940231133,-0.769234108058347 L 34.46388130231132,-0.769253908058314 L 34.46385380231133,-0.769272708058278 L 34.46382830231132,-0.769289308058253 L 34.463805102311305,-0.769310008058233 L 34.46378200231129,-0.769321308058212 L 34.463756102311294,-0.769332308058204 L 34.46373260231129,-0.769350708058178 L 34.46370810231127,-0.769360708058162 L 34.463684502311274,-0.76937720805813 L 34.463657602311265,-0.769393108058112 L 34.463638702311265,-0.769410108058083 L 34.463623302311255,-0.76942630805807 L 34.46360760231125,-0.769435208058047 L 34.46359010231125,-0.769442708058043 L 34.46357120231125,-0.769452808058032 L 34.46355010231124,-0.769455008058028 L 34.46353350231126,-0.769441208058086 L 34.46352580231126,-0.769422408058142 L 34.463514502311284,-0.769395408058202 L 34.4635046023113,-0.769369008058267 L 34.46350170231131,-0.769348408058328 L 34.46349680231132,-0.769321808058383 L 34.46349410231134,-0.769297508058457 L 34.46348560231136,-0.769276708058514 L 34.46348280231137,-0.769251608058567 L 34.4634775023114,-0.769229608058634 L 34.4634738023114,-0.769206308058689 L 34.46347430231142,-0.769182808058744 L 34.463468002311444,-0.769158508058819 L 34.46345460231146,-0.769131608058875 L 34.463444002311476,-0.769103608058958 L 34.463437702311495,-0.769074608059036 L 34.463455902311495,-0.769060508059061 L 34.46347550231149,-0.769052808059061 L 34.4635052023115,-0.769041008059061 L 34.46353400231151,-0.769025108059077 L 34.46356210231151,-0.769009708059107 L 34.463589302311526,-0.768993008059128 L 34.46361540231153,-0.768973708059154 L 34.463641102311534,-0.768958808059181 L 34.46366850231154,-0.768945608059204 L 34.46369100231155,-0.768929108059218 L 34.46371760231156,-0.768910908059259 L 34.46374760231156,-0.76889430805927 L 34.46377620231156,-0.768877608059291 L 34.463799702311576,-0.768859708059326 L 34.46382610231158,-0.768843208059349 L 34.463852502311596,-0.768828208059356 L 34.4638786023116,-0.768812708059375 L 34.4639016023116,-0.76879630805941 L 34.463925302311615,-0.76878100805944 L 34.46394500231162,-0.76876650805945 L 34.46396770231162,-0.768750908059485 L 34.46399220231163,-0.768736708059496 L 34.46401320231164,-0.768717608059539 L 34.46403740231165,-0.768702508059558 L 34.46406440231164,-0.768687608059579 L 34.46409230231166,-0.768670108059601 L 34.464113402311675,-0.76865360805963 L 34.46413320231168,-0.768635508059651 L 34.464159802311684,-0.768616208059684 L 34.46417640231169,-0.768607808059694 L 34.464192602311705,-0.768599808059707 L 34.46422190231169,-0.768585008059713 L 34.46424570231171,-0.768568808059753 L 34.464271102311706,-0.76854870805978 L 34.46429930231172,-0.76852960805982 L 34.46432030231173,-0.768516508059838 L 34.464344002311734,-0.768500108059865 L 34.46436900231175,-0.768481308059891 L 34.46439160231176,-0.768462908059908 L 34.464415202311756,-0.768450408059937 L 34.46443780231177,-0.768436608059945 L 34.46446160231177,-0.768421708059961 L 34.464486302311784,-0.768410408059997 L 34.464509702311794,-0.768392908060017 L 34.4645357023118,-0.768376808060033 L 34.464562802311804,-0.768359908060051 L 34.464583702311806,-0.768345908060072 L 34.464606602311825,-0.768327608060109 L 34.46463290231182,-0.768308908060132 L 34.46466230231183,-0.768290608060156 L 34.46468480231184,-0.768272808060196 L 34.46470720231184,-0.768258908060218 L 34.46473030231185,-0.768251008060231 L 34.46475390231185,-0.768239708060238 L 34.464770402311856,-0.768229408060245 L 34.464757202311844,-0.7682504080602 L 34.46477600231183,-0.768268808060147 L 34.464791902311816,-0.7682899080601 L 34.4648095023118,-0.768312408060018 L 34.46482530231179,-0.76832530805997 L 34.46484490231179,-0.768345608059915 L 34.46486220231176,-0.768367208059856 L 34.46486980231175,-0.768390708059792 L 34.46488350231173,-0.768411908059746 L 34.464899602311704,-0.768428908059684 L 34.46491000231171,-0.76844720805962 L 34.46492660231169,-0.768471608059554 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.46844630231175,-0.767707408059194 L 34.46846820231174,-0.767722808059145 L 34.46849410231173,-0.767728708059122 L 34.46851340231173,-0.767719108059135 L 34.46854160231174,-0.767713408059123 L 34.46856680231175,-0.76769710805915 L 34.46858980231173,-0.76769270805916 L 34.46860210231173,-0.767708808059101 L 34.46860830231172,-0.76772980805906 L 34.46859700231171,-0.76774980805901 L 34.468611202311706,-0.767769208058946 L 34.468623302311684,-0.767785008058896 L 34.468643102311674,-0.767796708058857 L 34.46866570231167,-0.767804708058841 L 34.46870960231164,-0.767826308058745 L 34.468695702311635,-0.767847608058713 L 34.46868540231162,-0.767872708058645 L 34.46869830231161,-0.767885608058612 L 34.46870540231159,-0.767910408058549 L 34.46870520231159,-0.767935208058487 L 34.46872090231156,-0.767951108058454 L 34.46873900231155,-0.767964808058396 L 34.468755702311555,-0.767975408058366 L 34.46877530231155,-0.767983908058328 L 34.46879230231154,-0.767999808058266 L 34.46880140231151,-0.768021508058205 L 34.4688120023115,-0.768041908058159 L 34.46881400231148,-0.768063408058112 L 34.46882950231147,-0.768080408058067 L 34.46883560231146,-0.768102008057995 L 34.46885450231144,-0.76812160805794 L 34.46886080231145,-0.768142108057888 L 34.46885830231141,-0.768171308057816 L 34.46885420231143,-0.768194008057764 L 34.46884370231139,-0.768213208057717 L 34.46882900231139,-0.768225108057701 L 34.46880960231138,-0.768234508057685 L 34.46878960231138,-0.768238308057694 L 34.46876560231138,-0.768238908057716 L 34.46873700231141,-0.768229308057752 L 34.4687187023114,-0.768224608057776 L 34.46870180231139,-0.768236808057756 L 34.468678502311406,-0.768226908057784 L 34.468652502311414,-0.768207008057862 L 34.46863020231143,-0.768185808057931 L 34.46861820231144,-0.768167808057985 L 34.46860220231146,-0.768153608058029 L 34.46858210231149,-0.768135708058079 L 34.46856110231148,-0.768117908058138 L 34.46854680231149,-0.768095108058195 L 34.46851840231152,-0.76807340805827 L 34.46849430231154,-0.768048808058356 L 34.46847770231155,-0.768024808058419 L 34.46846400231156,-0.768003108058471 L 34.46844290231159,-0.767983508058523 L 34.468415902311605,-0.767960608058606 L 34.468393002311615,-0.767940308058667 L 34.46837100231162,-0.767923108058715 L 34.468358402311644,-0.767897808058794 L 34.46834630231166,-0.767882408058848 L 34.46833030231167,-0.767868108058887 L 34.468315102311685,-0.767849908058949 L 34.4682982023117,-0.767830908059008 L 34.468282202311705,-0.767817508059035 L 34.46826860231172,-0.767800708059083 L 34.46825490231173,-0.767778708059161 L 34.46824660231174,-0.7677615080592 L 34.46823960231176,-0.767735108059281 L 34.46831030231176,-0.767726908059242 L 34.468331802311766,-0.767726808059236 L 34.468340702311764,-0.767709308059273 L 34.468366502311774,-0.767705108059257 L 34.46838800231176,-0.767713408059219 L 34.46837220231176,-0.767700508059277 L 34.46838040231179,-0.767674108059332 L 34.46838820231179,-0.767654008059377 L 34.46840290231178,-0.767671608059308 L 34.46841610231177,-0.767685008059286 L 34.46844630231175,-0.767707408059194 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.474312502310916,-0.767929608054983 L 34.47430070231093,-0.767943708054955 L 34.47428180231092,-0.767954008054935 L 34.474258502310924,-0.767964708054926 L 34.47422760231091,-0.767982608054899 L 34.474201502310905,-0.767997808054877 L 34.4741738023109,-0.768010908054874 L 34.474153202310895,-0.768030708054827 L 34.47413170231087,-0.768046008054798 L 34.47410620231087,-0.76806210805479 L 34.47408470231087,-0.768072608054782 L 34.474064302310865,-0.768080408054768 L 34.47404770231087,-0.768092408054749 L 34.474029802310845,-0.768106908054718 L 34.474011102310854,-0.768094708054778 L 34.47400480231089,-0.768077708054809 L 34.47400360231089,-0.76805610805486 L 34.47400780231091,-0.768037108054909 L 34.47400800231092,-0.768012608054964 L 34.474026902310904,-0.767999808054986 L 34.47405090231092,-0.767992508054999 L 34.474075002310926,-0.767984308054981 L 34.47408350231093,-0.767968408055023 L 34.47410270231093,-0.767960208055042 L 34.47412200231094,-0.767951908055039 L 34.47413700231094,-0.767939208055063 L 34.47413910231097,-0.767920408055107 L 34.474137902310986,-0.767895708055165 L 34.47415920231099,-0.767877708055201 L 34.474175002310986,-0.767866808055224 L 34.47419310231099,-0.767859108055226 L 34.47420970231099,-0.767844808055245 L 34.474224602311004,-0.767828408055266 L 34.474243302311,-0.767812508055298 L 34.474263902311016,-0.767801608055321 L 34.47428010231102,-0.767789808055331 L 34.47430250231103,-0.767782608055333 L 34.474326002311024,-0.767774308055344 L 34.474344102311036,-0.76776750805535 L 34.47436440231104,-0.767761408055339 L 34.474380102311045,-0.767745908055378 L 34.474397802311046,-0.767725408055432 L 34.474423202311065,-0.76769990805545 L 34.47444150231107,-0.767681908055499 L 34.47446230231107,-0.7676742080555 L 34.474490402311055,-0.767682808055479 L 34.474510302311046,-0.767698708055423 L 34.47451750231104,-0.767716108055361 L 34.474523902311034,-0.767733408055331 L 34.47452470231102,-0.767757408055271 L 34.474526002310995,-0.767783708055193 L 34.474536202310986,-0.767807808055118 L 34.47452030231099,-0.76779670805517 L 34.474500802310985,-0.767807408055155 L 34.47448010231098,-0.767823608055125 L 34.47445480231097,-0.767840508055108 L 34.47443860231096,-0.767849308055101 L 34.47441360231098,-0.767862508055075 L 34.474381102310964,-0.767868708055087 L 34.47436130231095,-0.767879008055077 L 34.47434090231095,-0.76789170805504 L 34.47432470231094,-0.767910908055011 L 34.474312502310916,-0.767929608054983 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.493017602308385,-0.768509908041804 L 34.493037102308406,-0.768486608041855 L 34.49303740230841,-0.768462008041908 L 34.49304550230844,-0.768427308041997 L 34.493060002308454,-0.768414308042007 L 34.49306300230846,-0.768396008042054 L 34.493055902308484,-0.768372308042103 L 34.49305220230849,-0.768341508042194 L 34.493055402308514,-0.768309708042268 L 34.49305250230853,-0.768284208042322 L 34.49304450230854,-0.768255808042408 L 34.49304380230856,-0.768232408042466 L 34.49303830230858,-0.768199808042537 L 34.49301080230883,-0.767798208043552 L 34.49301340230885,-0.767779708043595 L 34.49302030230886,-0.767760108043624 L 34.493018202308875,-0.767734908043694 L 34.49301170230889,-0.767703108043762 L 34.49299590230891,-0.767670108043855 L 34.49298730230893,-0.767642608043923 L 34.492986002308946,-0.767623208043987 L 34.49297530230897,-0.767599608044046 L 34.49297650230898,-0.767580508044092 L 34.492987502308985,-0.767555408044156 L 34.492992702309,-0.767533908044189 L 34.49299600230901,-0.767505108044253 L 34.49298830230903,-0.767487608044314 L 34.49297150230905,-0.767477808044342 L 34.49297740230908,-0.767400308044519 L 34.4929783023091,-0.767376408044585 L 34.49298600230912,-0.767346608044652 L 34.493002902309115,-0.767332508044675 L 34.49301420230913,-0.767317108044714 L 34.493021202309144,-0.767296208044747 L 34.493024802309144,-0.767276608044803 L 34.49300760230917,-0.767263008044834 L 34.49300070230919,-0.767235908044922 L 34.493000102309196,-0.767203308044987 L 34.49300880230922,-0.767181908045045 L 34.493024502309225,-0.767166308045061 L 34.49304900230923,-0.76715030804509 L 34.49307030230923,-0.767145508045098 L 34.49308910230923,-0.767137608045094 L 34.49310680230922,-0.76713170804509 L 34.493129302309235,-0.767126808045087 L 34.493154002309225,-0.767122408045103 L 34.49318250230924,-0.767118408045081 L 34.49321460230924,-0.767119508045058 L 34.493227002309204,-0.767139208045014 L 34.49322570230919,-0.767164008044938 L 34.49321980230917,-0.76719750804486 L 34.49321870230917,-0.767215808044823 L 34.49321470230915,-0.767234308044781 L 34.493206202309146,-0.767267108044705 L 34.49320100230912,-0.767291808044653 L 34.49320680230911,-0.767316608044578 L 34.4932140023091,-0.767342808044529 L 34.49322190230908,-0.767371108044454 L 34.49322370230906,-0.767396708044389 L 34.49322060230905,-0.767423208044327 L 34.49321830230902,-0.767454508044243 L 34.49321450230901,-0.767476108044204 L 34.493201402309,-0.767504208044128 L 34.49319660230898,-0.767528108044063 L 34.49319730230895,-0.767564708043986 L 34.49319710230893,-0.767586208043934 L 34.49319580230893,-0.767605408043891 L 34.49319630230891,-0.767637308043818 L 34.493202702308906,-0.76765740804376 L 34.493194802308864,-0.76769430804369 L 34.493186502308866,-0.767716908043621 L 34.493181702308874,-0.767737808043584 L 34.49318000230884,-0.767763308043514 L 34.49318280230881,-0.767784608043459 L 34.49318890230881,-0.767815808043381 L 34.49319150230879,-0.767844608043309 L 34.493205102308764,-0.767871708043241 L 34.493224402308755,-0.767897908043162 L 34.49323130230872,-0.767930208043072 L 34.49323710230872,-0.767948308043036 L 34.4932429023087,-0.767969008042974 L 34.49326210230868,-0.768002708042884 L 34.49327620230866,-0.768024208042817 L 34.49327900230865,-0.768045108042779 L 34.493280602308644,-0.768063408042713 L 34.493276902308615,-0.768085508042675 L 34.493266202308604,-0.768118208042603 L 34.49326650230858,-0.768150208042526 L 34.49326210230858,-0.768172808042472 L 34.493254502308545,-0.768200408042405 L 34.49324120230854,-0.76821980804237 L 34.49323630230854,-0.768242808042322 L 34.49323450230852,-0.768264008042274 L 34.49323510230851,-0.768285208042207 L 34.493239702308486,-0.768311008042153 L 34.49324090230848,-0.768338608042088 L 34.49324800230847,-0.768362308042024 L 34.49325260230843,-0.768399508041927 L 34.49325890230841,-0.768423508041853 L 34.493267702308394,-0.76843970804182 L 34.49326470230839,-0.768465008041753 L 34.49326180230837,-0.768491908041703 L 34.49325440230836,-0.768512408041649 L 34.493255702308346,-0.768533708041602 L 34.49324500230835,-0.768548608041563 L 34.49325360230831,-0.768605608041414 L 34.49323590230831,-0.768612408041415 L 34.493209102308306,-0.768605908041449 L 34.49317720230831,-0.768606508041471 L 34.493148802308305,-0.768601808041512 L 34.49312420230832,-0.768600408041518 L 34.49308500230834,-0.768587308041574 L 34.49306310230834,-0.768580008041593 L 34.49304470230835,-0.768566008041649 L 34.49301210230837,-0.768555408041689 L 34.493017602308385,-0.768509908041804 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.475641102311144,-0.767338008055576 L 34.47566070231115,-0.767314508055626 L 34.47568130231117,-0.767293808055669 L 34.475699602311174,-0.767276508055682 L 34.47571940231117,-0.767256908055714 L 34.47573760231119,-0.767238008055755 L 34.4757579023112,-0.767219708055793 L 34.4757744023112,-0.767196608055842 L 34.47578910231123,-0.767172508055894 L 34.47581010231124,-0.767159208055904 L 34.47583290231125,-0.76714380805593 L 34.47585590231125,-0.767123508055979 L 34.47588210231126,-0.767109208055995 L 34.475897202311266,-0.767091508056019 L 34.47591640231128,-0.767081808056021 L 34.475930902311276,-0.767070308056049 L 34.47594550231129,-0.767047708056093 L 34.475964402311305,-0.76703310805611 L 34.475979402311296,-0.767015008056168 L 34.476007802311294,-0.767019208056121 L 34.47603320231128,-0.767033308056085 L 34.47605930231126,-0.767054108056022 L 34.47608520231125,-0.767067508055956 L 34.47608980231124,-0.767087608055904 L 34.47607310231124,-0.767099408055888 L 34.476055002311234,-0.767117308055859 L 34.47603270231122,-0.767135008055823 L 34.476006102311224,-0.767145808055816 L 34.475986702311204,-0.767155508055805 L 34.47596950231121,-0.767165708055783 L 34.4759434023112,-0.767187708055761 L 34.475933302311184,-0.76720660805572 L 34.47590550231119,-0.767227008055677 L 34.475880902311175,-0.76724200805566 L 34.47585930231117,-0.767259708055634 L 34.47584420231116,-0.767282508055585 L 34.47583210231114,-0.767305308055539 L 34.47581670231114,-0.767318308055504 L 34.47579750231112,-0.767336508055488 L 34.47576970231111,-0.76734910805548 L 34.47574900231111,-0.767369108055436 L 34.4757345023111,-0.767393308055381 L 34.47571590231108,-0.767413408055349 L 34.475701802311086,-0.767430208055307 L 34.475680302311076,-0.767451608055289 L 34.475659002311055,-0.767469708055238 L 34.47564120231105,-0.767483208055222 L 34.47562260231105,-0.767492108055208 L 34.47561020231103,-0.767508808055187 L 34.47559420231102,-0.767525508055155 L 34.47557740231101,-0.767550408055099 L 34.47555650231101,-0.767572808055063 L 34.47553910231099,-0.767598808055023 L 34.475521502310976,-0.767618808054969 L 34.475501602311,-0.767611408055003 L 34.475488302311,-0.767591508055062 L 34.47547250231102,-0.767574908055104 L 34.47545480231103,-0.767559708055157 L 34.47545930231102,-0.767550108055173 L 34.47547020231104,-0.76753500805522 L 34.475490302311044,-0.767514808055236 L 34.47551050231106,-0.767496508055271 L 34.47553320231108,-0.7674767080553 L 34.475558102311076,-0.767456708055334 L 34.475578602311096,-0.767439208055379 L 34.475595802311105,-0.767419008055416 L 34.475611902311115,-0.767398108055456 L 34.47562790231113,-0.767373408055515 L 34.47563310231114,-0.767354808055554 L 34.475641102311144,-0.767338008055576 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.488661102308924,-0.768459508044665 L 34.48864890230895,-0.768433808044734 L 34.488639102308966,-0.768414408044785 L 34.48863470230897,-0.768392708044833 L 34.48863160230899,-0.768371808044895 L 34.488629302309,-0.768340708044977 L 34.48862160230904,-0.768307508045052 L 34.48861160230904,-0.768288208045113 L 34.48860130230906,-0.768267008045174 L 34.48859100230908,-0.768245208045225 L 34.48858320230908,-0.768219508045295 L 34.488577502309106,-0.768194208045358 L 34.48857000230913,-0.768168908045427 L 34.48856060230913,-0.768143708045487 L 34.488551902309155,-0.768120908045553 L 34.48854330230918,-0.768101308045613 L 34.48853590230919,-0.768084908045656 L 34.488529002309186,-0.768067108045706 L 34.488519102309205,-0.768035508045791 L 34.488511102309225,-0.768011708045849 L 34.488503002309244,-0.767987008045905 L 34.48849520230926,-0.767960808045991 L 34.48848850230928,-0.76793760804605 L 34.4884820023093,-0.767915508046109 L 34.488475302309304,-0.767897208046144 L 34.48846850230932,-0.767877908046194 L 34.48846320230932,-0.767858108046249 L 34.488461002309336,-0.7678393080463 L 34.48846080230935,-0.767820708046334 L 34.48845630230936,-0.767800108046392 L 34.488447602309385,-0.76777510804645 L 34.48843510230939,-0.767749108046531 L 34.48842050230942,-0.76772160804662 L 34.488411502309425,-0.767693308046685 L 34.48840510230946,-0.767667208046767 L 34.48839840230947,-0.767639408046825 L 34.488390002309494,-0.767613708046899 L 34.4883807023095,-0.76758730804696 L 34.48837210230953,-0.767561708047039 L 34.488361402309536,-0.767538408047099 L 34.48835120230955,-0.767516408047153 L 34.488342502309564,-0.767494308047205 L 34.48833630230959,-0.767470108047278 L 34.4883291023096,-0.767445108047341 L 34.48832260230961,-0.767419908047399 L 34.488317402309626,-0.767394808047472 L 34.488315502309646,-0.767367108047541 L 34.48831070230966,-0.767340108047599 L 34.488309402309675,-0.767318308047657 L 34.48830570230969,-0.767295008047709 L 34.4882916023097,-0.76727140804779 L 34.48827730230971,-0.767255408047829 L 34.48826580230974,-0.767240308047886 L 34.488260302309754,-0.767216308047927 L 34.48825970230976,-0.767196508048003 L 34.48824860230978,-0.767171308048058 L 34.488242802309806,-0.767146308048126 L 34.48824100230981,-0.767125108048174 L 34.48823230230982,-0.767105208048222 L 34.488222402309844,-0.767078808048306 L 34.48822170230984,-0.767056608048354 L 34.48822400230986,-0.767037408048398 L 34.488211602309875,-0.767020208048446 L 34.488199702309906,-0.766995408048518 L 34.48818630230991,-0.766967108048582 L 34.488180202309934,-0.766941008048663 L 34.48815960230994,-0.76692520804872 L 34.48813780230995,-0.766925708048721 L 34.48811030230997,-0.766926608048738 L 34.48808410230996,-0.766918308048783 L 34.48807790230995,-0.766900008048823 L 34.488070202309984,-0.766878708048872 L 34.48806170230999,-0.766855108048951 L 34.488052802310015,-0.766826508049026 L 34.48804880231003,-0.766797708049092 L 34.488048202310054,-0.766771908049147 L 34.488040402310055,-0.766750808049207 L 34.488032802310066,-0.766732408049264 L 34.48802750231008,-0.766706708049322 L 34.4880287023101,-0.766686208049377 L 34.48802850231011,-0.766668108049421 L 34.48802960231013,-0.766635208049501 L 34.488026402310155,-0.766608308049579 L 34.488020702310166,-0.766582608049627 L 34.488013502310174,-0.766562808049685 L 34.48801290231019,-0.766540108049737 L 34.488008302310206,-0.766515608049807 L 34.488003802310224,-0.766491308049865 L 34.488001902310245,-0.766461008049934 L 34.48800580231027,-0.766436308049987 L 34.48801190231027,-0.766416408050048 L 34.48801360231029,-0.7663898080501 L 34.48801820231031,-0.766367508050155 L 34.48801500231031,-0.766346808050209 L 34.48800410231033,-0.76631980805028 L 34.48799040231035,-0.766305508050321 L 34.487985202310355,-0.766277008050382 L 34.487985602310374,-0.766254008050455 L 34.48798930231039,-0.766235208050496 L 34.4879850023104,-0.766215308050549 L 34.487977002310416,-0.766199108050601 L 34.48796490231042,-0.76618400805063 L 34.487952802310424,-0.766170208050676 L 34.48796920231045,-0.766144208050724 L 34.487985502310465,-0.766128508050764 L 34.488005202310454,-0.766115208050779 L 34.48803050231046,-0.766106908050773 L 34.48804390231048,-0.766084608050821 L 34.488059002310486,-0.766068708050858 L 34.48807640231048,-0.766054308050882 L 34.48808930231049,-0.766040508050912 L 34.48811050231049,-0.766040608050885 L 34.488118802310474,-0.766063008050826 L 34.48811880231046,-0.766089908050757 L 34.488123102310446,-0.766112608050703 L 34.488132102310445,-0.766128508050657 L 34.488161202310415,-0.766151008050598 L 34.48817140231041,-0.766167608050539 L 34.4881754023104,-0.766194708050482 L 34.48816990231037,-0.766223408050418 L 34.48817450231036,-0.76625750805034 L 34.488181602310334,-0.766288408050247 L 34.48818880231032,-0.766310208050176 L 34.488193602310304,-0.766332908050125 L 34.48821000231029,-0.766352908050076 L 34.488215702310264,-0.766376808050002 L 34.488217302310254,-0.766404108049931 L 34.48822150231024,-0.766431208049877 L 34.488222602310216,-0.766456608049814 L 34.488218102310206,-0.76647780804976 L 34.488216602310196,-0.766504308049704 L 34.48823000231018,-0.766532808049616 L 34.48824110231016,-0.766560708049539 L 34.48825110231014,-0.766590908049457 L 34.48825330231012,-0.766620808049381 L 34.488257902310096,-0.766647008049327 L 34.488271802310074,-0.766671008049261 L 34.48828200231006,-0.766701808049168 L 34.48829100231004,-0.766730908049097 L 34.48829190231004,-0.766755908049033 L 34.48829060231001,-0.766778908048982 L 34.48828130231,-0.766799108048944 L 34.48829030231,-0.766823008048865 L 34.48829220230997,-0.766844508048836 L 34.48828200230996,-0.766867608048766 L 34.48827330230996,-0.766887608048728 L 34.48828220230994,-0.766908508048668 L 34.48830150230992,-0.766931108048595 L 34.48831950230992,-0.766960108048526 L 34.48833230230987,-0.766991008048446 L 34.48834100230986,-0.767019708048368 L 34.48835200230984,-0.767049008048297 L 34.48836470230982,-0.76707390804823 L 34.48837370230981,-0.767100108048154 L 34.488387602309786,-0.76712760804808 L 34.488396902309766,-0.76715540804799 L 34.48840070230974,-0.767182908047932 L 34.48840350230974,-0.767207008047886 L 34.48841300230972,-0.767236108047791 L 34.48841950230971,-0.767264608047737 L 34.48842590230968,-0.767297108047638 L 34.48842670230967,-0.76731600804759 L 34.48843250230964,-0.767345308047521 L 34.48844030230963,-0.767372708047438 L 34.48844860230962,-0.767403708047357 L 34.48845950230959,-0.767432808047295 L 34.48846870230959,-0.767449608047247 L 34.48848880230956,-0.767477508047165 L 34.48850380230953,-0.767506208047077 L 34.48850780230952,-0.767538908047004 L 34.48851150230951,-0.767568808046939 L 34.48851440230949,-0.767595108046859 L 34.48852480230947,-0.767624608046787 L 34.48853930230944,-0.767654508046694 L 34.48854520230943,-0.767671908046659 L 34.488560902309416,-0.767702308046566 L 34.4885662023094,-0.767720108046517 L 34.48857000230939,-0.767752008046441 L 34.48857670230937,-0.767784408046349 L 34.488596402309334,-0.76780840804629 L 34.488587702309324,-0.767825508046251 L 34.48856900230934,-0.767819608046278 L 34.48858820230933,-0.767829208046244 L 34.48860050230931,-0.767855108046167 L 34.4886000023093,-0.767882308046106 L 34.48860450230928,-0.767908808046042 L 34.48861700230927,-0.767934608045977 L 34.48863070230925,-0.767960508045903 L 34.48864400230923,-0.767976808045851 L 34.488658702309216,-0.767989808045809 L 34.48867110230921,-0.768008708045768 L 34.4886799023092,-0.768029108045707 L 34.488690102309185,-0.76804890804565 L 34.48869510230917,-0.768069508045599 L 34.48870490230915,-0.768092408045531 L 34.48871210230912,-0.768117508045456 L 34.48872370230912,-0.768140008045407 L 34.4887325023091,-0.768173508045321 L 34.48874410230907,-0.768203708045239 L 34.48875170230907,-0.768229808045163 L 34.48875400230905,-0.768256508045097 L 34.488766702309036,-0.768273908045053 L 34.48878600230902,-0.768295308044989 L 34.488790002309,-0.768320708044932 L 34.488793402308985,-0.76834980804484 L 34.48879240230897,-0.768376408044795 L 34.48879690230895,-0.768407808044703 L 34.48881570230895,-0.768430508044635 L 34.48883200230892,-0.768454208044575 L 34.488837302308895,-0.768475608044516 L 34.48885270230889,-0.768493608044469 L 34.48886040230888,-0.768510308044419 L 34.488816202308875,-0.768535208044394 L 34.48879480230887,-0.76854310804438 L 34.48877430230887,-0.768545008044385 L 34.48875540230887,-0.768544208044417 L 34.48875270230888,-0.768520308044454 L 34.488747302308894,-0.768501908044499 L 34.488742102308905,-0.768481708044566 L 34.488734402308914,-0.768461008044605 L 34.48873110230893,-0.768442808044655 L 34.488734402308936,-0.768422908044712 L 34.488709402308935,-0.768431808044704 L 34.48867850230894,-0.768451508044665 L 34.488661102308924,-0.768459508044665 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.45810480231347,-0.766862408067763 L 34.45810750231346,-0.766883408067701 L 34.45811580231345,-0.766910608067648 L 34.458114502313435,-0.766930008067587 L 34.45809590231343,-0.766941808067569 L 34.45808010231342,-0.766959308067535 L 34.45807180231341,-0.766978608067484 L 34.458057602313396,-0.766992408067467 L 34.458036302313396,-0.767003008067452 L 34.4580156023134,-0.76700620806747 L 34.4579940023134,-0.767012108067461 L 34.457971302313396,-0.767019108067464 L 34.45795150231339,-0.767019008067475 L 34.4579329023134,-0.767023708067483 L 34.45791200231339,-0.767032008067468 L 34.45789060231339,-0.767035508067472 L 34.4578720023134,-0.767037008067482 L 34.4578479023134,-0.767040608067479 L 34.45782690231339,-0.76704210806749 L 34.4578050023134,-0.767043708067493 L 34.457787002313395,-0.767052608067509 L 34.4577664023134,-0.767056008067491 L 34.4577454023134,-0.767061508067495 L 34.45772780231339,-0.767068108067484 L 34.4577039023134,-0.767074708067498 L 34.4576777023134,-0.767078008067518 L 34.45765310231341,-0.767082608067509 L 34.457628802313394,-0.767081008067533 L 34.457608102313394,-0.767081708067546 L 34.4575860023134,-0.767089008067543 L 34.4575639023134,-0.767093808067524 L 34.4575442023134,-0.767100708067515 L 34.4575231023134,-0.76711180806751 L 34.4574998023134,-0.76711340806754 L 34.45747500231341,-0.767118408067523 L 34.457456402313376,-0.767127108067527 L 34.45743120231339,-0.767135708067529 L 34.45740720231339,-0.767139708067523 L 34.457381402313395,-0.76714280806753 L 34.45736370231338,-0.767154408067507 L 34.45733830231339,-0.767155808067539 L 34.45731970231339,-0.767157908067532 L 34.45729830231338,-0.767159508067529 L 34.45727800231339,-0.767150408067572 L 34.45725930231339,-0.767145408067599 L 34.45723830231341,-0.76714920806761 L 34.4572117023134,-0.76714700806762 L 34.45719440231341,-0.767137208067663 L 34.45717460231342,-0.7671273080677 L 34.457151902313434,-0.767118708067743 L 34.457133002313434,-0.767103408067784 L 34.457125702313455,-0.767083008067829 L 34.45713110231346,-0.767059108067898 L 34.45714730231347,-0.767041808067931 L 34.45716830231348,-0.767030008067943 L 34.457192602313484,-0.767021208067945 L 34.45721540231349,-0.767013008067946 L 34.45724140231349,-0.767004908067954 L 34.45726190231349,-0.76699590806795 L 34.45728210231349,-0.76699210806797 L 34.4572998023135,-0.766977808067987 L 34.45731590231351,-0.766960708068027 L 34.45733780231351,-0.76695270806802 L 34.45736040231352,-0.766943508068028 L 34.457382002313516,-0.76693710806804 L 34.45740260231352,-0.766926608068043 L 34.457425102313515,-0.766916508068046 L 34.45744740231352,-0.766910208068069 L 34.45746500231353,-0.766901808068064 L 34.45748500231353,-0.766885008068105 L 34.45750660231354,-0.766873708068093 L 34.45752830231355,-0.766857908068138 L 34.45754840231355,-0.766850208068131 L 34.457566202313565,-0.766845408068137 L 34.45758500231356,-0.766842408068136 L 34.457611502313554,-0.766838308068124 L 34.45763190231355,-0.766833908068135 L 34.45764910231355,-0.766822608068143 L 34.45767490231356,-0.766814008068136 L 34.457698602313556,-0.766806008068155 L 34.457722402313564,-0.766804008068145 L 34.45774280231357,-0.766801008068118 L 34.45776320231356,-0.766793208068151 L 34.45778300231357,-0.766777908068165 L 34.45780380231358,-0.766763108068178 L 34.45782290231357,-0.766755108068192 L 34.45783960231358,-0.766746308068213 L 34.457855902313575,-0.766738308068214 L 34.45787310231359,-0.766730108068216 L 34.45789410231358,-0.766721308068233 L 34.4579168023136,-0.766710508068243 L 34.45793790231358,-0.766701708068264 L 34.45795640231359,-0.766695408068263 L 34.45797520231359,-0.766691408068255 L 34.4579917023136,-0.766681408068254 L 34.45800730231361,-0.766670108068286 L 34.45802850231361,-0.766661508068289 L 34.458046902313605,-0.766651808068309 L 34.458055902313625,-0.766632908068346 L 34.45805670231362,-0.766660808068276 L 34.4580734023136,-0.766673108068237 L 34.458086602313585,-0.766693108068181 L 34.45808740231357,-0.766718208068125 L 34.45808980231356,-0.766736308068064 L 34.45809660231354,-0.76675500806802 L 34.45810150231353,-0.766777008067962 L 34.45810550231352,-0.766795608067917 L 34.45810960231351,-0.766815308067864 L 34.458107502313496,-0.766838008067815 L 34.45810480231347,-0.766862408067763 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.462043902313106,-0.766708708065655 L 34.462022302313116,-0.766700108065681 L 34.46200410231313,-0.766694308065721 L 34.46199500231312,-0.766711708065681 L 34.462001902313105,-0.76674130806559 L 34.46201670231308,-0.766767508065535 L 34.46202850231308,-0.766789908065469 L 34.462038002313044,-0.766813708065394 L 34.46204900231303,-0.766834108065352 L 34.46204820231302,-0.766856108065296 L 34.46205440231301,-0.766885508065216 L 34.462055302313,-0.766903908065184 L 34.462037302312986,-0.766922408065147 L 34.46201280231299,-0.766927308065143 L 34.46198770231298,-0.766932708065136 L 34.46197130231299,-0.766942808065134 L 34.46195810231297,-0.766956808065108 L 34.461941002312976,-0.766945108065148 L 34.461918202312994,-0.766938408065173 L 34.46189710231298,-0.766942508065169 L 34.46187690231298,-0.766948108065181 L 34.461861402312984,-0.76693860806521 L 34.461853502313005,-0.766915508065273 L 34.461851602313025,-0.766892808065334 L 34.46185260231304,-0.766871208065374 L 34.46184580231305,-0.76685270806543 L 34.46184420231307,-0.766829808065481 L 34.461841902313076,-0.766806208065541 L 34.4618273023131,-0.766782408065619 L 34.46181810231311,-0.766764908065663 L 34.46181310231312,-0.766745008065704 L 34.46181500231313,-0.766719208065769 L 34.461820102313155,-0.766700408065829 L 34.461833502313155,-0.766686808065837 L 34.46183900231318,-0.766661208065903 L 34.461839902313194,-0.766637408065949 L 34.4618378023132,-0.766614208066014 L 34.46183400231321,-0.766595408066075 L 34.461826102313225,-0.766573608066114 L 34.46182050231324,-0.766551408066179 L 34.46180650231326,-0.766523208066258 L 34.46179540231328,-0.766500508066323 L 34.46181100231328,-0.766483208066351 L 34.461828102313284,-0.766475608066366 L 34.461850702313285,-0.766470908066368 L 34.46187220231328,-0.766468508066349 L 34.46189360231328,-0.766469708066324 L 34.461911602313265,-0.766470708066318 L 34.461928402313276,-0.766478808066287 L 34.461953502313285,-0.766468008066283 L 34.46197530231328,-0.766459608066292 L 34.46199360231327,-0.766455008066291 L 34.46200650231328,-0.766436808066348 L 34.4620148023133,-0.766420708066375 L 34.4620353023133,-0.766398408066407 L 34.462054602313316,-0.766390508066431 L 34.4620742023133,-0.766398708066384 L 34.46208090231328,-0.766420808066324 L 34.46209660231328,-0.766444408066281 L 34.462112702313256,-0.766458408066216 L 34.46212870231325,-0.766475308066168 L 34.462140902313244,-0.766489208066129 L 34.462152502313224,-0.766511108066071 L 34.462164402313206,-0.766530308066021 L 34.46217230231319,-0.766553008065955 L 34.46218150231319,-0.76657180806589 L 34.46217920231317,-0.766595108065859 L 34.462171502313126,-0.766653508065706 L 34.46217550231311,-0.766688908065612 L 34.46217530231309,-0.766722408065525 L 34.46215840231308,-0.766747408065475 L 34.462139202313075,-0.766763608065458 L 34.462116602313074,-0.766764808065484 L 34.4621172023131,-0.766718108065575 L 34.46212530231311,-0.766693208065642 L 34.46210400231311,-0.766702208065633 L 34.4620774023131,-0.766711108065631 L 34.46205640231311,-0.766721808065618 L 34.462043902313106,-0.766708708065655 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.4658103023128,-0.766514108063766 L 34.46578760231281,-0.76651750806377 L 34.4657633023128,-0.766528208063757 L 34.465743002312806,-0.766540608063749 L 34.465728102312774,-0.766551208063732 L 34.465712502312776,-0.766562708063694 L 34.465687802312765,-0.766574008063684 L 34.46566580231276,-0.766577708063697 L 34.46564290231277,-0.766584108063697 L 34.46562120231277,-0.766596208063685 L 34.46559330231276,-0.766608108063675 L 34.46556970231278,-0.766614608063666 L 34.465550502312766,-0.76662180806367 L 34.46552640231276,-0.766633008063649 L 34.465503102312766,-0.766642108063647 L 34.46548520231276,-0.766644408063659 L 34.465465002312754,-0.766653708063638 L 34.46544990231275,-0.76666600806363 L 34.46543420231274,-0.766677408063605 L 34.46541280231275,-0.766682908063599 L 34.465391102312736,-0.766692508063586 L 34.46537410231274,-0.766698908063588 L 34.46535280231273,-0.766710808063569 L 34.46533140231272,-0.766718508063558 L 34.46531280231273,-0.76672510806357 L 34.46528880231273,-0.766734308063558 L 34.46526780231272,-0.766743308063535 L 34.46524830231272,-0.766751208063538 L 34.46523040231272,-0.766754308063547 L 34.46521150231272,-0.76676380806353 L 34.4651910023127,-0.766777508063499 L 34.46516140231271,-0.766790408063489 L 34.46513700231271,-0.766797008063502 L 34.46512270231271,-0.766785308063523 L 34.46511390231273,-0.766760508063591 L 34.46510750231274,-0.766741008063662 L 34.46512220231275,-0.766724508063689 L 34.465142502312744,-0.76671730806368 L 34.46516500231276,-0.766705108063696 L 34.465183902312766,-0.766697508063716 L 34.46520400231276,-0.766687808063729 L 34.46522670231276,-0.766676508063734 L 34.465249402312764,-0.766670108063737 L 34.46527880231277,-0.766665508063739 L 34.46530110231278,-0.76665460806374 L 34.46532070231277,-0.766639708063766 L 34.46534510231278,-0.76662920806376 L 34.46537600231277,-0.766617808063786 L 34.46540660231278,-0.766605908063789 L 34.46542400231278,-0.766600408063797 L 34.465451402312794,-0.766587908063814 L 34.465475702312794,-0.766576908063829 L 34.4654965023128,-0.76656910806382 L 34.46552220231281,-0.766557208063838 L 34.465541402312795,-0.766553608063827 L 34.46555780231281,-0.766541508063857 L 34.46557450231281,-0.766532308063855 L 34.46559840231282,-0.766518408063887 L 34.46562040231282,-0.766508008063902 L 34.465646902312834,-0.7664974080639 L 34.46567330231284,-0.766482708063926 L 34.46568680231283,-0.766469008063956 L 34.46569230231285,-0.766451608063988 L 34.46570190231285,-0.766435108064028 L 34.46569200231288,-0.766418508064055 L 34.465682602312896,-0.766393008064126 L 34.4656846023129,-0.766374208064172 L 34.4656802023129,-0.766352508064234 L 34.46567030231293,-0.766336008064285 L 34.46566220231292,-0.766319108064324 L 34.46565680231294,-0.766293708064395 L 34.46565020231297,-0.766268608064447 L 34.46563610231299,-0.766243908064518 L 34.465627502313,-0.766220508064596 L 34.465621802313024,-0.76619770806465 L 34.46561230231302,-0.766181608064694 L 34.46560310231304,-0.766163408064746 L 34.46559300231306,-0.766142508064797 L 34.465587602313065,-0.766124408064843 L 34.46559240231308,-0.766103208064906 L 34.46561440231309,-0.766086908064916 L 34.465632402313084,-0.766079708064925 L 34.465653902313086,-0.766070208064945 L 34.46567650231309,-0.766063108064937 L 34.4656984023131,-0.766054108064947 L 34.46572470231311,-0.766040708064968 L 34.465746202313106,-0.766029408064985 L 34.46576650231311,-0.766023408064982 L 34.465785802313114,-0.766014708065 L 34.465806602313116,-0.765999308065006 L 34.46582290231312,-0.76598340806504 L 34.46583820231314,-0.765973808065063 L 34.46585950231314,-0.765961708065078 L 34.465871102313145,-0.765944808065097 L 34.465889902313144,-0.765934508065114 L 34.46590830231315,-0.765925708065121 L 34.46592790231313,-0.765934408065101 L 34.46594130231312,-0.765954708065029 L 34.46595990231311,-0.765972508064988 L 34.465978102313116,-0.765979508064963 L 34.46600480231311,-0.765981908064938 L 34.466020102313095,-0.765994308064882 L 34.46603710231309,-0.766007508064857 L 34.466048202313075,-0.766024308064804 L 34.46605800231305,-0.766047108064748 L 34.466067702313055,-0.766065808064696 L 34.46607540231303,-0.76608570806464 L 34.46608300231301,-0.76611070806457 L 34.46608490231299,-0.766136008064509 L 34.46609000231299,-0.766162408064441 L 34.466089902312966,-0.766188808064368 L 34.46608210231295,-0.766214808064303 L 34.46608030231293,-0.766239608064261 L 34.46608790231292,-0.766263108064202 L 34.46609930231291,-0.766280108064143 L 34.4661151023129,-0.766294308064108 L 34.46612330231287,-0.766317308064038 L 34.46613450231287,-0.766338308063998 L 34.466132102312855,-0.766366008063912 L 34.46611600231284,-0.766385408063882 L 34.46610090231283,-0.766398708063873 L 34.46608000231282,-0.766410008063831 L 34.46605850231283,-0.766415408063851 L 34.46603530231283,-0.766422908063851 L 34.466009202312826,-0.766430208063841 L 34.465982802312816,-0.766440808063822 L 34.465963302312815,-0.766446208063825 L 34.465938002312825,-0.766454508063839 L 34.465913102312804,-0.766467708063802 L 34.46588690231282,-0.766478608063796 L 34.465859402312795,-0.766493108063785 L 34.4658357023128,-0.766508508063762 L 34.4658103023128,-0.766514108063766 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.457081102313964,-0.766258008069865 L 34.457056502313975,-0.76626160806988 L 34.45703340231396,-0.766267108069868 L 34.457010202313974,-0.766264608069904 L 34.456986802313985,-0.766264208069919 L 34.45697330231397,-0.766281608069878 L 34.45694760231396,-0.766294508069863 L 34.45692830231396,-0.766299608069862 L 34.45690440231396,-0.766309608069853 L 34.45688300231395,-0.766323908069836 L 34.45686580231395,-0.766337108069816 L 34.456842202313936,-0.766345508069803 L 34.45681100231395,-0.766357008069792 L 34.456781402313936,-0.766369408069786 L 34.456763102313936,-0.766382308069769 L 34.45674890231395,-0.766363108069817 L 34.45674220231396,-0.766343308069878 L 34.456734002313965,-0.766319608069936 L 34.45672350231399,-0.766293208070008 L 34.45671410231401,-0.766266308070089 L 34.45670410231403,-0.766243308070148 L 34.456696202314035,-0.766224908070189 L 34.45669550231405,-0.766202108070249 L 34.456700602314065,-0.766180108070307 L 34.45671720231407,-0.76616500807033 L 34.45673600231408,-0.766149508070348 L 34.45675340231408,-0.766137908070362 L 34.45677060231409,-0.766128908070377 L 34.45679090231409,-0.766127308070362 L 34.45681180231409,-0.766116508070376 L 34.456829802314104,-0.766095008070428 L 34.4568483023141,-0.766084808070439 L 34.45686960231411,-0.766082008070433 L 34.456892402314104,-0.766078408070436 L 34.45691260231411,-0.76606910807044 L 34.45693740231411,-0.766060108070435 L 34.456954202314115,-0.766044708070478 L 34.45697220231411,-0.766040408070455 L 34.45699050231411,-0.766032608070472 L 34.457012702314124,-0.766021208070493 L 34.457029102314124,-0.766012508070503 L 34.457044002314134,-0.766000608070528 L 34.45706390231413,-0.765994408070517 L 34.45708620231413,-0.765987708070538 L 34.45710610231413,-0.765982908070524 L 34.45712300231414,-0.76597630807053 L 34.457146202314135,-0.765973708070518 L 34.45716550231414,-0.765968708070518 L 34.45718370231415,-0.765965708070518 L 34.45719960231414,-0.765985008070469 L 34.45721110231411,-0.766000308070412 L 34.4572270023141,-0.766019108070359 L 34.45723940231408,-0.7660345080703 L 34.45725100231408,-0.76605840807024 L 34.45725990231405,-0.766076608070202 L 34.45726690231404,-0.766100608070134 L 34.45726920231403,-0.76612780807007 L 34.45727050231403,-0.766149208070006 L 34.457268202314,-0.766168208069963 L 34.45743700231395,-0.766216808069742 L 34.457365602313956,-0.766230908069744 L 34.45731480231397,-0.766233908069776 L 34.45728050231396,-0.7662337080698 L 34.45725050231396,-0.766232208069816 L 34.45721590231398,-0.766232808069844 L 34.457193502313984,-0.76623180806987 L 34.45716970231397,-0.766234008069878 L 34.45714680231397,-0.766238008069875 L 34.457123902313974,-0.766240708069878 L 34.45710140231398,-0.766246508069885 L 34.457081102313964,-0.766258008069865 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.467736502312796,-0.766139908063463 L 34.46772260231278,-0.766153608063439 L 34.467696802312794,-0.766160608063429 L 34.46767380231279,-0.766164108063441 L 34.4676533023128,-0.766162208063452 L 34.467633902312805,-0.76616640806345 L 34.467614302312796,-0.76617480806345 L 34.46759340231279,-0.766181008063446 L 34.467574802312804,-0.766178908063471 L 34.467544902312795,-0.76618980806345 L 34.467516802312794,-0.766200508063459 L 34.46749560231278,-0.766203608063453 L 34.46747300231279,-0.766211708063456 L 34.46745400231279,-0.766208608063479 L 34.4674256023128,-0.766205508063484 L 34.46740000231279,-0.766211608063508 L 34.4673782023128,-0.766219008063498 L 34.4673554023128,-0.76623140806348 L 34.46732900231278,-0.76624760806345 L 34.46730240231279,-0.766256408063459 L 34.46728180231278,-0.766258008063451 L 34.4672576023128,-0.766252508063495 L 34.46723600231278,-0.766260708063485 L 34.467217602312786,-0.766264608063485 L 34.46719570231279,-0.766266008063495 L 34.46717450231278,-0.766271408063504 L 34.4671505023128,-0.766271208063506 L 34.467129102312796,-0.766272008063521 L 34.4671077023128,-0.766268108063541 L 34.467083602312805,-0.766273208063555 L 34.46705510231279,-0.766290008063525 L 34.46703770231279,-0.766294608063523 L 34.46701220231279,-0.766295608063547 L 34.4669946023128,-0.76630110806354 L 34.46697260231279,-0.766311808063527 L 34.4669494023128,-0.766316608063526 L 34.46692570231278,-0.766326008063517 L 34.466905002312785,-0.766328008063529 L 34.4668762023128,-0.766327408063553 L 34.46685900231278,-0.766339708063518 L 34.466832502312776,-0.766353208063513 L 34.466804902312774,-0.766364808063489 L 34.46678290231278,-0.766374708063481 L 34.46675970231276,-0.766382908063491 L 34.46673160231277,-0.766391208063479 L 34.46670550231278,-0.7663904080635 L 34.46667630231277,-0.766396608063511 L 34.466659202312776,-0.766402208063512 L 34.466630302312765,-0.766406208063502 L 34.46660330231278,-0.766411808063506 L 34.46658100231278,-0.766397508063562 L 34.466565902312794,-0.766384608063598 L 34.4665520023128,-0.766365908063649 L 34.46653950231282,-0.766342208063712 L 34.46653580231284,-0.76631440806379 L 34.46653300231286,-0.766286408063866 L 34.46653850231288,-0.766265908063922 L 34.46656040231288,-0.766246708063947 L 34.46659120231287,-0.766250208063913 L 34.46660390231285,-0.76626410806388 L 34.466625502312866,-0.766263108063864 L 34.46665140231286,-0.766258808063858 L 34.466671902312875,-0.766247508063876 L 34.46668970231286,-0.766238708063883 L 34.46671010231288,-0.766224508063902 L 34.46673140231287,-0.766221608063898 L 34.46675320231288,-0.766211708063903 L 34.46677120231287,-0.766207108063909 L 34.46678760231288,-0.766199608063908 L 34.46681140231289,-0.766192908063917 L 34.4668316023129,-0.766172408063948 L 34.46685890231289,-0.766161508063965 L 34.46688150231289,-0.766158608063942 L 34.466900702312884,-0.766158608063951 L 34.466929402312886,-0.766151308063942 L 34.466954102312904,-0.76613910806396 L 34.46697810231289,-0.766137108063954 L 34.467000202312896,-0.766133008063938 L 34.467023202312895,-0.766130808063946 L 34.4670471023129,-0.766129208063927 L 34.467073702312895,-0.766120508063925 L 34.4670952023129,-0.766116208063918 L 34.46711620231289,-0.76611350806392 L 34.46713470231289,-0.766110708063913 L 34.46715720231289,-0.766117308063872 L 34.46718080231289,-0.766123108063849 L 34.46721100231289,-0.766118808063837 L 34.46723500231289,-0.766097908063879 L 34.467256002312894,-0.766087208063886 L 34.4672718023129,-0.766075708063911 L 34.4672904023129,-0.766071808063903 L 34.4673125023129,-0.76606160806392 L 34.46733750231291,-0.766041808063948 L 34.46735130231291,-0.766030108063968 L 34.46736700231292,-0.766018908063986 L 34.46739830231292,-0.766018608063975 L 34.46741990231292,-0.766022908063954 L 34.46744170231291,-0.76602360806392 L 34.4674613023129,-0.766021208063921 L 34.467482202312915,-0.766013608063915 L 34.46750670231292,-0.76600720806393 L 34.467531902312906,-0.765993008063948 L 34.467560502312914,-0.76598760806393 L 34.46758660231292,-0.765974908063962 L 34.467609402312924,-0.765961208063977 L 34.46762980231293,-0.76595700806398 L 34.467654002312926,-0.765953008063969 L 34.46767130231294,-0.76593950806398 L 34.46769500231294,-0.765925808064014 L 34.46771320231294,-0.76592600806399 L 34.46773180231294,-0.765927608063974 L 34.467731702312946,-0.765920008063987 L 34.467753902312936,-0.765931308063959 L 34.467771902312926,-0.765951608063907 L 34.467782602312894,-0.765984908063811 L 34.467787502312866,-0.76601190806373 L 34.46779120231287,-0.766033108063686 L 34.46779280231285,-0.766056208063618 L 34.467802802312825,-0.766081808063558 L 34.46780030231282,-0.76610750806351 L 34.467794502312806,-0.766124608063461 L 34.46777400231281,-0.766127408063468 L 34.4677564023128,-0.766132108063468 L 34.467736502312796,-0.766139908063463 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.4636267023136,-0.76563570806727 L 34.4636449023136,-0.765634908067259 L 34.46367960231359,-0.765628908067256 L 34.46370310231359,-0.765622308067258 L 34.46373150231359,-0.765615208067257 L 34.46376050231359,-0.765607208067258 L 34.46378710231359,-0.765602808067258 L 34.46381240231359,-0.765600508067243 L 34.4638405023136,-0.765590708067245 L 34.4638746023136,-0.765579908067243 L 34.46389690231361,-0.765575608067247 L 34.463932302313616,-0.765562608067266 L 34.4639681023136,-0.765557408067246 L 34.464001702313595,-0.765554808067216 L 34.46403080231361,-0.765551508067221 L 34.464056702313606,-0.765539608067239 L 34.4640779023136,-0.765547908067204 L 34.46408390231358,-0.765569308067147 L 34.46409320231357,-0.765592508067086 L 34.464097302313554,-0.765617008067023 L 34.46408660231355,-0.765637108066975 L 34.46405560231354,-0.765643308066967 L 34.464024402313534,-0.765644708066995 L 34.464005802313544,-0.765647808067004 L 34.46398240231354,-0.765654208067 L 34.46395970231354,-0.765660308066998 L 34.46393940231354,-0.765664608067 L 34.46391890231354,-0.765672008066998 L 34.46389790231354,-0.765676508067013 L 34.46386370231354,-0.765681608067006 L 34.463839802313544,-0.765688808066994 L 34.46381430231354,-0.765695108066997 L 34.463787002313545,-0.765701208067014 L 34.46375650231354,-0.765702308067036 L 34.46372990231354,-0.765708308067017 L 34.46370520231354,-0.765711108067033 L 34.463681102313544,-0.765712008067044 L 34.46365110231355,-0.765717608067064 L 34.46361990231353,-0.765724408067051 L 34.46358910231355,-0.765730408067076 L 34.46356830231353,-0.765736308067062 L 34.46354210231353,-0.765738008067072 L 34.46350980231354,-0.765745208067062 L 34.46348300231353,-0.76575230806708 L 34.46345450231353,-0.765757008067085 L 34.46343560231353,-0.765759308067095 L 34.463455602313566,-0.765730108067136 L 34.46344700231357,-0.765714308067199 L 34.46344690231357,-0.76568940806725 L 34.46346140231359,-0.765666608067285 L 34.4634915023136,-0.765659108067303 L 34.46351300231359,-0.765654508067287 L 34.46353770231361,-0.765649708067287 L 34.4635608023136,-0.765644608067282 L 34.46358300231359,-0.7656401080673 L 34.46360580231359,-0.765637108067278 L 34.4636267023136,-0.76563570806727 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.460314002314064,-0.765488508069719 L 34.46029090231406,-0.765488608069724 L 34.46027080231407,-0.765492108069728 L 34.46024650231407,-0.765488108069762 L 34.46022170231408,-0.765485508069777 L 34.46019810231408,-0.765482908069783 L 34.46017120231408,-0.765485008069805 L 34.46015160231409,-0.765485608069817 L 34.460131802314095,-0.765486608069826 L 34.4601091023141,-0.765488308069844 L 34.4600871023141,-0.765488508069841 L 34.46006280231411,-0.765489408069865 L 34.46003620231409,-0.765496208069866 L 34.460015002314094,-0.765495208069885 L 34.45999460231411,-0.765493108069908 L 34.45996960231412,-0.76548860806993 L 34.459947602314124,-0.765486708069951 L 34.45992040231411,-0.765486408069967 L 34.459896902314114,-0.765491108069964 L 34.459872902314146,-0.765481808070005 L 34.45985180231414,-0.765480208070032 L 34.45982880231412,-0.765477508070038 L 34.45980380231414,-0.765475808070052 L 34.45977990231415,-0.765473308070082 L 34.45975840231415,-0.765474208070079 L 34.459733902314156,-0.765474208070096 L 34.45971300231415,-0.76547190807012 L 34.45969050231416,-0.765469708070144 L 34.45967140231416,-0.765469508070151 L 34.45965040231417,-0.765465908070179 L 34.45963060231418,-0.765451808070235 L 34.45962560231419,-0.765430008070285 L 34.459613202314195,-0.765407608070351 L 34.459599202314216,-0.765384508070403 L 34.45958880231424,-0.765358508070481 L 34.459580302314244,-0.765334108070538 L 34.45957220231426,-0.765310508070613 L 34.459563702314284,-0.76528290807068 L 34.45955820231429,-0.765257608070748 L 34.45955140231432,-0.765235308070812 L 34.459543702314335,-0.765207408070873 L 34.459542302314354,-0.765183108070941 L 34.459538202314356,-0.765158208071001 L 34.45952940231438,-0.765131508071069 L 34.459547602314395,-0.765114408071097 L 34.45957050231439,-0.76511280807108 L 34.459588702314385,-0.765109008071084 L 34.459610602314385,-0.765105708071069 L 34.459633802314386,-0.765098008071083 L 34.45965330231439,-0.765097608071085 L 34.45967690231438,-0.765099808071047 L 34.45969790231438,-0.765100908071035 L 34.45971870231438,-0.765098908071036 L 34.45974280231438,-0.765102308071006 L 34.45976850231437,-0.765104508070984 L 34.459797002314374,-0.765100808070983 L 34.45982100231437,-0.765094308070969 L 34.459842002314375,-0.765090908070971 L 34.45986160231437,-0.765095908070949 L 34.45987990231436,-0.76509940807093 L 34.459900002314356,-0.765099908070919 L 34.45991950231436,-0.765104108070896 L 34.45994150231435,-0.76510320807088 L 34.459959602314356,-0.765099108070888 L 34.45998410231436,-0.765095208070863 L 34.46000810231434,-0.765100708070839 L 34.46002690231434,-0.765107008070826 L 34.46005260231434,-0.765108408070784 L 34.460072202314336,-0.765107408070795 L 34.46009110231434,-0.765113208070763 L 34.46011720231432,-0.76511170807076 L 34.46013560231432,-0.765117908070718 L 34.46015370231431,-0.765121708070708 L 34.4601744023143,-0.765124508070676 L 34.4601973023143,-0.765125808070656 L 34.460226202314296,-0.765125408070647 L 34.46024860231431,-0.765117608070652 L 34.46026910231431,-0.765116408070645 L 34.46028980231431,-0.76511980807062 L 34.46031670231429,-0.765121508070591 L 34.460335102314296,-0.765122608070594 L 34.46035330231431,-0.7651172080706 L 34.4603732023143,-0.765116908070577 L 34.46039880231429,-0.76511630807057 L 34.46042550231428,-0.765119608070533 L 34.46045250231429,-0.765125108070498 L 34.46047540231428,-0.765126308070479 L 34.460492402314266,-0.765132408070471 L 34.46049940231427,-0.76514920807041 L 34.460504502314244,-0.765176008070353 L 34.46051120231423,-0.76520190807028 L 34.46052060231421,-0.765225608070215 L 34.46053060231419,-0.765249208070151 L 34.46053970231418,-0.765275908070095 L 34.46054310231416,-0.765298508070032 L 34.46054690231415,-0.765318308069972 L 34.46055480231413,-0.765338808069925 L 34.46055890231414,-0.765362908069859 L 34.460561402314106,-0.765386408069805 L 34.46056960231409,-0.765408408069744 L 34.46057220231407,-0.76543570806967 L 34.460580302314064,-0.765452808069636 L 34.46057950231406,-0.765460308069601 L 34.46055980231406,-0.765466908069608 L 34.46053630231406,-0.765468708069615 L 34.46051320231407,-0.765468508069637 L 34.46049480231407,-0.765466908069637 L 34.46047410231406,-0.765472308069652 L 34.460453202314056,-0.765479608069646 L 34.46043070231406,-0.765480208069656 L 34.460403202314055,-0.765484108069666 L 34.460374802314064,-0.765489408069672 L 34.460344602314066,-0.765488508069681 L 34.460314002314064,-0.765488508069719 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.46606630231375,-0.764935308067451 L 34.46608500231375,-0.764921308067468 L 34.466105802313756,-0.764905508067496 L 34.466124802313765,-0.764902008067495 L 34.466147702313755,-0.764907508067463 L 34.46616880231375,-0.764914208067426 L 34.466192702313734,-0.764921108067388 L 34.46621020231373,-0.76493440806735 L 34.46622550231372,-0.764944108067308 L 34.4662416023137,-0.764958308067266 L 34.4662598023137,-0.764973708067225 L 34.46627170231368,-0.764994808067164 L 34.466277602313674,-0.765015408067111 L 34.46628640231367,-0.765034008067068 L 34.46630400231365,-0.765052008066996 L 34.46631370231363,-0.765075108066929 L 34.46631850231363,-0.765096008066893 L 34.466325102313604,-0.765120708066826 L 34.46632710231358,-0.765148708066751 L 34.46633110231356,-0.765173408066682 L 34.46634020231355,-0.765191608066637 L 34.46632800231354,-0.765216808066579 L 34.46632590231353,-0.765236308066555 L 34.466344002313534,-0.765234508066537 L 34.46636310231352,-0.7652423080665 L 34.466367002313504,-0.76526470806645 L 34.46636500231349,-0.765292808066383 L 34.46637000231347,-0.765321308066298 L 34.46637470231345,-0.765353008066239 L 34.46637520231344,-0.765382608066157 L 34.46637240231342,-0.765408308066093 L 34.4663831023134,-0.76543510806602 L 34.4663886023134,-0.765459508065961 L 34.46639500231336,-0.76548510806589 L 34.46640250231336,-0.765511108065819 L 34.466409902313345,-0.765535408065768 L 34.46641760231332,-0.765563308065702 L 34.466424902313285,-0.765592108065605 L 34.46642640231329,-0.765611308065569 L 34.466428302313275,-0.765640108065483 L 34.46641210231327,-0.765654108065472 L 34.466387002313255,-0.765664708065467 L 34.46636740231325,-0.765680008065429 L 34.466348202313256,-0.765687008065428 L 34.466325502313246,-0.765684008065454 L 34.466308002313255,-0.765666008065517 L 34.46630380231328,-0.76564270806556 L 34.46630310231329,-0.765613008065636 L 34.46630720231331,-0.7655878080657 L 34.466306402313336,-0.765561208065764 L 34.466300902313336,-0.765529708065846 L 34.46629600231337,-0.765496308065938 L 34.46629240231339,-0.76546700806602 L 34.4662914023134,-0.765437308066084 L 34.46628820231343,-0.765408108066159 L 34.46628850231344,-0.765384408066204 L 34.46628600231345,-0.765363208066256 L 34.46627570231346,-0.765346008066305 L 34.46626050231349,-0.76532070806638 L 34.46623880231351,-0.765308308066418 L 34.46621290231348,-0.765329208066385 L 34.46619450231348,-0.765348508066363 L 34.46617580231348,-0.765360408066328 L 34.46615280231347,-0.765371708066313 L 34.46612740231347,-0.765377608066321 L 34.46611210231347,-0.765388608066306 L 34.46609430231346,-0.76539320806632 L 34.46607350231345,-0.765402608066303 L 34.46605330231344,-0.765421808066262 L 34.46603480231346,-0.765415008066297 L 34.46603030231347,-0.765388408066361 L 34.46603350231348,-0.76536430806641 L 34.46604060231349,-0.765343308066457 L 34.466045602313514,-0.765320408066527 L 34.46605120231353,-0.765293808066579 L 34.46605350231354,-0.765267008066636 L 34.46605450231356,-0.765237208066713 L 34.46605590231358,-0.765207508066788 L 34.466057402313595,-0.765177308066858 L 34.46605200231361,-0.765148408066931 L 34.46603920231363,-0.765127208066986 L 34.466024502313644,-0.765102208067052 L 34.46600770231365,-0.765088808067112 L 34.465988002313665,-0.765075908067148 L 34.46596790231368,-0.765063208067191 L 34.4659496023137,-0.765049708067231 L 34.465928202313705,-0.765033108067286 L 34.46590700231372,-0.765025408067323 L 34.46587960231371,-0.765017508067359 L 34.46585480231372,-0.765008808067391 L 34.46583370231373,-0.764995508067429 L 34.46581290231375,-0.764970908067513 L 34.46579760231377,-0.76494820806758 L 34.46578700231379,-0.764922708067641 L 34.4657852023138,-0.764896008067723 L 34.46579190231382,-0.764871608067754 L 34.46580290231383,-0.764853108067799 L 34.46582020231384,-0.764835108067825 L 34.46584140231384,-0.764828908067847 L 34.465862702313835,-0.76482380806783 L 34.465887602313835,-0.764823408067832 L 34.46591500231384,-0.764823108067802 L 34.46593550231385,-0.764812008067818 L 34.46596060231384,-0.764808108067813 L 34.465984102313854,-0.764771008067904 L 34.46597890231384,-0.764793808067838 L 34.465984902313835,-0.764812708067797 L 34.46598850231382,-0.764837008067734 L 34.465985502313806,-0.764863008067668 L 34.465981702313776,-0.764887308067611 L 34.465987202313755,-0.764916508067534 L 34.465997802313744,-0.764940608067471 L 34.46601070231374,-0.764953908067432 L 34.46603130231373,-0.764958408067414 L 34.46605180231373,-0.764956108067395 L 34.46606630231375,-0.764935308067451 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.47215560231299,-0.765030208063375 L 34.47214540231299,-0.765014908063422 L 34.47212210231301,-0.765006208063449 L 34.47211940231301,-0.764983608063516 L 34.47211980231303,-0.764960708063575 L 34.47210870231304,-0.764930108063648 L 34.47209440231306,-0.764901808063724 L 34.47215390231309,-0.764853008063808 L 34.47217180231309,-0.764829508063855 L 34.47217020231312,-0.764808108063924 L 34.47217100231313,-0.764781608063976 L 34.47218210231314,-0.764760908064008 L 34.47221100231315,-0.764733608064057 L 34.47222730231317,-0.764714408064099 L 34.47220700231318,-0.764694208064165 L 34.4721875023132,-0.764680708064214 L 34.472167802313216,-0.764658908064264 L 34.47214600231321,-0.76465680806429 L 34.47216410231322,-0.764626908064348 L 34.47217410231325,-0.764594908064415 L 34.47219150231327,-0.764568108064486 L 34.47219240231328,-0.764544108064545 L 34.4721876023133,-0.764523108064589 L 34.4722043023133,-0.764503908064628 L 34.47222110231331,-0.764487708064652 L 34.472244802313305,-0.764481908064657 L 34.47226690231331,-0.764486308064621 L 34.4722881023133,-0.764485508064629 L 34.47231180231329,-0.764490208064605 L 34.472343102313296,-0.764488408064592 L 34.472364302313295,-0.764481108064585 L 34.472386802313295,-0.764488808064549 L 34.472406902313296,-0.764485308064556 L 34.47243110231327,-0.764499408064502 L 34.47244400231325,-0.764520908064431 L 34.472435802313235,-0.764553408064347 L 34.472430102313226,-0.764572308064318 L 34.47242960231321,-0.764594808064266 L 34.47243740231319,-0.764619108064201 L 34.47242760231318,-0.764651208064131 L 34.47242760231316,-0.764679008064064 L 34.47243980231314,-0.764699108063995 L 34.47244610231314,-0.764723808063955 L 34.47245340231312,-0.764745408063895 L 34.4724589023131,-0.764765508063835 L 34.472457402313104,-0.764788608063781 L 34.47246020231309,-0.764807108063715 L 34.472457802313066,-0.764829208063687 L 34.472446802313044,-0.764857108063621 L 34.47242800231303,-0.764881808063576 L 34.472418702313036,-0.764898908063541 L 34.47242160231303,-0.764917608063489 L 34.47243430231301,-0.764934808063432 L 34.472449902312995,-0.764946008063413 L 34.47246380231297,-0.764969108063327 L 34.47246760231297,-0.764991508063279 L 34.47246800231295,-0.765010608063233 L 34.472453902312935,-0.765030208063185 L 34.47241740231293,-0.765058208063144 L 34.472388202312935,-0.765064108063143 L 34.472352902312934,-0.765068408063163 L 34.472334102312935,-0.76507300806317 L 34.47230700231293,-0.765082808063165 L 34.47227090231292,-0.765090808063163 L 34.47224430231293,-0.76508900806317 L 34.47222540231294,-0.765088208063189 L 34.47219410231295,-0.765085708063221 L 34.47217640231295,-0.765071808063273 L 34.472167802312974,-0.765047408063324 L 34.47215560231299,-0.765030208063375 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.47044120231318,-0.765035808064448 L 34.47043860231319,-0.765016708064482 L 34.47045060231319,-0.765002608064514 L 34.47045430231321,-0.764983708064567 L 34.47046140231323,-0.764961908064612 L 34.47046210231323,-0.76494330806465 L 34.47046450231324,-0.764922008064716 L 34.47046940231325,-0.764902508064744 L 34.470472202313275,-0.764880208064802 L 34.47047280231328,-0.764860108064839 L 34.47047470231329,-0.764840408064887 L 34.47047650231331,-0.764813308064951 L 34.470476602313326,-0.764794808065015 L 34.47048030231333,-0.764774008065067 L 34.47047980231334,-0.7647540080651 L 34.470485802313355,-0.764734308065144 L 34.47048690231336,-0.764712408065194 L 34.4704865023134,-0.764687608065265 L 34.47049420231338,-0.764668608065299 L 34.47049870231342,-0.764639608065364 L 34.470501602313426,-0.764615208065429 L 34.47051140231345,-0.764588808065484 L 34.47051280231347,-0.764564108065547 L 34.47051100231348,-0.764535908065612 L 34.47051680231349,-0.764512108065675 L 34.47052750231351,-0.764488908065717 L 34.47053110231353,-0.764469108065763 L 34.47053220231352,-0.764447608065817 L 34.470541002313524,-0.764426208065863 L 34.47054650231357,-0.764397908065936 L 34.470545402313576,-0.764369708065986 L 34.4705468023136,-0.764339308066082 L 34.47055200231361,-0.764310308066129 L 34.47055590231362,-0.764285808066208 L 34.47055340231364,-0.764257208066261 L 34.47057040231365,-0.764240608066306 L 34.47059130231364,-0.764242608066273 L 34.47061370231364,-0.764252108066247 L 34.47064290231362,-0.764259808066198 L 34.47067040231364,-0.764261608066179 L 34.47069590231362,-0.764264908066162 L 34.470717802313615,-0.76426520806615 L 34.47073770231361,-0.764271308066112 L 34.470762002313606,-0.764280108066089 L 34.470785702313606,-0.764282808066065 L 34.470810702313585,-0.764295308066009 L 34.470806302313584,-0.764313308065972 L 34.47079370231357,-0.764332308065919 L 34.470786302313556,-0.764353008065901 L 34.47077390231353,-0.764380308065819 L 34.470762302313524,-0.764413208065759 L 34.47075690231351,-0.764442308065696 L 34.470750402313485,-0.76447410806561 L 34.470738502313466,-0.764500008065568 L 34.47072560231346,-0.764525908065512 L 34.47072200231345,-0.764545608065468 L 34.47071390231343,-0.764569308065412 L 34.47070430231342,-0.764593908065354 L 34.47068990231341,-0.764614508065309 L 34.47067920231339,-0.764642808065256 L 34.47066890231338,-0.764669708065194 L 34.470659702313355,-0.76470280806511 L 34.470652702313345,-0.764728308065064 L 34.47064340231332,-0.764755608065005 L 34.47064220231332,-0.764774208064951 L 34.4706294023133,-0.76479990806489 L 34.47061910231329,-0.764822608064848 L 34.470611702313285,-0.764839908064813 L 34.470608202313265,-0.764861008064767 L 34.47060160231326,-0.764882408064715 L 34.47059370231323,-0.764909008064664 L 34.470595102313226,-0.764932108064614 L 34.47059090231321,-0.76496050806454 L 34.47058170231319,-0.764978508064494 L 34.47057280231318,-0.765002108064445 L 34.47056840231316,-0.765025408064387 L 34.47057360231316,-0.765049008064328 L 34.47057110231315,-0.765070608064274 L 34.470562702313124,-0.765096608064219 L 34.47055460231311,-0.765127808064159 L 34.470552002313106,-0.765149808064094 L 34.47055340231307,-0.765178008064034 L 34.47055530231306,-0.76520280806398 L 34.47055260231308,-0.765182908064014 L 34.470526402313084,-0.765174308064052 L 34.47050540231309,-0.765171908064078 L 34.47048730231309,-0.765168308064106 L 34.47046980231309,-0.765161608064112 L 34.47045100231309,-0.765149808064154 L 34.470442702313115,-0.76512970806422 L 34.470435802313126,-0.76510380806428 L 34.47043550231315,-0.76508300806434 L 34.47043970231316,-0.765062008064369 L 34.47044120231318,-0.765035808064448 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.446695702316156,-0.764688608080211 L 34.44667370231614,-0.764693308080216 L 34.446655502316155,-0.764695308080228 L 34.44663740231615,-0.764686208080256 L 34.44662620231616,-0.7646706080803 L 34.446612902316176,-0.764657408080336 L 34.44659880231618,-0.764646208080377 L 34.44658480231619,-0.764631608080417 L 34.446584002316214,-0.764611108080458 L 34.44659200231623,-0.764586908080519 L 34.446607702316236,-0.764567608080562 L 34.446620102316245,-0.764547708080612 L 34.44662700231626,-0.764525708080645 L 34.44663970231627,-0.764503708080702 L 34.44665780231627,-0.764481808080739 L 34.44666960231629,-0.764454908080786 L 34.4466809023163,-0.764438408080828 L 34.44668540231633,-0.764416708080886 L 34.44669480231633,-0.764394108080936 L 34.44671540231634,-0.764369008080975 L 34.446733902316346,-0.764345508081031 L 34.44675400231637,-0.764318908081079 L 34.44677970231639,-0.764296008081106 L 34.44679950231639,-0.764279308081143 L 34.4468171023164,-0.764256108081194 L 34.44682960231643,-0.764233208081241 L 34.44684350231643,-0.764208408081272 L 34.44685800231644,-0.764192208081306 L 34.44687000231645,-0.764170008081359 L 34.446881702316446,-0.764151308081405 L 34.446904802316446,-0.764148208081391 L 34.44693450231646,-0.764141208081399 L 34.446956802316464,-0.764134708081397 L 34.44697800231647,-0.764123008081416 L 34.44698890231648,-0.764106508081447 L 34.446993202316484,-0.764086508081488 L 34.44701110231649,-0.764078608081505 L 34.44703280231649,-0.764080708081475 L 34.44705150231648,-0.764088208081449 L 34.44707180231647,-0.764103008081402 L 34.44709130231646,-0.764121408081343 L 34.447105402316446,-0.764137408081285 L 34.44712400231643,-0.76415320808124 L 34.447143302316405,-0.764171308081181 L 34.4471582023164,-0.76419170808112 L 34.4471738023164,-0.764204008081098 L 34.44718900231639,-0.764215708081057 L 34.44718230231638,-0.764236008081013 L 34.44716930231637,-0.764257108080966 L 34.44716280231635,-0.764278108080918 L 34.447155702316344,-0.76429930808087 L 34.44714550231632,-0.764317608080823 L 34.44713600231631,-0.764335508080806 L 34.447130402316304,-0.764353308080754 L 34.44712230231629,-0.764369408080725 L 34.44712030231628,-0.764389508080677 L 34.44710700231628,-0.764408608080637 L 34.44709390231627,-0.764430708080577 L 34.44708110231625,-0.76444750808055 L 34.44706500231624,-0.764464008080521 L 34.447045602316244,-0.764479708080499 L 34.44703530231623,-0.76449860808045 L 34.44703100231622,-0.764517008080416 L 34.44702510231621,-0.764537908080382 L 34.44702080231619,-0.76455870808033 L 34.44701390231617,-0.764576408080287 L 34.44700480231616,-0.764601608080222 L 34.446992902316154,-0.764619408080189 L 34.446989002316144,-0.764638508080158 L 34.44698040231614,-0.764662008080105 L 34.44696420231612,-0.764685008080049 L 34.44695320231612,-0.764704908080019 L 34.4469427023161,-0.76472890807995 L 34.446935202316084,-0.76474800807992 L 34.44692020231607,-0.764764208079874 L 34.446905802316074,-0.764782008079843 L 34.44688890231606,-0.764797908079828 L 34.446882302316034,-0.764817008079783 L 34.44687840231604,-0.764841808079732 L 34.44687520231601,-0.764867008079677 L 34.446846702316016,-0.764868808079671 L 34.44682980231603,-0.764858508079716 L 34.446809002316044,-0.764845408079763 L 34.44679430231604,-0.764833108079805 L 34.44677600231606,-0.764818108079855 L 34.44675850231608,-0.764800008079907 L 34.44674970231608,-0.764776908079964 L 34.446746602316104,-0.764746908080041 L 34.44674250231613,-0.764719708080101 L 34.44672350231613,-0.764696508080171 L 34.446695702316156,-0.764688608080211 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.46448240231433,-0.76427760807004 L 34.464487202314345,-0.764259108070078 L 34.46449970231437,-0.764244408070099 L 34.46451680231435,-0.764236408070109 L 34.46453280231435,-0.764227608070123 L 34.46455970231436,-0.76422380807012 L 34.46458210231435,-0.764220008070108 L 34.46460610231437,-0.764204908070132 L 34.464625402314375,-0.764191808070151 L 34.46465010231438,-0.764176408070177 L 34.464673002314385,-0.764163808070181 L 34.464697002314395,-0.764154308070201 L 34.46472340231439,-0.764148308070198 L 34.4647480023144,-0.764135808070216 L 34.46477940231439,-0.764130808070192 L 34.46481360231441,-0.764117808070207 L 34.464832302314406,-0.764100008070251 L 34.46486120231441,-0.764089008070267 L 34.46488220231443,-0.764081308070263 L 34.46490440231442,-0.764070508070274 L 34.46492680231442,-0.764057508070286 L 34.46494600231443,-0.764050808070308 L 34.46497440231443,-0.764040308070305 L 34.464999902314425,-0.764032508070314 L 34.465016302314424,-0.764041208070277 L 34.46502710231441,-0.764056608070228 L 34.465041302314404,-0.764073308070183 L 34.46505370231437,-0.764096808070127 L 34.46506100231437,-0.764117008070051 L 34.46507050231437,-0.764138508069989 L 34.465083902314355,-0.764159908069931 L 34.465094802314326,-0.764183208069877 L 34.46509810231431,-0.764207508069817 L 34.465109102314294,-0.764225208069767 L 34.46512080231428,-0.764247508069707 L 34.46513280231427,-0.764268008069644 L 34.46514780231425,-0.764293008069591 L 34.46516070231424,-0.764311808069538 L 34.465173502314215,-0.764331808069459 L 34.46518400231421,-0.764359008069402 L 34.465193102314196,-0.764390808069314 L 34.465167302314185,-0.764393508069323 L 34.46513960231419,-0.76440220806931 L 34.46511170231419,-0.764407108069328 L 34.465081102314194,-0.764411508069348 L 34.465063802314184,-0.764421308069321 L 34.46504740231419,-0.764432108069306 L 34.46503410231417,-0.764445508069281 L 34.46501660231417,-0.764458008069258 L 34.464995302314165,-0.764465808069258 L 34.464975202314164,-0.764473108069237 L 34.46495990231414,-0.764485208069227 L 34.46493240231416,-0.764493808069223 L 34.46489820231416,-0.764502108069217 L 34.46487180231414,-0.764511108069222 L 34.46484790231415,-0.764525408069201 L 34.46483060231415,-0.764534908069199 L 34.46481180231413,-0.764546608069161 L 34.464788302314126,-0.76455740806917 L 34.46476120231412,-0.764565208069156 L 34.46473420231412,-0.764571408069163 L 34.46469820231412,-0.764586108069135 L 34.46467350231412,-0.764602908069119 L 34.4646470023141,-0.764615508069106 L 34.46462180231413,-0.764604608069144 L 34.464612102314135,-0.764577608069219 L 34.464599302314156,-0.764550608069288 L 34.46458650231418,-0.76452060806939 L 34.46458240231419,-0.764496408069454 L 34.46457210231421,-0.764476508069502 L 34.46456100231422,-0.76445210806956 L 34.464544102314235,-0.764421608069645 L 34.46452970231426,-0.764396208069714 L 34.46452530231428,-0.764371108069779 L 34.46451880231428,-0.764348008069849 L 34.464506502314315,-0.764325908069908 L 34.464493902314324,-0.764301508069962 L 34.46448240231433,-0.76427760807004 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.47237870231374,-0.763745208066368 L 34.47239910231374,-0.763752208066333 L 34.47242750231374,-0.763758508066305 L 34.472452202313725,-0.76376780806626 L 34.47247230231371,-0.763783608066216 L 34.472483902313705,-0.76379750806617 L 34.47248920231368,-0.76382850806609 L 34.47250000231367,-0.763847308066042 L 34.47251270231367,-0.763861108066004 L 34.472546002313656,-0.76387120806595 L 34.472545502313636,-0.763894708065904 L 34.47253140231363,-0.763907908065885 L 34.472504802313644,-0.763904308065901 L 34.47247920231363,-0.763903508065918 L 34.47246090231365,-0.76389890806594 L 34.47243750231366,-0.763899408065951 L 34.47241130231364,-0.76390060806596 L 34.472385302313654,-0.763907808065957 L 34.472352402313646,-0.763910208065991 L 34.47233380231365,-0.763907608066001 L 34.47230620231367,-0.763894108066035 L 34.47228330231367,-0.763886408066097 L 34.472256202313666,-0.763885808066096 L 34.47222580231368,-0.763885708066125 L 34.472200702313685,-0.763888408066123 L 34.472176202313676,-0.76389090806615 L 34.4721614023137,-0.763864908066214 L 34.47215630231372,-0.76383760806629 L 34.47213890231372,-0.763816608066334 L 34.47212210231374,-0.763803708066397 L 34.47211800231376,-0.763777808066454 L 34.47211760231377,-0.763752108066509 L 34.472051002313805,-0.763708108066655 L 34.47206900231381,-0.763706408066648 L 34.47208690231381,-0.76370820806664 L 34.47210700231379,-0.763717208066598 L 34.4721253023138,-0.7637157080666 L 34.4721555023138,-0.763716408066583 L 34.47219140231379,-0.763719708066537 L 34.47222520231378,-0.763712808066548 L 34.47225570231378,-0.763724208066483 L 34.47228450231376,-0.763732708066448 L 34.472309402313755,-0.763737708066425 L 34.47234570231376,-0.763739808066396 L 34.47237870231374,-0.763745208066368 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.4957944023115,-0.762955008053561 L 34.49581360231151,-0.762954808053562 L 34.4958421023115,-0.762956608053513 L 34.495869302311505,-0.762955208053504 L 34.49589330231148,-0.762961408053477 L 34.495917702311495,-0.762962408053474 L 34.495945302311476,-0.762973108053437 L 34.49596240231147,-0.762982708053377 L 34.49598860231146,-0.762987108053361 L 34.49601400231146,-0.76299460805331 L 34.496010902311454,-0.763016808053268 L 34.49600720231144,-0.763042208053219 L 34.49600190231141,-0.763070408053154 L 34.4959926023114,-0.763092808053102 L 34.49598890231138,-0.763117708053038 L 34.49598180231138,-0.763147708052972 L 34.49598020231136,-0.763175008052919 L 34.495974502311334,-0.763196408052865 L 34.49596900231132,-0.763217408052815 L 34.49596520231132,-0.76324080805275 L 34.495968302311304,-0.763265408052706 L 34.495961702311284,-0.763293608052628 L 34.49595540231127,-0.763311008052586 L 34.495948402311264,-0.763332608052549 L 34.49594460231124,-0.763359008052494 L 34.49594180231123,-0.763387508052411 L 34.49593630231121,-0.763414008052349 L 34.495929602311186,-0.763438708052295 L 34.49592120231118,-0.763463108052244 L 34.49591870231116,-0.763485808052177 L 34.49591820231114,-0.763506608052149 L 34.49591490231113,-0.763527808052097 L 34.49590980231112,-0.763554508052032 L 34.49591230231112,-0.763576408051973 L 34.495910202311094,-0.763601008051926 L 34.49590470231107,-0.76362230805187 L 34.49590270231107,-0.76364110805182 L 34.49590080231105,-0.763662308051772 L 34.49588950231105,-0.763680408051736 L 34.495894102311034,-0.763698608051684 L 34.49589640231103,-0.763718308051652 L 34.49588970231101,-0.763736608051602 L 34.495878702311,-0.763761408051549 L 34.49588070231099,-0.763779908051495 L 34.49588200231097,-0.763797908051455 L 34.49587550231096,-0.763824008051394 L 34.49586510231096,-0.763842708051366 L 34.495858802310934,-0.763861908051311 L 34.495849502310925,-0.763882508051276 L 34.495840102310915,-0.763901408051229 L 34.495832002310905,-0.763922008051172 L 34.49582550231089,-0.763941908051142 L 34.49581210231088,-0.763960108051116 L 34.49580050231087,-0.763985108051054 L 34.49578100231088,-0.763990608051061 L 34.495765002310876,-0.76400060805103 L 34.495758902310854,-0.764018608051003 L 34.49574850231083,-0.764046708050926 L 34.49574260231083,-0.764070508050881 L 34.49574150231082,-0.764090608050843 L 34.4957397023108,-0.764112108050785 L 34.495737102310784,-0.764136008050731 L 34.495729902310764,-0.764161408050658 L 34.49572180231075,-0.764183308050631 L 34.49571770231074,-0.764202808050563 L 34.49572060231073,-0.764226708050511 L 34.49571960231072,-0.764248108050471 L 34.4957088023107,-0.764267108050435 L 34.495701202310684,-0.764284108050393 L 34.495691202310674,-0.764307308050332 L 34.49568140231068,-0.764336108050275 L 34.49567800231066,-0.764354708050229 L 34.495672602310634,-0.764385008050147 L 34.49566790231063,-0.764404408050122 L 34.495655302310624,-0.764426008050076 L 34.49564900231061,-0.764446308050028 L 34.495644202310594,-0.764467608049986 L 34.49563930231057,-0.76448990804992 L 34.49563860231056,-0.764512808049879 L 34.49563320231055,-0.764534008049837 L 34.49562290231054,-0.764556008049764 L 34.49561360231052,-0.764579008049728 L 34.495605802310514,-0.764600608049673 L 34.4955990023105,-0.764620208049625 L 34.49559180231049,-0.764636708049591 L 34.49557410231048,-0.764652608049567 L 34.49554890231049,-0.764642308049604 L 34.4955244023105,-0.764634708049656 L 34.495498302310494,-0.764629208049668 L 34.4954740023105,-0.764624708049695 L 34.495454702310525,-0.76462060804972 L 34.495434302310535,-0.764613308049757 L 34.49541190231053,-0.764610008049778 L 34.495393602310536,-0.764605308049802 L 34.49537070231054,-0.764591508049839 L 34.49535850231056,-0.764576108049897 L 34.49534330231056,-0.764566308049925 L 34.49534490231058,-0.764546508049965 L 34.49534720231058,-0.764521308050036 L 34.49536350231061,-0.764499108050076 L 34.495369502310616,-0.764479408050119 L 34.495375202310626,-0.764454908050178 L 34.49537580231064,-0.764428308050251 L 34.49538410231066,-0.764405208050291 L 34.49538410231067,-0.764382408050346 L 34.49538130231068,-0.764359608050413 L 34.49537670231071,-0.764335408050463 L 34.49537960231073,-0.764306808050535 L 34.49539010231076,-0.764281508050584 L 34.495399302310744,-0.76426180805062 L 34.49540310231075,-0.764233108050703 L 34.49540310231078,-0.764206508050755 L 34.4953903023108,-0.764185108050829 L 34.49538220231081,-0.764163708050875 L 34.49539130231082,-0.764145908050915 L 34.495399802310835,-0.764125308050969 L 34.49539680231085,-0.764099908051017 L 34.495388802310856,-0.764074708051104 L 34.49539600231088,-0.764043808051165 L 34.49540040231089,-0.764018108051221 L 34.49539500231092,-0.763991308051286 L 34.49539940231092,-0.763972908051344 L 34.49540030231094,-0.76394570805139 L 34.495396802310964,-0.763916708051471 L 34.495397702310974,-0.763888008051546 L 34.49540150231099,-0.76385770805162 L 34.49539990231103,-0.763831908051666 L 34.495399602311025,-0.76380560805175 L 34.495399602311046,-0.763781508051807 L 34.49540310231105,-0.763761708051843 L 34.49540610231106,-0.76373850805189 L 34.49540690231107,-0.763715408051964 L 34.49541270231111,-0.763684308052033 L 34.495422402311114,-0.76365830805207 L 34.495431602311136,-0.763635208052135 L 34.495436302311134,-0.763614508052186 L 34.49544090231115,-0.763596108052235 L 34.49544600231116,-0.763570008052269 L 34.495447002311174,-0.763551708052343 L 34.49544710231119,-0.763529008052385 L 34.49545250231122,-0.763508108052425 L 34.495458402311215,-0.763487008052481 L 34.495464302311234,-0.763464808052527 L 34.49545810231124,-0.763445808052577 L 34.49546900231125,-0.763429908052614 L 34.49546430231126,-0.763405008052677 L 34.49545370231128,-0.763376708052757 L 34.4954584023113,-0.763358208052804 L 34.49546410231132,-0.763336008052842 L 34.49547170231132,-0.763311108052899 L 34.49547390231133,-0.763286408052958 L 34.49548150231136,-0.763263708053003 L 34.495488202311364,-0.763242808053047 L 34.49549520231138,-0.763212508053134 L 34.495492302311405,-0.763191908053171 L 34.49549050231142,-0.763168808053235 L 34.49549870231142,-0.763143208053279 L 34.49550380231145,-0.763114408053344 L 34.49550580231146,-0.763084008053425 L 34.49550770231148,-0.763062008053477 L 34.4955091023115,-0.763040208053524 L 34.495513502311496,-0.763022108053567 L 34.495513602311526,-0.763001508053617 L 34.49551320231152,-0.762977708053691 L 34.495516202311535,-0.762953608053747 L 34.49552500231156,-0.762937708053768 L 34.49554550231154,-0.762940808053745 L 34.49556760231154,-0.762942708053736 L 34.49559730231153,-0.762948608053699 L 34.49562340231152,-0.762950808053671 L 34.495649402311514,-0.762957208053653 L 34.49567640231153,-0.762959008053623 L 34.49570220231152,-0.76295660805361 L 34.49572590231151,-0.762955108053602 L 34.49574810231153,-0.762957008053575 L 34.49577110231151,-0.762957508053561 L 34.4957944023115,-0.762955008053561 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.458238102316,-0.762752708077655 L 34.458246502316,-0.762773808077614 L 34.45824900231598,-0.762797308077539 L 34.458249902315956,-0.762820808077489 L 34.458250202315966,-0.762843408077435 L 34.45825170231593,-0.76286890807738 L 34.45824520231593,-0.762886908077337 L 34.45824500231591,-0.762906608077293 L 34.4582585023159,-0.762919608077256 L 34.45826640231588,-0.762940908077192 L 34.458266102315875,-0.762959308077159 L 34.45826980231586,-0.762979408077096 L 34.45826230231585,-0.762996108077072 L 34.45827130231583,-0.763035108076953 L 34.458276602315806,-0.763052308076905 L 34.4582863023158,-0.763075008076843 L 34.458294602315796,-0.763091508076798 L 34.45830330231577,-0.763107508076756 L 34.458305002315775,-0.763126308076723 L 34.45830820231576,-0.763146008076661 L 34.458312402315734,-0.763167708076614 L 34.45831550231572,-0.76318800807656 L 34.45831130231573,-0.763205708076513 L 34.45831270231571,-0.763224308076482 L 34.45831790231569,-0.76324400807642 L 34.45832260231568,-0.763266908076374 L 34.45833170231566,-0.763289408076299 L 34.45833050231564,-0.76331960807624 L 34.458329302315626,-0.76334130807619 L 34.458316402315624,-0.763363408076129 L 34.458296502315626,-0.76337360807613 L 34.4582711023156,-0.763395208076084 L 34.458251802315594,-0.763404308076067 L 34.458234202315595,-0.763413508076063 L 34.458214802315595,-0.763425008076043 L 34.45817530231559,-0.763451208076 L 34.45815520231558,-0.763462308075989 L 34.45813400231558,-0.763459808076005 L 34.45811300231557,-0.763463708076025 L 34.458105202315586,-0.763446208076051 L 34.45810160231561,-0.763419808076135 L 34.458095202315626,-0.763401008076186 L 34.45809060231564,-0.763382308076227 L 34.45808320231565,-0.763359608076289 L 34.45808090231566,-0.763338508076336 L 34.45807730231568,-0.763312008076407 L 34.45807750231569,-0.763286708076461 L 34.4580767023157,-0.76326850807651 L 34.458071902315716,-0.763250208076551 L 34.45806400231573,-0.763227608076623 L 34.458058002315745,-0.763207108076681 L 34.45805470231576,-0.763182508076737 L 34.45805360231577,-0.763160108076792 L 34.45804840231579,-0.763138608076847 L 34.458040602315805,-0.763115508076913 L 34.458032402315816,-0.763097708076947 L 34.45802820231585,-0.763077108077011 L 34.458029402315844,-0.763056808077048 L 34.45802670231585,-0.763037208077113 L 34.45802450231587,-0.763016708077152 L 34.458022802315895,-0.762993008077215 L 34.45802790231589,-0.762972408077253 L 34.45802450231591,-0.762947608077323 L 34.458024402315935,-0.762922808077375 L 34.458025302315946,-0.762904808077426 L 34.45801590231595,-0.762885008077483 L 34.45800860231597,-0.762861808077552 L 34.45800780231597,-0.76283940807759 L 34.458002502316,-0.762818208077652 L 34.45799540231601,-0.762797808077713 L 34.45799120231602,-0.762778108077745 L 34.457985402316034,-0.762760308077821 L 34.45797800231604,-0.762739008077861 L 34.45797200231605,-0.762721008077904 L 34.457968302316075,-0.762697908077958 L 34.457962102316095,-0.762677008078022 L 34.4579558023161,-0.76265800807806 L 34.45795220231612,-0.76263400807813 L 34.45794950231612,-0.762614608078181 L 34.45796200231614,-0.762589308078234 L 34.457976202316146,-0.762577008078266 L 34.45799520231614,-0.762575608078236 L 34.45802040231615,-0.762572408078245 L 34.45803950231613,-0.762569008078232 L 34.45806230231614,-0.762566808078239 L 34.458082902316136,-0.762558908078236 L 34.45810020231615,-0.762551808078244 L 34.458118402316146,-0.762547008078237 L 34.45813790231615,-0.762545108078235 L 34.45816590231613,-0.762546208078213 L 34.45818900231615,-0.762537408078226 L 34.45821250231614,-0.76254110807819 L 34.45822620231612,-0.762561908078137 L 34.458233802316116,-0.762579108078103 L 34.4582258023161,-0.762604308078032 L 34.458228102316085,-0.762626808077976 L 34.45822820231607,-0.76264600807792 L 34.458228302316066,-0.762666908077889 L 34.45823300231605,-0.76268690807783 L 34.45823150231603,-0.76270540807779 L 34.458228502316025,-0.762730608077721 L 34.458238102316,-0.762752708077655 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.4727366023142,-0.762933908068104 L 34.472737702314234,-0.762904608068184 L 34.472734402314245,-0.762872408068252 L 34.47272460231426,-0.762852008068328 L 34.472721802314275,-0.76283150806837 L 34.4727214023143,-0.762796608068452 L 34.472719102314315,-0.762766608068521 L 34.47271090231434,-0.762734008068613 L 34.47271600231435,-0.76270910806867 L 34.47272250231437,-0.762682608068731 L 34.472734602314375,-0.762661708068784 L 34.47274410231439,-0.762636108068846 L 34.472742002314405,-0.762614708068892 L 34.47274990231443,-0.762587308068948 L 34.472764002314435,-0.762565508068997 L 34.47278080231443,-0.762557108068988 L 34.47279810231445,-0.762539408069032 L 34.47281340231444,-0.762526808069054 L 34.47282320231447,-0.762503508069105 L 34.47282600231448,-0.762485408069151 L 34.47284150231449,-0.762467208069181 L 34.4728483023145,-0.762441508069239 L 34.472850002314516,-0.762414108069311 L 34.472870702314516,-0.76241560806928 L 34.472872802314484,-0.762447308069216 L 34.47287490231449,-0.762466608069165 L 34.47287360231447,-0.762484708069133 L 34.472869802314456,-0.762503108069077 L 34.47286760231445,-0.762522908069038 L 34.47286540231443,-0.762553608068957 L 34.47285480231443,-0.762569708068935 L 34.472860602314405,-0.762596608068861 L 34.47286180231439,-0.762616308068799 L 34.47288270231439,-0.762616208068797 L 34.472901502314365,-0.762635308068731 L 34.472899402314376,-0.7626543080687 L 34.47288400231435,-0.762666608068681 L 34.472900002314354,-0.762683708068619 L 34.47289030231435,-0.762699708068593 L 34.47289720231432,-0.762719708068544 L 34.47290420231432,-0.762738308068482 L 34.4729235023143,-0.762747008068448 L 34.47292310231429,-0.762770508068405 L 34.47291970231428,-0.762790708068337 L 34.47291840231425,-0.762811408068296 L 34.47291290231426,-0.762832108068243 L 34.47291220231424,-0.762851208068205 L 34.47291450231422,-0.762876008068135 L 34.47291400231422,-0.762894208068097 L 34.47290740231419,-0.762917208068032 L 34.47290190231419,-0.762937108067991 L 34.47289600231417,-0.762958808067939 L 34.47288990231416,-0.762978608067912 L 34.472890702314146,-0.763000708067855 L 34.472887402314136,-0.763029808067796 L 34.472892602314126,-0.763048008067732 L 34.472901102314104,-0.763064108067701 L 34.4729198023141,-0.763085208067635 L 34.47292860231408,-0.763113308067557 L 34.472937802314064,-0.763129108067518 L 34.47294980231405,-0.763149908067449 L 34.47294560231403,-0.763182308067375 L 34.47292600231403,-0.763203208067341 L 34.472906102314035,-0.763214708067322 L 34.472891702314,-0.763237608067275 L 34.472870102314005,-0.763246008067266 L 34.472848602314016,-0.763240408067303 L 34.472829002314,-0.763238508067317 L 34.47280460231402,-0.763238408067326 L 34.472785002314,-0.763248108067329 L 34.47273010231407,-0.763169108067535 L 34.47274920231408,-0.763151408067581 L 34.47275330231408,-0.76313240806761 L 34.4727486023141,-0.763106508067692 L 34.47274990231412,-0.763077108067756 L 34.47273920231413,-0.763052908067807 L 34.472735602314145,-0.76302950806789 L 34.472722702314165,-0.763002408067969 L 34.47274510231417,-0.762993008067954 L 34.47274070231419,-0.762974108068 L 34.47273780231419,-0.762954208068064 L 34.4727366023142,-0.762933908068104 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.43254070231907,-0.762609408094151 L 34.43256760231906,-0.762619708094123 L 34.432583102319064,-0.762629408094085 L 34.432603602319055,-0.762642708094032 L 34.43262490231904,-0.762654908093994 L 34.432647702319024,-0.762670108093945 L 34.432672002318995,-0.76269000809387 L 34.432697802318984,-0.76270430809383 L 34.43272340231899,-0.762721708093765 L 34.43274890231897,-0.762740608093701 L 34.432770202318956,-0.762755108093661 L 34.432795402318945,-0.762776608093585 L 34.43281840231894,-0.762794208093534 L 34.43283990231891,-0.762808208093494 L 34.43286170231891,-0.762815408093442 L 34.432887702318894,-0.762829208093396 L 34.43291070231888,-0.762838408093376 L 34.43293010231887,-0.762851708093326 L 34.43294820231887,-0.762857708093297 L 34.43296740231887,-0.762866308093265 L 34.43297200231885,-0.762890008093197 L 34.43295910231883,-0.762911208093156 L 34.43294430231883,-0.762927108093123 L 34.432923102318824,-0.762941808093117 L 34.43290410231881,-0.76296110809309 L 34.43288870231879,-0.762982908093032 L 34.432876302318796,-0.763000008092998 L 34.43286140231878,-0.763017608092961 L 34.43284210231878,-0.763040608092914 L 34.432820102318786,-0.763030708092953 L 34.43280100231878,-0.763020808092988 L 34.43278480231881,-0.763006308093036 L 34.432765302318806,-0.762999008093075 L 34.43274730231882,-0.762991608093092 L 34.432728502318824,-0.762983708093136 L 34.43270950231883,-0.76298240809314 L 34.43268420231883,-0.762975308093178 L 34.432661102318846,-0.762963908093212 L 34.432639702318845,-0.762948008093275 L 34.43261680231886,-0.762940008093315 L 34.43259910231886,-0.762926708093354 L 34.432576002318875,-0.762916508093387 L 34.432554902318884,-0.762902008093444 L 34.432535002318915,-0.762890108093492 L 34.43251400231891,-0.762876308093525 L 34.43249380231893,-0.762864608093567 L 34.432465902318924,-0.762855308093609 L 34.432446002318926,-0.762849908093645 L 34.43242030231894,-0.76283760809368 L 34.432396102318954,-0.762824608093737 L 34.432370902318965,-0.762812408093779 L 34.43235230231897,-0.762803608093808 L 34.43233390231898,-0.762797808093835 L 34.43231580231899,-0.762781908093882 L 34.432315902319004,-0.762763408093927 L 34.43232690231901,-0.762740708093984 L 34.43233570231903,-0.762724308094005 L 34.432341502319034,-0.762706608094055 L 34.43235530231905,-0.762684908094094 L 34.43237580231907,-0.762661608094136 L 34.43237790231907,-0.762643508094183 L 34.43235790231908,-0.762634408094219 L 34.432338602319085,-0.762620008094263 L 34.4323189023191,-0.762610508094293 L 34.43229620231911,-0.762603208094315 L 34.43227940231912,-0.762584408094393 L 34.43228560231913,-0.762557408094447 L 34.432291802319156,-0.762526208094522 L 34.43230240231917,-0.762499308094585 L 34.43231940231917,-0.762483208094606 L 34.432330902319165,-0.762494808094563 L 34.43234880231916,-0.762506308094537 L 34.432364302319144,-0.762518508094501 L 34.432385002319144,-0.762526108094464 L 34.43241020231914,-0.762532308094427 L 34.43243270231913,-0.762540408094392 L 34.43245360231912,-0.762557708094352 L 34.432475602319094,-0.762574008094291 L 34.43249480231909,-0.762586608094238 L 34.432517402319085,-0.762597508094214 L 34.43254070231907,-0.762609408094151 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.43740660231793,-0.763549208088819 L 34.43739200231794,-0.763533408088855 L 34.43738030231796,-0.763510008088927 L 34.43735720231796,-0.763494208088996 L 34.437342002317976,-0.763481808089019 L 34.437328802317985,-0.763465808089055 L 34.437315402318006,-0.763449808089122 L 34.43730070231802,-0.763427108089182 L 34.43728650231802,-0.763411608089236 L 34.43727050231804,-0.763393508089289 L 34.43725590231804,-0.763375408089325 L 34.43723930231807,-0.763352408089404 L 34.43722190231808,-0.763326608089467 L 34.4372068023181,-0.763306808089523 L 34.43719460231811,-0.763292108089587 L 34.43718190231812,-0.763274108089635 L 34.437170902318144,-0.763259508089665 L 34.43715710231813,-0.763246908089712 L 34.43714410231816,-0.763233508089754 L 34.437112902318184,-0.76318760808989 L 34.4370965023182,-0.763176008089908 L 34.4370778023182,-0.763164208089967 L 34.43706330231821,-0.76314610809001 L 34.437051402318225,-0.763130808090053 L 34.437037902318245,-0.763111808090123 L 34.43702120231826,-0.763087208090174 L 34.43700360231827,-0.763068308090236 L 34.43698340231828,-0.763049708090296 L 34.436964702318306,-0.76303240809034 L 34.43695280231831,-0.763008508090412 L 34.43693750231832,-0.762987908090473 L 34.436921502318334,-0.762971708090528 L 34.43690240231836,-0.762954808090571 L 34.43688470231837,-0.762935508090635 L 34.43686860231838,-0.762917308090691 L 34.436855002318396,-0.762898908090752 L 34.436838302318414,-0.762874208090805 L 34.43682510231843,-0.762854808090872 L 34.436806702318435,-0.762836608090917 L 34.43679000231845,-0.762816808090974 L 34.436773902318464,-0.762799508091043 L 34.43675640231847,-0.762781308091087 L 34.43673580231849,-0.762763908091153 L 34.43671690231851,-0.762748508091203 L 34.436700502318516,-0.762730108091247 L 34.43668360231854,-0.762710508091318 L 34.436666702318554,-0.762692808091352 L 34.43664830231856,-0.762673308091413 L 34.43663180231857,-0.762652708091483 L 34.43661630231858,-0.76263090809155 L 34.4366008023186,-0.762607808091614 L 34.43658560231861,-0.762590208091661 L 34.43657360231863,-0.762573308091713 L 34.43656030231865,-0.762557208091768 L 34.43654700231864,-0.762542508091795 L 34.436532302318675,-0.762521008091867 L 34.436516002318676,-0.762504308091919 L 34.436505902318686,-0.762488508091963 L 34.436492702318716,-0.762471208092014 L 34.43647420231872,-0.762455008092069 L 34.43645610231873,-0.762436308092115 L 34.43644030231875,-0.762417408092182 L 34.43642590231876,-0.762397908092239 L 34.436410202318754,-0.762382808092287 L 34.43639520231878,-0.762366908092317 L 34.43637910231879,-0.762349708092391 L 34.436364602318804,-0.762329108092439 L 34.43634590231882,-0.762308108092513 L 34.436323502318835,-0.762291108092572 L 34.436306402318834,-0.762277808092601 L 34.436290002318856,-0.762261708092638 L 34.43627750231887,-0.762240208092712 L 34.436265102318885,-0.762220908092751 L 34.4362476023189,-0.762205808092812 L 34.43622990231891,-0.762188408092862 L 34.43621270231892,-0.762167508092923 L 34.436196002318944,-0.762144108092992 L 34.436181402318965,-0.762121908093059 L 34.436163702318964,-0.762106508093111 L 34.436148502318986,-0.762091708093154 L 34.43613420231898,-0.762074808093215 L 34.43612050231901,-0.762055208093252 L 34.436105502319,-0.762042408093289 L 34.436089502319014,-0.762024108093345 L 34.436072802319046,-0.762000308093426 L 34.436056202319065,-0.761981308093473 L 34.43604130231907,-0.761966708093523 L 34.436027302319076,-0.761950808093567 L 34.43601230231911,-0.76193340809362 L 34.43600590231911,-0.761911808093675 L 34.436014702319106,-0.761896108093721 L 34.43602830231912,-0.76188170809374 L 34.43604690231912,-0.761879808093728 L 34.436071702319104,-0.761887408093691 L 34.43609640231911,-0.761888008093678 L 34.43611730231911,-0.761885008093677 L 34.436149002319105,-0.761886208093662 L 34.436158602319075,-0.761904608093598 L 34.43616990231909,-0.761923908093554 L 34.43618500231908,-0.761942508093488 L 34.436200002319055,-0.76195950809344 L 34.43621890231905,-0.761969008093397 L 34.43622740231902,-0.761987508093369 L 34.43624150231903,-0.762001408093312 L 34.436257102319004,-0.762017408093261 L 34.43627340231898,-0.762037808093216 L 34.43628890231897,-0.76205450809316 L 34.43630770231897,-0.762076808093084 L 34.43632360231896,-0.762097208093041 L 34.43633290231893,-0.762118208092959 L 34.436346902318924,-0.762133908092933 L 34.43635880231892,-0.762150608092886 L 34.4363805023189,-0.76217050809281 L 34.436402202318895,-0.762185508092767 L 34.43642220231888,-0.762199908092718 L 34.436438802318854,-0.762220008092663 L 34.436458202318846,-0.76223610809261 L 34.43647320231884,-0.762253408092554 L 34.43648860231883,-0.762273608092486 L 34.43650560231881,-0.762292208092433 L 34.43652200231879,-0.762314608092368 L 34.43654060231877,-0.762338008092309 L 34.43656190231877,-0.762356908092245 L 34.43657770231875,-0.762374508092188 L 34.43659850231875,-0.76238960809215 L 34.43661170231873,-0.76240390809211 L 34.43663000231872,-0.762422108092049 L 34.4366520023187,-0.762442008091993 L 34.43666520231869,-0.762455308091932 L 34.43667900231868,-0.762473108091892 L 34.436696702318656,-0.762493208091819 L 34.43671240231864,-0.762515508091778 L 34.43672850231864,-0.76253570809171 L 34.43674620231863,-0.762547108091665 L 34.43676280231861,-0.762561808091611 L 34.4367794023186,-0.762579008091568 L 34.43679340231859,-0.762602708091497 L 34.436811202318566,-0.762621908091448 L 34.43682600231857,-0.762635508091416 L 34.43684600231855,-0.762651908091356 L 34.43686370231855,-0.762665108091309 L 34.43688640231853,-0.762683608091245 L 34.436905102318526,-0.762697108091205 L 34.4369188023185,-0.762721508091136 L 34.43693820231848,-0.76273990809109 L 34.43695540231847,-0.762758108091024 L 34.436974402318455,-0.762774908090964 L 34.436996402318435,-0.762794108090915 L 34.437014102318436,-0.762807908090864 L 34.43703320231842,-0.762828408090802 L 34.43705260231841,-0.762848308090735 L 34.43706960231839,-0.762871508090666 L 34.43708300231837,-0.762889408090636 L 34.437096902318366,-0.762911108090559 L 34.43710870231835,-0.762925708090524 L 34.437129802318346,-0.762939208090476 L 34.437154302318326,-0.762961108090406 L 34.43717100231831,-0.762978308090348 L 34.4371839023183,-0.762995508090311 L 34.43720320231828,-0.76301350809025 L 34.43721760231828,-0.763030408090197 L 34.43723420231826,-0.763046708090158 L 34.43725290231825,-0.763069808090077 L 34.437268702318235,-0.763080808090042 L 34.437277302318215,-0.763098208089991 L 34.4372888023182,-0.763116008089938 L 34.4373073023182,-0.763134808089873 L 34.43732200231818,-0.76314870808985 L 34.437329702318166,-0.76316780808979 L 34.437346702318166,-0.763178408089757 L 34.437364002318155,-0.763192908089705 L 34.43738410231814,-0.763214708089648 L 34.43740070231812,-0.763235408089582 L 34.43741920231811,-0.763249608089541 L 34.4374390023181,-0.763260508089493 L 34.43745690231809,-0.763274408089451 L 34.43747620231808,-0.763284708089418 L 34.43749580231808,-0.763305108089356 L 34.43751450231805,-0.763320908089309 L 34.43752800231804,-0.763336408089248 L 34.437550202318036,-0.763357908089204 L 34.437572102318015,-0.763373808089138 L 34.437572902317996,-0.763392608089086 L 34.43758490231799,-0.76341510808903 L 34.43759760231797,-0.763437408088963 L 34.43761180231797,-0.763450008088938 L 34.437582602317974,-0.763428308089006 L 34.43757080231798,-0.763446408088971 L 34.43754940231796,-0.763451708088969 L 34.43753200231798,-0.763446408088991 L 34.43750770231799,-0.763450408088984 L 34.43749270231797,-0.763464208088971 L 34.43748230231796,-0.763487308088915 L 34.437475202317955,-0.763505508088895 L 34.43746490231794,-0.763520808088855 L 34.43744830231793,-0.763536608088836 L 34.437425002317916,-0.763553808088798 L 34.43740660231793,-0.763549208088819 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.46093720231536,-0.763320108074596 L 34.46091490231535,-0.763293108074675 L 34.46090310231538,-0.76326800807474 L 34.4608916023154,-0.763244108074792 L 34.46088360231542,-0.763216208074875 L 34.460874402315426,-0.763192508074925 L 34.46086370231543,-0.763171908074987 L 34.460855902315444,-0.763150508075052 L 34.46084230231548,-0.763126608075127 L 34.4608352023155,-0.763104008075178 L 34.46082330231551,-0.763082308075246 L 34.460810902315515,-0.763057708075305 L 34.46080030231553,-0.763029308075373 L 34.46079050231556,-0.762999708075463 L 34.46077670231558,-0.762972908075529 L 34.46076710231558,-0.762946708075601 L 34.46075130231561,-0.762925108075679 L 34.46073360231562,-0.762903208075725 L 34.460719602315635,-0.762881308075796 L 34.460704402315656,-0.762857008075862 L 34.46069290231568,-0.76283330807593 L 34.46068460231569,-0.762806908076 L 34.460675602315725,-0.762783308076053 L 34.46066810231571,-0.762756208076127 L 34.46065640231573,-0.76274240807617 L 34.460645002315744,-0.762727608076212 L 34.46062640231577,-0.762701808076276 L 34.46061840231578,-0.762675008076354 L 34.460607002315804,-0.76264800807643 L 34.460595002315806,-0.762623508076513 L 34.46057740231583,-0.762600608076566 L 34.460561402315854,-0.762577308076648 L 34.460545602315875,-0.762547408076706 L 34.46053590231589,-0.762532108076767 L 34.46052210231589,-0.762510708076825 L 34.46050530231591,-0.762484008076893 L 34.46049770231593,-0.762455308076965 L 34.460488802315936,-0.762430008077037 L 34.46047750231597,-0.762400208077106 L 34.460463802315964,-0.762386008077157 L 34.46044960231598,-0.762372408077197 L 34.460439002315994,-0.762356908077235 L 34.46042390231601,-0.762335208077311 L 34.46041000231603,-0.762309608077388 L 34.46039840231605,-0.762283908077448 L 34.46038270231604,-0.762258408077533 L 34.46036660231609,-0.762232408077605 L 34.460348502316116,-0.762205508077675 L 34.46033180231612,-0.762179308077761 L 34.46031700231614,-0.762155808077809 L 34.46030450231615,-0.762132308077886 L 34.46030060231615,-0.762113108077933 L 34.46029790231618,-0.762087208078001 L 34.46030750231619,-0.762057308078055 L 34.46031800231622,-0.762034708078102 L 34.46033620231623,-0.762021608078118 L 34.46036120231622,-0.762015508078136 L 34.46039250231622,-0.762014208078112 L 34.460423302316215,-0.76201350807808 L 34.460456002316214,-0.762008608078079 L 34.46048080231621,-0.762008208078068 L 34.4605103023162,-0.762009808078038 L 34.46053520231621,-0.762013108078035 L 34.46056310231619,-0.762013508077998 L 34.4605890023162,-0.762015308077979 L 34.46061730231619,-0.762023808077942 L 34.46063650231617,-0.76202440807794 L 34.460656902316174,-0.762021808077922 L 34.46068520231618,-0.762021708077909 L 34.46071680231618,-0.762019208077879 L 34.46075270231617,-0.762018508077877 L 34.460772902316165,-0.762020708077868 L 34.46080400231616,-0.762015608077857 L 34.46083200231617,-0.762013108077848 L 34.46085980231616,-0.762019008077801 L 34.46088350231615,-0.76203000807776 L 34.46090690231613,-0.762043008077714 L 34.460929702316115,-0.76206480807765 L 34.46095370231611,-0.762085908077575 L 34.460969302316094,-0.76209840807753 L 34.46098880231609,-0.762113008077485 L 34.46100670231608,-0.762122208077467 L 34.46101730231606,-0.762144508077402 L 34.46102630231604,-0.762162108077347 L 34.46103520231603,-0.762184708077299 L 34.461045502316026,-0.762203008077237 L 34.46105350231601,-0.762225308077185 L 34.461056502316,-0.762252608077103 L 34.46105950231596,-0.762281008077034 L 34.46106160231596,-0.762306508076979 L 34.46106020231594,-0.762328808076919 L 34.46105720231593,-0.762352908076866 L 34.46105870231591,-0.76237710807681 L 34.4610550023159,-0.762406908076744 L 34.46105580231588,-0.762425108076698 L 34.46105410231586,-0.762453708076621 L 34.46105360231584,-0.762480508076568 L 34.46105290231583,-0.762507608076495 L 34.46105250231582,-0.762534608076427 L 34.46105030231579,-0.762568808076356 L 34.46105280231578,-0.762587608076311 L 34.46105850231576,-0.76261720807623 L 34.461061802315754,-0.762639608076169 L 34.46106270231574,-0.76266400807611 L 34.461065502315705,-0.76269590807603 L 34.46106870231569,-0.762715508075978 L 34.46107190231569,-0.762734208075935 L 34.461074502315675,-0.762753208075886 L 34.461076002315664,-0.762773708075837 L 34.46108920231564,-0.762805508075736 L 34.46109370231562,-0.762840208075662 L 34.4610934023156,-0.762867508075599 L 34.46109290231559,-0.762898008075509 L 34.46108900231556,-0.762929708075444 L 34.46108640231556,-0.762956608075375 L 34.46108780231553,-0.762982608075321 L 34.46108940231551,-0.763010708075249 L 34.4610953023155,-0.763036408075186 L 34.46110340231549,-0.763054308075138 L 34.46111240231547,-0.763075008075071 L 34.461118602315466,-0.763097108075032 L 34.46112550231544,-0.763113908074969 L 34.46113670231542,-0.763130908074929 L 34.461143502315416,-0.763154008074874 L 34.461148902315394,-0.763182508074796 L 34.461148402315395,-0.763210808074737 L 34.46114920231537,-0.763228908074683 L 34.461161402315355,-0.763258708074603 L 34.46117030231534,-0.763288008074522 L 34.461176802315315,-0.763321708074447 L 34.46117800231528,-0.763355608074348 L 34.46116380231531,-0.763334708074408 L 34.46116640231532,-0.763316108074461 L 34.461117802315286,-0.763370308074367 L 34.46110510231531,-0.763353608074401 L 34.46110750231529,-0.763373108074345 L 34.46109360231527,-0.76338690807433 L 34.46107190231528,-0.763400308074296 L 34.46104500231527,-0.763411008074299 L 34.46101460231527,-0.76341560807431 L 34.46100190231528,-0.763399808074358 L 34.46099110231531,-0.763376408074431 L 34.4609743023153,-0.763362208074456 L 34.46095710231532,-0.763344808074515 L 34.46093720231536,-0.763320108074596 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.493789511913725,-0.762363096214898 L 34.49379240231212,-0.762363608056267 L 34.49378920231212,-0.762363608056252 L 34.493789511913725,-0.762363096214898 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.49377320231211,-0.762360208056278 L 34.49375120231212,-0.762352708056295 L 34.493733802312136,-0.762346508056326 L 34.493736402312145,-0.762320508056385 L 34.49374620231215,-0.762299808056432 L 34.493756902312164,-0.762279708056495 L 34.49376920231218,-0.762261008056511 L 34.4937774023122,-0.762238508056584 L 34.4937845023122,-0.762216408056617 L 34.49379310231222,-0.762195108056665 L 34.49380290231223,-0.76217440805671 L 34.49381390231223,-0.76215550805674 L 34.49382550231225,-0.762134808056791 L 34.493837902312265,-0.762112008056841 L 34.49385190231227,-0.762091208056878 L 34.493865802312285,-0.762070508056933 L 34.49387780231229,-0.762049808056963 L 34.49388990231231,-0.762028208057011 L 34.49390360231232,-0.762007508057042 L 34.49391780231233,-0.761987808057082 L 34.49392920231233,-0.76196820805713 L 34.493940902312346,-0.761950208057157 L 34.49395540231236,-0.761933908057207 L 34.49396950231236,-0.761916808057236 L 34.49398450231238,-0.761897808057266 L 34.49399930231238,-0.761880708057298 L 34.494015602312395,-0.761859908057337 L 34.49403100231239,-0.761839308057389 L 34.49404640231243,-0.761818008057419 L 34.494061102312436,-0.761795208057465 L 34.49407360231245,-0.761774808057504 L 34.49408820231245,-0.761757408057553 L 34.49410230231246,-0.761744508057573 L 34.49411380231248,-0.761725708057603 L 34.49412130231248,-0.761702208057644 L 34.49413160231249,-0.761682708057704 L 34.4941449023125,-0.761663108057727 L 34.494158402312515,-0.761643008057782 L 34.49417190231252,-0.761622408057826 L 34.49418490231254,-0.761601908057855 L 34.49419640231255,-0.7615806080579 L 34.49420870231256,-0.761558008057956 L 34.49422120231257,-0.761536908058007 L 34.49423390231257,-0.761515608058041 L 34.49424630231259,-0.761494308058079 L 34.49425930231261,-0.761471808058132 L 34.494270602312625,-0.761448108058184 L 34.49428130231263,-0.761425808058222 L 34.49429170231265,-0.76140530805827 L 34.49430320231265,-0.761384508058319 L 34.49431520231267,-0.761360808058359 L 34.49432970231268,-0.761337008058411 L 34.494344202312696,-0.761314708058446 L 34.49435780231272,-0.761291408058498 L 34.49437100231272,-0.761268108058554 L 34.49438120231274,-0.761245708058592 L 34.494393502312754,-0.76122440805864 L 34.49440850231275,-0.76120340805868 L 34.49442100231278,-0.761179708058743 L 34.49443060231279,-0.761154308058788 L 34.49444200231278,-0.761135508058837 L 34.49446650231279,-0.761141208058801 L 34.49448040231279,-0.761157008058753 L 34.494474602312756,-0.761181308058703 L 34.494459102312746,-0.761208908058647 L 34.494446702312736,-0.761233608058596 L 34.494435102312714,-0.761259008058534 L 34.49442240231271,-0.761283708058491 L 34.49440930231269,-0.761307408058445 L 34.49439420231267,-0.76133220805839 L 34.49437990231266,-0.761355608058348 L 34.49436560231265,-0.761379308058294 L 34.49435160231263,-0.761403408058226 L 34.494336302312625,-0.761426808058192 L 34.4943210023126,-0.761450708058139 L 34.494306302312594,-0.761475008058091 L 34.49429180231259,-0.761498708058036 L 34.494277902312575,-0.761521408058008 L 34.49426530231258,-0.761545408057948 L 34.49425130231254,-0.761570208057911 L 34.49423720231253,-0.761593708057858 L 34.49422330231252,-0.7616156080578 L 34.49420870231251,-0.761637808057756 L 34.4941948023125,-0.761660208057704 L 34.494180502312496,-0.761682108057663 L 34.49416750231247,-0.761705708057615 L 34.49415560231246,-0.761729108057577 L 34.494142302312454,-0.761752708057518 L 34.49412880231243,-0.761776708057469 L 34.494114302312425,-0.761799808057424 L 34.49409920231241,-0.761823508057387 L 34.4940871023124,-0.761844308057335 L 34.49407610231239,-0.761861808057298 L 34.49406580231238,-0.761881508057262 L 34.49405390231236,-0.761905208057213 L 34.49404100231235,-0.76192810805715 L 34.49402570231234,-0.761950808057121 L 34.49401170231232,-0.761973608057072 L 34.49399880231231,-0.761994208057028 L 34.49398460231231,-0.76201490805698 L 34.49397100231229,-0.762035308056942 L 34.49395760231228,-0.762057708056909 L 34.493944602312276,-0.762080108056836 L 34.493930602312254,-0.762101908056804 L 34.493915202312245,-0.762122508056758 L 34.493902302312236,-0.762143108056734 L 34.49389130231223,-0.762166108056664 L 34.493880202312205,-0.762189808056615 L 34.493868902312194,-0.762212208056565 L 34.49385530231218,-0.762235008056521 L 34.49384190231217,-0.762258208056471 L 34.49383130231216,-0.762278608056447 L 34.49382190231215,-0.762297908056392 L 34.49381270231213,-0.76232080805636 L 34.49380160231211,-0.762343108056306 L 34.493789511913725,-0.762363096214898 L 34.49377320231211,-0.762360208056278 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.46929180231637,-0.76009900807717 L 34.46927990231635,-0.760117708077127 L 34.46929960231633,-0.760124708077103 L 34.46929270231633,-0.760143108077062 L 34.469288202316335,-0.760162508077025 L 34.46930620231632,-0.760174908076972 L 34.4692872023163,-0.760191408076947 L 34.46928150231629,-0.760220408076878 L 34.46927740231628,-0.760255208076809 L 34.46927130231626,-0.760274808076763 L 34.46925540231625,-0.76030010807671 L 34.469237102316235,-0.760321208076669 L 34.46922640231622,-0.76034000807663 L 34.469209102316206,-0.760363808076579 L 34.4691972023162,-0.760389908076518 L 34.46918450231619,-0.760407008076489 L 34.46916900231618,-0.760425108076459 L 34.46915760231617,-0.760450008076415 L 34.46913330231615,-0.760475308076357 L 34.469123502316144,-0.760492408076306 L 34.46911500231612,-0.760516908076263 L 34.46910740231611,-0.760542108076214 L 34.46909800231611,-0.760557708076192 L 34.4690767023161,-0.760579908076141 L 34.4690493023161,-0.760582508076141 L 34.46904880231611,-0.760558408076212 L 34.46902560231612,-0.760539308076268 L 34.469008602316144,-0.760527808076294 L 34.46900150231614,-0.760504008076371 L 34.468973402316166,-0.760495208076403 L 34.468954402316164,-0.760488308076438 L 34.46893490231617,-0.760476908076477 L 34.468917802316184,-0.760470508076497 L 34.46889980231619,-0.760465408076529 L 34.4688802023162,-0.760460108076566 L 34.46885710231621,-0.760447208076604 L 34.4688324023162,-0.76044550807662 L 34.46881780231621,-0.760434208076653 L 34.46879840231621,-0.760422208076704 L 34.46878370231623,-0.760403408076738 L 34.46876900231626,-0.760380908076825 L 34.46877630231626,-0.760360908076861 L 34.46878410231629,-0.760337408076907 L 34.468788002316295,-0.760312508076975 L 34.46880170231633,-0.760289008077031 L 34.46882200231633,-0.760267708077063 L 34.468839202316325,-0.760248708077086 L 34.46884710231633,-0.760226708077142 L 34.468847902316355,-0.760204008077191 L 34.46886370231636,-0.760186008077226 L 34.468878002316366,-0.760169708077246 L 34.46889140231637,-0.760155108077282 L 34.468908102316384,-0.760137908077321 L 34.46892870231639,-0.760123108077342 L 34.468941002316406,-0.760102008077393 L 34.468952802316416,-0.760080908077431 L 34.46897440231642,-0.76006360807746 L 34.46899290231643,-0.760046408077497 L 34.46900960231643,-0.760026908077519 L 34.46902670231645,-0.760018508077546 L 34.469027602316466,-0.759994608077593 L 34.469041802316475,-0.759972208077644 L 34.46906260231648,-0.759952708077681 L 34.46907040231651,-0.759931608077718 L 34.46907790231651,-0.759910708077767 L 34.46907850231651,-0.759892308077809 L 34.469086702316524,-0.759874508077848 L 34.46910270231653,-0.759861108077865 L 34.46911520231655,-0.759840408077904 L 34.46913790231656,-0.759817108077943 L 34.469156502316565,-0.759798508077998 L 34.46916350231658,-0.75977850807804 L 34.46917720231658,-0.759763208078052 L 34.469192902316586,-0.759753108078068 L 34.46921150231659,-0.759747308078067 L 34.46924440231658,-0.759755608078021 L 34.46925980231657,-0.759767108078 L 34.469278202316545,-0.759792208077928 L 34.46930330231654,-0.759806908077876 L 34.46932080231655,-0.759795708077891 L 34.469331302316554,-0.75978060807792 L 34.469347902316564,-0.759767908077946 L 34.46935830231658,-0.75974920807798 L 34.46937250231659,-0.759734208078008 L 34.469392602316574,-0.759741408077988 L 34.46940890231656,-0.759755208077937 L 34.46942100231655,-0.759769408077897 L 34.469437802316534,-0.759789508077832 L 34.46945450231653,-0.75980830807777 L 34.46946910231651,-0.759828708077724 L 34.469477902316484,-0.759855808077647 L 34.469459302316494,-0.75985200807767 L 34.46947660231649,-0.759867008077624 L 34.46947150231648,-0.759886708077577 L 34.469462402316466,-0.759904008077549 L 34.46943900231646,-0.759928908077489 L 34.46941340231644,-0.759942608077478 L 34.46939320231644,-0.759954108077469 L 34.469384402316436,-0.759979408077406 L 34.46937550231642,-0.760006408077339 L 34.46936370231641,-0.760030308077292 L 34.469343102316394,-0.760051508077247 L 34.46931690231639,-0.760074608077225 L 34.46929180231637,-0.76009900807717 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.473123702316,-0.759967008075074 L 34.47309710231599,-0.759985408075051 L 34.473082602316005,-0.759974608075107 L 34.47310730231601,-0.759961208075105 L 34.47312490231601,-0.759955308075114 L 34.473144802316014,-0.759952108075109 L 34.473160757185155,-0.759951296810572 L 34.473123702316,-0.759967008075074 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.47318200231601,-0.759932408075133 L 34.47318294227115,-0.75993202840698 L 34.47318950231601,-0.759940308075108 L 34.473168402316006,-0.759950908075092 L 34.473160757185155,-0.759951296810572 L 34.473161202316014,-0.759951108075097 L 34.47318200231601,-0.759932408075133 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.473284502315444,-0.760833608072881 L 34.47329430231543,-0.760862808072809 L 34.4733034023154,-0.760887308072739 L 34.47328280231542,-0.760903708072714 L 34.4732707023154,-0.76091710807268 L 34.4732794023154,-0.760933508072641 L 34.47330300231539,-0.760930308072641 L 34.473283502315375,-0.76093680807262 L 34.473254702315394,-0.760939308072635 L 34.473234802315396,-0.760932308072669 L 34.473206102315395,-0.76093100807269 L 34.473185402315394,-0.76092330807271 L 34.47316070231541,-0.760917008072761 L 34.473130602315415,-0.760911208072786 L 34.47311210231542,-0.760909508072784 L 34.47309140231542,-0.760904808072812 L 34.47306850231543,-0.760894608072859 L 34.47304280231544,-0.760893708072868 L 34.473022902315435,-0.760892508072897 L 34.47299800231545,-0.760889008072919 L 34.472975202315446,-0.760896908072924 L 34.47295490231543,-0.760904608072907 L 34.47293260231543,-0.760916608072884 L 34.47290570231544,-0.760920408072901 L 34.47288620231545,-0.760906508072941 L 34.47287860231546,-0.760883408073015 L 34.47286440231547,-0.760861708073059 L 34.472846002315485,-0.760850108073118 L 34.47283380231549,-0.760836108073161 L 34.47283080231551,-0.760817308073199 L 34.472815002315514,-0.76080360807323 L 34.47280280231553,-0.76079020807328 L 34.472787602315535,-0.760776808073336 L 34.47277460231556,-0.760746308073404 L 34.47276310231557,-0.760727908073461 L 34.47275000231557,-0.760714108073512 L 34.472738402315585,-0.760698408073544 L 34.472729402315615,-0.7606776080736 L 34.47272080231562,-0.76065750807366 L 34.47270410231564,-0.760638108073716 L 34.47269860231565,-0.760614408073775 L 34.47270020231566,-0.760594508073839 L 34.47270900231568,-0.760573608073871 L 34.47272790231569,-0.760552908073896 L 34.472748802315685,-0.760533608073936 L 34.4727660023157,-0.760520008073951 L 34.4727876023157,-0.760499108074002 L 34.472813502315724,-0.760483908074017 L 34.47282410231572,-0.760466908074044 L 34.47282740231574,-0.760441908074117 L 34.472835602315754,-0.760422008074148 L 34.47284260231578,-0.760398908074212 L 34.47286340231576,-0.760408408074181 L 34.47288140231576,-0.760420408074138 L 34.472899802315744,-0.760417908074119 L 34.472919302315745,-0.760417808074111 L 34.47293680231575,-0.760407508074119 L 34.472949202315746,-0.760426708074067 L 34.47297740231573,-0.760434508074035 L 34.47298080231574,-0.760412908074099 L 34.472998302315744,-0.760403908074093 L 34.47300690231576,-0.760381508074141 L 34.47299710231577,-0.760358608074209 L 34.47299540231579,-0.760340508074254 L 34.473000202315795,-0.760323108074295 L 34.47301020231578,-0.760339008074247 L 34.47302390231578,-0.76035220807421 L 34.47304530231578,-0.760345508074203 L 34.473054602315784,-0.760323608074256 L 34.473061802315804,-0.760294908074324 L 34.473069702315826,-0.760270808074389 L 34.47308650231582,-0.760258508074409 L 34.473097302315836,-0.760243808074419 L 34.47311140231582,-0.760267108074369 L 34.473119702315834,-0.760246608074404 L 34.47314640231583,-0.7602399080744 L 34.47316340231581,-0.760255208074356 L 34.473164602315826,-0.760237208074405 L 34.473156602315846,-0.760216708074443 L 34.47312530231585,-0.76021350807448 L 34.47311350231586,-0.760190308074533 L 34.473111502315874,-0.760171008074602 L 34.47311560231589,-0.760146608074659 L 34.473132702315894,-0.760136208074657 L 34.473151702315896,-0.760134508074663 L 34.4731676023159,-0.760121108074693 L 34.4731463023159,-0.760126708074688 L 34.473125902315914,-0.760124108074693 L 34.47313850231591,-0.760105108074728 L 34.473149102315915,-0.760087808074777 L 34.47315210231594,-0.76006470807482 L 34.47315900231595,-0.760044908074863 L 34.47317750231596,-0.760028508074905 L 34.47320220231596,-0.760024608074886 L 34.47318190231596,-0.760037008074883 L 34.47319330231594,-0.760051208074831 L 34.473221802315955,-0.760017408074901 L 34.47322900231598,-0.759998608074928 L 34.473218302315985,-0.759981308074977 L 34.473209702316,-0.759948608075073 L 34.47320750231602,-0.759922108075138 L 34.47318294227115,-0.75993202840698 L 34.47316890231603,-0.759914308075174 L 34.47316370231605,-0.75989210807524 L 34.473159202316054,-0.759867808075309 L 34.473151802316075,-0.759848908075354 L 34.47316710231608,-0.759833808075366 L 34.473185902316075,-0.759831908075384 L 34.47320400231607,-0.759832408075351 L 34.473220002316076,-0.759823708075372 L 34.4732063023161,-0.75981140807542 L 34.47318780231609,-0.75980760807544 L 34.47317740231611,-0.759778108075506 L 34.473168202316124,-0.759756408075563 L 34.473180702316135,-0.759742108075592 L 34.47317360231616,-0.759723108075644 L 34.47317320231617,-0.759696708075725 L 34.473153602316174,-0.759693608075732 L 34.473136602316174,-0.759676808075783 L 34.473146202316194,-0.759658208075821 L 34.47315564287595,-0.759641666924141 L 34.473144002316204,-0.759650308075829 L 34.473125902316205,-0.759641108075862 L 34.4731105023162,-0.759629908075917 L 34.47309330231623,-0.759621908075942 L 34.47306070231624,-0.759606008076002 L 34.47304490231623,-0.759591408076042 L 34.47306990231624,-0.759582708076058 L 34.47306400231627,-0.759562108076101 L 34.473078702316265,-0.759551708076132 L 34.47306060231627,-0.759555908076121 L 34.473043802316276,-0.759543308076181 L 34.4730288023163,-0.759498708076277 L 34.473031702316305,-0.759479508076339 L 34.47302330231633,-0.759460108076382 L 34.473027702316344,-0.759437808076419 L 34.47304060231637,-0.759414908076482 L 34.47304120231637,-0.759395608076525 L 34.47302330231637,-0.759382808076572 L 34.47300786403513,-0.759377746345033 L 34.47301550231638,-0.759374908076592 L 34.47300010231639,-0.759362408076622 L 34.472975902316385,-0.759370208076642 L 34.4729733023164,-0.759349608076677 L 34.47297944238473,-0.759329472264411 L 34.47299460231642,-0.75932180807674 L 34.47301830231642,-0.759317108076722 L 34.47301620231644,-0.759298308076773 L 34.47299840231644,-0.759287008076817 L 34.47297540231644,-0.759289908076824 L 34.47296320231644,-0.759272408076879 L 34.47295550231646,-0.759254208076925 L 34.47294000231649,-0.759240808076961 L 34.472924802316484,-0.759219808077029 L 34.47292140231649,-0.759199908077073 L 34.4729079023165,-0.759214208077039 L 34.47288750231649,-0.75921700807706 L 34.47286540231648,-0.759252308076983 L 34.472857202316455,-0.759276408076938 L 34.47284520231646,-0.759262308076976 L 34.47284970231648,-0.759238808077037 L 34.47286330231652,-0.759202108077095 L 34.47287730231652,-0.759178208077161 L 34.47288310231654,-0.759143908077227 L 34.47288690231655,-0.7591185080773 L 34.47286290231656,-0.759118008077322 L 34.472866702316566,-0.759099208077365 L 34.472850017144275,-0.759090716516507 L 34.472870702316584,-0.759087208077384 L 34.47291590231658,-0.759069708077392 L 34.47293430231658,-0.759066108077379 L 34.47295740231657,-0.759069308077374 L 34.47296620231659,-0.759049308077411 L 34.47296067076152,-0.75903617823252 L 34.4729176023166,-0.759065708077409 L 34.47289580231658,-0.759075108077396 L 34.47286790231658,-0.759077708077408 L 34.472844602316584,-0.759077108077431 L 34.472851102316596,-0.759059508077464 L 34.47286444330298,-0.759038876086931 L 34.4728837023166,-0.759043308077474 L 34.4729140023166,-0.759035808077471 L 34.4729312023166,-0.759024908077495 L 34.4729496023166,-0.759010208077518 L 34.472967102316616,-0.759003008077524 L 34.47298860231662,-0.75900480807751 L 34.4730066023166,-0.759013708077473 L 34.473030102316606,-0.758996908077495 L 34.473041102316635,-0.758979808077549 L 34.47303240231663,-0.758958008077596 L 34.47302530231665,-0.758941208077642 L 34.47300930231665,-0.758929008077685 L 34.47299410231667,-0.758917308077716 L 34.47297640231669,-0.758891208077783 L 34.472981502316706,-0.758864208077865 L 34.473002902316715,-0.758845008077892 L 34.47301720231672,-0.758833608077902 L 34.473037602316715,-0.758831108077891 L 34.47305580231671,-0.758830308077884 L 34.47307500231672,-0.758825908077895 L 34.473100902316716,-0.758822208077883 L 34.47312010231673,-0.758816508077883 L 34.473141302316726,-0.7588035080779 L 34.47316040231672,-0.758799708077902 L 34.47317990231672,-0.758800908077883 L 34.47320140231673,-0.758791508077897 L 34.473221802316715,-0.758785108077897 L 34.47324820231671,-0.758791508077856 L 34.47326990231671,-0.758806908077806 L 34.4732910023167,-0.758818008077775 L 34.47330790231669,-0.758828908077736 L 34.47330950231667,-0.758855708077676 L 34.473323802316656,-0.75887220807763 L 34.47335850231666,-0.758884808077569 L 34.47338600231663,-0.758900608077519 L 34.473412002316635,-0.758917808077462 L 34.47343610231662,-0.758929508077404 L 34.47345290231661,-0.758919708077424 L 34.47347970231662,-0.758906908077434 L 34.4735035023166,-0.758904908077421 L 34.47352280231661,-0.758900208077424 L 34.47353930231662,-0.758892608077429 L 34.47355890231662,-0.758904008077409 L 34.4735686023166,-0.75892160807735 L 34.47356630231658,-0.758945308077294 L 34.47357090231657,-0.75897210807722 L 34.473575002316544,-0.758998408077144 L 34.473572402316535,-0.759019308077091 L 34.473555602316516,-0.759045608077055 L 34.47354730231651,-0.759067208077019 L 34.473560802316506,-0.759079308076971 L 34.47357920231649,-0.759096708076911 L 34.47359340231646,-0.759116408076859 L 34.473602202316464,-0.759137008076795 L 34.473599102316456,-0.759159108076746 L 34.47358640231644,-0.759178208076704 L 34.47357890231643,-0.759197308076677 L 34.4735647023164,-0.759231508076604 L 34.47353810231639,-0.759251708076561 L 34.47352720231638,-0.75927150807652 L 34.47352580231637,-0.759295808076465 L 34.47353310231635,-0.759322708076396 L 34.47352790231634,-0.759344708076348 L 34.47352890231632,-0.759366208076292 L 34.47354980231632,-0.759389108076219 L 34.47356790231629,-0.75941270807615 L 34.47356560231628,-0.759433408076109 L 34.47354540231626,-0.75945590807605 L 34.473538702316255,-0.759473708076027 L 34.47352440231624,-0.759498508075982 L 34.473521502316224,-0.759528808075908 L 34.47351410231622,-0.759547108075856 L 34.473506902316196,-0.759566608075822 L 34.47350790231619,-0.75959160807576 L 34.47350500231618,-0.759613308075708 L 34.47349560231616,-0.75964210807565 L 34.47349220231616,-0.759668608075573 L 34.473472402316126,-0.759690308075531 L 34.473466202316125,-0.759708408075505 L 34.4734536023161,-0.759729208075438 L 34.473452702316095,-0.759752108075393 L 34.47346110231608,-0.759777208075329 L 34.473473402316074,-0.759796808075292 L 34.473492502316056,-0.759816508075215 L 34.47349310231605,-0.759835808075164 L 34.47348460231602,-0.759864408075112 L 34.473472002316,-0.75988450807505 L 34.47345620231601,-0.759902908075023 L 34.473457102315976,-0.759929408074963 L 34.473454102315976,-0.759954408074903 L 34.47343990231596,-0.759979008074857 L 34.473426502315945,-0.760005008074806 L 34.473414802315936,-0.760028608074759 L 34.47339260231592,-0.760036708074748 L 34.47337290231593,-0.760035908074755 L 34.47335200231592,-0.760052408074723 L 34.473361402315916,-0.760077108074666 L 34.473355902315895,-0.760107408074591 L 34.47335300231587,-0.760126508074547 L 34.47334580231587,-0.760147708074501 L 34.47333950231585,-0.760166108074476 L 34.47334300231584,-0.760187808074401 L 34.47333690231582,-0.760210908074352 L 34.47333650231581,-0.760232908074312 L 34.473331502315794,-0.760257208074247 L 34.47333050231578,-0.760275808074204 L 34.473330902315766,-0.760300608074136 L 34.47333780231577,-0.760323608074091 L 34.47334210231573,-0.76034410807402 L 34.47333430231574,-0.760369108073973 L 34.47331440231572,-0.760380208073961 L 34.473322102315706,-0.760404508073898 L 34.47333550231568,-0.7604345080738 L 34.473326102315674,-0.760463608073749 L 34.47331920231567,-0.760480508073701 L 34.473316602315656,-0.760506708073653 L 34.47331000231562,-0.760534508073576 L 34.4733029023156,-0.760557908073535 L 34.4732903023156,-0.76058110807349 L 34.47328750231559,-0.760605408073431 L 34.47328210231557,-0.760627508073386 L 34.473275402315565,-0.76065320807333 L 34.47327770231553,-0.760685808073235 L 34.473277902315516,-0.76071550807317 L 34.4732790023155,-0.760746308073086 L 34.473278402315486,-0.760775808073018 L 34.473272502315474,-0.760804008072961 L 34.473284502315444,-0.760833608072881 z M 34.473150538474364,-0.759627299036365 L 34.47314460231622,-0.759618908075913 L 34.473134902316204,-0.75963490807588 L 34.473150538474364,-0.759627299036365 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.46327360231749,-0.759411808082623 L 34.4632996023175,-0.759409708082616 L 34.46332940231748,-0.759415508082577 L 34.46334850231747,-0.759433608082517 L 34.46335700231747,-0.759450908082473 L 34.46336300231745,-0.759477108082414 L 34.46336950231743,-0.759501008082353 L 34.46338870231742,-0.759517808082288 L 34.46341610231741,-0.759534208082238 L 34.46343270231739,-0.759546308082207 L 34.46345130231739,-0.759551608082164 L 34.46346260231736,-0.759575708082101 L 34.463471002317355,-0.75959560808206 L 34.46349160231735,-0.75960320808203 L 34.46352010231733,-0.759616808081974 L 34.46353530231732,-0.759631408081922 L 34.463552502317306,-0.759644408081885 L 34.4635712023173,-0.759659508081833 L 34.46358770231729,-0.759674708081793 L 34.463594502317264,-0.759701508081712 L 34.46359050231726,-0.75972160808168 L 34.46357410231726,-0.759733708081662 L 34.463556202317235,-0.7597606080816 L 34.46355220231724,-0.759780608081541 L 34.46355140231722,-0.75979910808151 L 34.4635421023172,-0.759814608081483 L 34.46352860231721,-0.759828008081455 L 34.46350570231719,-0.759841708081435 L 34.463490902317176,-0.759863008081378 L 34.46348680231718,-0.759881508081341 L 34.46347040231716,-0.759900808081306 L 34.46344770231716,-0.759909208081304 L 34.46342380231717,-0.759906708081333 L 34.463396502317174,-0.759903008081361 L 34.46337920231717,-0.759895408081388 L 34.463364102317186,-0.759878308081421 L 34.4633573023172,-0.759860608081482 L 34.463342502317225,-0.759844708081519 L 34.463319502317205,-0.759839908081562 L 34.46329360231722,-0.759831508081594 L 34.46327620231724,-0.759821408081634 L 34.46326710231725,-0.759793408081702 L 34.463260102317264,-0.759776108081756 L 34.46325300231727,-0.759758308081805 L 34.46322730231728,-0.759762108081799 L 34.46320040231727,-0.759781608081777 L 34.46319030231726,-0.759797508081738 L 34.46317760231725,-0.759814508081712 L 34.463180802317275,-0.759790508081759 L 34.463161902317296,-0.759763808081841 L 34.46313710231729,-0.759753308081874 L 34.46315320231731,-0.759725508081934 L 34.46316570231732,-0.759703708081978 L 34.46316600231733,-0.759682408082038 L 34.46315430231734,-0.759668508082076 L 34.46315580231735,-0.759648208082118 L 34.463150802317365,-0.759626508082178 L 34.46312430231739,-0.759608908082239 L 34.4631098023174,-0.759595608082285 L 34.46310020231742,-0.759558908082372 L 34.46311580231742,-0.759546408082386 L 34.463123202317426,-0.759523008082458 L 34.46313930231745,-0.759508808082465 L 34.463155102317444,-0.759500108082497 L 34.46317040231746,-0.759486808082506 L 34.46319160231745,-0.75948290808251 L 34.46321130231747,-0.759467408082522 L 34.46322670231748,-0.759454708082556 L 34.46323960231748,-0.759441208082575 L 34.46325280231749,-0.759421708082614 L 34.46327360231749,-0.759411808082623 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.46539840231731,-0.759301008081561 L 34.46540710231732,-0.759280108081601 L 34.46541240231734,-0.759262208081647 L 34.46541860231734,-0.759242708081697 L 34.46543170231737,-0.759212808081745 L 34.46544220231738,-0.759188808081815 L 34.4654377023174,-0.759152008081902 L 34.46544940231741,-0.759125808081957 L 34.4654620433112,-0.759114549696883 L 34.46545610231741,-0.75912880808193 L 34.46547320231742,-0.759104708081987 L 34.46549400231743,-0.759086508082037 L 34.46551080231744,-0.759072808082043 L 34.46552380231745,-0.759056408082066 L 34.465530902317454,-0.759030608082142 L 34.46554890231747,-0.759016008082151 L 34.465561802317495,-0.758996808082196 L 34.465572538374005,-0.759002393313912 L 34.46557490231747,-0.75900610808217 L 34.46556230231749,-0.758986308082229 L 34.4655482023175,-0.758968808082264 L 34.46553030231751,-0.758955508082306 L 34.46550490231753,-0.758949208082352 L 34.46547930231752,-0.758938908082386 L 34.465458002317526,-0.758927908082439 L 34.46543230231755,-0.758907508082502 L 34.46541490231756,-0.75889260808253 L 34.46539670231758,-0.758878008082592 L 34.46537230231758,-0.758861208082649 L 34.46535790231759,-0.758847008082694 L 34.46534310231761,-0.758836108082715 L 34.46533050231762,-0.75882290808276 L 34.465309702317626,-0.758811108082812 L 34.46528600231763,-0.758801808082851 L 34.465264702317626,-0.758795508082879 L 34.46523710231765,-0.758784908082922 L 34.46521380231768,-0.758768108082964 L 34.46518790231767,-0.758751408083031 L 34.46516720231769,-0.758740508083082 L 34.46514900231769,-0.758733608083103 L 34.465121302317705,-0.758727308083133 L 34.46509400231772,-0.758710708083191 L 34.465071502317734,-0.758688008083256 L 34.46505190231774,-0.758666008083321 L 34.465031202317746,-0.758654708083368 L 34.46500630231777,-0.7586436080834 L 34.464978302317775,-0.758634808083442 L 34.46494500231778,-0.75862560808348 L 34.4649221023178,-0.758609008083543 L 34.464903202317814,-0.758597508083578 L 34.464879402317834,-0.758584808083636 L 34.46486450231782,-0.758568908083678 L 34.46483880231784,-0.758561008083705 L 34.46481400231783,-0.758554608083748 L 34.464801402317846,-0.758540208083783 L 34.46478580231786,-0.758526508083832 L 34.46478640231788,-0.758506608083877 L 34.464792502317884,-0.758488308083926 L 34.46480920231789,-0.758472208083956 L 34.4648287023179,-0.758446208084003 L 34.46485010231792,-0.758442408083991 L 34.46486960231792,-0.758432008084005 L 34.464879202317924,-0.758412908084052 L 34.46488290231794,-0.75838610808411 L 34.46488020231796,-0.758365208084159 L 34.464887302317976,-0.758345808084208 L 34.46490490231797,-0.758324608084232 L 34.46492670231797,-0.758312508084256 L 34.46495760231798,-0.758307908084254 L 34.46498410231797,-0.75831080808422 L 34.465008502317964,-0.758319208084194 L 34.465026602317955,-0.758324208084179 L 34.46504360231796,-0.75833330808413 L 34.465057802317936,-0.758344508084101 L 34.46508320231794,-0.758350908084067 L 34.46510470231793,-0.758361708084036 L 34.465120702317925,-0.758373408083985 L 34.46513920231791,-0.758386808083958 L 34.465159502317896,-0.758401708083908 L 34.46518260231789,-0.758403008083877 L 34.465203302317896,-0.758410408083835 L 34.46522610231788,-0.758424308083802 L 34.46525300231786,-0.758430608083775 L 34.465276402317855,-0.75844150808373 L 34.46529680231784,-0.758458508083685 L 34.46531650231784,-0.758461108083645 L 34.46534290231783,-0.758473608083604 L 34.4653619023178,-0.758488508083574 L 34.46538360231781,-0.758495308083521 L 34.46540000231781,-0.758511308083467 L 34.46541620231779,-0.758521008083456 L 34.46543810231779,-0.758518508083444 L 34.465456602317786,-0.758522008083432 L 34.46548360231779,-0.758531208083366 L 34.46549740231779,-0.758515308083418 L 34.46551200231779,-0.758489508083473 L 34.465511802317806,-0.758471308083505 L 34.46550080231784,-0.758437408083592 L 34.46548880231786,-0.758408908083677 L 34.465473602317886,-0.758379908083744 L 34.465459702317894,-0.758367308083802 L 34.4654484023179,-0.758352308083826 L 34.46543640231791,-0.758331908083898 L 34.465434702317914,-0.758313308083938 L 34.46543860231793,-0.758288708083983 L 34.46543770231794,-0.758270108084052 L 34.46543200231796,-0.758252308084092 L 34.465425802317974,-0.758233808084136 L 34.46541980231798,-0.758210508084191 L 34.46543950231799,-0.758206508084197 L 34.46546200231798,-0.758204108084179 L 34.46548340231799,-0.758188908084201 L 34.465510502318,-0.758184408084208 L 34.46553260231799,-0.758179008084208 L 34.465549602318,-0.758167808084233 L 34.465569102318,-0.758156308084231 L 34.46558990231801,-0.758142508084254 L 34.46560900231801,-0.758136508084251 L 34.465622502318006,-0.758150208084214 L 34.465646202318005,-0.758143808084222 L 34.465666602317995,-0.758134408084222 L 34.46568530231801,-0.758130008084237 L 34.46570710231801,-0.758122908084228 L 34.46572730231801,-0.758113708084244 L 34.465753302318014,-0.758111908084232 L 34.465771202317995,-0.758124008084185 L 34.465799402317984,-0.758138608084132 L 34.46582400231798,-0.758154508084082 L 34.46583960231797,-0.758166908084057 L 34.46586240231794,-0.758182008083996 L 34.46587560231793,-0.758194308083955 L 34.46589250231794,-0.758206308083921 L 34.46589660231792,-0.758225308083858 L 34.46592010231792,-0.758227108083847 L 34.465936902317914,-0.758238608083807 L 34.46594400231789,-0.758255708083769 L 34.465936802317884,-0.758279808083718 L 34.46594960231786,-0.758300708083636 L 34.46597600231786,-0.758300108083621 L 34.466006002317854,-0.758315108083576 L 34.46602040231783,-0.758333408083518 L 34.46602540231782,-0.758353808083477 L 34.46602890231781,-0.758380608083416 L 34.466038902317784,-0.758404808083339 L 34.46604770231776,-0.758423008083283 L 34.466072002317766,-0.758437708083241 L 34.46609470231775,-0.758460108083175 L 34.46611590231773,-0.758482208083092 L 34.46614410231773,-0.758502108083037 L 34.466155602317706,-0.758518408082983 L 34.4661674023177,-0.758542808082914 L 34.46617860231767,-0.758576408082842 L 34.46617360231766,-0.758611708082744 L 34.46617360231761,-0.75863970808268 L 34.46617240231761,-0.758663508082626 L 34.4661806023176,-0.758683108082577 L 34.46619660231759,-0.758706408082517 L 34.466215402317594,-0.758709508082482 L 34.46623300231759,-0.758700408082503 L 34.46624120231757,-0.758718008082448 L 34.466259302317575,-0.758710808082453 L 34.46625280231758,-0.758729508082416 L 34.46626640231755,-0.758746308082369 L 34.46628470231755,-0.758755208082324 L 34.466294302317536,-0.758771408082296 L 34.466300702317525,-0.758791708082236 L 34.466303302317506,-0.758815008082164 L 34.46632420231751,-0.75881740808215 L 34.466342502317495,-0.758832508082107 L 34.46635860231748,-0.758842808082069 L 34.46637280231747,-0.75885410808204 L 34.46638560231747,-0.758867708081991 L 34.46639290231745,-0.758888608081936 L 34.46641230231745,-0.758892408081915 L 34.46642320231744,-0.758908308081866 L 34.46642620231742,-0.758931108081812 L 34.46643290231741,-0.758949008081761 L 34.4664512023174,-0.758963208081719 L 34.46646630231738,-0.758990208081654 L 34.46649050231736,-0.759012008081578 L 34.466497402317344,-0.759038608081515 L 34.466488702317335,-0.759057008081464 L 34.466482402317325,-0.759075708081432 L 34.46647940231731,-0.759094908081378 L 34.466492902317306,-0.759123408081312 L 34.46650080231728,-0.759141708081251 L 34.46651170231727,-0.759164008081196 L 34.46651630231726,-0.759182508081134 L 34.46651020231724,-0.75921170808109 L 34.46649500231722,-0.759243608081011 L 34.4665072023172,-0.759257408080974 L 34.46653060231721,-0.759250208080975 L 34.466552002317215,-0.75924140808098 L 34.46657890231723,-0.759226508081011 L 34.46660830231722,-0.75922780808098 L 34.4666196023172,-0.759245108080933 L 34.4666331023172,-0.759264708080874 L 34.46665480231718,-0.759284808080815 L 34.46667440231715,-0.759304308080747 L 34.46669240231716,-0.759320108080699 L 34.46669670231713,-0.759341208080652 L 34.46669970231712,-0.759360708080599 L 34.466692902317114,-0.759377808080548 L 34.466668902317124,-0.759385008080549 L 34.46664900231711,-0.759398308080543 L 34.466628202317104,-0.759403408080528 L 34.4666072023171,-0.759415708080521 L 34.46659270231709,-0.759438508080475 L 34.46657920231708,-0.759457408080438 L 34.466577102317075,-0.759479008080379 L 34.466567302317046,-0.75950040808034 L 34.46655100231705,-0.759513108080316 L 34.466519702317036,-0.759519908080325 L 34.466491902317046,-0.759521008080332 L 34.46646780231704,-0.759531708080332 L 34.46644330231704,-0.759544008080313 L 34.46642880231704,-0.75955630808028 L 34.466414102317025,-0.759576108080257 L 34.46640150231702,-0.75959850808021 L 34.466397502317,-0.759619208080147 L 34.466382002317005,-0.759631408080129 L 34.46637230231699,-0.759654308080082 L 34.466365502316954,-0.759672408080045 L 34.46635860231696,-0.759694408080005 L 34.46636920231695,-0.759710808079945 L 34.46636790231693,-0.75973170807991 L 34.46634800231694,-0.759742308079899 L 34.466325502316934,-0.759748008079901 L 34.46630150231694,-0.759734408079935 L 34.46631634640128,-0.759742819727759 L 34.466313702316924,-0.759748908079881 L 34.466296102316925,-0.75976000807988 L 34.46628360231691,-0.759775108079848 L 34.466266502316905,-0.759794408079824 L 34.466252302316896,-0.759812108079774 L 34.466239002316875,-0.759831408079731 L 34.46622010231688,-0.75983560807975 L 34.466208102316884,-0.759853108079722 L 34.46621690231687,-0.759869208079653 L 34.46620530231685,-0.759898408079591 L 34.46618900231684,-0.759920008079557 L 34.46617090231682,-0.759955408079494 L 34.46615350231682,-0.759935808079544 L 34.46614750231685,-0.759913008079598 L 34.46613800231687,-0.759890408079647 L 34.46611380231686,-0.759883008079703 L 34.46609740231688,-0.759870408079728 L 34.466084002316904,-0.759846508079811 L 34.46605560231691,-0.759834208079837 L 34.46602750231693,-0.759824008079896 L 34.466007702316915,-0.759827608079891 L 34.465979002316914,-0.759840508079882 L 34.46595330231692,-0.759849808079876 L 34.465927702316925,-0.759831608079937 L 34.465922802316946,-0.759800508080022 L 34.46590830231698,-0.759773808080087 L 34.465887602316975,-0.759755508080149 L 34.46586650231698,-0.759739608080199 L 34.465840602316995,-0.759727608080236 L 34.465816902317,-0.759718308080299 L 34.46580570231702,-0.759696308080341 L 34.46580000231704,-0.759666008080426 L 34.46577880231706,-0.759646808080474 L 34.46575530231707,-0.759625608080558 L 34.46572420231707,-0.759620008080578 L 34.46570390231708,-0.759609508080609 L 34.4656927023171,-0.759590608080681 L 34.4656762023171,-0.759576508080712 L 34.46565630231712,-0.759569808080743 L 34.46563860231711,-0.759564408080769 L 34.46560570231713,-0.759553808080817 L 34.46558490231715,-0.759534808080885 L 34.46556290231716,-0.759517408080916 L 34.465546302317165,-0.759503508080962 L 34.46552160231719,-0.759492308081019 L 34.465492802317186,-0.759479008081072 L 34.465473002317204,-0.759462408081117 L 34.465457302317226,-0.759444208081179 L 34.46543320231722,-0.759428508081225 L 34.46541100231723,-0.75942080808125 L 34.46539280231725,-0.759413708081295 L 34.46536960231726,-0.759403108081317 L 34.465356198362194,-0.759398588740206 L 34.465357302317265,-0.759386708081376 L 34.46536760231728,-0.759365308081415 L 34.4653801023173,-0.759338808081476 L 34.46539470231728,-0.759323008081507 L 34.46539840231731,-0.759301008081561 z M 34.46568760231736,-0.759190808081639 L 34.465702302317325,-0.759213108081591 L 34.46572120231732,-0.759233608081528 L 34.4657328023173,-0.759248108081486 L 34.46575180231729,-0.759262008081429 L 34.46577740231728,-0.75927730808138 L 34.46580400231728,-0.759292208081333 L 34.46582930231726,-0.759308508081268 L 34.46585060231725,-0.759324908081231 L 34.465868102317216,-0.75935030808115 L 34.465881102317205,-0.759368708081093 L 34.4659018023172,-0.759383708081036 L 34.46592620231717,-0.759407108080973 L 34.465943602317175,-0.759426308080926 L 34.465961402317156,-0.759434508080879 L 34.46598500231715,-0.759447208080835 L 34.46599404603812,-0.759453990871606 L 34.465998102317144,-0.759458308080806 L 34.46598100231716,-0.75944010808085 L 34.46596380231718,-0.759419008080925 L 34.465950202317195,-0.759400208080968 L 34.46593440231722,-0.759376708081027 L 34.46591080231722,-0.759363008081093 L 34.46589050231722,-0.759350708081116 L 34.46587710231724,-0.75932630808119 L 34.465854502317256,-0.759307008081266 L 34.465834002317266,-0.759292908081303 L 34.46581640231727,-0.759282008081347 L 34.465801002317285,-0.759264808081387 L 34.465783202317304,-0.759240108081462 L 34.46576310231732,-0.759220508081539 L 34.46574140231733,-0.75921180808156 L 34.465720302317344,-0.759198208081607 L 34.465707402317356,-0.759178108081672 L 34.46568750231737,-0.759154908081731 L 34.46566810231739,-0.759136308081784 L 34.46565960231741,-0.759106308081879 L 34.465647102317405,-0.759087008081929 L 34.46562800231744,-0.75907750808195 L 34.46560810231744,-0.759061408082017 L 34.465623768359144,-0.759074082618261 L 34.46562910231742,-0.75908450808195 L 34.465636402317394,-0.759108308081874 L 34.46564620231743,-0.759092808081909 L 34.46565510231739,-0.759116308081851 L 34.46565960231738,-0.75913480808179 L 34.46567720231737,-0.759164708081719 L 34.46568760231736,-0.759190808081639 z M 34.466176802317015,-0.759645608080246 L 34.46616050231703,-0.759625508080289 L 34.46614840231704,-0.759611508080345 L 34.46612730231705,-0.759580108080428 L 34.46610820231707,-0.759556408080491 L 34.46609130231709,-0.759543408080524 L 34.46607350231709,-0.759534008080568 L 34.46607666606896,-0.759535678825944 L 34.46607780231708,-0.759537608080554 L 34.46609820231707,-0.759561008080493 L 34.466114202317044,-0.759587208080415 L 34.46613210231704,-0.75960460808036 L 34.46615430231703,-0.759623808080297 L 34.46616365818685,-0.75962939967442 L 34.466176802317015,-0.759645608080246 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.46847160231676,-0.759615708078856 L 34.468501702316765,-0.759597108078893 L 34.46851970231677,-0.759587108078907 L 34.46854940231679,-0.759565008078942 L 34.46856330231678,-0.759552608078954 L 34.468580202316794,-0.759538308078983 L 34.46859640231683,-0.759516008079029 L 34.46859240231682,-0.759484908079098 L 34.468595602316846,-0.759465708079142 L 34.46860630231685,-0.759433908079218 L 34.46861950231686,-0.759414808079263 L 34.46863940231689,-0.759400008079283 L 34.46866180231688,-0.759377308079314 L 34.468691902316884,-0.759366108079336 L 34.468712002316884,-0.759350308079356 L 34.46873720231691,-0.759332708079389 L 34.46876890231691,-0.759323808079383 L 34.468786402316915,-0.759314608079404 L 34.46881160231691,-0.759304708079412 L 34.468824702316915,-0.759285408079436 L 34.46883560231693,-0.75926880807949 L 34.46885280231694,-0.759252808079508 L 34.468872702316936,-0.759243008079516 L 34.46887030231695,-0.75921670807959 L 34.46888050231698,-0.759196508079624 L 34.46888950231699,-0.759166408079691 L 34.468907202317,-0.759139108079744 L 34.46892280231701,-0.759130008079765 L 34.46893970231703,-0.759117208079786 L 34.46896450231703,-0.759100208079815 L 34.468978902317026,-0.759088808079827 L 34.46898860231704,-0.759064508079882 L 34.46902030231704,-0.759060508079858 L 34.46903160231707,-0.759035308079931 L 34.469038302317045,-0.759053908079867 L 34.46905810231703,-0.759070908079815 L 34.46907500231702,-0.759079608079783 L 34.46909440231702,-0.759090108079747 L 34.46911220231701,-0.759096808079706 L 34.469132502317,-0.759113808079659 L 34.469145902316974,-0.759139508079609 L 34.46915590231696,-0.759163908079544 L 34.46916620231694,-0.759186908079476 L 34.469167602316936,-0.759215708079392 L 34.469145802316916,-0.759234608079372 L 34.46912130231691,-0.75924200807936 L 34.469104202316906,-0.759249808079358 L 34.469094402316905,-0.759269008079317 L 34.46908150231689,-0.759294208079252 L 34.46906610231688,-0.759314808079218 L 34.46904570231688,-0.75931910807922 L 34.469028002316875,-0.759326308079207 L 34.469001702316866,-0.759337908079196 L 34.46898520231686,-0.759352808079176 L 34.46897620231685,-0.759371408079139 L 34.468958502316845,-0.759383508079132 L 34.468945102316844,-0.759400608079089 L 34.46892750231684,-0.759412908079076 L 34.46890610231682,-0.759428608079049 L 34.46888450231682,-0.759448908079022 L 34.4688653023168,-0.759460908079001 L 34.46884120231681,-0.759471208078986 L 34.468829202316805,-0.759489908078931 L 34.46882580231677,-0.759514108078887 L 34.46882450231677,-0.759535208078833 L 34.468804002316766,-0.759548108078806 L 34.468775002316754,-0.759556508078812 L 34.468757202316766,-0.759547008078842 L 34.46873910231675,-0.759569108078803 L 34.46874040231675,-0.75959490807875 L 34.46874000231672,-0.759621408078693 L 34.46870710231672,-0.759632608078666 L 34.46867530231672,-0.759644708078671 L 34.46865580231672,-0.759653008078651 L 34.468637302316715,-0.759660108078652 L 34.46861940231672,-0.75966470807865 L 34.468596402316706,-0.759675308078643 L 34.46858180231671,-0.759686708078628 L 34.4685805023167,-0.759710408078555 L 34.46856630231668,-0.759735208078521 L 34.46854430231666,-0.759753908078482 L 34.46853470231665,-0.759778808078434 L 34.46851410231664,-0.759796408078393 L 34.468496602316634,-0.759815408078355 L 34.46848210231664,-0.759833008078331 L 34.46846910231661,-0.759847708078307 L 34.4684528023166,-0.75985980807829 L 34.4684375023166,-0.759878008078257 L 34.46840680231661,-0.759881708078246 L 34.468380802316595,-0.759884408078258 L 34.468362202316605,-0.759886008078263 L 34.46836870231659,-0.759902908078225 L 34.46835400231659,-0.759913408078212 L 34.46833390231658,-0.759909608078239 L 34.4683158023166,-0.759896208078275 L 34.46831100231662,-0.759878308078327 L 34.468294502316624,-0.759855508078396 L 34.46828940231665,-0.759837708078428 L 34.46828630231666,-0.75981460807848 L 34.468228802316695,-0.759767208078654 L 34.4682467023167,-0.759755408078663 L 34.46826530231671,-0.759734608078702 L 34.46827790231673,-0.759711008078764 L 34.46829890231673,-0.759687808078786 L 34.468324002316734,-0.759680408078804 L 34.46835660231674,-0.759672408078793 L 34.46838070231674,-0.759669108078786 L 34.468402002316736,-0.759669208078779 L 34.46842560231675,-0.75965300807881 L 34.46845040231674,-0.759638408078818 L 34.46847160231676,-0.759615708078856 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.472945102316366,-0.759395708076578 L 34.47296996542151,-0.759395308669248 L 34.472954802316366,-0.759407508076566 L 34.472930002316374,-0.759411308076563 L 34.47290860231637,-0.759399908076604 L 34.472945102316366,-0.759395708076578 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.46535520231725,-0.759409308081323 L 34.46534350231726,-0.759394308081356 L 34.465356198362194,-0.759398588740206 L 34.46535520231725,-0.759409308081323 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.47300786403513,-0.759377746345033 L 34.47299720231637,-0.759381708076582 L 34.47297000231637,-0.759395308076572 L 34.47296996542151,-0.759395308669248 L 34.47297680231638,-0.759389808076578 L 34.473005002316384,-0.759376808076587 L 34.47300786403513,-0.759377746345033 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.472980602316426,-0.759307708076783 L 34.47298010231641,-0.759327308076725 L 34.47297944238473,-0.759329472264411 L 34.472976602316415,-0.759330908076731 L 34.472980602316426,-0.759307708076783 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.46546360231743,-0.759110808081988 L 34.465466102317436,-0.759090608082034 L 34.465468602317415,-0.759108708081987 L 34.4654620433112,-0.759114549696883 L 34.46546360231743,-0.759110808081988 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.47284240231658,-0.759092008077389 L 34.47281590231659,-0.759078808077443 L 34.4727941023166,-0.759081408077456 L 34.47281280231658,-0.759079008077439 L 34.47281390231661,-0.759052508077507 L 34.472821602316614,-0.759069408077465 L 34.472844302316574,-0.759087808077398 L 34.472850017144275,-0.759090716516507 L 34.47284240231658,-0.759092008077389 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.47287960231662,-0.759008308077565 L 34.47286400231664,-0.758993108077617 L 34.47286650231664,-0.759012208077567 L 34.472866125693805,-0.75902096455761 L 34.47286830231662,-0.759032908077516 L 34.47286444330298,-0.759038876086931 L 34.47285980231662,-0.759037808077514 L 34.47284520231662,-0.759017008077564 L 34.472840502316636,-0.758999608077614 L 34.47283482439803,-0.758980590470934 L 34.47284880231664,-0.758992008077627 L 34.47287750231663,-0.758988308077612 L 34.47287960231662,-0.759008308077565 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.4727962023167,-0.75890080807788 L 34.472814602316696,-0.758897608077871 L 34.472807202316694,-0.758914108077847 L 34.472824202316666,-0.758945308077753 L 34.472832202316646,-0.758971808077686 L 34.47283482439803,-0.758980590470934 L 34.47282860231665,-0.758975508077683 L 34.472818202316674,-0.758950708077747 L 34.472806702316696,-0.75891820807782 L 34.4727962023167,-0.75890080807788 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.454900602318816,-0.758860208089236 L 34.45488620231881,-0.758846208089268 L 34.454872802318825,-0.758823608089335 L 34.45486460231884,-0.758803808089385 L 34.45487270231882,-0.758834008089314 L 34.454873802318815,-0.75885690808926 L 34.454854202318806,-0.758869608089237 L 34.454832702318804,-0.758863708089259 L 34.45480730231881,-0.758858108089293 L 34.454784302318814,-0.758847408089334 L 34.45476560231883,-0.758842208089357 L 34.454743302318825,-0.75884290808938 L 34.454731002318844,-0.758828108089411 L 34.454717202318854,-0.758809108089472 L 34.45470940231886,-0.758791108089534 L 34.45470420231888,-0.758767708089573 L 34.45470220231889,-0.758743108089647 L 34.45472620231892,-0.758711808089696 L 34.45474680231894,-0.758698708089725 L 34.45476500231892,-0.758686808089741 L 34.45478710231892,-0.758676508089743 L 34.45480330231894,-0.758666208089764 L 34.454817602318954,-0.758654808089779 L 34.45483290231894,-0.7586391080898 L 34.45484750231897,-0.758619708089847 L 34.45488120231899,-0.75858430808992 L 34.454899002318975,-0.758569208089942 L 34.45491970231899,-0.75855110808997 L 34.45494710231898,-0.758559108089947 L 34.454975002318974,-0.758580608089879 L 34.45498960231895,-0.758595408089832 L 34.45500660231895,-0.758587908089832 L 34.45502130231894,-0.758613508089754 L 34.45502580231892,-0.758634608089702 L 34.45502450231893,-0.758654708089653 L 34.45503170231891,-0.758679908089586 L 34.455049502318886,-0.758692908089534 L 34.455081302318895,-0.758687308089532 L 34.45510810231888,-0.758686108089527 L 34.45512070231888,-0.758708608089463 L 34.45512900231885,-0.758740808089375 L 34.45512950231883,-0.758766308089326 L 34.45512180231883,-0.758792708089265 L 34.455135902318816,-0.758806808089206 L 34.4551526023188,-0.758818908089171 L 34.45517390231877,-0.758837508089113 L 34.455210502318785,-0.758837708089085 L 34.45523760231877,-0.758850708089053 L 34.455246602318766,-0.758869208088987 L 34.455250802318744,-0.758889008088948 L 34.45525940231873,-0.758907308088884 L 34.45524450231872,-0.758921108088876 L 34.45523410231871,-0.758939508088819 L 34.45522070231871,-0.75895620808879 L 34.45519840231871,-0.758966508088782 L 34.455207402318685,-0.758994308088715 L 34.45522180231868,-0.75900580808868 L 34.45523470231867,-0.759019508088642 L 34.45523410231864,-0.759043208088589 L 34.45523500231864,-0.759073008088517 L 34.455236302318625,-0.759101508088431 L 34.45526060231861,-0.75912580808836 L 34.455277502318594,-0.759135308088328 L 34.45529350231858,-0.759146208088298 L 34.455305002318575,-0.759168508088227 L 34.455318402318554,-0.759186508088179 L 34.45533400231854,-0.759197008088131 L 34.45535960231853,-0.759207008088083 L 34.45534600231852,-0.759222308088073 L 34.45532290231853,-0.759225608088071 L 34.455291802318534,-0.75921450808813 L 34.45527170231854,-0.759204408088165 L 34.45525020231856,-0.759181208088232 L 34.45523170231858,-0.759161708088297 L 34.455223902318586,-0.759141908088332 L 34.4552351023186,-0.759125208088378 L 34.455224402318606,-0.759100208088448 L 34.45521200231864,-0.759085608088491 L 34.455196802318646,-0.759075308088536 L 34.455180402318646,-0.759064308088566 L 34.45517490231867,-0.759046608088608 L 34.45511430231867,-0.759051108088622 L 34.45509140231867,-0.759035208088688 L 34.45507020231867,-0.75902210808873 L 34.455050202318695,-0.759006708088775 L 34.45502570231871,-0.758992908088838 L 34.45500060231871,-0.758976208088881 L 34.454981902318735,-0.75896400808893 L 34.45496120231875,-0.758944608088987 L 34.45495120231877,-0.758925708089039 L 34.45493320231877,-0.758905608089103 L 34.454914002318795,-0.758881808089172 L 34.454900602318816,-0.758860208089236 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.493963802314425,-0.758606308065274 L 34.4939477023144,-0.758626908065245 L 34.4939333023144,-0.758640008065222 L 34.49392890231439,-0.758664008065168 L 34.49391720231437,-0.758683308065121 L 34.49390690231436,-0.758700708065091 L 34.493899702314366,-0.758718008065057 L 34.49388150231436,-0.758713508065068 L 34.493859802314375,-0.758707108065108 L 34.493838502314375,-0.7587158080651 L 34.493827902314344,-0.758734308065048 L 34.49381530231435,-0.758753808065017 L 34.49380030231435,-0.758770208064984 L 34.493789202314325,-0.758788308064957 L 34.49378250231432,-0.758806608064905 L 34.4937812023143,-0.75882780806486 L 34.493769602314295,-0.758850408064808 L 34.493756902314274,-0.758873908064754 L 34.49374570231426,-0.758895208064715 L 34.49373230231426,-0.758921008064665 L 34.493720802314236,-0.758935708064637 L 34.49371280231423,-0.758957408064599 L 34.493704602314224,-0.75898060806454 L 34.49369870231422,-0.758998208064496 L 34.4936902023142,-0.759019408064438 L 34.49368200231419,-0.759039408064411 L 34.49367410231417,-0.759057808064363 L 34.49365760231417,-0.75907720806433 L 34.49364810231414,-0.759100108064273 L 34.493640402314135,-0.759129608064205 L 34.493627002314106,-0.759152608064165 L 34.49361880231411,-0.759174708064114 L 34.4936105023141,-0.759195208064082 L 34.49359680231409,-0.759220808064021 L 34.49358260231407,-0.759244608063985 L 34.49357260231406,-0.759268408063933 L 34.493565102314044,-0.759290508063881 L 34.493558002314025,-0.759312108063826 L 34.493547802314026,-0.759331008063777 L 34.493535002314005,-0.759347708063749 L 34.493514302314004,-0.759345908063783 L 34.493490302314015,-0.759341208063793 L 34.49346270231402,-0.75933740806383 L 34.493438002314015,-0.759337108063849 L 34.49341610231402,-0.759334608063866 L 34.49339360231403,-0.759332908063891 L 34.49337180231404,-0.7593304080639 L 34.49335160231403,-0.759329508063911 L 34.49333250231403,-0.759330008063917 L 34.49330690231405,-0.759325808063951 L 34.49328490231407,-0.759316508063997 L 34.493262302314044,-0.759314608064008 L 34.49323570231408,-0.759316408064015 L 34.49321020231407,-0.759311308064031 L 34.49319020231407,-0.759299208064074 L 34.49319120231409,-0.759277908064136 L 34.4931995023141,-0.759256108064185 L 34.49321120231412,-0.759233508064231 L 34.49322140231413,-0.759217708064267 L 34.49322980231415,-0.759193308064319 L 34.493240902314156,-0.759174108064358 L 34.49324910231417,-0.759149008064415 L 34.49325690231417,-0.759128408064452 L 34.493268202314184,-0.759108908064499 L 34.493280202314196,-0.759080208064554 L 34.4932923023142,-0.759059008064614 L 34.493300702314215,-0.759042608064628 L 34.493310302314235,-0.75902500806467 L 34.49331850231425,-0.759007108064712 L 34.49332650231426,-0.758985608064772 L 34.49333340231428,-0.75896690806481 L 34.49334130231427,-0.758950408064849 L 34.493356502314285,-0.758928408064888 L 34.4933634023143,-0.758907408064926 L 34.49337150231431,-0.758887108064963 L 34.49338500231433,-0.758875108064986 L 34.493394502314345,-0.758848508065051 L 34.49340650231434,-0.758832908065079 L 34.49341130231436,-0.758808108065143 L 34.49341000231436,-0.75878670806519 L 34.49341450231439,-0.758760108065266 L 34.493416502314396,-0.758736308065308 L 34.49342130231442,-0.758716808065359 L 34.49343000231442,-0.758696008065396 L 34.493436902314436,-0.758673408065456 L 34.49344430231445,-0.758647708065519 L 34.493453002314475,-0.758630808065553 L 34.49346370231448,-0.758609108065595 L 34.4934695023145,-0.758584708065649 L 34.49347480231451,-0.758561608065698 L 34.49348450231452,-0.758536408065761 L 34.49349000231453,-0.758516008065812 L 34.49349960231454,-0.758493908065852 L 34.49350270231456,-0.75847130806591 L 34.49351290231456,-0.758455608065942 L 34.493532702314575,-0.758456208065921 L 34.49355670231455,-0.758450608065909 L 34.493576802314564,-0.758448408065918 L 34.49359810231455,-0.758449308065904 L 34.49362920231456,-0.758444008065898 L 34.49364890231454,-0.758442808065879 L 34.49366950231455,-0.758438608065883 L 34.49369450231454,-0.758431708065864 L 34.493718302314555,-0.758433408065869 L 34.493741402314555,-0.758432608065842 L 34.493765702314555,-0.758424408065846 L 34.49379120231455,-0.758413608065866 L 34.49381560231455,-0.758409308065864 L 34.493840702314564,-0.758401708065868 L 34.493863102314556,-0.758394508065859 L 34.49388540231456,-0.758389408065869 L 34.49391090231455,-0.758381108065866 L 34.493929002314566,-0.758368908065886 L 34.49394950231457,-0.758362108065892 L 34.493974702314574,-0.758357908065885 L 34.49400000231457,-0.758351208065891 L 34.49402650231456,-0.758351308065869 L 34.494047002314566,-0.758353008065855 L 34.494066102314555,-0.758361508065814 L 34.49408190231454,-0.758371808065796 L 34.494095602314545,-0.758383908065738 L 34.49407930231454,-0.758401908065714 L 34.49407560231452,-0.758421308065665 L 34.494057702314514,-0.758438808065637 L 34.494041602314496,-0.758454208065619 L 34.49403550231449,-0.758473308065564 L 34.49403350231447,-0.758496708065502 L 34.494021902314465,-0.758516208065463 L 34.49401110231446,-0.758535108065425 L 34.49399880231445,-0.758555108065396 L 34.49398970231443,-0.758573108065344 L 34.49397390231443,-0.758590308065319 L 34.493963802314425,-0.758606308065274 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.464236502317526,-0.759171008082616 L 34.46421590231754,-0.759151708082665 L 34.46419700231754,-0.759151008082683 L 34.46417540231756,-0.759135008082741 L 34.46415940231758,-0.759119608082769 L 34.464141202317585,-0.759113008082805 L 34.46411860231758,-0.759103708082844 L 34.4641034023176,-0.759086408082888 L 34.4640775023176,-0.759074908082939 L 34.464052102317616,-0.759068208082981 L 34.46403760231762,-0.759054408083019 L 34.46401650231764,-0.759033208083081 L 34.463996902317646,-0.75901700808313 L 34.46397630231767,-0.759010108083158 L 34.46395840231768,-0.759001008083189 L 34.46394240231767,-0.758987008083255 L 34.463923802317694,-0.758976208083273 L 34.46390860231769,-0.758963708083323 L 34.463888102317696,-0.758948108083367 L 34.46386840231772,-0.75893240808341 L 34.46384730231773,-0.758918108083459 L 34.46381920231775,-0.758905708083527 L 34.46380070231775,-0.758899108083542 L 34.46376940231776,-0.758888508083582 L 34.46375130231776,-0.758878808083611 L 34.46373480231779,-0.75886290808368 L 34.4637152023178,-0.758851108083714 L 34.46369400231779,-0.758838008083764 L 34.4636856023178,-0.7588216080838 L 34.463675402317826,-0.758801508083863 L 34.463649102317824,-0.758791208083902 L 34.46362930231784,-0.75878640808393 L 34.46360950231784,-0.758777408083959 L 34.46358280231785,-0.758762308084015 L 34.46356230231786,-0.758756708084027 L 34.46353770231787,-0.75874560808407 L 34.46351920231788,-0.758729208084141 L 34.463504702317906,-0.758713008084177 L 34.463487802317914,-0.758703808084214 L 34.46346890231792,-0.758694908084258 L 34.46344430231792,-0.758685208084295 L 34.46342230231794,-0.758666208084347 L 34.46339880231795,-0.758652908084403 L 34.46336800231796,-0.758638008084454 L 34.46335070231796,-0.758629008084479 L 34.46333310231798,-0.758617908084527 L 34.46331730231798,-0.758604408084562 L 34.463299902318,-0.758591308084612 L 34.463281002318,-0.75857970808465 L 34.463260802318004,-0.758572408084679 L 34.463234002318025,-0.758562208084719 L 34.463214202318035,-0.758551608084766 L 34.46319830231805,-0.758541808084793 L 34.46317270231806,-0.758524408084857 L 34.463157402318075,-0.758506008084892 L 34.46313840231809,-0.758487308084966 L 34.46311680231809,-0.758471908085009 L 34.46310000231811,-0.75845680808506 L 34.46307570231811,-0.758444108085118 L 34.463045902318115,-0.758439708085131 L 34.46301930231812,-0.758425708085185 L 34.46300020231814,-0.758409108085241 L 34.46297480231815,-0.758395808085278 L 34.46295010231816,-0.758381408085341 L 34.46292100231817,-0.758377408085367 L 34.462875102318165,-0.758378708085392 L 34.46285900231819,-0.758354608085453 L 34.4628490023182,-0.758339308085497 L 34.462832602318215,-0.75832600808554 L 34.462805202318215,-0.758310208085599 L 34.46277680231823,-0.758302408085648 L 34.462759502318235,-0.758290708085672 L 34.46273470231826,-0.758272308085726 L 34.462708702318274,-0.758258608085779 L 34.46268250231828,-0.758248208085819 L 34.462663102318295,-0.75824360808585 L 34.46264090231829,-0.758227508085893 L 34.462617302318314,-0.758216608085941 L 34.462598402318314,-0.758201508085999 L 34.462578702318325,-0.758191708086044 L 34.46255350231833,-0.758188508086046 L 34.46252300231834,-0.758184908086084 L 34.46249130231835,-0.758173308086143 L 34.46246350231835,-0.75816230808618 L 34.46243690231838,-0.758154708086204 L 34.46240800231839,-0.758140708086254 L 34.46238860231839,-0.758127008086297 L 34.4623642023184,-0.758120908086342 L 34.462338002318404,-0.758119608086352 L 34.46231770231841,-0.758110408086395 L 34.462317202318424,-0.758089508086436 L 34.46231280231843,-0.758069708086499 L 34.46231790231844,-0.758049508086537 L 34.46232630231848,-0.758018508086623 L 34.46233060231848,-0.75798900808669 L 34.46234420231849,-0.757960508086745 L 34.46236480231852,-0.757956008086744 L 34.462385802318494,-0.75796050808672 L 34.46240880231848,-0.757971008086674 L 34.46244150231848,-0.757974008086646 L 34.462474302318476,-0.757974408086627 L 34.462498802318464,-0.757984408086584 L 34.46252210231846,-0.757988108086557 L 34.46255060231846,-0.757995508086523 L 34.462578102318446,-0.758010408086464 L 34.46260840231842,-0.758023908086415 L 34.46263920231842,-0.758031608086384 L 34.46266920231842,-0.758033508086369 L 34.46269430231841,-0.758043708086314 L 34.4627114023184,-0.758059008086267 L 34.462731702318386,-0.758079008086219 L 34.46275490231837,-0.758088308086185 L 34.46277820231836,-0.758097908086142 L 34.46279700231837,-0.758098708086116 L 34.46281610231836,-0.758096608086105 L 34.46284120231835,-0.758103308086075 L 34.46285750231834,-0.758114508086048 L 34.46287970231833,-0.758125908085988 L 34.462891302318326,-0.758141608085968 L 34.46292080231831,-0.758146908085922 L 34.46293990231831,-0.758158308085893 L 34.46295830231829,-0.75817320808585 L 34.462978302318284,-0.75818970808578 L 34.463000502318266,-0.758196808085752 L 34.46302920231825,-0.75820610808572 L 34.46306010231824,-0.758220708085667 L 34.46308210231823,-0.758247208085577 L 34.463106702318214,-0.758264908085529 L 34.46312950231822,-0.758276408085478 L 34.4631525023182,-0.758287108085445 L 34.463179002318185,-0.758294708085405 L 34.46320680231818,-0.758310008085353 L 34.46323340231816,-0.758325908085295 L 34.46325560231814,-0.758339708085255 L 34.46327860231815,-0.758352708085205 L 34.46330050231815,-0.758364208085164 L 34.46332170231813,-0.758372208085127 L 34.46333920231811,-0.758390408085071 L 34.4633547023181,-0.758405208085022 L 34.463373102318094,-0.758419808084985 L 34.46339310231807,-0.758441408084915 L 34.46341270231806,-0.75846230808485 L 34.46343560231804,-0.758479908084793 L 34.46346430231804,-0.758491008084739 L 34.46349450231802,-0.758501608084688 L 34.46352300231803,-0.758513708084667 L 34.463550202318004,-0.758528708084599 L 34.463577102317984,-0.758545208084537 L 34.46360410231797,-0.758561608084493 L 34.46363460231796,-0.758577808084435 L 34.46366030231795,-0.758591208084386 L 34.46368460231794,-0.758603208084334 L 34.46371100231794,-0.758616508084274 L 34.46373870231792,-0.758628108084247 L 34.46376330231791,-0.758641708084198 L 34.4637825023179,-0.758656608084135 L 34.46380370231788,-0.758671608084092 L 34.463828502317874,-0.75868810808404 L 34.46385380231786,-0.758702608083985 L 34.46388370231786,-0.758711308083945 L 34.46391080231784,-0.758726408083903 L 34.46394000231783,-0.758742808083837 L 34.46396790231782,-0.758763108083772 L 34.463992002317795,-0.758785808083694 L 34.464016702317785,-0.758803008083639 L 34.46404440231778,-0.758814508083603 L 34.46407290231776,-0.758830608083541 L 34.46409180231774,-0.758846408083496 L 34.46411030231774,-0.75886060808344 L 34.464125702317716,-0.758872208083394 L 34.464155302317714,-0.758887508083342 L 34.464181602317694,-0.758902708083286 L 34.464196802317694,-0.758920908083236 L 34.46421860231768,-0.758927208083208 L 34.46423820231765,-0.758943408083166 L 34.46426260231765,-0.758956608083103 L 34.464286302317646,-0.758973108083064 L 34.46431710231764,-0.758987808082995 L 34.46433030231762,-0.759001108082961 L 34.46434590231761,-0.759012008082924 L 34.4643849023176,-0.75901900808289 L 34.46441400231759,-0.759027508082834 L 34.464427102317586,-0.759049608082792 L 34.46444130231757,-0.759075008082722 L 34.46442560231756,-0.759077008082722 L 34.464414102317555,-0.759101708082664 L 34.46440480231754,-0.75912340808262 L 34.46439270231753,-0.759147408082568 L 34.464374002317506,-0.759174608082519 L 34.4643460023175,-0.759192108082473 L 34.4643157023175,-0.759204608082477 L 34.4642923023175,-0.759192208082526 L 34.46427300231751,-0.759188208082538 L 34.46425550231752,-0.759178708082584 L 34.464236502317526,-0.759171008082616 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.48313710231694,-0.756575608077035 L 34.483143302316954,-0.756549108077085 L 34.48315170231698,-0.756520708077159 L 34.48315510231698,-0.756496508077217 L 34.483156702317,-0.756468308077276 L 34.483169902317016,-0.75644040807734 L 34.483180102317036,-0.756413008077401 L 34.48317950231704,-0.756391508077461 L 34.483203102317034,-0.756390608077434 L 34.48322550231703,-0.756404808077388 L 34.48323990231703,-0.756416408077365 L 34.48325370231703,-0.756397908077402 L 34.48326580231705,-0.756376908077437 L 34.48328410231705,-0.756350908077501 L 34.48330160231707,-0.756329108077525 L 34.483320002317086,-0.756303108077589 L 34.483335102317085,-0.756283808077623 L 34.4833548023171,-0.756272508077625 L 34.48337620231709,-0.756296408077558 L 34.483386002317076,-0.75631160807752 L 34.48340430231705,-0.756340308077438 L 34.48342260231702,-0.756366908077368 L 34.483441302317026,-0.756387308077303 L 34.483468402317,-0.756409108077242 L 34.483485302317,-0.756415808077203 L 34.48350570231699,-0.756425508077168 L 34.48352120231698,-0.756440708077116 L 34.48353130231697,-0.756458708077082 L 34.483542102316946,-0.756480808077018 L 34.48355380231693,-0.75650160807695 L 34.48357100231691,-0.756525508076886 L 34.483592702316905,-0.756548708076804 L 34.483607102316896,-0.756561308076777 L 34.483619802316866,-0.756575508076726 L 34.48363050231686,-0.756593908076676 L 34.48364070231686,-0.756614908076625 L 34.483653402316854,-0.756631808076567 L 34.483663002316824,-0.756647708076521 L 34.48368720231681,-0.756667408076455 L 34.4837027023168,-0.756690508076409 L 34.48371530231678,-0.756716708076316 L 34.483735402316775,-0.75672890807628 L 34.48374960231676,-0.756742708076252 L 34.483759202316755,-0.756764208076185 L 34.483775702316734,-0.756781608076131 L 34.48379110231672,-0.756795608076092 L 34.48381480231671,-0.756802608076058 L 34.48383040231671,-0.756821408075997 L 34.48384530231669,-0.756847508075936 L 34.483850402316676,-0.756866208075875 L 34.483862802316665,-0.756887008075823 L 34.48387320231665,-0.756902008075783 L 34.48389390231665,-0.756892808075783 L 34.48392670231665,-0.756882508075784 L 34.483954602316665,-0.756868308075816 L 34.48397240231666,-0.756848608075849 L 34.48399200231668,-0.756837908075849 L 34.48401120231665,-0.75686010807581 L 34.48402580231664,-0.75689040807571 L 34.48403460231662,-0.756919208075627 L 34.48403400231661,-0.756939708075588 L 34.48403420231659,-0.756962808075529 L 34.48404500231657,-0.756986408075461 L 34.48405530231656,-0.757011008075395 L 34.48406680231655,-0.75703600807534 L 34.48408360231653,-0.757057608075268 L 34.484091902316514,-0.757088808075199 L 34.484107202316494,-0.757111308075115 L 34.48412800231648,-0.757129008075066 L 34.48414700231646,-0.757157308074985 L 34.48415650231644,-0.757182708074924 L 34.484155002316434,-0.757203908074872 L 34.48415810231642,-0.757223608074819 L 34.484157702316395,-0.757248608074745 L 34.48416240231639,-0.757272608074697 L 34.484167302316386,-0.757298908074628 L 34.48417780231636,-0.757328508074547 L 34.484189402316325,-0.757354808074475 L 34.48419550231632,-0.757380808074403 L 34.4842005023163,-0.757404008074357 L 34.48420620231629,-0.757429808074274 L 34.484217902316274,-0.757457508074218 L 34.48422740231625,-0.757484108074146 L 34.48423770231624,-0.757508608074074 L 34.48424370231622,-0.757525908074028 L 34.48425590231621,-0.75754630807398 L 34.4842614023162,-0.757564408073926 L 34.4842410023162,-0.757566708073922 L 34.484217802316216,-0.757555308073977 L 34.484195302316216,-0.757560208073959 L 34.484174302316205,-0.757576708073938 L 34.48414740231618,-0.757597108073925 L 34.48412640231619,-0.757619008073884 L 34.48410560231616,-0.757640508073836 L 34.48408710231615,-0.75766260807381 L 34.48407330231613,-0.757684108073761 L 34.484055702316134,-0.757705208073713 L 34.48403320231614,-0.757721308073686 L 34.48401530231611,-0.757738108073653 L 34.483997002316116,-0.757752008073625 L 34.483977102316096,-0.757771108073602 L 34.48395440231609,-0.757797108073556 L 34.48393290231606,-0.757820808073507 L 34.48391220231606,-0.757844108073456 L 34.48389240231606,-0.757856408073444 L 34.48387820231605,-0.757873708073414 L 34.48385740231603,-0.757890008073389 L 34.48385830231603,-0.757909808073322 L 34.48387070231602,-0.757925408073302 L 34.48388810231601,-0.757942608073226 L 34.48390830231599,-0.757963408073167 L 34.48392070231597,-0.757984208073119 L 34.483934702315956,-0.758006508073047 L 34.48395040231594,-0.758023108073014 L 34.483963202315934,-0.758035908072965 L 34.483976802315915,-0.758060908072894 L 34.48398600231591,-0.758083408072827 L 34.48400280231589,-0.758105208072775 L 34.48402000231588,-0.758130408072691 L 34.48404060231586,-0.758148508072654 L 34.48405430231584,-0.758166308072604 L 34.484060602315836,-0.758183708072538 L 34.48406830231581,-0.75820560807249 L 34.484085302315805,-0.758215008072454 L 34.48410620231581,-0.758218108072434 L 34.48411730231581,-0.758235308072389 L 34.484128402315775,-0.758251008072327 L 34.48414390231577,-0.758266608072294 L 34.484164002315765,-0.758281508072242 L 34.48417810231575,-0.758300208072191 L 34.48419610231573,-0.758321308072119 L 34.484210502315726,-0.758338908072079 L 34.484221602315706,-0.758354408072026 L 34.4842173023157,-0.758382208071963 L 34.484202802315686,-0.758404708071919 L 34.48419450231567,-0.758426308071881 L 34.48418030231566,-0.758441308071846 L 34.48416800231565,-0.758467008071787 L 34.48415670231563,-0.758484508071748 L 34.48413710231563,-0.758489708071742 L 34.48412050231563,-0.758505208071726 L 34.484109902315616,-0.758521908071699 L 34.48409980231561,-0.758545808071638 L 34.48408640231559,-0.7585681080716 L 34.484071202315576,-0.758584908071562 L 34.48405750231558,-0.758600308071526 L 34.484039302315566,-0.758616308071501 L 34.48402640231556,-0.758630008071482 L 34.484014102315555,-0.758646208071461 L 34.483994702315556,-0.758641908071463 L 34.48398030231557,-0.758626008071518 L 34.483964002315574,-0.758613008071568 L 34.483938902315586,-0.758591108071626 L 34.48391760231562,-0.758571808071686 L 34.483904602315626,-0.758551108071751 L 34.48388860231564,-0.758535908071791 L 34.48387620231564,-0.758517008071844 L 34.48386060231566,-0.758495708071911 L 34.48384330231567,-0.75847410807198 L 34.48383100231569,-0.758453008072029 L 34.4838221023157,-0.758435508072087 L 34.48381180231572,-0.758417708072126 L 34.48380020231573,-0.758396308072178 L 34.48378970231575,-0.758377508072249 L 34.48377990231576,-0.758351408072324 L 34.48376840231578,-0.758336408072356 L 34.48375030231579,-0.758316108072407 L 34.4837400023158,-0.758296508072466 L 34.48372870231581,-0.758282408072514 L 34.483711002315815,-0.758265108072567 L 34.48368570231584,-0.758248908072629 L 34.483672202315866,-0.758219108072692 L 34.483667302315865,-0.758196708072759 L 34.48365120231588,-0.758173708072831 L 34.48363760231591,-0.758144208072915 L 34.48362330231593,-0.758119308072967 L 34.483613802315936,-0.758095308073032 L 34.48360370231597,-0.758071708073097 L 34.48359460231597,-0.758051408073152 L 34.483584002315986,-0.758033108073198 L 34.483571002316,-0.758011808073269 L 34.48356040231601,-0.757993308073324 L 34.48354610231602,-0.757973008073372 L 34.483532302316036,-0.757954008073432 L 34.48351610231607,-0.757932308073488 L 34.48350510231606,-0.757911008073562 L 34.483489002316084,-0.757878608073641 L 34.4834703023161,-0.757856208073697 L 34.48345800231612,-0.75783430807378 L 34.48345120231613,-0.757806708073857 L 34.483437302316155,-0.757783808073922 L 34.48341810231617,-0.757764008073961 L 34.48340670231618,-0.757745908074016 L 34.4833965023162,-0.75772480807407 L 34.48338750231621,-0.757706808074126 L 34.48337350231622,-0.757689008074175 L 34.48336230231624,-0.757664008074253 L 34.483348302316266,-0.757637908074323 L 34.48333240231627,-0.757615708074377 L 34.483320002316276,-0.757596208074445 L 34.483312602316296,-0.757575808074497 L 34.48330230231632,-0.757558208074532 L 34.48329030231632,-0.757538708074592 L 34.483280402316346,-0.757520108074651 L 34.48326320231635,-0.757500408074707 L 34.483251202316374,-0.757477708074767 L 34.48323700231639,-0.75745830807483 L 34.4832264023164,-0.757440208074876 L 34.4832154023164,-0.757424508074932 L 34.48320060231643,-0.757407208074963 L 34.48319390231644,-0.757385208075041 L 34.48318750231644,-0.757360508075094 L 34.48317650231647,-0.757337308075161 L 34.483166202316475,-0.757317108075214 L 34.48315010231649,-0.757290808075295 L 34.483131002316505,-0.757266508075343 L 34.48311900231653,-0.757240608075445 L 34.48311490231653,-0.757216508075484 L 34.48310800231657,-0.757195108075555 L 34.48310010231658,-0.757167308075619 L 34.4830940023166,-0.75714070807569 L 34.483085202316616,-0.757118308075732 L 34.48307070231662,-0.757090908075831 L 34.48306010231664,-0.757074508075873 L 34.48305780231666,-0.757045308075938 L 34.483050602316666,-0.757025908075987 L 34.4830466023167,-0.757001508076063 L 34.48303990231671,-0.756982108076094 L 34.48303190231671,-0.756961108076163 L 34.48302730231673,-0.756936208076228 L 34.48302800231674,-0.756907308076298 L 34.48301740231676,-0.756890908076349 L 34.48300580231676,-0.756875308076397 L 34.48299940231678,-0.756856308076441 L 34.4830167023168,-0.756816708076522 L 34.4830350023168,-0.756827008076494 L 34.4830625023168,-0.756818808076494 L 34.483080702316805,-0.756802308076517 L 34.48308520231682,-0.75678190807657 L 34.48308840231683,-0.756754108076622 L 34.48309260231685,-0.756724908076709 L 34.48309940231685,-0.756698508076767 L 34.483106902316884,-0.756676808076805 L 34.48310560231689,-0.756650708076879 L 34.48310370231691,-0.756625408076925 L 34.483118702316915,-0.756601208076989 L 34.48313710231694,-0.756575608077035 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.463621202318656,-0.757462908087149 L 34.46364270231865,-0.75746650808712 L 34.46366320231865,-0.757472008087089 L 34.46369010231863,-0.75748600808705 L 34.46371510231862,-0.757494608087021 L 34.463744102318614,-0.757505208086982 L 34.46377170231862,-0.757517208086924 L 34.4637948023186,-0.757532708086856 L 34.46380180231857,-0.757555708086811 L 34.46380420231856,-0.757579808086749 L 34.463795002318534,-0.757603308086694 L 34.463781002318534,-0.757628008086659 L 34.46376410231853,-0.757655608086599 L 34.46374660231851,-0.757679708086558 L 34.463732802318496,-0.757694508086519 L 34.46371020231851,-0.757686708086547 L 34.463697502318496,-0.757706508086508 L 34.4636787023185,-0.757719108086498 L 34.463657702318486,-0.757729608086474 L 34.463637502318484,-0.757740208086457 L 34.46361160231848,-0.757742708086477 L 34.46359530231849,-0.757759908086445 L 34.46358420231847,-0.7577772080864 L 34.46357160231846,-0.757791908086385 L 34.46355700231845,-0.757810908086353 L 34.46353970231844,-0.757816108086341 L 34.46351320231845,-0.757803508086392 L 34.463491302318474,-0.757791108086446 L 34.46347640231848,-0.757777408086463 L 34.4634544023185,-0.757763108086518 L 34.4634374023185,-0.757753708086559 L 34.463429302318524,-0.75773390808661 L 34.46341510231852,-0.757712308086676 L 34.46340310231853,-0.757698808086706 L 34.46339040231855,-0.75768510808675 L 34.46336920231857,-0.757671408086795 L 34.46335260231858,-0.757654008086844 L 34.46334030231858,-0.757635208086907 L 34.4633203023186,-0.757610008086981 L 34.463307402318605,-0.757596708087016 L 34.46328490231862,-0.757574108087097 L 34.46326240231864,-0.757550908087173 L 34.46324150231865,-0.757531608087216 L 34.46321720231867,-0.757513208087281 L 34.46319940231868,-0.757492008087329 L 34.46318910231871,-0.757467608087425 L 34.46317080231873,-0.757445908087464 L 34.463149702318724,-0.757432908087527 L 34.463127202318745,-0.757417908087575 L 34.46310390231876,-0.757403808087612 L 34.46308950231878,-0.757379408087686 L 34.463073202318775,-0.757365108087732 L 34.463052702318784,-0.757357508087772 L 34.4630304023188,-0.757344008087806 L 34.46300850231881,-0.75732830808787 L 34.46298000231882,-0.757312408087911 L 34.46295520231884,-0.757292808087996 L 34.46292800231885,-0.757274408088052 L 34.462901902318876,-0.757254108088099 L 34.462882602318885,-0.757235408088166 L 34.4628624023189,-0.757218008088224 L 34.46284080231892,-0.757197708088274 L 34.46281470231893,-0.757187008088328 L 34.46278670231892,-0.757181908088354 L 34.462766502318956,-0.75716840808839 L 34.46276270231895,-0.757140608088477 L 34.462771802318976,-0.757113808088523 L 34.462787402319,-0.757094408088566 L 34.46279900231899,-0.757077108088607 L 34.46280255324266,-0.75706922947669 L 34.46281130231899,-0.757074008088599 L 34.462786402319,-0.757060408088656 L 34.462768402319014,-0.757046108088689 L 34.46274570231902,-0.757031708088745 L 34.46272720231903,-0.757031008088747 L 34.46270030231905,-0.757027508088793 L 34.462677102319034,-0.757024008088803 L 34.46264960231904,-0.757019608088823 L 34.46266260231905,-0.757020908088831 L 34.46266990231904,-0.756999908088882 L 34.46267620231907,-0.756980208088909 L 34.462686102319076,-0.756962208088955 L 34.4627035023191,-0.756951908088972 L 34.46272560231908,-0.756948508088965 L 34.46274860231908,-0.756939508088962 L 34.46277680231908,-0.756937408088955 L 34.46280290231908,-0.756934708088952 L 34.46282990231908,-0.75693420808893 L 34.46285650231907,-0.756934608088904 L 34.46288290231908,-0.756929808088915 L 34.46291780231906,-0.756930708088891 L 34.46295040231906,-0.75693280808886 L 34.46297700231906,-0.756932208088839 L 34.46300150231905,-0.756930308088834 L 34.46302740231906,-0.756925908088832 L 34.463056502319056,-0.756919808088833 L 34.46308490231905,-0.756909008088837 L 34.46310980231905,-0.756900208088828 L 34.463135502319055,-0.756899508088819 L 34.46316160231905,-0.756898908088811 L 34.46318780231906,-0.756896408088803 L 34.46321050231906,-0.756890408088797 L 34.46323100231906,-0.756887508088789 L 34.46325450231906,-0.756882008088794 L 34.463278302319054,-0.756883408088781 L 34.46330610231905,-0.756885708088758 L 34.46333840231903,-0.756890208088726 L 34.46337200231905,-0.756880008088713 L 34.463391202319045,-0.756872908088739 L 34.463410202319054,-0.75686830808873 L 34.46343540231906,-0.756866508088707 L 34.46345900231905,-0.756863708088702 L 34.46347940231903,-0.756863708088701 L 34.46350690231904,-0.756860808088677 L 34.46353270231905,-0.756851008088698 L 34.46356040231904,-0.756842308088687 L 34.46358190231905,-0.756834708088699 L 34.46360410231905,-0.756829508088704 L 34.46363070231906,-0.756825108088685 L 34.463656802319065,-0.756812808088711 L 34.46367870231906,-0.756809808088702 L 34.46369280231903,-0.756822008088674 L 34.46369710231903,-0.756850308088577 L 34.46369510231901,-0.756880608088519 L 34.46369400231898,-0.75690830808845 L 34.46368640231898,-0.7569331080884 L 34.463681702318965,-0.756959808088336 L 34.46367340231896,-0.756979608088282 L 34.463666002318945,-0.757000708088247 L 34.46365850231892,-0.75702490808819 L 34.463649402318914,-0.75704480808815 L 34.4636388023189,-0.757067708088096 L 34.463624402318885,-0.75709190808805 L 34.46361480231889,-0.757111708088008 L 34.463600902318866,-0.757135708087963 L 34.46359540231885,-0.757161608087912 L 34.46359470231884,-0.757182708087856 L 34.46359640231881,-0.757203008087792 L 34.46358680231881,-0.757226108087744 L 34.46357980231879,-0.757257008087676 L 34.46357740231877,-0.757278108087617 L 34.46356870231875,-0.757307208087559 L 34.46356230231874,-0.757332608087507 L 34.46355770231874,-0.757358908087447 L 34.463559702318705,-0.757378008087401 L 34.4635562023187,-0.757395908087354 L 34.463548602318696,-0.757417208087306 L 34.46352960231868,-0.757429008087289 L 34.46354027688064,-0.75742237862251 L 34.463545802318684,-0.757425908087279 L 34.46356720231868,-0.757440608087239 L 34.46360160231866,-0.757453408087183 L 34.463621202318656,-0.757462908087149 z M 34.46340710231875,-0.757352108087562 L 34.46343070231873,-0.757367008087501 L 34.46345540231873,-0.757385208087447 L 34.46347442721751,-0.757391800874141 L 34.46349130231871,-0.757407008087368 L 34.46347410231872,-0.75739150808743 L 34.46345450231872,-0.757377108087462 L 34.46343210231874,-0.757359408087529 L 34.46340670231875,-0.757346308087562 L 34.463387302318765,-0.757335908087603 L 34.46336450231877,-0.757324608087644 L 34.463347702318785,-0.757313008087682 L 34.463330802318794,-0.75730480808772 L 34.46330560231879,-0.757302008087738 L 34.463322105289066,-0.757303841751111 L 34.46332490231878,-0.757305408087724 L 34.46335210231878,-0.757318508087674 L 34.46338290231877,-0.757334708087615 L 34.46340710231875,-0.757352108087562 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.49378370231556,-0.756822608069738 L 34.49379310231552,-0.756847708069669 L 34.49380470231551,-0.756874708069582 L 34.49381560231549,-0.756894608069535 L 34.49382780231547,-0.75692080806947 L 34.49383560231546,-0.756943308069404 L 34.49384080231545,-0.756963808069362 L 34.49385390231544,-0.756979708069317 L 34.49386970231542,-0.756990008069267 L 34.49389170231542,-0.756995708069254 L 34.49391130231542,-0.757007908069213 L 34.4939259023154,-0.757028108069153 L 34.49393080231539,-0.757049208069093 L 34.49393670231538,-0.757066308069053 L 34.49392510231536,-0.757085708069004 L 34.493911202315346,-0.757104108068965 L 34.49391020231534,-0.757129008068908 L 34.493925002315315,-0.757158608068829 L 34.4939337023153,-0.757180908068773 L 34.49393670231529,-0.757199508068714 L 34.49394330231527,-0.75721740806868 L 34.49395160231528,-0.757238908068622 L 34.49396240231526,-0.757259908068572 L 34.49397470231524,-0.757277008068515 L 34.49398110231523,-0.757299008068459 L 34.49398020231522,-0.757318608068407 L 34.493999202315194,-0.757335908068346 L 34.49400650231519,-0.757356008068311 L 34.49401800231517,-0.757374608068259 L 34.49402530231516,-0.757393508068196 L 34.49404020231515,-0.757403908068156 L 34.49404940231514,-0.75742690806809 L 34.494047802315116,-0.757452008068035 L 34.494038902315104,-0.757467708068002 L 34.494020702315105,-0.757487808067962 L 34.4940143023151,-0.75750700806794 L 34.49400890231508,-0.757525908067881 L 34.49398940231507,-0.757539408067864 L 34.49396850231508,-0.75755260806784 L 34.493951102315066,-0.757561108067829 L 34.49392870231506,-0.757568308067837 L 34.49391010231508,-0.757570308067832 L 34.49388940231508,-0.75756720806785 L 34.49386610231507,-0.75756980806788 L 34.49384700231507,-0.757563108067899 L 34.49382620231509,-0.757562008067913 L 34.493816702315094,-0.757544508067971 L 34.4938046023151,-0.757518908068036 L 34.49379410231512,-0.757498308068089 L 34.49378290231514,-0.757481008068134 L 34.493766502315154,-0.757457108068202 L 34.49376280231517,-0.757437208068253 L 34.49375470231517,-0.757416008068319 L 34.49374760231519,-0.757398608068363 L 34.493735702315206,-0.757380008068412 L 34.49372830231521,-0.757360208068461 L 34.49372080231522,-0.757338508068526 L 34.49371240231523,-0.757320408068568 L 34.49371020231526,-0.757297708068634 L 34.49370230231528,-0.757278408068689 L 34.49369390231527,-0.757254908068746 L 34.4936868023153,-0.757232608068797 L 34.49367840231531,-0.757216508068834 L 34.49366810231533,-0.757196108068902 L 34.49365840231534,-0.757173708068962 L 34.493654802315355,-0.757150508069027 L 34.49364240231538,-0.757127708069086 L 34.493629502315386,-0.757104608069163 L 34.493623902315406,-0.757086208069206 L 34.49361720231541,-0.757060808069257 L 34.493608402315424,-0.757035708069332 L 34.493604202315446,-0.757009408069402 L 34.49359290231546,-0.756986808069446 L 34.49357540231547,-0.756972508069496 L 34.49356250231549,-0.756959308069554 L 34.49354960231549,-0.756941708069588 L 34.49354110231552,-0.756920808069645 L 34.49353580231552,-0.756902108069695 L 34.49352740231553,-0.756885808069744 L 34.49351560231555,-0.756863508069797 L 34.493513402315564,-0.75684470806984 L 34.49350850231558,-0.756823808069916 L 34.49349940231559,-0.756802908069954 L 34.49349480231561,-0.756783408070017 L 34.493492902315616,-0.756763608070063 L 34.49349590231562,-0.756740408070114 L 34.493497902315646,-0.756720208070175 L 34.493495602315654,-0.756698408070222 L 34.49348490231567,-0.756675808070287 L 34.49347420231569,-0.756658208070332 L 34.493472802315694,-0.756637308070382 L 34.49348930231571,-0.756627208070407 L 34.493508702315694,-0.756622508070391 L 34.4935262023157,-0.756615508070404 L 34.4935442023157,-0.756611808070387 L 34.493559502315705,-0.756599408070416 L 34.49358050231572,-0.75659340807042 L 34.493602202315714,-0.756585208070443 L 34.493621102315714,-0.756578408070421 L 34.49364480231572,-0.756566708070443 L 34.49366290231573,-0.756557708070454 L 34.49368260231573,-0.756548708070451 L 34.49367850231572,-0.75655860807043 L 34.49368890231571,-0.756574308070404 L 34.4936924023157,-0.756596408070346 L 34.49370370231568,-0.756627408070274 L 34.49371710231566,-0.756651608070194 L 34.49372830231564,-0.756675208070131 L 34.49373980231562,-0.75670320807006 L 34.49375080231561,-0.756723108070006 L 34.49375580231559,-0.756747608069944 L 34.49376750231557,-0.756773908069876 L 34.49377550231555,-0.756799408069785 L 34.49378370231556,-0.756822608069738 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.46085470231932,-0.756904708090244 L 34.46082700231933,-0.756901408090274 L 34.46080270231934,-0.756893608090304 L 34.46078330231935,-0.756888708090322 L 34.460761402319356,-0.756891408090346 L 34.460738302319356,-0.756895208090344 L 34.460718802319356,-0.756895308090356 L 34.460696302319356,-0.756893908090373 L 34.46066990231935,-0.75689580809039 L 34.46065040231936,-0.756888808090407 L 34.460631102319375,-0.756875808090443 L 34.46062200231938,-0.756858208090506 L 34.460605002319404,-0.756846208090546 L 34.4606017023194,-0.756827608090594 L 34.4605993023194,-0.75680690809063 L 34.46060430231943,-0.756788008090691 L 34.46061290231944,-0.756768408090732 L 34.46062760231945,-0.756749408090768 L 34.46063010231946,-0.756720308090828 L 34.460624502319476,-0.756702708090887 L 34.46062830231949,-0.756682708090924 L 34.46064040231949,-0.75666770809096 L 34.460661002319505,-0.756652608090985 L 34.460671002319515,-0.756634508091014 L 34.46068200231952,-0.756616508091049 L 34.46069100231953,-0.756598008091096 L 34.46069000231954,-0.756580008091133 L 34.46068540231956,-0.75655610809119 L 34.460682502319564,-0.75653080809125 L 34.46070340231957,-0.756528208091262 L 34.46072820231957,-0.756533708091232 L 34.46075010231956,-0.756540808091198 L 34.46077510231955,-0.756549308091161 L 34.460799502319546,-0.75655520809113 L 34.46082320231954,-0.756558708091103 L 34.46084840231955,-0.756561108091098 L 34.46086870231953,-0.75656450809105 L 34.460897002319534,-0.756569308091036 L 34.460929502319516,-0.756579708090991 L 34.46095640231952,-0.756587408090965 L 34.4609797023195,-0.756592308090932 L 34.4609987023195,-0.75659640809091 L 34.46102460231949,-0.756596708090885 L 34.46104860231948,-0.756604408090853 L 34.46107330231948,-0.756608508090838 L 34.461096902319476,-0.7566160080908 L 34.46111970231945,-0.756624108090759 L 34.46114400231946,-0.756633208090735 L 34.46115190231944,-0.75664990809067 L 34.461145502319425,-0.756668708090646 L 34.46114080231943,-0.756690908090593 L 34.461134802319414,-0.756715708090526 L 34.461131302319394,-0.75673580809047 L 34.461126802319384,-0.756759108090441 L 34.461123402319366,-0.756783108090375 L 34.461117102319356,-0.756807008090317 L 34.461109302319336,-0.756827308090279 L 34.461103002319334,-0.756851008090214 L 34.46110350231932,-0.756872608090172 L 34.46110280231931,-0.756891408090126 L 34.46109570231929,-0.756909408090068 L 34.46109280231928,-0.75693110809002 L 34.46109640231928,-0.756946208089984 L 34.46107510231928,-0.756941208090025 L 34.461050502319296,-0.756937708090035 L 34.461026202319275,-0.756932908090069 L 34.46100540231929,-0.756927808090092 L 34.4609825023193,-0.756920008090137 L 34.460961802319304,-0.756917208090157 L 34.4609435023193,-0.756911208090189 L 34.46092440231932,-0.756907308090199 L 34.46090240231931,-0.756909308090213 L 34.46088050231931,-0.756910108090213 L 34.46085470231932,-0.756904708090244 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.47198630231875,-0.75572850808611 L 34.47199070231874,-0.75575430808604 L 34.47199740231872,-0.755787808085964 L 34.47199500231871,-0.755807408085918 L 34.4719957023187,-0.755826508085865 L 34.472000102318674,-0.755855208085806 L 34.47200380231866,-0.755884308085727 L 34.47200150231864,-0.755911708085651 L 34.471998702318636,-0.755934608085602 L 34.47200270231862,-0.755965508085518 L 34.47200340231859,-0.756002408085444 L 34.472003802318575,-0.756021908085398 L 34.47200230231856,-0.75604700808532 L 34.47200290231855,-0.756067108085269 L 34.47200210231853,-0.756104608085189 L 34.472011102318504,-0.756126908085134 L 34.47200620231849,-0.756149308085064 L 34.471998102318494,-0.756166308085047 L 34.47198540231847,-0.756197908084959 L 34.47198860231845,-0.756220808084921 L 34.471990102318436,-0.756250208084845 L 34.47198180231842,-0.756277408084767 L 34.471985502318404,-0.756300508084716 L 34.47197990231839,-0.756320008084684 L 34.47196120231839,-0.756337808084637 L 34.471940102318364,-0.756363808084598 L 34.471931402318354,-0.756392908084515 L 34.47192280231834,-0.756411608084485 L 34.47191160231832,-0.756438708084432 L 34.471902402318314,-0.756463208084379 L 34.471887602318304,-0.75647750808435 L 34.4718658023183,-0.756486808084347 L 34.4718474023183,-0.756501308084321 L 34.4718286023183,-0.756514308084301 L 34.471802902318274,-0.756536608084265 L 34.47177350231828,-0.756547508084252 L 34.471753802318275,-0.756563608084219 L 34.47174000231825,-0.75658310808417 L 34.47172140231826,-0.756594608084165 L 34.471701102318235,-0.756610708084156 L 34.471692502318234,-0.756628708084104 L 34.47167560231822,-0.756638108084096 L 34.471657402318236,-0.756644808084091 L 34.471641502318214,-0.756660108084066 L 34.471620202318206,-0.756678708084027 L 34.471598802318205,-0.756695808084006 L 34.4715744023182,-0.756711408083978 L 34.471554902318196,-0.756725108083956 L 34.47153660231819,-0.756744808083913 L 34.47152250231817,-0.756762608083893 L 34.47151080231816,-0.756776808083858 L 34.47149970231816,-0.756791208083823 L 34.47148210231814,-0.756820408083773 L 34.47147320231814,-0.756836208083739 L 34.47145250231814,-0.756851308083716 L 34.471432002318124,-0.756869508083679 L 34.4714162023181,-0.756892608083636 L 34.47140660231809,-0.756913308083595 L 34.47141440231808,-0.75693160808354 L 34.47142330231805,-0.75695700808348 L 34.47143870231805,-0.756978508083421 L 34.47145130231804,-0.756995208083358 L 34.471447102318024,-0.757029008083292 L 34.471451902318016,-0.757046708083242 L 34.471451702318,-0.757067408083183 L 34.471430702317996,-0.757066308083199 L 34.47141210231801,-0.757069608083204 L 34.471389802317994,-0.757079808083192 L 34.47137070231799,-0.757090708083173 L 34.471356602317975,-0.757108008083146 L 34.471329302317976,-0.757118608083131 L 34.471296002317985,-0.757120708083158 L 34.47127640231799,-0.757116508083172 L 34.471262702318,-0.757098408083241 L 34.47125040231801,-0.757073208083301 L 34.47124250231802,-0.757053808083356 L 34.47124150231804,-0.757034808083395 L 34.47122630231804,-0.757023108083433 L 34.471212102318056,-0.757007108083484 L 34.47118700231807,-0.756999008083519 L 34.471165702318075,-0.756997508083528 L 34.471147602318084,-0.756993808083556 L 34.47112630231809,-0.756981408083601 L 34.4711038023181,-0.756970908083639 L 34.471108702318105,-0.756951608083685 L 34.47108620231812,-0.756937908083732 L 34.47106080231812,-0.75692250808379 L 34.47103970231814,-0.756907408083834 L 34.471016902318155,-0.756895008083875 L 34.47099590231816,-0.756882308083918 L 34.47097670231817,-0.756873908083963 L 34.470955302318174,-0.756865308083997 L 34.4709416023182,-0.756848408084044 L 34.470934102318196,-0.756832008084074 L 34.470911702318205,-0.75682270808412 L 34.47089320231821,-0.756814008084145 L 34.470881402318234,-0.756799108084191 L 34.47086320231824,-0.756785908084252 L 34.47084000231825,-0.75677570808428 L 34.47081600231825,-0.75676750808433 L 34.47079970231826,-0.756755408084355 L 34.47078350231828,-0.756741408084404 L 34.47076630231828,-0.756727408084451 L 34.470749902318296,-0.756716408084492 L 34.4707379023183,-0.756696708084539 L 34.47071670231831,-0.756685908084577 L 34.47069710231832,-0.756678508084625 L 34.47067940231834,-0.756662008084659 L 34.47067670231834,-0.756642908084713 L 34.470673202318345,-0.756623708084765 L 34.47065830231837,-0.7566071080848 L 34.47064230231838,-0.756596708084852 L 34.47062170231839,-0.756582008084883 L 34.47060920231841,-0.756565008084951 L 34.47059840231843,-0.756542908084994 L 34.47058850231842,-0.75652480808505 L 34.47057170231844,-0.756511808085098 L 34.470550502318446,-0.75649770808514 L 34.47052370231847,-0.756482908085183 L 34.470500602318474,-0.756473408085234 L 34.47048160231848,-0.756464108085257 L 34.470466302318485,-0.756450308085318 L 34.470452702318504,-0.756432308085363 L 34.470437702318506,-0.756415108085402 L 34.47041780231852,-0.756397408085484 L 34.47040600231854,-0.756377108085521 L 34.47038600231855,-0.756367808085565 L 34.47036820231857,-0.756360808085597 L 34.47035090231857,-0.756347908085618 L 34.47033380231858,-0.756337508085666 L 34.47031500231858,-0.756327508085704 L 34.47030720231861,-0.756307508085757 L 34.47028840231861,-0.756292308085803 L 34.47027470231861,-0.75627710808584 L 34.47026900231863,-0.756253608085918 L 34.47025120231864,-0.756234708085974 L 34.47023050231866,-0.756221808086026 L 34.470213902318655,-0.756210708086044 L 34.470195602318675,-0.756197908086097 L 34.47019900231869,-0.756180008086128 L 34.47021050231871,-0.756164908086174 L 34.47022960231871,-0.75615660808618 L 34.4702510023187,-0.756139508086211 L 34.47027410231872,-0.756123008086222 L 34.470299102318705,-0.756122008086213 L 34.470319702318704,-0.756131108086174 L 34.47034450231871,-0.756127508086164 L 34.4703696023187,-0.756128308086153 L 34.47039240231869,-0.756138108086123 L 34.47041550231868,-0.756154008086061 L 34.47043660231867,-0.756176608086 L 34.47045780231865,-0.756192408085942 L 34.47047220231866,-0.75618130808597 L 34.47048450231867,-0.756158508086008 L 34.470498902318674,-0.756140108086046 L 34.47051760231868,-0.756136808086047 L 34.470537602318664,-0.756144408086009 L 34.47055310231867,-0.756134008086037 L 34.47056580231869,-0.756113908086074 L 34.47057450231869,-0.756096808086103 L 34.470590402318706,-0.756085408086107 L 34.47060780231871,-0.756072608086143 L 34.47062450231872,-0.756064908086151 L 34.47063420231871,-0.756045808086185 L 34.47064650231872,-0.756028508086233 L 34.470672902318725,-0.75601550808623 L 34.47069610231873,-0.75599960808626 L 34.47071210231875,-0.755990908086267 L 34.47072920231875,-0.75598140808629 L 34.47074640231877,-0.755955508086333 L 34.47076610231877,-0.755938708086358 L 34.470791502318775,-0.755928008086369 L 34.47081130231878,-0.755912108086408 L 34.4708267023188,-0.755888808086445 L 34.4708471023188,-0.755873408086462 L 34.47086090231882,-0.755855508086509 L 34.470874202318825,-0.755838608086529 L 34.470892702318835,-0.755810008086592 L 34.470897402318855,-0.755779808086666 L 34.47091310231886,-0.75576070808672 L 34.47092790231887,-0.755735608086754 L 34.47094130231889,-0.755710108086807 L 34.470965002318884,-0.755701608086806 L 34.4709956023189,-0.755693308086818 L 34.4710209023189,-0.755688108086815 L 34.471041902318895,-0.755689708086811 L 34.471065302318884,-0.755692308086775 L 34.47109550231889,-0.755688608086757 L 34.4711151023189,-0.755672408086788 L 34.471124802318904,-0.755647708086856 L 34.471134502318925,-0.755623908086895 L 34.47113870231894,-0.755600208086947 L 34.471158602318944,-0.755581108087001 L 34.47117430231895,-0.755566508087009 L 34.47119650231895,-0.755557408087032 L 34.47121650231896,-0.755545208087034 L 34.47123600231896,-0.755533608087065 L 34.471256702318975,-0.755527408087061 L 34.47127560231896,-0.755526608087043 L 34.471294102318964,-0.755519308087056 L 34.47131280231897,-0.755506208087083 L 34.47133860231898,-0.755506708087048 L 34.47136160231896,-0.755512108087017 L 34.47139170231896,-0.755520408086983 L 34.47140980231895,-0.755522908086986 L 34.47143320231894,-0.755527808086937 L 34.471449502318954,-0.75551890808695 L 34.471476002318965,-0.755521208086933 L 34.47150420231894,-0.755519208086933 L 34.47152940231895,-0.75551400808692 L 34.47155250231894,-0.755514908086894 L 34.47158390231893,-0.755510108086892 L 34.47160870231893,-0.755511108086875 L 34.47163000231895,-0.755501508086894 L 34.47166570231894,-0.755497108086886 L 34.471693002318936,-0.755493208086863 L 34.47171880231895,-0.755484108086859 L 34.471751202318934,-0.755484708086852 L 34.47178130231895,-0.755479808086835 L 34.471807602318925,-0.755480808086819 L 34.47183960231894,-0.755480108086805 L 34.47187570231894,-0.755476908086782 L 34.471900802318935,-0.755462108086812 L 34.47192750231893,-0.755460308086795 L 34.471946002318944,-0.755446308086824 L 34.47192780231892,-0.755470408086772 L 34.471932802318904,-0.755493508086714 L 34.47193490231889,-0.755518008086656 L 34.47193940231888,-0.755542108086584 L 34.47195210231887,-0.755564908086521 L 34.471964802318844,-0.755592408086454 L 34.47196690231884,-0.755618708086387 L 34.471970102318814,-0.755639408086336 L 34.4719715023188,-0.75566930808626 L 34.471976602318776,-0.755704308086173 L 34.47198630231875,-0.75572850808611 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.45899960231992,-0.756300408092873 L 34.45899130231992,-0.756283008092924 L 34.458979502319934,-0.756261308092994 L 34.458984802319975,-0.756236608093055 L 34.45898370231997,-0.756216408093094 L 34.45897980231998,-0.756197508093133 L 34.45896600231998,-0.75618580809318 L 34.45894430232,-0.756166008093232 L 34.45893450232001,-0.756146608093303 L 34.45893110232003,-0.756119608093372 L 34.45892560232005,-0.756097408093409 L 34.45892180232006,-0.756079408093456 L 34.458911402320076,-0.756053208093531 L 34.4589127023201,-0.756028708093604 L 34.4589195023201,-0.756008408093655 L 34.45890840232011,-0.7559875080937 L 34.45889470232015,-0.755953008093798 L 34.458900402320154,-0.755930808093843 L 34.45889590232017,-0.755910308093901 L 34.458899502320186,-0.755890908093942 L 34.45891960232017,-0.755877808093952 L 34.45893750232019,-0.755866808093981 L 34.4589542023202,-0.755854208093999 L 34.45897800232021,-0.755840208094021 L 34.458998402320205,-0.755827308094031 L 34.45902290232021,-0.755816308094041 L 34.45904360232022,-0.755808008094065 L 34.459035402320225,-0.755785508094119 L 34.459063402320226,-0.755782308094102 L 34.45909570232022,-0.755781008094096 L 34.45912450232022,-0.75578640809406 L 34.45915320232022,-0.755793808094017 L 34.459166902320206,-0.755805708093978 L 34.45917600232019,-0.755823808093934 L 34.45919970232019,-0.7558306080939 L 34.459221502320176,-0.755844008093856 L 34.45923990232017,-0.755840208093855 L 34.45926180232018,-0.755839208093835 L 34.459281702320155,-0.755841108093828 L 34.459311502320155,-0.755846808093783 L 34.45934100232016,-0.755841908093793 L 34.45933700232017,-0.755819708093834 L 34.45935750232016,-0.755831508093805 L 34.459389702320166,-0.7558275080938 L 34.459412402320154,-0.755836108093765 L 34.459426302320125,-0.755867408093664 L 34.45943260232011,-0.755902108093577 L 34.4594357023201,-0.755920908093542 L 34.45943100232009,-0.755951508093466 L 34.45942340232007,-0.755972308093424 L 34.45942230232005,-0.756003008093337 L 34.45941940232003,-0.756022008093298 L 34.45941110232001,-0.756053608093215 L 34.45941560232,-0.756079008093164 L 34.45941990232,-0.756096608093116 L 34.459417502319965,-0.756132708093023 L 34.45940010231996,-0.756150308092993 L 34.459409102319945,-0.756177108092921 L 34.459422302319936,-0.756204108092858 L 34.459443602319915,-0.756224808092792 L 34.4594541023199,-0.756245208092731 L 34.459428702319876,-0.756260508092707 L 34.45942390231988,-0.756289308092644 L 34.45940280231986,-0.756299208092643 L 34.459388202319865,-0.756310708092611 L 34.45936140231985,-0.756335808092572 L 34.459349502319846,-0.75635160809254 L 34.45932260231983,-0.756378108092483 L 34.459298502319825,-0.756395108092465 L 34.45927970231982,-0.756410208092446 L 34.4592680023198,-0.756428208092412 L 34.45924720231981,-0.756429808092415 L 34.45922810231979,-0.756446608092389 L 34.45920770231978,-0.756465308092356 L 34.45919330231978,-0.756476608092334 L 34.45917180231977,-0.756488408092314 L 34.45915760231976,-0.756504708092287 L 34.45914090231976,-0.756525208092237 L 34.45912830231974,-0.756546208092198 L 34.459119702319754,-0.756533508092238 L 34.45910600231977,-0.75651750809228 L 34.459090802319785,-0.756496008092353 L 34.459077002319795,-0.756471008092418 L 34.45907040231981,-0.756451208092477 L 34.459058302319825,-0.756427508092529 L 34.45904770231986,-0.756404608092593 L 34.45903310231986,-0.756385008092643 L 34.459025902319866,-0.756364208092713 L 34.45901480231987,-0.756347308092759 L 34.4589970023199,-0.756320708092833 L 34.45899960231992,-0.756300408092873 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.461034402319925,-0.755902908092567 L 34.461041902319934,-0.755876608092629 L 34.46105230231996,-0.755851308092671 L 34.46106040231998,-0.75582650809275 L 34.46107340231998,-0.755802808092802 L 34.46108070232,-0.755778608092846 L 34.46109510232001,-0.755752108092884 L 34.46110480232003,-0.755731708092958 L 34.461115102320036,-0.75571030809299 L 34.46112490232005,-0.755688008093021 L 34.46113200232006,-0.755663108093097 L 34.46114310232007,-0.755640708093144 L 34.46115370232008,-0.755611708093192 L 34.4611650023201,-0.75558530809326 L 34.46117150232012,-0.755565208093306 L 34.46117670232013,-0.755544908093351 L 34.461181402320136,-0.755519108093402 L 34.461186502320146,-0.755498308093472 L 34.46119220232017,-0.755473408093506 L 34.46120390232017,-0.755450508093579 L 34.4612152023202,-0.755429308093614 L 34.461225102320206,-0.755403108093683 L 34.46123570232023,-0.755381008093714 L 34.461248502320245,-0.755353508093773 L 34.46126040232025,-0.755326108093837 L 34.46127080232028,-0.755301308093886 L 34.46128060232028,-0.75527830809394 L 34.46128450232028,-0.755258108093987 L 34.461291902320305,-0.75524020809402 L 34.46130210232031,-0.755220408094054 L 34.46131320232032,-0.755198708094103 L 34.461332102320334,-0.755178508094152 L 34.46135420232033,-0.755185408094121 L 34.46137740232032,-0.755193508094085 L 34.46139970232032,-0.755197708094073 L 34.46142540232031,-0.75520360809404 L 34.4614438023203,-0.755205908094012 L 34.46145950232032,-0.755188608094039 L 34.461480302320325,-0.755186108094037 L 34.46149890232031,-0.755193908094003 L 34.46151800232031,-0.755202008093967 L 34.46153830232029,-0.755209208093935 L 34.46155810232028,-0.755221208093896 L 34.461572202320276,-0.755238408093856 L 34.46156540232027,-0.755259608093802 L 34.46156180232025,-0.75528040809375 L 34.46155880232023,-0.755303308093703 L 34.46154870232023,-0.755328008093651 L 34.461530302320206,-0.755355108093594 L 34.46151520232019,-0.755377908093543 L 34.461501102320184,-0.755399808093512 L 34.461489602320164,-0.75542500809345 L 34.46148030232015,-0.755448408093396 L 34.461474402320135,-0.755472708093335 L 34.461471102320125,-0.755498408093289 L 34.46145960232011,-0.755521808093232 L 34.46145110232009,-0.755545508093182 L 34.46144000232008,-0.755569808093123 L 34.46143170232006,-0.755593008093073 L 34.46142750232005,-0.755616508093023 L 34.46142360232004,-0.755642008092961 L 34.461416802320024,-0.755666108092908 L 34.461409702320005,-0.755687908092852 L 34.461400302319994,-0.7557183080928 L 34.46139210231998,-0.75574290809274 L 34.461384002319974,-0.755763708092678 L 34.46137630231995,-0.755788608092636 L 34.461368702319945,-0.755819508092564 L 34.461365702319924,-0.755847008092512 L 34.461353702319904,-0.755871008092444 L 34.46134340231988,-0.755896008092396 L 34.46133700231988,-0.755916708092333 L 34.46132200231987,-0.755938208092307 L 34.46131280231987,-0.755961608092246 L 34.461306702319845,-0.755992908092184 L 34.46130280231982,-0.756019508092107 L 34.46129310231981,-0.756043808092062 L 34.4612819023198,-0.756065708092014 L 34.46128130231978,-0.756086608091972 L 34.46128210231976,-0.756106408091919 L 34.461276602319764,-0.756123708091874 L 34.46126610231976,-0.756148008091823 L 34.46124280231975,-0.756155708091822 L 34.461219502319736,-0.756165208091817 L 34.46119670231975,-0.756169408091815 L 34.46116990231974,-0.756174708091835 L 34.46114230231975,-0.75617100809185 L 34.46111400231976,-0.756163608091883 L 34.46109050231977,-0.756155108091923 L 34.46106950231975,-0.756156508091935 L 34.461043502319775,-0.756154008091946 L 34.461023702319764,-0.756155108091963 L 34.46100100231977,-0.756156208091978 L 34.460971702319775,-0.756149008092012 L 34.460998202319765,-0.756151108091984 L 34.46100830231978,-0.756135508092008 L 34.46101140231979,-0.756115508092057 L 34.46101540231981,-0.756094208092115 L 34.46102240231981,-0.756073708092165 L 34.461025902319825,-0.756053208092219 L 34.46102320231985,-0.756026808092285 L 34.461025202319874,-0.755997108092337 L 34.461022402319884,-0.75597170809241 L 34.46101650231989,-0.755943708092474 L 34.461025002319914,-0.755923908092528 L 34.461034402319925,-0.755902908092567 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.49505500231676,-0.754616208074298 L 34.49506110231675,-0.754640008074247 L 34.49506370231674,-0.754661108074196 L 34.49506860231673,-0.75468020807413 L 34.49507190231671,-0.754703208074092 L 34.49507770231669,-0.754729408074006 L 34.49508770231668,-0.75475570807395 L 34.49509200231665,-0.754778508073884 L 34.49509680231664,-0.754801408073829 L 34.495094102316635,-0.754819908073783 L 34.495096502316635,-0.754838708073729 L 34.4950966023166,-0.754867708073664 L 34.49509220231659,-0.754892508073602 L 34.495097702316585,-0.754911508073549 L 34.49510370231657,-0.754928708073509 L 34.49510670231655,-0.754949308073462 L 34.495117902316544,-0.754971108073412 L 34.49511700231652,-0.754989408073372 L 34.495120602316504,-0.755008608073303 L 34.4951231023165,-0.755028008073264 L 34.495119502316484,-0.755050408073205 L 34.49511430231649,-0.755069808073165 L 34.495111702316464,-0.755092008073115 L 34.495122802316445,-0.755116908073039 L 34.49512280231643,-0.755135408073 L 34.49513230231642,-0.755160308072943 L 34.49514030231641,-0.755183108072876 L 34.495140802316385,-0.755202808072822 L 34.49514420231637,-0.755224708072766 L 34.49514430231636,-0.755248708072702 L 34.495143602316354,-0.75526850807266 L 34.49514490231633,-0.755291008072617 L 34.49515070231632,-0.755309208072558 L 34.49516030231631,-0.755329508072507 L 34.4951599023163,-0.755350508072456 L 34.495157002316276,-0.755376808072392 L 34.49515290231626,-0.755399708072331 L 34.49515110231625,-0.755423708072275 L 34.49516240231625,-0.75543860807223 L 34.49516950231623,-0.755455208072189 L 34.49517550231622,-0.755473508072133 L 34.4951808023162,-0.75549600807209 L 34.495184102316195,-0.75551800807202 L 34.49518430231618,-0.755539308071988 L 34.49518710231617,-0.755561808071921 L 34.49518520231616,-0.755584708071862 L 34.49518810231614,-0.755605908071822 L 34.495191302316115,-0.755630308071753 L 34.4951939023161,-0.755651608071703 L 34.49519950231609,-0.755675608071643 L 34.495202102316064,-0.755705908071547 L 34.49520630231606,-0.755731408071492 L 34.49520680231605,-0.755751908071439 L 34.49519920231603,-0.75577130807141 L 34.49519300231602,-0.755790708071355 L 34.49519450231601,-0.755815308071306 L 34.495200902315986,-0.755838608071228 L 34.49520590231598,-0.755856408071188 L 34.495212202315955,-0.755874008071156 L 34.49521750231596,-0.755891808071093 L 34.49522840231593,-0.755914908071039 L 34.49521960231593,-0.755930808070997 L 34.49522360231592,-0.755952108070951 L 34.49523330231591,-0.755970608070905 L 34.49524040231589,-0.755994908070822 L 34.49524320231587,-0.756013108070784 L 34.49524330231585,-0.756036708070738 L 34.49523510231584,-0.756059408070684 L 34.49522450231584,-0.756084108070622 L 34.495215702315825,-0.756100608070582 L 34.49520820231582,-0.756127308070533 L 34.49520790231579,-0.756149208070477 L 34.49519330231579,-0.756163208070456 L 34.495191902315774,-0.756188108070393 L 34.495197602315756,-0.756213408070324 L 34.49519890231575,-0.756236308070276 L 34.49520420231573,-0.756257808070213 L 34.49520690231571,-0.756282008070157 L 34.495208402315704,-0.756300708070112 L 34.49521620231569,-0.756325008070043 L 34.495222302315675,-0.756343808070002 L 34.49522630231566,-0.75636760806993 L 34.495225702315636,-0.756395908069863 L 34.495227902315634,-0.756415808069809 L 34.49522860231561,-0.756434708069782 L 34.49524230231561,-0.756447308069732 L 34.49524110231558,-0.7564653080697 L 34.49524640231559,-0.756484308069637 L 34.49525230231556,-0.756510208069583 L 34.495248302315545,-0.756529408069514 L 34.49522920231554,-0.756546008069497 L 34.495224502315544,-0.756570208069447 L 34.495224102315525,-0.756591108069407 L 34.4952288023155,-0.756609308069344 L 34.4952179023155,-0.756624908069317 L 34.495194402315505,-0.756638908069294 L 34.49517600231548,-0.756653408069286 L 34.49515890231548,-0.756669608069244 L 34.49514450231549,-0.756658808069272 L 34.49512550231549,-0.756657308069285 L 34.49510940231549,-0.756669908069271 L 34.49509360231547,-0.756683608069261 L 34.49508320231546,-0.75669920806922 L 34.495064902315455,-0.756715108069202 L 34.49504290231547,-0.756713308069207 L 34.49502640231549,-0.756701608069248 L 34.49501520231548,-0.75668580806929 L 34.49499810231549,-0.756668208069356 L 34.49498660231551,-0.756650108069398 L 34.49496950231552,-0.756650008069403 L 34.49494640231553,-0.756649608069421 L 34.49493280231553,-0.756634508069474 L 34.494928502315545,-0.756613408069528 L 34.494923202315555,-0.756595408069557 L 34.49492130231557,-0.756574208069638 L 34.49492020231559,-0.756547008069689 L 34.49491300231559,-0.756528408069735 L 34.49490710231561,-0.756507308069804 L 34.49490470231562,-0.756480908069869 L 34.49491020231563,-0.756463408069909 L 34.49491180231565,-0.756442808069956 L 34.494910602315656,-0.75642190806999 L 34.49490780231568,-0.756401608070066 L 34.494894902315686,-0.756382308070115 L 34.49489760231572,-0.756360808070168 L 34.49490220231572,-0.756336608070216 L 34.494893602315734,-0.756316408070269 L 34.49488520231574,-0.756300008070305 L 34.49487790231576,-0.75627600807039 L 34.49488190231578,-0.756253708070422 L 34.49488220231577,-0.756235408070478 L 34.49488190231579,-0.756214808070528 L 34.494888002315804,-0.756188208070595 L 34.4948912023158,-0.756169508070629 L 34.494891602315846,-0.756147608070677 L 34.49489350231584,-0.75612970807074 L 34.494898202315866,-0.756110108070754 L 34.49490110231587,-0.756091608070806 L 34.494896002315876,-0.756072108070861 L 34.494887902315895,-0.756055708070903 L 34.494883202315904,-0.756037608070957 L 34.49489090231593,-0.756014008071003 L 34.494894402315936,-0.755992108071049 L 34.494894702315946,-0.755973908071101 L 34.49490060231596,-0.75595600807114 L 34.494913802315956,-0.755938908071162 L 34.494922502315966,-0.755915808071225 L 34.494921702315985,-0.755896108071274 L 34.49492050231599,-0.75587560807132 L 34.494910502316024,-0.755855408071385 L 34.49490570231602,-0.75583520807143 L 34.49489990231604,-0.755810208071501 L 34.49490000231606,-0.755784808071549 L 34.49489980231606,-0.755766008071598 L 34.494898902316095,-0.755746708071653 L 34.49489740231609,-0.755724908071704 L 34.4948986023161,-0.755701408071758 L 34.49489910231612,-0.755677708071809 L 34.494898902316145,-0.755657308071873 L 34.49489390231616,-0.75562940807194 L 34.49488930231617,-0.755604408072003 L 34.4948865023162,-0.755578408072071 L 34.494886802316195,-0.755559008072115 L 34.49488330231621,-0.755538608072173 L 34.49487980231623,-0.75551870807221 L 34.49486920231624,-0.755500508072262 L 34.49486210231625,-0.755481208072312 L 34.49486110231627,-0.755459808072366 L 34.49485790231628,-0.755441908072434 L 34.49485170231629,-0.755421708072472 L 34.49485720231631,-0.755396808072531 L 34.494858102316314,-0.755378308072589 L 34.494859002316325,-0.755352308072643 L 34.49485920231635,-0.755324408072714 L 34.494856902316364,-0.755305208072764 L 34.494852702316365,-0.755284608072818 L 34.494856402316394,-0.755265508072834 L 34.4948521023164,-0.755244708072915 L 34.494849702316415,-0.755224508072956 L 34.494843302316426,-0.755201108073015 L 34.494833302316444,-0.755182708073069 L 34.49482780231645,-0.755162808073119 L 34.494817602316466,-0.755140608073179 L 34.49481930231647,-0.755114808073244 L 34.4948172023165,-0.755090408073308 L 34.494818402316504,-0.755065508073355 L 34.49481820231652,-0.755040908073422 L 34.49481790231654,-0.755019908073472 L 34.49481410231655,-0.754999608073521 L 34.49480000231656,-0.754977908073584 L 34.49479210231657,-0.754955108073634 L 34.494775202316596,-0.754945708073683 L 34.494774502316595,-0.754925708073727 L 34.49477320231663,-0.754902008073779 L 34.49476790231664,-0.754875008073858 L 34.494763902316656,-0.754854808073901 L 34.49476350231666,-0.754827408073971 L 34.49476170231668,-0.754801108074027 L 34.49475610231669,-0.754780008074097 L 34.494750502316705,-0.75475820807415 L 34.49474540231673,-0.754740208074211 L 34.49475530231673,-0.754724308074229 L 34.49475920231675,-0.754704008074275 L 34.494771202316755,-0.754688408074322 L 34.49478420231676,-0.754665608074348 L 34.49480370231677,-0.754644708074399 L 34.494821702316784,-0.754622408074437 L 34.49484040231679,-0.754611608074444 L 34.49485760231681,-0.754602308074462 L 34.494872002316804,-0.754591208074491 L 34.494889102316804,-0.754580908074492 L 34.49490200231681,-0.754561308074532 L 34.49491540231683,-0.754536908074577 L 34.49493150231684,-0.754515308074631 L 34.49494830231685,-0.754495008074676 L 34.49495250231685,-0.754492008074673 L 34.49497020231684,-0.754487508074669 L 34.49499170231685,-0.754487408074657 L 34.49501800231685,-0.754489008074636 L 34.49504280231685,-0.754483308074645 L 34.495062002316836,-0.754485508074611 L 34.49506300231684,-0.754504108074582 L 34.49505500231682,-0.754524808074525 L 34.495044802316805,-0.754544808074476 L 34.49504880231679,-0.754568408074434 L 34.49504390231678,-0.754596708074366 L 34.49505500231676,-0.754616208074298 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.460378902320336,-0.755350108094325 L 34.46037730232035,-0.755327808094377 L 34.460379202320375,-0.755300908094444 L 34.460383702320385,-0.75527640809451 L 34.4603889023204,-0.755253008094547 L 34.460391002320414,-0.755229708094614 L 34.46038800232043,-0.75520640809468 L 34.46038830232045,-0.755183608094727 L 34.46039050232047,-0.755161608094785 L 34.46039310232047,-0.755138708094835 L 34.46039140232048,-0.755110908094888 L 34.460390002320494,-0.75508630809496 L 34.46039080232052,-0.75506070809503 L 34.46039120232054,-0.755034108095087 L 34.46038890232056,-0.755009508095143 L 34.46039390232058,-0.754985608095198 L 34.460398002320574,-0.754960308095268 L 34.460399102320594,-0.754933408095316 L 34.4604006023206,-0.754908308095387 L 34.460397502320625,-0.754888808095441 L 34.46039330232064,-0.754870208095491 L 34.460391902320644,-0.754851808095532 L 34.460388802320665,-0.754830908095574 L 34.46039180232067,-0.75480350809565 L 34.46038800232069,-0.754776908095708 L 34.46038550232071,-0.754757908095762 L 34.460387202320724,-0.754734708095827 L 34.46038630232075,-0.75471010809588 L 34.460379002320764,-0.754686408095933 L 34.46036790232078,-0.754660408096024 L 34.46036280232078,-0.754637408096064 L 34.46036030232081,-0.754612608096137 L 34.46035820232081,-0.75458740809621 L 34.460375302320834,-0.754571908096231 L 34.46039580232082,-0.754576108096203 L 34.46042010232082,-0.754577408096187 L 34.46044380232081,-0.754583208096156 L 34.460470802320806,-0.754583208096143 L 34.4604907023208,-0.754596008096103 L 34.46049270232079,-0.75461510809604 L 34.460491802320774,-0.754633708096007 L 34.46048710232076,-0.754657408095944 L 34.46048310232074,-0.754687208095884 L 34.46049240232072,-0.754717208095805 L 34.460496302320706,-0.754744808095732 L 34.460508002320694,-0.754760808095691 L 34.4605362023207,-0.754761608095661 L 34.46056170232069,-0.754760008095656 L 34.46058000232069,-0.75476030809564 L 34.46060340232067,-0.754760708095628 L 34.460624502320684,-0.754761908095594 L 34.46064540232067,-0.754762908095575 L 34.46066980232067,-0.754763208095575 L 34.46069360232066,-0.754767608095544 L 34.460709702320656,-0.754776208095514 L 34.46071460232065,-0.754799608095462 L 34.46070970232063,-0.754822208095409 L 34.46070500232061,-0.754847008095348 L 34.460703202320595,-0.75487620809528 L 34.460697902320575,-0.754902908095211 L 34.460694502320564,-0.754924008095171 L 34.46069280232056,-0.754947308095104 L 34.46069280232054,-0.754969808095054 L 34.460692802320516,-0.754992808095014 L 34.46069280232051,-0.755015808094939 L 34.4606900023205,-0.755039308094902 L 34.46069140232048,-0.755066508094823 L 34.46069310232046,-0.755090008094762 L 34.46069290232045,-0.755113708094697 L 34.460690802320435,-0.755135008094646 L 34.46068630232043,-0.755155208094615 L 34.46068790232041,-0.75517900809456 L 34.46068050232039,-0.755195608094512 L 34.4606730023204,-0.75521470809448 L 34.46066950232038,-0.755233508094426 L 34.46066470232038,-0.755253308094386 L 34.46066610232036,-0.755271408094345 L 34.460658702320345,-0.755298608094272 L 34.46065500232032,-0.755320308094226 L 34.46065220232031,-0.75534120809417 L 34.4606468023203,-0.755363608094124 L 34.46064730232029,-0.755385408094064 L 34.460647902320275,-0.755409708094019 L 34.460648302320266,-0.755428908093959 L 34.460623602320275,-0.755418408094007 L 34.46059830232028,-0.755415008094031 L 34.46057420232028,-0.755412208094061 L 34.46055030232029,-0.755411408094065 L 34.4605221023203,-0.755402008094102 L 34.460496002320305,-0.75539650809415 L 34.4604669023203,-0.755387808094187 L 34.460448202320315,-0.755377508094216 L 34.46042620232032,-0.755368608094264 L 34.46040210232032,-0.755364208094279 L 34.460378902320336,-0.755350108094325 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.45828030232087,-0.754905608096724 L 34.45825170232085,-0.754907708096726 L 34.45823090232085,-0.754910808096752 L 34.45821140232088,-0.75491050809676 L 34.45819150232087,-0.754901108096799 L 34.458167502320876,-0.754898408096825 L 34.45814870232089,-0.754892108096857 L 34.4581347023209,-0.754880108096886 L 34.458108602320905,-0.754868908096914 L 34.45808490232093,-0.754854108096978 L 34.45806670232093,-0.754840508097007 L 34.45804960232093,-0.754820808097076 L 34.45803180232095,-0.754799408097148 L 34.45802500232098,-0.754775108097213 L 34.458014902321,-0.754753708097262 L 34.458006102321015,-0.754715208097367 L 34.458009402321025,-0.754692708097416 L 34.45800520232105,-0.754671508097468 L 34.458003102321065,-0.754639008097564 L 34.45800430232107,-0.754610808097622 L 34.458002402321085,-0.754588708097681 L 34.45798380232109,-0.754588908097678 L 34.45797980232109,-0.754568108097748 L 34.45798040232114,-0.754544908097789 L 34.45798790232114,-0.75451360809786 L 34.45799410232115,-0.754488708097916 L 34.457996702321154,-0.754468908097956 L 34.45800880232119,-0.754440708098027 L 34.458021302321185,-0.754417208098084 L 34.4580267023212,-0.75439220809815 L 34.458007402321215,-0.754376708098186 L 34.45800500232123,-0.754353908098249 L 34.45799680232124,-0.754331208098297 L 34.458000102321265,-0.754304808098369 L 34.45799860232128,-0.754281508098419 L 34.4580065023213,-0.754258908098472 L 34.458006302321316,-0.754233408098545 L 34.45800310232132,-0.754214008098596 L 34.45800420232133,-0.75419180809864 L 34.45800620232136,-0.754165008098709 L 34.45799940232136,-0.754138008098785 L 34.458003602321384,-0.754115108098839 L 34.458018502321394,-0.754093408098862 L 34.45803910232139,-0.75408560809888 L 34.4580624023214,-0.754086908098861 L 34.45808400232139,-0.754094808098832 L 34.45810220232139,-0.754095808098799 L 34.45812200232138,-0.754095808098799 L 34.45814970232137,-0.754094708098777 L 34.45817430232138,-0.754086408098787 L 34.458201802321376,-0.754093008098756 L 34.45822230232138,-0.754099608098718 L 34.458248102321356,-0.754101408098716 L 34.458267902321374,-0.754089208098717 L 34.458289802321374,-0.754079708098739 L 34.45831250232137,-0.754077308098729 L 34.458337802321374,-0.754077508098709 L 34.45836130232137,-0.754083408098678 L 34.458386702321356,-0.754084608098666 L 34.458411602321355,-0.754083208098654 L 34.458434002321354,-0.754090008098619 L 34.45845240232134,-0.75409780809859 L 34.45846970232133,-0.75410970809855 L 34.458482302321315,-0.754125408098505 L 34.45850740232131,-0.754137408098466 L 34.458526202321316,-0.754137908098442 L 34.4585510023213,-0.754147208098417 L 34.45855620232128,-0.75416790809835 L 34.45855290232128,-0.754192408098292 L 34.45855220232126,-0.754224408098211 L 34.45855200232124,-0.754254008098142 L 34.45856760232121,-0.754278708098071 L 34.4585688023212,-0.754301508098028 L 34.45855790232119,-0.754323908097976 L 34.45855070232116,-0.754350208097917 L 34.45855060232116,-0.754375108097851 L 34.45854490232115,-0.754399608097806 L 34.45854130232113,-0.754420708097751 L 34.45854160232111,-0.754445608097694 L 34.4585378023211,-0.754469908097627 L 34.45853210232108,-0.754496208097567 L 34.458532902321075,-0.754516008097507 L 34.45853340232105,-0.754542208097443 L 34.45853730232105,-0.754569908097392 L 34.45853160232102,-0.75459610809732 L 34.45852480232101,-0.754621108097261 L 34.458525502320995,-0.754643608097209 L 34.45852460232097,-0.754672508097136 L 34.45852180232096,-0.75470250809708 L 34.45852130232094,-0.754737008096989 L 34.458517602320924,-0.754766008096916 L 34.458514702320905,-0.75479070809686 L 34.45851390232088,-0.754821108096795 L 34.458521002320865,-0.754853608096715 L 34.45853890232085,-0.75487560809664 L 34.45855850232085,-0.754891308096586 L 34.458573202320835,-0.754906508096543 L 34.45852610232084,-0.754888008096609 L 34.45850790232084,-0.754896808096623 L 34.45848260232085,-0.754896808096619 L 34.458459402320855,-0.754892208096659 L 34.45843060232086,-0.754887208096677 L 34.45840410232086,-0.754884208096701 L 34.458375202320866,-0.754884008096711 L 34.458348302320864,-0.754890008096725 L 34.45832900232085,-0.754898908096703 L 34.458306502320866,-0.754901208096732 L 34.45828030232087,-0.754905608096724 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.49146810231798,-0.753323308079706 L 34.49145380231797,-0.753348508079655 L 34.49144350231797,-0.753370308079615 L 34.491433602317954,-0.753387708079574 L 34.49142700231794,-0.753407708079535 L 34.491421902317924,-0.753426808079487 L 34.49141370231792,-0.75344720807944 L 34.491403302317906,-0.753465308079394 L 34.49139460231789,-0.753484708079349 L 34.49138080231788,-0.753504008079325 L 34.491366202317884,-0.753519608079294 L 34.49135500231785,-0.753546908079236 L 34.491349702317855,-0.753566108079195 L 34.491338302317835,-0.753581708079166 L 34.49133290231783,-0.753602708079124 L 34.491326202317815,-0.753625508079065 L 34.491322902317805,-0.753643408079032 L 34.491309802317794,-0.753666408078961 L 34.49130220231779,-0.753684908078933 L 34.491300702317766,-0.75370630807887 L 34.49129600231776,-0.753726508078839 L 34.491278202317766,-0.753722508078852 L 34.49125930231776,-0.75371160807888 L 34.49123890231778,-0.753699808078937 L 34.49121680231779,-0.753687508078979 L 34.49119200231778,-0.753678608079012 L 34.49117390231781,-0.75367130807904 L 34.491153502317815,-0.753657308079085 L 34.49113170231782,-0.753640708079151 L 34.49110810231785,-0.753626208079193 L 34.491090202317864,-0.753603808079268 L 34.49107770231786,-0.753584808079316 L 34.49105910231788,-0.753576308079338 L 34.49103460231789,-0.753565608079391 L 34.49101700231789,-0.75355730807943 L 34.49099970231789,-0.753545208079452 L 34.49097760231792,-0.753530108079513 L 34.49095520231792,-0.753516908079553 L 34.490933002317924,-0.753507608079609 L 34.490909302317945,-0.753493408079647 L 34.490886802317945,-0.753483308079677 L 34.49085990231796,-0.753471108079732 L 34.49082860231798,-0.753452808079788 L 34.49080810231799,-0.753440108079833 L 34.490805802317986,-0.753438508079837 L 34.490786902318,-0.753424308079893 L 34.49076360231801,-0.753414108079925 L 34.49073940231802,-0.753408208079962 L 34.49072130231802,-0.753397808079996 L 34.49070540231804,-0.753378308080042 L 34.490691902318055,-0.753362708080095 L 34.49067310231807,-0.753354008080142 L 34.49065040231808,-0.753338008080181 L 34.49063090231808,-0.753323808080229 L 34.4906062023181,-0.753314408080274 L 34.49059670231809,-0.75329890808031 L 34.49059550231812,-0.753279608080373 L 34.49060910231812,-0.753266408080393 L 34.490625902318136,-0.753243308080425 L 34.49063790231814,-0.753228008080459 L 34.490645002318146,-0.753211408080506 L 34.49065970231816,-0.753194908080542 L 34.49067510231816,-0.753181208080542 L 34.49069430231819,-0.753164508080582 L 34.49070860231817,-0.7531515080806 L 34.49072840231818,-0.753131808080637 L 34.49074590231819,-0.753121808080642 L 34.490764302318205,-0.75310760808068 L 34.4907785023182,-0.7530928080807 L 34.49079450231822,-0.753076308080718 L 34.490808502318224,-0.753058008080762 L 34.49082360231823,-0.753036008080807 L 34.490836902318236,-0.753018008080845 L 34.490848902318255,-0.752997708080887 L 34.49086670231826,-0.752978808080925 L 34.49087990231829,-0.752959708080955 L 34.49089490231829,-0.752942008081004 L 34.490916002318286,-0.752924108081025 L 34.49093110231831,-0.752906308081056 L 34.490944802318324,-0.752889808081086 L 34.49096080231833,-0.752870708081126 L 34.49097810231833,-0.752851708081171 L 34.49099500231834,-0.75282890808121 L 34.49101060231836,-0.752814008081227 L 34.491024802318364,-0.752794308081264 L 34.49103860231838,-0.752771308081316 L 34.491034502318385,-0.752750908081382 L 34.4910293023184,-0.752730608081423 L 34.49104280231842,-0.752718708081445 L 34.491062802318396,-0.75272530808142 L 34.4910854023184,-0.752737408081374 L 34.49110140231838,-0.752747508081346 L 34.491123102318376,-0.752763108081297 L 34.491140402318365,-0.752777708081243 L 34.49116300231835,-0.752789508081201 L 34.49117940231834,-0.752799308081159 L 34.491200202318325,-0.752814108081106 L 34.49121900231831,-0.752827608081066 L 34.49124070231831,-0.752840008081036 L 34.49126100231831,-0.75284820808098 L 34.491279502318285,-0.752865308080931 L 34.491297002318284,-0.752883308080878 L 34.491316602318264,-0.752890308080853 L 34.49133570231826,-0.752899708080827 L 34.49135120231825,-0.752916008080782 L 34.49137410231824,-0.752936208080708 L 34.491395002318214,-0.752962308080631 L 34.491410702318205,-0.752981308080566 L 34.4914310023182,-0.753000008080516 L 34.49144140231817,-0.753018208080467 L 34.491469202318164,-0.753026808080424 L 34.49149610231816,-0.753041508080385 L 34.49152010231815,-0.753054808080325 L 34.49153930231814,-0.753068908080288 L 34.49155520231814,-0.753088208080223 L 34.49157830231811,-0.753101708080169 L 34.491593902318066,-0.753164508080015 L 34.49158000231807,-0.753176808080004 L 34.49156250231806,-0.753184708079999 L 34.49154410231806,-0.753197608079969 L 34.49152950231805,-0.753213108079927 L 34.491517002318034,-0.753226208079915 L 34.49150930231802,-0.753243908079875 L 34.491494802318016,-0.753263108079846 L 34.49148550231801,-0.753279808079789 L 34.491476902318,-0.753299408079766 L 34.49146810231798,-0.753323308079706 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.48912460231885,-0.752333808083588 L 34.48915110231885,-0.752354708083522 L 34.48917190231885,-0.752364308083497 L 34.489198502318835,-0.75237330808346 L 34.48921860231883,-0.752393208083389 L 34.48924110231881,-0.752408208083336 L 34.48927040231881,-0.752415708083298 L 34.489296502318794,-0.752423508083267 L 34.48932300231879,-0.752428608083238 L 34.48934330231878,-0.752446908083171 L 34.48936080231876,-0.752474808083095 L 34.489376102318744,-0.752496108083029 L 34.48939380231873,-0.752520908082971 L 34.48940160231871,-0.752538708082922 L 34.48940750231869,-0.752558208082865 L 34.48941640231869,-0.752579908082796 L 34.48942820231867,-0.752600108082756 L 34.48944040231866,-0.752616708082716 L 34.489461202318644,-0.752626508082656 L 34.48948050231865,-0.752632308082631 L 34.48949400231863,-0.752646808082596 L 34.489512402318624,-0.752655308082569 L 34.48953260231861,-0.752668308082514 L 34.4895425023186,-0.752685808082465 L 34.48953860231859,-0.752705308082428 L 34.48953240231858,-0.752729208082377 L 34.48951690231856,-0.75275310808232 L 34.48950540231855,-0.752772408082267 L 34.48949510231854,-0.752792308082245 L 34.48948320231854,-0.752808808082203 L 34.48946970231852,-0.752829008082168 L 34.4894526023185,-0.752858908082102 L 34.4894452023185,-0.752885608082044 L 34.48943840231847,-0.752914008081974 L 34.48943510231847,-0.752934408081934 L 34.48942730231845,-0.752957308081889 L 34.48943090231843,-0.752981608081808 L 34.489417702318434,-0.753000108081775 L 34.48939800231841,-0.753025408081739 L 34.48939220231839,-0.753053208081657 L 34.48938210231839,-0.75306900808164 L 34.48936810231839,-0.753089408081596 L 34.48936150231835,-0.753118308081529 L 34.48935480231835,-0.753135508081492 L 34.489345002318345,-0.753154308081451 L 34.48933270231832,-0.753184008081379 L 34.48932690231831,-0.753203808081352 L 34.48932880231831,-0.75323560808128 L 34.48932440231827,-0.753263708081187 L 34.48931780231826,-0.753282408081172 L 34.48931360231825,-0.753308108081096 L 34.48931210231823,-0.753330708081043 L 34.48930090231822,-0.753346008081016 L 34.489287102318215,-0.753365708080979 L 34.4892778023182,-0.753386608080935 L 34.489272302318184,-0.753404708080883 L 34.489270702318166,-0.753427208080823 L 34.48925870231817,-0.753447408080787 L 34.48926160231815,-0.753475208080728 L 34.48925190231813,-0.753493208080698 L 34.489244602318124,-0.753510708080662 L 34.48922630231812,-0.753517508080647 L 34.48920510231813,-0.753521108080647 L 34.48918930231812,-0.753530008080639 L 34.489169802318116,-0.753534808080642 L 34.489145302318114,-0.753534708080661 L 34.48912590231813,-0.753539908080653 L 34.489104802318124,-0.753545108080664 L 34.489079802318116,-0.753549408080664 L 34.48906110231811,-0.75355430808066 L 34.48903990231811,-0.753563608080649 L 34.48901090231812,-0.753568308080643 L 34.48898870231811,-0.753573208080654 L 34.48896740231812,-0.753578608080648 L 34.488941002318114,-0.753587708080643 L 34.488914002318104,-0.753601008080631 L 34.4888954023181,-0.75361030808063 L 34.48886840231811,-0.753614808080628 L 34.48883380231812,-0.753614608080664 L 34.48880510231812,-0.753612308080681 L 34.48877940231812,-0.753606008080724 L 34.488758202318124,-0.753606808080734 L 34.488730602318114,-0.753607008080737 L 34.488707902318126,-0.753609308080757 L 34.48868210231812,-0.753610508080762 L 34.48866480231815,-0.753604308080779 L 34.488645402318134,-0.753601708080807 L 34.48862540231814,-0.75359800808083 L 34.48860340231815,-0.753589508080858 L 34.488593802318164,-0.753566208080916 L 34.48859100231819,-0.753542208080997 L 34.488598102318214,-0.753521608081022 L 34.48860540231821,-0.753495508081082 L 34.48860580231823,-0.753464908081154 L 34.488607502318246,-0.753433008081241 L 34.48860280231827,-0.753408308081306 L 34.488606102318265,-0.75338590808135 L 34.4886113023183,-0.753364608081406 L 34.488616302318306,-0.753338008081467 L 34.48861340231832,-0.753318308081514 L 34.48862440231834,-0.75329060808158 L 34.488627502318344,-0.753272008081624 L 34.48863800231837,-0.753248108081659 L 34.488652202318356,-0.753233408081686 L 34.48865480231838,-0.753214308081742 L 34.488663902318386,-0.753196608081784 L 34.4886707023184,-0.753177108081825 L 34.48866970231841,-0.753154708081879 L 34.48867850231843,-0.753132108081924 L 34.48868540231843,-0.753111308081967 L 34.488702502318446,-0.753088508082014 L 34.48871780231846,-0.75307170808205 L 34.48872460231847,-0.753054608082093 L 34.488735102318486,-0.753031408082131 L 34.4887390023185,-0.753008208082189 L 34.48874070231851,-0.752983808082241 L 34.48873810231853,-0.752963808082298 L 34.488746802318545,-0.75294740808234 L 34.48875690231854,-0.752928308082361 L 34.48876170231856,-0.752910608082412 L 34.48876580231857,-0.752889808082466 L 34.488765802318575,-0.752870108082511 L 34.48877240231859,-0.752846608082564 L 34.4887849023186,-0.752828608082587 L 34.48878670231861,-0.752806008082655 L 34.488785002318636,-0.752775308082738 L 34.48878740231864,-0.752754208082776 L 34.488794102318664,-0.752726808082845 L 34.48880640231868,-0.752698508082902 L 34.488815102318696,-0.752675308082958 L 34.488820002318704,-0.75264770808303 L 34.48883270231872,-0.752625408083079 L 34.48883680231873,-0.752601808083114 L 34.48883860231875,-0.752579908083167 L 34.48884710231877,-0.752561408083199 L 34.48885020231879,-0.752535008083272 L 34.48885330231881,-0.752507208083328 L 34.488857202318805,-0.752484008083392 L 34.48885730231883,-0.75245310808346 L 34.48886270231884,-0.75243100808351 L 34.48886390231886,-0.752404908083582 L 34.48888160231888,-0.75238230808363 L 34.488883402318876,-0.752362508083667 L 34.48888640231889,-0.752335008083734 L 34.488888202318904,-0.752307008083799 L 34.48888580231893,-0.752280708083871 L 34.488926802318936,-0.752277108083856 L 34.48894550231893,-0.752277608083828 L 34.48896640231892,-0.752287008083813 L 34.48898740231891,-0.752281908083795 L 34.48900250231892,-0.752271808083808 L 34.48902160231892,-0.752271108083805 L 34.48904980231891,-0.75227550808377 L 34.4890720023189,-0.752291008083726 L 34.4890886023189,-0.752301508083688 L 34.48910470231888,-0.752317308083642 L 34.48912460231885,-0.752333808083588 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.46235520232175,-0.752702208099529 L 34.462340802321755,-0.752682608099582 L 34.46234600232176,-0.752663508099624 L 34.46235510232179,-0.752640008099678 L 34.462362002321804,-0.752619708099717 L 34.46236870232182,-0.752593608099801 L 34.46237560232184,-0.752575308099824 L 34.462380602321836,-0.752550808099887 L 34.46238220232186,-0.752531108099935 L 34.46238380232186,-0.752509408099987 L 34.46239170232188,-0.752487408100039 L 34.46239750232189,-0.752470108100065 L 34.4623912023219,-0.752449508100118 L 34.46238510232192,-0.75243240810017 L 34.46238470232193,-0.752411808100223 L 34.462383302321946,-0.752393608100272 L 34.46238370232196,-0.752368708100321 L 34.46238050232198,-0.752346208100378 L 34.462376802321984,-0.752321408100434 L 34.462379002322,-0.752298808100491 L 34.46238350232202,-0.752279008100545 L 34.46237790232203,-0.752253108100609 L 34.46238340232204,-0.752231808100654 L 34.462389402322046,-0.752212808100705 L 34.46238660232207,-0.752194908100753 L 34.46238630232208,-0.752169408100805 L 34.4623895023221,-0.752142308100868 L 34.46238740232211,-0.752122308100927 L 34.46237720232212,-0.752098208100988 L 34.46237190232213,-0.752078008101044 L 34.462367802322156,-0.752059308101088 L 34.46236620232216,-0.752041008101133 L 34.462358102322185,-0.752017708101199 L 34.4623574023222,-0.751995808101261 L 34.462359902322206,-0.75197230810131 L 34.462363102322215,-0.751951008101353 L 34.462363502322226,-0.75192970810141 L 34.46236040232224,-0.751904808101464 L 34.46235260232226,-0.751883808101527 L 34.46234940232228,-0.751865008101577 L 34.462343902322296,-0.751839208101644 L 34.462341502322296,-0.751820208101689 L 34.462334802322324,-0.751801408101734 L 34.462326702322315,-0.751783108101788 L 34.462327202322335,-0.751760008101833 L 34.46233330232236,-0.751741808101878 L 34.46234500232235,-0.751728108101901 L 34.46233680232237,-0.751706108101958 L 34.46231930232237,-0.751693708102024 L 34.4623128023224,-0.751674308102055 L 34.462312102322414,-0.751655808102097 L 34.46229960232242,-0.751639008102145 L 34.462284502322426,-0.751627808102192 L 34.46226830232244,-0.751612308102228 L 34.46225550232245,-0.751596508102288 L 34.46224470232245,-0.751580208102333 L 34.46222860232248,-0.751559308102398 L 34.46222010232249,-0.751540108102449 L 34.462206202322506,-0.751521408102501 L 34.462199702322515,-0.751495608102561 L 34.46219520232252,-0.751475408102631 L 34.46218000232254,-0.751453908102667 L 34.462174602322555,-0.751433508102722 L 34.46217410232257,-0.751410508102778 L 34.46217440232259,-0.75138880810284 L 34.46217920232261,-0.751369808102874 L 34.4621939023226,-0.751354808102925 L 34.46221870232261,-0.751345608102909 L 34.462240902322606,-0.751338008102919 L 34.46225370232261,-0.751320008102961 L 34.46227090232262,-0.751311608102975 L 34.46229080232262,-0.751308008102963 L 34.462308802322625,-0.751316408102936 L 34.462330702322625,-0.75131300810293 L 34.462355002322624,-0.751297008102947 L 34.46237480232262,-0.751288908102959 L 34.46239240232263,-0.751282308102952 L 34.46241070232263,-0.751276708102962 L 34.462434202322626,-0.751276108102952 L 34.462450402322624,-0.751287108102922 L 34.462471002322616,-0.751293308102895 L 34.462490302322614,-0.751302008102855 L 34.4625115023226,-0.751302208102843 L 34.4625323023226,-0.751300708102837 L 34.46254660232259,-0.751313408102775 L 34.46254900232257,-0.751336808102734 L 34.462558802322555,-0.751354908102675 L 34.46256670232256,-0.751374108102632 L 34.46257830232252,-0.751391808102573 L 34.46259410232252,-0.75141340810251 L 34.462596602322506,-0.751436208102473 L 34.4626007023225,-0.751460308102404 L 34.46259140232248,-0.751480908102358 L 34.46258350232247,-0.751499908102312 L 34.46258900232245,-0.751524108102239 L 34.46259160232244,-0.751553908102187 L 34.46259180232243,-0.751577308102127 L 34.462597402322395,-0.751612608102042 L 34.46260150232237,-0.751647708101931 L 34.46260380232236,-0.751676008101872 L 34.462601002322344,-0.751705708101801 L 34.462604802322325,-0.751731608101739 L 34.462603802322306,-0.751756908101666 L 34.462612102322296,-0.751784308101603 L 34.46262270232227,-0.751805408101541 L 34.46262310232227,-0.751828408101497 L 34.462620202322256,-0.751852408101421 L 34.46261640232223,-0.751881308101367 L 34.46261630232222,-0.751905208101306 L 34.46262340232221,-0.751929008101242 L 34.46262490232219,-0.751956008101172 L 34.46262600232216,-0.751981808101103 L 34.46262850232214,-0.75201080810104 L 34.46262900232213,-0.752044008100967 L 34.462627202322125,-0.752073108100897 L 34.4626293023221,-0.752100508100824 L 34.46263110232208,-0.752121208100775 L 34.46262470232207,-0.752148208100714 L 34.46262580232204,-0.752170008100645 L 34.46262700232204,-0.752197908100592 L 34.462623402322016,-0.752226608100506 L 34.46262470232201,-0.752258108100435 L 34.46262640232197,-0.752283008100382 L 34.46261980232197,-0.752306608100329 L 34.46262140232196,-0.752334508100256 L 34.46262450232193,-0.752366008100177 L 34.46262650232192,-0.752390608100108 L 34.462627402321914,-0.752419708100048 L 34.462626702321884,-0.752448008099977 L 34.46262780232186,-0.752472408099921 L 34.462631202321845,-0.752495208099863 L 34.462631702321836,-0.752521608099782 L 34.46263150232181,-0.752547008099735 L 34.46263040232181,-0.752570408099683 L 34.462629202321786,-0.752596608099611 L 34.46262940232178,-0.752614808099575 L 34.462629802321764,-0.752639908099502 L 34.46262700232174,-0.75266450809945 L 34.46262080232174,-0.752686508099403 L 34.46261500232171,-0.752716708099327 L 34.46259450232172,-0.752720308099344 L 34.46256570232171,-0.752720008099344 L 34.46253790232172,-0.75271730809938 L 34.462515902321734,-0.752715008099393 L 34.46249640232173,-0.752716808099403 L 34.46247530232173,-0.752716808099413 L 34.462452802321735,-0.752707908099446 L 34.46242640232174,-0.752707308099469 L 34.462399602321746,-0.752705808099497 L 34.46237490232175,-0.752702408099525 L 34.46235520232175,-0.752702208099529 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.46673070232164,-0.752064008098334 L 34.46672440232165,-0.752038408098399 L 34.46672020232167,-0.752013608098461 L 34.4667268023217,-0.751987008098533 L 34.466727002321704,-0.751951208098616 L 34.46672300232172,-0.751921008098687 L 34.46672110232174,-0.751902108098738 L 34.466724602321754,-0.751884308098781 L 34.466728402321785,-0.751854208098851 L 34.466734802321795,-0.751822208098918 L 34.46673650232181,-0.751795108098981 L 34.46672750232182,-0.751768808099057 L 34.466724502321846,-0.751741408099115 L 34.466723902321846,-0.751717808099176 L 34.46672030232186,-0.75169300809924 L 34.46671610232189,-0.751671208099281 L 34.4667120023219,-0.751649708099356 L 34.46671850232192,-0.751628108099391 L 34.466726402321925,-0.751605308099448 L 34.466717902321946,-0.751583208099509 L 34.46670930232195,-0.751560308099557 L 34.46670580232197,-0.751533308099633 L 34.46670100232198,-0.751512008099699 L 34.466704702322,-0.751491808099741 L 34.46671650232201,-0.751476308099781 L 34.46670720232202,-0.751460308099817 L 34.46669920232203,-0.751434208099886 L 34.466712402322045,-0.751415808099928 L 34.46673390232204,-0.751416308099918 L 34.466753502322035,-0.751430108099857 L 34.466779702322015,-0.751440408099814 L 34.46680690232201,-0.751448508099786 L 34.466827502322005,-0.751451708099762 L 34.466858802322,-0.751450408099745 L 34.46688970232199,-0.751454008099716 L 34.466916202322,-0.751453608099697 L 34.466934502322005,-0.751450408099697 L 34.466954302321994,-0.75145470809966 L 34.466972202322,-0.751452408099677 L 34.46699930232199,-0.75144390809966 L 34.46702240232199,-0.751435208099681 L 34.467060402321984,-0.751431708099661 L 34.467084702322,-0.751424508099669 L 34.467107902322006,-0.751417108099664 L 34.46713320232199,-0.751420908099657 L 34.467159702322,-0.751416108099635 L 34.46717800232199,-0.751416108099637 L 34.46719800232199,-0.751410608099634 L 34.467228302322,-0.751405008099632 L 34.467248302322,-0.751400508099617 L 34.46727360232199,-0.751397908099606 L 34.46729720232199,-0.751395608099588 L 34.467317102321985,-0.751399808099577 L 34.46733490232197,-0.75140490809955 L 34.46735690232197,-0.751403408099543 L 34.46738240232198,-0.751396708099542 L 34.46740360232198,-0.751392108099548 L 34.467425402321986,-0.751386008099557 L 34.46744490232197,-0.751381208099548 L 34.46746740232197,-0.751378508099551 L 34.46748650232198,-0.751372408099545 L 34.46750620232197,-0.751368308099543 L 34.46753350232199,-0.751359608099554 L 34.46756110232199,-0.751353608099539 L 34.467579102321984,-0.75135410809954 L 34.46760780232199,-0.751340008099552 L 34.46762940232198,-0.751334308099546 L 34.46765210232199,-0.751335008099525 L 34.467677302321974,-0.751333008099503 L 34.467701002321974,-0.751330608099508 L 34.467720702321984,-0.751328308099501 L 34.467744602321986,-0.751330908099487 L 34.46776380232197,-0.751332208099466 L 34.46779190232198,-0.751334608099451 L 34.46781700232197,-0.751332808099429 L 34.46783600232196,-0.75133050809941 L 34.46785060232197,-0.751319908099439 L 34.46787670232198,-0.751307108099459 L 34.46789410232197,-0.751301808099451 L 34.467919102321986,-0.751300308099435 L 34.467947002321985,-0.751292608099446 L 34.467972202321974,-0.751289208099446 L 34.46800320232199,-0.75127930809944 L 34.468026702321986,-0.751273608099448 L 34.46804620232197,-0.751275008099425 L 34.46806430232197,-0.751280108099389 L 34.468094902321965,-0.751274408099394 L 34.468116202321966,-0.751271908099401 L 34.468141802321966,-0.751263608099404 L 34.46817320232197,-0.751268808099358 L 34.468203602321964,-0.751277108099329 L 34.468223802321965,-0.751276108099313 L 34.46824700232195,-0.751274408099297 L 34.468265202321945,-0.751275508099287 L 34.468284902321955,-0.751277608099265 L 34.468305302321944,-0.751273408099268 L 34.46832600232194,-0.751276308099243 L 34.468348802321955,-0.751265008099253 L 34.46836990232194,-0.751273108099215 L 34.468377902321926,-0.751294008099181 L 34.46838020232191,-0.751320608099102 L 34.468384402321895,-0.751343908099054 L 34.46839360232188,-0.751366208098975 L 34.46839100232186,-0.751384908098947 L 34.46839110232185,-0.751405808098885 L 34.46839300232185,-0.751425508098843 L 34.468401802321836,-0.751447808098778 L 34.46839770232181,-0.751475608098715 L 34.4684027023218,-0.751497208098645 L 34.468395202321794,-0.751519708098622 L 34.468390002321776,-0.751537208098569 L 34.46838460232176,-0.751563308098523 L 34.46838600232175,-0.751587408098456 L 34.46839390232173,-0.751609608098383 L 34.46841050232172,-0.751627008098327 L 34.4684191023217,-0.751649508098283 L 34.46842690232168,-0.751668908098239 L 34.46843880232167,-0.751685408098173 L 34.46845280232164,-0.751707008098133 L 34.46845660232165,-0.75172610809807 L 34.46845850232163,-0.751747608098016 L 34.46845410232162,-0.751775008097949 L 34.468450902321614,-0.751798208097896 L 34.46845860232158,-0.751822408097844 L 34.468444202321585,-0.751840308097804 L 34.46842210232157,-0.751856108097778 L 34.46840240232157,-0.751870108097757 L 34.46838190232155,-0.751878308097742 L 34.46835610232157,-0.751888708097733 L 34.46833810232155,-0.751895608097723 L 34.46831580232156,-0.751902908097712 L 34.46829670232155,-0.75191200809771 L 34.46827620232156,-0.75191170809773 L 34.468258702321556,-0.751917108097726 L 34.46823480232155,-0.751929108097717 L 34.468203902321534,-0.751939008097703 L 34.46817460232155,-0.751947008097717 L 34.46814980232154,-0.751952908097718 L 34.46812940232155,-0.751955408097708 L 34.46809740232154,-0.751967708097703 L 34.46807190232155,-0.751971308097703 L 34.468055102321536,-0.751982808097697 L 34.46802720232153,-0.751996308097693 L 34.468001402321526,-0.752005808097669 L 34.46798110232153,-0.752006508097696 L 34.467959202321545,-0.752007008097702 L 34.46793770232154,-0.752017708097686 L 34.46790930232154,-0.752018808097696 L 34.46788540232153,-0.752022908097694 L 34.46786870232152,-0.752031608097688 L 34.46784740232153,-0.752038308097698 L 34.46782610232153,-0.752033908097708 L 34.46780560232153,-0.75202910809774 L 34.46778630232154,-0.752035908097749 L 34.46776560232152,-0.752055508097697 L 34.46774550232152,-0.75205490809771 L 34.46772320232152,-0.752056108097727 L 34.46770730232153,-0.752067408097722 L 34.46768630232152,-0.752077108097697 L 34.46765880232152,-0.752080708097707 L 34.46764130232152,-0.752087308097695 L 34.46762300232152,-0.75210570809767 L 34.46760020232151,-0.752111908097659 L 34.467566102321506,-0.752111808097687 L 34.46754730232151,-0.752119308097696 L 34.46751900232151,-0.752131308097672 L 34.4674940023215,-0.752140708097669 L 34.46747150232151,-0.752137208097679 L 34.4674484023215,-0.752139508097689 L 34.4674258023215,-0.752159108097662 L 34.46740440232149,-0.752166208097663 L 34.46739150232149,-0.752180008097637 L 34.46736760232149,-0.752192608097615 L 34.46734410232149,-0.752191508097626 L 34.467323102321494,-0.752195208097645 L 34.46730230232148,-0.752209908097619 L 34.46728000232148,-0.752213508097627 L 34.46726230232149,-0.752216908097639 L 34.467240302321486,-0.752216608097631 L 34.4672128023215,-0.752225208097633 L 34.46719180232149,-0.752230508097637 L 34.46717120232148,-0.752236908097637 L 34.46714490232149,-0.752236008097662 L 34.46712590232148,-0.752244508097659 L 34.46710300232147,-0.752253408097639 L 34.46708200232148,-0.752262408097629 L 34.46705600232147,-0.752262708097642 L 34.46703050232148,-0.75226820809765 L 34.46700590232147,-0.752276508097639 L 34.46699110232147,-0.752290408097614 L 34.46697110232147,-0.752296608097616 L 34.466948702321474,-0.752303508097613 L 34.46692350232146,-0.752306108097623 L 34.46690580232147,-0.752315408097621 L 34.466881402321455,-0.752330208097587 L 34.46686460232146,-0.752336708097578 L 34.466836902321454,-0.752332508097603 L 34.46680690232147,-0.752337208097607 L 34.466789002321455,-0.752348208097592 L 34.46676500232146,-0.752349208097619 L 34.46675000232147,-0.752353308097603 L 34.46676030232146,-0.752337108097646 L 34.46676290232149,-0.752308008097719 L 34.46676820232149,-0.752288508097757 L 34.466761702321506,-0.752264908097818 L 34.46675340232154,-0.752236408097891 L 34.46675150232156,-0.752211208097955 L 34.46674330232156,-0.752185308098035 L 34.46673760232158,-0.752164708098095 L 34.46673330232159,-0.752143308098136 L 34.466728402321614,-0.752121908098178 L 34.46673230232161,-0.752091508098266 L 34.46673070232164,-0.752064008098334 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.435095702326265,-0.750521708121978 L 34.43510540232624,-0.75054760812191 L 34.435108402326236,-0.750570908121842 L 34.435108402326215,-0.750595308121797 L 34.4351100023262,-0.750621208121733 L 34.43511360232617,-0.750650008121642 L 34.43512120232616,-0.750682208121562 L 34.43512410232615,-0.750707708121513 L 34.43513060232613,-0.75073240812144 L 34.43513500232611,-0.750755408121374 L 34.4351411023261,-0.750778608121319 L 34.43514950232607,-0.750801808121258 L 34.43515160232606,-0.750826308121182 L 34.435151402326056,-0.75085230812114 L 34.43515230232603,-0.750879308121067 L 34.43515970232601,-0.750900808121009 L 34.435161802326,-0.750927208120947 L 34.43516480232599,-0.75095700812086 L 34.43517230232596,-0.750985908120791 L 34.43518110232595,-0.751011308120726 L 34.43518660232592,-0.751031908120671 L 34.43519360232593,-0.751052108120609 L 34.435200502325905,-0.751073008120573 L 34.43520280232588,-0.751101208120486 L 34.43520530232586,-0.751119908120452 L 34.43520960232586,-0.75114090812039 L 34.435211802325846,-0.751158908120351 L 34.43520950232583,-0.751178508120308 L 34.43521410232582,-0.751211408120207 L 34.435214102325816,-0.751233808120157 L 34.43518840232582,-0.751243908120148 L 34.435161302325795,-0.751251408120158 L 34.43513710232581,-0.751250808120173 L 34.43511480232581,-0.751248508120187 L 34.43508710232581,-0.751251208120201 L 34.435063002325826,-0.751249208120232 L 34.435038902325815,-0.751251408120238 L 34.43502020232581,-0.751259508120236 L 34.4350030023258,-0.751266508120216 L 34.43498090232581,-0.751268808120224 L 34.43496550232581,-0.751269508120234 L 34.434959802325835,-0.751241508120309 L 34.434952802325846,-0.751216708120364 L 34.43494690232587,-0.751193408120438 L 34.43493920232588,-0.751170108120483 L 34.4349322023259,-0.751140408120575 L 34.4349236023259,-0.751111308120641 L 34.434921902325925,-0.751077208120723 L 34.434920102325954,-0.751048908120792 L 34.43492150232596,-0.751025208120856 L 34.43491650232599,-0.751003708120912 L 34.43491310232601,-0.75098020812097 L 34.43491290232601,-0.750954108121033 L 34.434911302326036,-0.750922408121103 L 34.434905002326055,-0.750894308121188 L 34.434897502326066,-0.750865508121257 L 34.43489200232608,-0.750840508121323 L 34.4348909023261,-0.750816708121378 L 34.43488580232612,-0.750788008121441 L 34.43488120232614,-0.75076200812153 L 34.43488030232616,-0.750735608121572 L 34.434873902326174,-0.75070790812166 L 34.43486840232619,-0.750676208121744 L 34.43486910232621,-0.750646808121802 L 34.434871702326234,-0.750622208121861 L 34.43486840232624,-0.750594108121944 L 34.43485910232625,-0.750572408121999 L 34.43484860232626,-0.750547208122061 L 34.43484250232629,-0.75052200812214 L 34.43486320232629,-0.750510908122146 L 34.4348869023263,-0.750500208122155 L 34.4349115023263,-0.750495908122152 L 34.43493920232629,-0.750489308122147 L 34.43496770232629,-0.750482608122153 L 34.4349937023263,-0.75047520812214 L 34.4350182023263,-0.750472208122147 L 34.435046102326304,-0.75046990812213 L 34.43507140232629,-0.750472908122098 L 34.43509120232629,-0.75047650812208 L 34.435090202326265,-0.750500908122027 L 34.435095702326265,-0.750521708121978 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.4953338023218,-0.746430308094037 L 34.4953465023218,-0.746414808094096 L 34.49535680232182,-0.746397208094125 L 34.495361802321824,-0.746375508094172 L 34.49538070232184,-0.74636860809418 L 34.49540330232185,-0.746373608094155 L 34.49542440232183,-0.746370708094125 L 34.495440302321846,-0.746348208094182 L 34.49544560232186,-0.746325008094229 L 34.49545980232187,-0.746305308094273 L 34.495470702321875,-0.746284308094324 L 34.4954763023219,-0.746262308094387 L 34.495475002321925,-0.746237008094426 L 34.49547220232193,-0.746217908094478 L 34.49547950232195,-0.746197308094529 L 34.495488802321944,-0.746181308094565 L 34.49549180232196,-0.746161908094618 L 34.49549900232197,-0.746142008094649 L 34.49550630232198,-0.746118408094695 L 34.495489502322,-0.746100108094761 L 34.495475702322004,-0.746086308094798 L 34.495456102322,-0.746077808094841 L 34.49544140232202,-0.746057208094892 L 34.49542020232204,-0.746050808094921 L 34.49541680232205,-0.746029508094972 L 34.49539510232205,-0.746032108094979 L 34.49537850232203,-0.746040908094959 L 34.49536040232204,-0.746042208094985 L 34.49534920232206,-0.746024408095028 L 34.49536540232206,-0.746002208095072 L 34.49538490232207,-0.745981608095122 L 34.4953866023221,-0.745957808095165 L 34.495396102322104,-0.745942108095201 L 34.49540270232212,-0.745916708095258 L 34.49541180232212,-0.74589710809531 L 34.49542590232213,-0.745873908095347 L 34.49544900232214,-0.745851108095388 L 34.49546810232215,-0.745842008095397 L 34.49548420232215,-0.745833308095409 L 34.49549650232217,-0.745816208095446 L 34.495503302322184,-0.745794908095477 L 34.49551320232219,-0.745777508095526 L 34.49551770232222,-0.745752808095601 L 34.49553590232221,-0.74573060809563 L 34.49555300232222,-0.745722908095639 L 34.49557290232223,-0.745711108095654 L 34.49558250232223,-0.745687108095695 L 34.49560210232224,-0.745678908095716 L 34.49562460232224,-0.745673608095713 L 34.49564490232224,-0.745673408095698 L 34.49566720232224,-0.745656408095724 L 34.495680202322255,-0.745640408095766 L 34.495689302322255,-0.74562400809579 L 34.495706202322275,-0.745607908095817 L 34.49571770232228,-0.745591208095865 L 34.495724802322286,-0.745570708095899 L 34.4957360023223,-0.745551308095928 L 34.495758502322325,-0.745532308095968 L 34.495778002322325,-0.745509408096014 L 34.49579360232232,-0.745496808096033 L 34.49580740232235,-0.745475508096077 L 34.49582410232235,-0.745463008096094 L 34.49584070232237,-0.745448908096111 L 34.49585720232237,-0.745435108096131 L 34.49587540232237,-0.745422808096162 L 34.49589150232237,-0.745409008096187 L 34.495902702322375,-0.745385308096239 L 34.4959220023224,-0.745362808096281 L 34.49593790232241,-0.745342708096315 L 34.495957202322415,-0.745330008096336 L 34.495977602322434,-0.745322508096343 L 34.495994402322424,-0.745314908096354 L 34.49601950232244,-0.745303008096356 L 34.49604540232241,-0.745310008096331 L 34.49606340232241,-0.7453167080963 L 34.496085802322405,-0.745316508096289 L 34.496116202322405,-0.745312608096289 L 34.4961382023224,-0.745322008096249 L 34.49615880232239,-0.745338008096198 L 34.496181902322384,-0.74534600809615 L 34.49620160232236,-0.745357508096133 L 34.49622010232236,-0.745377308096062 L 34.49623230232235,-0.74539570809601 L 34.496237702322325,-0.745413208095954 L 34.49623580232232,-0.745437208095898 L 34.49621750232231,-0.745451908095877 L 34.4961962023223,-0.745469608095836 L 34.49618000232231,-0.74548480809583 L 34.49617740232228,-0.745502908095777 L 34.496167402322264,-0.745523108095737 L 34.49615790232225,-0.745543208095692 L 34.49614470232226,-0.745556508095668 L 34.496128902322255,-0.745572808095653 L 34.49611870232222,-0.745599908095579 L 34.496123702322215,-0.74562180809552 L 34.49610200232222,-0.745629608095518 L 34.4960861023222,-0.745646408095481 L 34.49607270232219,-0.745669608095446 L 34.496064602322186,-0.745688508095397 L 34.49605250232217,-0.745710908095349 L 34.496040902322164,-0.745734908095295 L 34.49603810232215,-0.745756308095251 L 34.49602580232213,-0.745769908095229 L 34.496013202322125,-0.745787808095179 L 34.496004602322124,-0.745804008095151 L 34.495995202322106,-0.745830708095095 L 34.4959854023221,-0.74585470809505 L 34.49597240232206,-0.745880308094986 L 34.49595800232206,-0.74589520809497 L 34.49593910232207,-0.745907908094933 L 34.495928402322036,-0.745930008094894 L 34.49591780232203,-0.745947308094873 L 34.49590550232204,-0.745963308094838 L 34.49590360232202,-0.745985008094769 L 34.49590770232199,-0.746007508094718 L 34.49589640232198,-0.746032108094677 L 34.49588250232197,-0.746048608094634 L 34.49587600232196,-0.746071208094571 L 34.49587690232195,-0.74610050809451 L 34.49586280232193,-0.746126308094459 L 34.49584790232193,-0.746146108094417 L 34.49584020232192,-0.746167108094366 L 34.4958394023219,-0.746185708094315 L 34.49583600232188,-0.74621630809427 L 34.49583040232187,-0.746241508094204 L 34.49581860232185,-0.746264708094158 L 34.49580100232186,-0.746273008094131 L 34.49577840232184,-0.746280208094135 L 34.49576050232184,-0.74628430809414 L 34.495739702321856,-0.746287508094129 L 34.495710802321845,-0.746287608094162 L 34.49568330232185,-0.746285208094182 L 34.49566150232185,-0.746293308094182 L 34.495648802321845,-0.746307908094151 L 34.495638502321825,-0.746331008094114 L 34.49563020232182,-0.746353308094047 L 34.49561040232181,-0.746360808094045 L 34.49558640232182,-0.746365008094051 L 34.49558170232181,-0.746383008094011 L 34.49557540232179,-0.74640910809395 L 34.49556520232178,-0.746427208093913 L 34.49555730232176,-0.746444608093886 L 34.49554910232176,-0.746466208093825 L 34.49554500232174,-0.746486508093779 L 34.49552700232174,-0.74650190809375 L 34.495517602321726,-0.746519208093719 L 34.49549890232172,-0.746531508093709 L 34.4954882023217,-0.746551208093662 L 34.4954852023217,-0.746573208093608 L 34.49548060232169,-0.746592008093552 L 34.49546540232168,-0.746606008093537 L 34.49547130232171,-0.74654880809367 L 34.495448902321726,-0.746544608093706 L 34.49543070232171,-0.746539808093722 L 34.49541210232175,-0.74653230809375 L 34.495388402321744,-0.746524808093779 L 34.495369602321745,-0.746518808093807 L 34.49535170232176,-0.746516108093827 L 34.495327602321765,-0.746507608093875 L 34.49531950232177,-0.746490408093914 L 34.495314102321785,-0.746472808093959 L 34.49532580232181,-0.746450108094021 L 34.4953338023218,-0.746430308094037 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.49255810232294,-0.745111308099017 L 34.49257820232294,-0.745119208098976 L 34.492601102322936,-0.745123708098946 L 34.492623402322934,-0.745123608098939 L 34.492645102322925,-0.745114008098959 L 34.49267230232294,-0.745116808098932 L 34.49269150232292,-0.745124308098894 L 34.49271240232292,-0.745124108098883 L 34.49273200232292,-0.745130508098838 L 34.49275360232292,-0.745128608098855 L 34.49277460232292,-0.74512530809885 L 34.492797902322906,-0.745134608098808 L 34.49281800232291,-0.745143208098764 L 34.49283260232288,-0.74516010809871 L 34.492846302322874,-0.745172708098674 L 34.492860802322866,-0.745193308098614 L 34.49287160232284,-0.74522160809855 L 34.49287070232282,-0.745250508098464 L 34.4928668023228,-0.745278008098415 L 34.49287460232279,-0.745300608098349 L 34.49287890232278,-0.745318708098301 L 34.49286840232278,-0.745335208098268 L 34.49284700232277,-0.745346408098268 L 34.49282830232277,-0.745348608098264 L 34.49281130232277,-0.74536080809824 L 34.49278010232277,-0.745363308098258 L 34.49275460232276,-0.74537460809824 L 34.49273330232275,-0.745392708098203 L 34.49271770232276,-0.745403808098193 L 34.49270540232275,-0.745422408098153 L 34.49268130232274,-0.745431208098139 L 34.492656702322726,-0.74544420809814 L 34.49263350232272,-0.745456208098115 L 34.49261020232272,-0.745464408098102 L 34.492593702322715,-0.745477208098087 L 34.49257770232271,-0.745488408098071 L 34.492553302322705,-0.745494708098078 L 34.49252760232271,-0.745504608098082 L 34.492505002322716,-0.745511708098065 L 34.4924777023227,-0.745510608098089 L 34.49245920232271,-0.745510508098103 L 34.49243870232271,-0.745515808098102 L 34.4924113023227,-0.745519108098124 L 34.4923885023227,-0.745527308098104 L 34.4923721023227,-0.745544908098064 L 34.492354102322686,-0.745555008098057 L 34.492325002322694,-0.745561808098057 L 34.49229550232268,-0.745574808098048 L 34.49227540232268,-0.745592608098014 L 34.49225300232268,-0.745598308098003 L 34.492233902322674,-0.745603808098023 L 34.49222050232267,-0.74561790809799 L 34.49220140232268,-0.745618408097993 L 34.49217230232267,-0.745620208098015 L 34.49214890232267,-0.745637108097991 L 34.49211930232266,-0.745652608097976 L 34.492093902322665,-0.745662708097951 L 34.49207020232266,-0.745673808097962 L 34.492049202322654,-0.745685608097936 L 34.49202390232265,-0.745697208097927 L 34.491999802322646,-0.74570890809791 L 34.49197510232265,-0.745719108097898 L 34.491955802322636,-0.745734508097881 L 34.491942102322625,-0.745749008097848 L 34.49193450232262,-0.745765608097817 L 34.49193020232261,-0.745787908097761 L 34.4919139023226,-0.745796108097751 L 34.49193550232258,-0.745810608097708 L 34.49195410232257,-0.74582230809766 L 34.49196960232256,-0.745837908097609 L 34.49198990232255,-0.745847108097573 L 34.49201230232256,-0.745854708097542 L 34.49202930232254,-0.745865408097504 L 34.492042602322535,-0.745877808097466 L 34.49206020232252,-0.745887808097436 L 34.49207920232253,-0.745892908097399 L 34.492070602322514,-0.745913208097361 L 34.492053102322494,-0.745929908097343 L 34.49203510232249,-0.745950108097285 L 34.49202350232249,-0.745966108097274 L 34.492006402322474,-0.745987908097239 L 34.49198900232245,-0.746013108097175 L 34.491975502322454,-0.746031408097136 L 34.49196700232243,-0.746051108097091 L 34.491958902322416,-0.746068008097061 L 34.49193950232243,-0.746063808097082 L 34.49191590232243,-0.746058308097122 L 34.49188990232243,-0.746072208097092 L 34.49186070232243,-0.746077308097085 L 34.49183920232243,-0.746086208097096 L 34.49182640232243,-0.746103108097051 L 34.49181210232241,-0.746117608097027 L 34.49179430232242,-0.746103208097068 L 34.491773802322435,-0.746085908097125 L 34.491751402322436,-0.746073508097176 L 34.49172580232245,-0.746059308097231 L 34.49169960232246,-0.746040408097285 L 34.491680602322496,-0.746011108097379 L 34.49166890232253,-0.745987208097428 L 34.49166120232252,-0.745967708097486 L 34.491635902322535,-0.745948208097558 L 34.491612502322546,-0.745932308097608 L 34.49158890232258,-0.745913908097665 L 34.491570002322575,-0.745893408097732 L 34.49154980232259,-0.745874908097774 L 34.4915229023226,-0.745863108097829 L 34.49150020232261,-0.745847708097891 L 34.491480502322624,-0.745840508097917 L 34.49146300232263,-0.745818608097978 L 34.49145050232266,-0.745801408098027 L 34.49143600232267,-0.7457808080981 L 34.49142130232267,-0.745765008098126 L 34.49140420232268,-0.745751908098177 L 34.49139030232269,-0.74572950809823 L 34.491377902322725,-0.745712908098289 L 34.49136430232272,-0.745693708098336 L 34.49135080232274,-0.745673808098404 L 34.49133070232274,-0.745670508098434 L 34.49131250232275,-0.745652708098479 L 34.491295302322754,-0.745639308098508 L 34.49128600232278,-0.74562210809856 L 34.49127490232279,-0.745602408098626 L 34.4912575023228,-0.745583608098675 L 34.49124270232282,-0.745564508098723 L 34.49122970232283,-0.745551408098775 L 34.491214602322835,-0.745533808098824 L 34.49119770232286,-0.745516008098882 L 34.49118220232286,-0.745503208098918 L 34.49116170232288,-0.745486108098969 L 34.491142202322884,-0.745472208099024 L 34.4911251023229,-0.745460708099072 L 34.49110980232291,-0.745446008099113 L 34.49109320232292,-0.745425108099165 L 34.49107970232293,-0.745410008099207 L 34.49106480232294,-0.74539410809927 L 34.49104770232296,-0.745375308099327 L 34.49103500232296,-0.745362308099349 L 34.49102710232299,-0.745343408099407 L 34.491020502322996,-0.745326308099468 L 34.491010402323006,-0.745304508099499 L 34.49099490232301,-0.745283808099563 L 34.49098510232304,-0.745261708099636 L 34.49097390232305,-0.745244408099686 L 34.49099290232305,-0.745237908099694 L 34.49101470232304,-0.74525250809963 L 34.491032802323026,-0.745269408099597 L 34.49104440232301,-0.745289608099518 L 34.49105830232302,-0.745274408099562 L 34.491072902323026,-0.745260008099586 L 34.49109250232303,-0.745254708099576 L 34.49111600232302,-0.745249808099575 L 34.49113910232303,-0.745247408099569 L 34.49115690232303,-0.745239608099585 L 34.49117270232304,-0.74522320809961 L 34.49119170232305,-0.745208908099629 L 34.491210202323046,-0.745203308099628 L 34.491230402323055,-0.745191008099651 L 34.49125240232305,-0.745200008099614 L 34.49127690232304,-0.745205008099596 L 34.49130120232302,-0.745216008099542 L 34.491319902323035,-0.745214308099538 L 34.491342802323025,-0.745211808099526 L 34.491364802323034,-0.745201508099537 L 34.49138780232303,-0.745194008099543 L 34.49141270232303,-0.745192808099542 L 34.49143710232303,-0.745185408099538 L 34.49146240232304,-0.745177708099544 L 34.49148050232303,-0.74517730809953 L 34.49150160232304,-0.74517530809952 L 34.49151980232304,-0.745174008099521 L 34.49153760232303,-0.745177108099479 L 34.49155720232303,-0.745165308099509 L 34.491577602323034,-0.745161308099511 L 34.491600702323026,-0.745159708099494 L 34.49162160232303,-0.745160408099478 L 34.49164350232303,-0.745157108099464 L 34.491663102323024,-0.745151808099467 L 34.49168130232303,-0.745144808099475 L 34.491700202323024,-0.745143008099472 L 34.49172240232302,-0.745141408099466 L 34.491747402323035,-0.745135008099459 L 34.49176700232303,-0.745136008099441 L 34.49179030232302,-0.745138508099427 L 34.49181100232301,-0.745140308099402 L 34.491830902323,-0.745142608099388 L 34.491857102323024,-0.745140508099394 L 34.49187530232301,-0.745135608099383 L 34.491896602323,-0.745131908099368 L 34.49192110232302,-0.745135508099357 L 34.49195030232299,-0.745142208099325 L 34.49197160232299,-0.745150908099286 L 34.49198850232299,-0.745143908099274 L 34.492009202323,-0.745139208099293 L 34.49203100232299,-0.74514090809927 L 34.49205740232298,-0.745151508099224 L 34.49207700232298,-0.74514910809922 L 34.492094902322975,-0.745146408099206 L 34.49211480232297,-0.74514240809921 L 34.492133702322974,-0.745135408099218 L 34.492155002322974,-0.745138108099189 L 34.492176102322965,-0.745146308099159 L 34.49219460232296,-0.745149008099143 L 34.492218702322965,-0.745139508099161 L 34.49224410232297,-0.745144608099126 L 34.49226560232296,-0.745144908099115 L 34.49228940232294,-0.745146908099098 L 34.49230930232295,-0.745143908099094 L 34.49230790232297,-0.745122408099139 L 34.49231620232295,-0.745144108099081 L 34.49233640232296,-0.745141708099071 L 34.49235850232296,-0.745141508099061 L 34.492381802322946,-0.745146308099036 L 34.49240760232295,-0.745140808099031 L 34.49242690232295,-0.745132108099034 L 34.49244670232296,-0.745123408099051 L 34.49247110232295,-0.745126008099033 L 34.49249980232294,-0.745123708099014 L 34.492517402322946,-0.745113708099013 L 34.49253640232295,-0.745111508099023 L 34.49255810232294,-0.745111308099017 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.49411890232323,-0.744350108099889 L 34.49413190232321,-0.744377908099789 L 34.494139902323205,-0.744394408099761 L 34.49414040232319,-0.744427308099677 L 34.494121702323184,-0.744438108099671 L 34.49409400232318,-0.744445208099661 L 34.49407000232319,-0.744425908099719 L 34.4940561023232,-0.744409408099776 L 34.49403880232323,-0.744391708099827 L 34.49402540232324,-0.744372708099878 L 34.49402080232325,-0.744354608099929 L 34.49401290232326,-0.744333408099997 L 34.49400150232328,-0.744314508100043 L 34.4939924023233,-0.744292308100096 L 34.4939886023233,-0.744274108100153 L 34.493983402323316,-0.744250508100211 L 34.49397410232333,-0.744228908100269 L 34.49396410232335,-0.744209908100324 L 34.49395930232336,-0.744187408100378 L 34.49394890232337,-0.744158108100457 L 34.49393590232338,-0.744139608100511 L 34.493919902323405,-0.744116508100581 L 34.49391690232343,-0.744090908100633 L 34.49391440232344,-0.744063808100706 L 34.493902802323454,-0.744046408100762 L 34.49388920232346,-0.744032308100801 L 34.49388080232347,-0.744005408100868 L 34.49387090232349,-0.743985208100924 L 34.49386110232351,-0.743966408100963 L 34.493842302323515,-0.74395180810103 L 34.49382920232353,-0.74392990810109 L 34.49382240232355,-0.74391320810114 L 34.49381870232355,-0.743895508101178 L 34.49380510232357,-0.743878708101216 L 34.493796702323586,-0.743858808101288 L 34.4937886023236,-0.743829108101354 L 34.49377450232362,-0.743804708101426 L 34.49376630232362,-0.743776908101494 L 34.49375310232365,-0.743754608101572 L 34.493751302323666,-0.743729508101632 L 34.493753802323674,-0.743708908101669 L 34.4937539023237,-0.743682308101733 L 34.49375270232371,-0.743661708101785 L 34.493742902323724,-0.74364450810184 L 34.493740702323734,-0.743616008101914 L 34.49373850232375,-0.743585508101982 L 34.49373510232377,-0.743562308102048 L 34.49373650232378,-0.74354130810209 L 34.4937478023238,-0.743516108102149 L 34.49374850232382,-0.743490508102208 L 34.493750302323825,-0.743470108102267 L 34.493763002323846,-0.743441308102329 L 34.49376800232387,-0.743411508102381 L 34.49376750232388,-0.743391208102435 L 34.49378020232388,-0.743373108102473 L 34.493786302323876,-0.743354408102518 L 34.4937933023239,-0.743335808102565 L 34.493792902323925,-0.743305608102631 L 34.49378730232394,-0.743286008102692 L 34.493784502323955,-0.74325890810275 L 34.49379010232398,-0.743229208102812 L 34.493789802323995,-0.743204808102885 L 34.493783702324,-0.743180308102939 L 34.49378450232402,-0.743150008103022 L 34.49377050232404,-0.743120208103093 L 34.49375710232407,-0.743095408103172 L 34.49374730232409,-0.743064608103235 L 34.4937358023241,-0.743035508103328 L 34.493725102324106,-0.743010108103396 L 34.49371210232414,-0.742985808103467 L 34.49372460232414,-0.742965308103499 L 34.493746002324144,-0.7429592081035 L 34.49377570232413,-0.742960608103473 L 34.49379240232414,-0.742948608103496 L 34.493810002324146,-0.742944208103498 L 34.49382860232415,-0.742943408103493 L 34.493847102324146,-0.742945808103468 L 34.49386510232414,-0.742943408103461 L 34.49388360232413,-0.742941008103464 L 34.49391440232413,-0.742943208103439 L 34.49393780232412,-0.742945808103411 L 34.493959802324135,-0.742942908103404 L 34.493979402324136,-0.742927508103439 L 34.49400080232415,-0.742919508103441 L 34.49402910232414,-0.742918608103425 L 34.49404720232413,-0.742918608103413 L 34.49407230232414,-0.742914808103413 L 34.494093202324144,-0.742902808103421 L 34.494113702324135,-0.742888608103446 L 34.49412430232415,-0.742864308103488 L 34.49414540232415,-0.74285980810349 L 34.494160702324145,-0.742876708103441 L 34.49417080232413,-0.74290240810338 L 34.49417890232412,-0.742921008103328 L 34.49419170232411,-0.74294090810326 L 34.49420590232409,-0.74295650810322 L 34.49421290232407,-0.742973508103166 L 34.49421690232406,-0.742994708103114 L 34.49421530232405,-0.743016408103069 L 34.49421680232404,-0.743034808103013 L 34.494231702324036,-0.743045008102982 L 34.49424730232402,-0.74306590810293 L 34.494256602324,-0.743087908102866 L 34.49426460232399,-0.743114508102805 L 34.494267802323975,-0.743139208102728 L 34.49427130232396,-0.743175808102651 L 34.49428130232392,-0.743204108102575 L 34.494286102323905,-0.743235808102485 L 34.4942891023239,-0.743254808102454 L 34.49430610232388,-0.743277408102371 L 34.494313002323864,-0.743297908102316 L 34.494323102323854,-0.743322208102253 L 34.49433450232383,-0.743349908102183 L 34.49434610232382,-0.743372908102124 L 34.4943588023238,-0.743391008102062 L 34.4943740023238,-0.743404308102036 L 34.49440810232378,-0.743419708101968 L 34.494413102323776,-0.743443908101903 L 34.49441970232375,-0.743460808101857 L 34.49443650232374,-0.743485508101792 L 34.49445750232373,-0.743499008101727 L 34.4944680023237,-0.74352150810167 L 34.4944741023237,-0.74354230810163 L 34.49447810232368,-0.743564308101556 L 34.49448200232366,-0.74360230810147 L 34.49449760232365,-0.743623608101415 L 34.494511802323636,-0.743636208101367 L 34.49451980232361,-0.743669608101285 L 34.49451640232361,-0.743700908101208 L 34.494519002323585,-0.743729308101137 L 34.49452740232356,-0.743750208101089 L 34.49453700232355,-0.743776808101012 L 34.49453970232353,-0.743806308100933 L 34.49454170232351,-0.743832708100879 L 34.49455710232348,-0.743855308100812 L 34.494549902323485,-0.74387760810076 L 34.49453260232348,-0.74388800810075 L 34.49451310232346,-0.743902508100727 L 34.49448370232347,-0.74391340810071 L 34.49446210232346,-0.743928108100686 L 34.49444380232346,-0.743935508100684 L 34.49442500232345,-0.743944908100675 L 34.49439960232345,-0.743964308100645 L 34.49437800232344,-0.743980108100613 L 34.49435090232343,-0.743996908100608 L 34.49432920232342,-0.744015008100559 L 34.4943259023234,-0.744036008100515 L 34.4943278023234,-0.74406540810044 L 34.494333402323385,-0.744083108100391 L 34.49432430232336,-0.744105908100343 L 34.49431610232334,-0.744136308100285 L 34.494309102323335,-0.744168308100202 L 34.49429950232331,-0.744193008100154 L 34.494286702323315,-0.744211608100105 L 34.494302902323284,-0.744235308100057 L 34.49432410232328,-0.744236608100029 L 34.49433970232328,-0.744247308099986 L 34.49432550232327,-0.744262108099965 L 34.49430780232327,-0.744265508099967 L 34.49428700232327,-0.744262308099984 L 34.49426780232328,-0.74426940809999 L 34.49424150232326,-0.744281808099971 L 34.494214802323256,-0.744295808099959 L 34.49419490232325,-0.744304508099947 L 34.494173602323244,-0.744314708099932 L 34.49414470232325,-0.744321308099934 L 34.49412530232324,-0.744327008099924 L 34.49411890232323,-0.744350108099889 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.496123202323595,-0.743406608100908 L 34.4961046023236,-0.743409108100918 L 34.496086502323585,-0.743414108100915 L 34.496062702323584,-0.743424908100914 L 34.49604190232359,-0.743435408100889 L 34.49602650232358,-0.743448008100877 L 34.49600280232357,-0.743461408100858 L 34.49598240232358,-0.743463308100865 L 34.49596590232357,-0.743472008100851 L 34.49594620232356,-0.743477308100848 L 34.495926202323574,-0.743465408100887 L 34.49590430232358,-0.743452708100931 L 34.495881502323584,-0.743458808100947 L 34.49586400232359,-0.743450108100975 L 34.49585780232362,-0.743422008101042 L 34.495844502323635,-0.743389708101142 L 34.495826102323655,-0.743362908101208 L 34.49580970232366,-0.743343108101265 L 34.49579820232368,-0.743326008101307 L 34.495789902323686,-0.743304008101378 L 34.4957861023237,-0.743285508101421 L 34.49578100232372,-0.743262908101471 L 34.49577410232374,-0.743239508101549 L 34.49576510232374,-0.743222008101589 L 34.49575200232376,-0.743201408101654 L 34.49573780232377,-0.743188108101688 L 34.495735702323785,-0.743163108101758 L 34.49574500232379,-0.743145708101791 L 34.49575450232383,-0.743105408101874 L 34.49574790232384,-0.743081408101935 L 34.49573460232385,-0.743058708102005 L 34.495720002323864,-0.743034608102074 L 34.49571100232388,-0.743011408102132 L 34.4957072023239,-0.74298100810221 L 34.495697902323926,-0.742954908102287 L 34.495678602323935,-0.742931508102364 L 34.495660202323954,-0.742906008102424 L 34.49564910232399,-0.742876708102518 L 34.495636002324,-0.742845108102579 L 34.495626402324014,-0.742816108102676 L 34.49561680232402,-0.742792108102726 L 34.49561200232405,-0.742762008102809 L 34.49560510232406,-0.742736808102873 L 34.49559400232408,-0.742714408102941 L 34.495585902324095,-0.742691308102987 L 34.495574402324124,-0.74266690810307 L 34.49556000232413,-0.742637508103147 L 34.49554710232414,-0.742619808103203 L 34.495535802324156,-0.742598608103248 L 34.49553300232418,-0.742578508103313 L 34.4955311023242,-0.742555408103362 L 34.49552800232421,-0.742519008103461 L 34.49553260232422,-0.742497508103501 L 34.49555890232422,-0.742493608103488 L 34.49557700232422,-0.742488908103501 L 34.49559510232422,-0.7424774081035 L 34.49561820232423,-0.742462208103539 L 34.495637902324226,-0.74245080810355 L 34.495659602324245,-0.742439308103559 L 34.495690002324245,-0.742429708103568 L 34.49570780232424,-0.742425508103574 L 34.49573490232425,-0.742416308103563 L 34.49576260232426,-0.742402408103582 L 34.49578600232426,-0.742390108103611 L 34.49580310232427,-0.742377108103626 L 34.49582610232428,-0.74236880810364 L 34.49584970232427,-0.742360208103643 L 34.49587350232428,-0.74235410810365 L 34.49589080232427,-0.742346208103636 L 34.495912002324275,-0.742333908103659 L 34.49593500232427,-0.742343708103627 L 34.495959702324264,-0.742357808103565 L 34.495977502324244,-0.742374508103531 L 34.49599120232421,-0.742400508103454 L 34.49600730232421,-0.742430408103364 L 34.49601670232419,-0.742457008103308 L 34.496022702324176,-0.742479508103232 L 34.49603200232416,-0.742499408103181 L 34.49603920232415,-0.742525208103111 L 34.49604620232413,-0.742549108103065 L 34.49605670232412,-0.742568408102994 L 34.496067202324106,-0.742587508102949 L 34.49608010232409,-0.742603908102896 L 34.496091202324074,-0.742629108102831 L 34.496095402324066,-0.742647308102783 L 34.49610790232405,-0.742669708102723 L 34.496128702324036,-0.742683708102675 L 34.496150602324036,-0.742683908102669 L 34.49616840232403,-0.742679408102657 L 34.496193102324035,-0.742675608102639 L 34.49621030232403,-0.742689408102607 L 34.496224902324,-0.74271150810255 L 34.496235702324,-0.742732608102479 L 34.49624860232398,-0.742759808102415 L 34.496261102323956,-0.742787108102346 L 34.49627490232394,-0.742814708102256 L 34.49628020232392,-0.742845708102184 L 34.49625820232391,-0.742851608102181 L 34.496235502323906,-0.742855208102186 L 34.49621760232391,-0.742870708102163 L 34.49620290232391,-0.742884008102139 L 34.4961853023239,-0.742890408102136 L 34.49616430232389,-0.74289580810214 L 34.49615520232388,-0.742918108102096 L 34.49617010232387,-0.742945208102003 L 34.49618810232386,-0.742949808101984 L 34.496187902323854,-0.742968708101951 L 34.49619570232384,-0.742990108101881 L 34.49620230232382,-0.743013708101825 L 34.49621340232381,-0.743034808101764 L 34.496221202323795,-0.743056308101701 L 34.49623120232378,-0.743081908101644 L 34.496244002323756,-0.743110508101558 L 34.496253202323736,-0.743132008101494 L 34.49626660232373,-0.743150308101452 L 34.49633070232364,-0.743286208101074 L 34.49631130232364,-0.743298808101065 L 34.49629230232363,-0.743312408101036 L 34.49627240232364,-0.743323408101023 L 34.49625050232362,-0.743331708101005 L 34.496232402323606,-0.743345708100992 L 34.49620960232362,-0.74335890810097 L 34.49618980232361,-0.743368708100962 L 34.4961658023236,-0.743378008100957 L 34.49614440232359,-0.743395908100923 L 34.496123202323595,-0.743406608100908 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.49340600232453,-0.742404208105063 L 34.49339440232454,-0.74238330810513 L 34.49338550232456,-0.742363808105183 L 34.49337580232457,-0.742339508105244 L 34.493369102324586,-0.742317108105307 L 34.493361602324605,-0.74229220810538 L 34.49335390232463,-0.742275808105414 L 34.49333430232463,-0.742248008105494 L 34.49331810232465,-0.742232908105545 L 34.49329880232467,-0.742206908105612 L 34.493277202324684,-0.742188708105669 L 34.49325380232469,-0.742174908105723 L 34.4932352023247,-0.742164508105749 L 34.4932162023247,-0.742155208105797 L 34.49319500232471,-0.742146208105831 L 34.49318040232473,-0.742117808105909 L 34.49316230232475,-0.742095008105964 L 34.49315120232475,-0.74206800810604 L 34.493127502324775,-0.742053308106101 L 34.49310960232479,-0.742043608106128 L 34.493090202324794,-0.742036908106167 L 34.49306940232482,-0.742027708106205 L 34.49307030232481,-0.74200820810624 L 34.49305750232483,-0.741992408106291 L 34.493047402324834,-0.741974008106334 L 34.49303980232485,-0.741955308106394 L 34.49302900232486,-0.741932008106456 L 34.493016102324894,-0.741908408106524 L 34.49301060232488,-0.741889008106576 L 34.493006602324904,-0.74186660810664 L 34.493003902324915,-0.741845108106678 L 34.492999502324935,-0.74182230810673 L 34.49298530232495,-0.741799508106807 L 34.492969002324955,-0.741788208106853 L 34.492963702324964,-0.7417703081069 L 34.49295590232499,-0.74174760810694 L 34.492943502325,-0.741725608107017 L 34.49293660232501,-0.741701908107081 L 34.49292650232503,-0.741683308107125 L 34.492915902325045,-0.741663408107179 L 34.49290300232506,-0.741640808107231 L 34.49289370232508,-0.741622108107307 L 34.49288290232508,-0.741604608107336 L 34.49287380232509,-0.741586508107399 L 34.49287020232513,-0.74156040810747 L 34.49286140232514,-0.741535808107521 L 34.49284990232514,-0.741514208107586 L 34.49284690232516,-0.741494608107633 L 34.492837702325176,-0.741470108107703 L 34.492823002325196,-0.741454208107744 L 34.49281510232521,-0.741436908107804 L 34.49280760232519,-0.741418008107848 L 34.49279250232523,-0.741395708107923 L 34.49278290232523,-0.741373408107973 L 34.49276520232525,-0.741351708108036 L 34.492767402325256,-0.741327308108095 L 34.49276030232528,-0.741310108108145 L 34.4927504023253,-0.741289808108195 L 34.49274400232531,-0.741270608108244 L 34.492736202325325,-0.741244408108311 L 34.49272680232534,-0.741227608108364 L 34.49273220232534,-0.74120530810842 L 34.49274800232536,-0.741189508108436 L 34.49275400232536,-0.741171208108487 L 34.49274550232538,-0.74114760810855 L 34.49273320232539,-0.741131808108595 L 34.492721802325406,-0.741115808108642 L 34.492713802325426,-0.741088908108708 L 34.49269550232543,-0.741077508108735 L 34.492670202325435,-0.741078808108771 L 34.49265730232543,-0.741066208108804 L 34.49264410232546,-0.741042308108856 L 34.49264050232547,-0.741024608108909 L 34.49263600232548,-0.741004808108953 L 34.4926323023255,-0.740985008109008 L 34.49261580232551,-0.740966208109076 L 34.492606202325526,-0.740950408109126 L 34.49259290232555,-0.740933408109164 L 34.49258230232555,-0.740912008109221 L 34.49258130232556,-0.740884508109292 L 34.492571602325576,-0.740863008109344 L 34.49255400232559,-0.740843408109399 L 34.49256810232559,-0.740824608109444 L 34.49258170232562,-0.74080850810947 L 34.49260170232563,-0.740789508109512 L 34.49260540232565,-0.740767508109562 L 34.49261830232564,-0.740746908109601 L 34.49262260232565,-0.740729108109646 L 34.49263530232567,-0.740714908109671 L 34.49264520232568,-0.740698108109709 L 34.49264380232569,-0.74067340810977 L 34.492645802325704,-0.740653908109817 L 34.49265850232571,-0.740625808109883 L 34.492664502325724,-0.740604908109924 L 34.49267670232573,-0.740582808109965 L 34.492687502325765,-0.740557508110019 L 34.49270330232577,-0.740535308110052 L 34.49272100232578,-0.740512308110101 L 34.49272610232579,-0.740494708110139 L 34.49273860232581,-0.74047110811021 L 34.492752402325806,-0.740458408110218 L 34.49277610232581,-0.740457308110206 L 34.492799502325816,-0.740448208110208 L 34.492822402325814,-0.740442808110214 L 34.49284580232581,-0.740439908110214 L 34.49288070232581,-0.740437808110189 L 34.492899702325815,-0.740436808110185 L 34.492919402325796,-0.74043500811017 L 34.492950902325795,-0.740433008110153 L 34.49296870232581,-0.740422708110172 L 34.492992702325814,-0.740409008110186 L 34.49300940232581,-0.740399908110195 L 34.49302800232583,-0.7403944081102 L 34.493048702325815,-0.740394708110181 L 34.49307560232581,-0.740407008110146 L 34.49308980232579,-0.740422408110102 L 34.493101702325774,-0.740442508110034 L 34.49312470232576,-0.740465108109973 L 34.49313450232574,-0.740487908109908 L 34.493148902325736,-0.740506608109865 L 34.49316310232572,-0.740520808109795 L 34.4931844023257,-0.740539608109751 L 34.493196502325695,-0.740558308109697 L 34.49319810232567,-0.74058930810962 L 34.49319930232567,-0.740615708109549 L 34.49320350232565,-0.740646208109471 L 34.493204602325626,-0.740664808109432 L 34.49321630232561,-0.740687608109378 L 34.4932345023256,-0.740704408109311 L 34.493253902325584,-0.740715808109269 L 34.493270502325586,-0.74072560810923 L 34.49328190232556,-0.74075240810917 L 34.49329230232556,-0.740767208109126 L 34.49330620232554,-0.740784008109073 L 34.49332920232553,-0.740791508109041 L 34.493346102325525,-0.740801108108998 L 34.493361702325515,-0.740817208108966 L 34.4933799023255,-0.740831608108911 L 34.4934071023255,-0.740848908108861 L 34.49342240232548,-0.740866408108792 L 34.49344260232548,-0.740880208108757 L 34.49345910232547,-0.740891708108711 L 34.49346160232545,-0.740913308108668 L 34.493467402325436,-0.740935208108601 L 34.4934741023254,-0.740961308108548 L 34.49349590232541,-0.740977708108497 L 34.49350760232539,-0.741000708108424 L 34.49351240232538,-0.741019608108378 L 34.49351970232536,-0.741041608108315 L 34.49353610232534,-0.741064208108247 L 34.493538702325324,-0.74109580810818 L 34.493546702325304,-0.741122608108105 L 34.493567102325294,-0.741130008108079 L 34.49358900232527,-0.741142108108028 L 34.49360480232527,-0.741160708107978 L 34.493625002325246,-0.741182908107905 L 34.493639702325254,-0.741201508107856 L 34.49365150232522,-0.741223508107789 L 34.49366330232522,-0.741241508107738 L 34.49367230232521,-0.741257108107701 L 34.493682402325184,-0.74127490810764 L 34.493690002325195,-0.741295708107579 L 34.49369400232518,-0.741317108107542 L 34.49369940232514,-0.741348308107444 L 34.493713802325125,-0.741374808107388 L 34.49372420232515,-0.741393108107328 L 34.493729102325105,-0.741415108107274 L 34.49373360232508,-0.741450408107184 L 34.493755402325064,-0.74146130810714 L 34.49375900232505,-0.741480008107097 L 34.49376410232504,-0.741506608107033 L 34.49376700232502,-0.741531408106971 L 34.493766002325025,-0.741553408106912 L 34.49377540232499,-0.741578508106845 L 34.49378930232498,-0.741603608106771 L 34.49380550232495,-0.741631908106701 L 34.493814002324946,-0.74165770810664 L 34.49382290232492,-0.741682908106567 L 34.493824702324915,-0.741703208106516 L 34.493808402324916,-0.74171460810649 L 34.49380310232491,-0.741733008106461 L 34.493809302324884,-0.741752508106409 L 34.49382230232487,-0.741770608106353 L 34.49383980232488,-0.741757608106355 L 34.49384960232485,-0.741773008106335 L 34.49386460232486,-0.741785808106288 L 34.493873502324846,-0.741804608106234 L 34.49387460232482,-0.74182360810619 L 34.49387350232482,-0.741847508106138 L 34.49387140232481,-0.741872008106068 L 34.49387710232478,-0.741906408105979 L 34.49389140232477,-0.741925608105936 L 34.493902302324756,-0.741944708105872 L 34.49390950232473,-0.74196600810583 L 34.49391530232472,-0.741990608105756 L 34.49391810232472,-0.742016208105694 L 34.49393460232471,-0.74202860810566 L 34.493951502324705,-0.742017708105665 L 34.493949302324694,-0.742035708105627 L 34.493936702324675,-0.742055608105591 L 34.49392310232468,-0.742077608105525 L 34.49391100232466,-0.742095108105501 L 34.493902202324655,-0.742117108105464 L 34.49390190232463,-0.74213630810541 L 34.49392260232461,-0.742160408105339 L 34.493910502324596,-0.742184008105282 L 34.49388170232459,-0.742201408105273 L 34.49386660232458,-0.742218508105232 L 34.49385180232458,-0.742239508105197 L 34.49382470232456,-0.742254408105175 L 34.49381610232455,-0.742276308105122 L 34.49380240232454,-0.742299508105068 L 34.49378830232454,-0.74231270810506 L 34.49377170232453,-0.742323708105045 L 34.493751402324534,-0.742334608105029 L 34.49371630232453,-0.742353408104991 L 34.49370220232451,-0.742371008104963 L 34.49368920232451,-0.742390108104921 L 34.493660702324505,-0.742400508104918 L 34.4936306023245,-0.742403708104923 L 34.4936126023245,-0.742415308104909 L 34.49359250232449,-0.742420708104916 L 34.49357460232449,-0.742431408104887 L 34.493557002324486,-0.742443908104863 L 34.49353690232449,-0.742451308104868 L 34.49351660232448,-0.74245040810488 L 34.49349530232449,-0.742451408104894 L 34.49347280232449,-0.742447908104928 L 34.4934522023245,-0.742432208104959 L 34.49342620232453,-0.742415108105028 L 34.49340600232453,-0.742404208105063 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.0014008887992152097\" opacity=\"0.6\" d=\"M 34.496907302324466,-0.741859808104177 L 34.49689910232449,-0.741833308104259 L 34.496895002324514,-0.741801708104339 L 34.496888702324505,-0.741780208104399 L 34.49687420232452,-0.741761608104457 L 34.49686370232453,-0.741746908104489 L 34.49686680232453,-0.741728908104522 L 34.49685980232456,-0.741712108104584 L 34.49685060232458,-0.741693408104642 L 34.496834202324585,-0.741669508104694 L 34.496828302324595,-0.741648108104756 L 34.496822702324614,-0.741630508104807 L 34.49680680232462,-0.741619508104831 L 34.496787602324616,-0.741611908104868 L 34.49676790232464,-0.74159600810493 L 34.49675590232465,-0.741577908104983 L 34.49674950232466,-0.741559708105029 L 34.49674610232468,-0.741540008105068 L 34.49674190232469,-0.741519808105125 L 34.49673570232472,-0.74150290810516 L 34.496727802324706,-0.741486708105208 L 34.49672820232472,-0.741466508105261 L 34.496723602324735,-0.741448008105302 L 34.49671580232474,-0.741429108105354 L 34.496707902324765,-0.741406308105426 L 34.49671820232478,-0.741389808105462 L 34.496710802324785,-0.741367308105525 L 34.4967028023248,-0.741346708105558 L 34.49669680232482,-0.741328308105622 L 34.49669140232484,-0.741305008105672 L 34.49668720232484,-0.741284708105737 L 34.49668500232485,-0.74126440810579 L 34.49667650232487,-0.741247908105824 L 34.49666980232488,-0.741227308105881 L 34.49666220232489,-0.741201808105936 L 34.496653502324904,-0.741181608106005 L 34.49664690232492,-0.741164808106056 L 34.49663730232493,-0.741147808106103 L 34.496632702324945,-0.74112920810614 L 34.496626002324966,-0.7411068081062 L 34.496618802324974,-0.741083008106275 L 34.49661330232499,-0.741065208106306 L 34.496612202325,-0.741047008106352 L 34.49660900232501,-0.741028908106402 L 34.496601302325026,-0.741011008106444 L 34.49659370232502,-0.740991508106501 L 34.496584302325054,-0.740971608106545 L 34.49657800232505,-0.740947508106622 L 34.496571802325064,-0.74092500810668 L 34.496562602325085,-0.740904908106747 L 34.49655650232509,-0.740877608106806 L 34.49654990232512,-0.740853408106863 L 34.49653830232514,-0.740834908106923 L 34.496530702325146,-0.74081480810696 L 34.49651680232517,-0.740800008107013 L 34.49651090232517,-0.740775208107075 L 34.49652870232518,-0.740764908107084 L 34.49655440232519,-0.740762108107077 L 34.49657390232517,-0.740780408107031 L 34.49658990232515,-0.740805808106966 L 34.49660420232514,-0.740828808106892 L 34.49661780232512,-0.740852208106827 L 34.49662730232509,-0.740880308106752 L 34.49663240232508,-0.740910008106668 L 34.49664010232506,-0.74093110810662 L 34.49664720232506,-0.740953808106564 L 34.49665040232505,-0.740973408106518 L 34.49666670232504,-0.740982308106491 L 34.49669010232505,-0.740974708106499 L 34.49670970232501,-0.740988308106433 L 34.49671770232501,-0.741013008106369 L 34.49672720232499,-0.741036608106307 L 34.49673960232498,-0.741057208106249 L 34.49675120232496,-0.741078508106191 L 34.49675940232496,-0.741101808106126 L 34.49677260232494,-0.741118408106078 L 34.496774902324916,-0.74113930810602 L 34.496758402324915,-0.741160908105979 L 34.4967772023249,-0.741155708105983 L 34.49679590232491,-0.741160308105969 L 34.496810002324885,-0.741181308105894 L 34.496822402324874,-0.741199208105853 L 34.496831302324864,-0.741216708105812 L 34.49684350232485,-0.741233208105752 L 34.49685520232484,-0.741249608105718 L 34.49686690232484,-0.741265308105676 L 34.496879402324815,-0.741284208105597 L 34.496889502324805,-0.741305608105553 L 34.496900702324794,-0.741324608105503 L 34.496908402324785,-0.741345208105448 L 34.496915202324764,-0.741364108105387 L 34.49692550232475,-0.741388208105327 L 34.49693530232473,-0.741410508105273 L 34.496933202324726,-0.741429308105214 L 34.4969414023247,-0.74145140810516 L 34.496956902324705,-0.741461508105117 L 34.49697040232469,-0.741478808105071 L 34.49698180232466,-0.741496908105031 L 34.49698530232465,-0.741518608104974 L 34.49699500232464,-0.741534208104923 L 34.49700190232464,-0.74155650810487 L 34.49700990232463,-0.741573808104821 L 34.497018602324616,-0.741595508104763 L 34.49702660232458,-0.741618708104705 L 34.49702510232458,-0.74164070810466 L 34.49702620232456,-0.741663208104596 L 34.497030302324546,-0.741687008104532 L 34.49703700232453,-0.741703708104488 L 34.49704520232452,-0.741731508104423 L 34.497053602324506,-0.741754808104352 L 34.49704060232449,-0.741776508104313 L 34.49705220232449,-0.741796708104248 L 34.49705980232448,-0.741816108104199 L 34.49706910232445,-0.741836808104147 L 34.49707830232444,-0.741854908104107 L 34.49705730232445,-0.741861108104094 L 34.49704620232443,-0.741883308104046 L 34.49702950232441,-0.741891008104037 L 34.49700750232443,-0.741898008104026 L 34.496985602324415,-0.741903208104045 L 34.49696430232443,-0.741908708104045 L 34.49694630232442,-0.741918608104026 L 34.49692840232442,-0.741926908104015 L 34.49691560232443,-0.741906908104077 L 34.49691560232444,-0.741885908104127 L 34.496907302324466,-0.741859808104177 z\" /></g></g></svg>"
|
||
],
|
||
"text/plain": [
|
||
"<MULTIPOLYGON (((34.497 -0.755, 34.497 -0.755, 34.497 -0.755, 34.497 -0.755,...>"
|
||
]
|
||
},
|
||
"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
|
||
}
|