diff --git a/laravel_app/app/Models/Project.php b/laravel_app/app/Models/Project.php index 06a3f2e..544de01 100644 --- a/laravel_app/app/Models/Project.php +++ b/laravel_app/app/Models/Project.php @@ -278,9 +278,9 @@ public function startDownload(Carbon $date) public function schedule() { - if ($this->shouldSchedule()) { +// if ($this->shouldSchedule()) { $this->scheduleReport(); - } +// } } diff --git a/python_app/planet_download.ipynb b/python_app/planet_download.ipynb index de7b61d..3944eb4 100644 --- a/python_app/planet_download.ipynb +++ b/python_app/planet_download.ipynb @@ -29,12 +29,15 @@ "from osgeo import gdal\n", "\n", "from sentinelhub import MimeType, CRS, BBox, SentinelHubRequest, SentinelHubDownloadClient, \\\n", - " DataCollection, bbox_to_dimensions, DownloadRequest, SHConfig, BBoxSplitter, read_data\n", + " DataCollection, bbox_to_dimensions, DownloadRequest, SHConfig, BBoxSplitter, read_data, Geometry\n", "\n", "config = SHConfig()\n", "\n", "import time\n", - "import shutil" + "import shutil\n", + "\n", + "import geopandas as gpd\n", + "from shapely.geometry import MultiLineString, MultiPolygon, Polygon, box, shape\n" ] }, { @@ -44,7 +47,7 @@ "metadata": {}, "outputs": [], "source": [ - "#pip install pipreqs" + "# pip install geopandas" ] }, { @@ -114,7 +117,7 @@ "outputs": [], "source": [ "# Adjust the number of days needed\n", - "days = 400 #change back to 28 which is the default. 3 years is 1095 days." + "days = 7 #change back to 28 which is the default. 3 years is 1095 days." ] }, { @@ -150,6 +153,7 @@ "BASE_PATH_SINGLE_IMAGES = Path(BASE_PATH / 'single_images')\n", "folder_for_merged_tifs = str(BASE_PATH / 'merged_tif')\n", "folder_for_virtual_raster = str(BASE_PATH / 'merged_virtual')\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", @@ -235,9 +239,10 @@ "\n", " # download data chemba west with multiple threads\n", " data = SentinelHubDownloadClient(config=config).download(list_of_requests, max_threads=15)\n", - " print(f' Image downloaded for ' +slot)\n", + " print(f' Image downloaded for ' +slot + ' and bbox ' + str(bbox))\n", " \n", " time.sleep(.1)\n", + " \n", "\n", "def merge_files(slot):\n", " \n", @@ -269,13 +274,13 @@ "text": [ "Monthly time windows:\n", "\n", - "2023-02-07\n", - "2023-02-08\n", - "2023-02-09\n", - "...\n", - "2024-03-10\n", - "2024-03-11\n", - "2024-03-12\n" + "2024-04-30\n", + "2024-05-01\n", + "2024-05-02\n", + "2024-05-03\n", + "2024-05-04\n", + "2024-05-05\n", + "2024-05-06\n" ] } ], @@ -317,854 +322,1126 @@ { "cell_type": "code", "execution_count": 12, - "id": "7c0f8f0e-b1bc-4b5a-939d-e4358a485c06", + "id": "c803e373-2567-4233-af7d-0d2d6f7d4f8e", "metadata": {}, "outputs": [], "source": [ - "if project == 'chemba':\n", - " chosen_area = [[34.9460, -17.3500, 34.9839, -17.3110], [34.8830, -17.3516, 34.9380, -17.2917]]\n", - "\n", - "if project == 'chemba_test_8b':\n", - " chosen_area = [[34.946, -17.3516, 34.938, -17.2917], [34.883, -17.3516, 34.938, -17.2917]]\n", - "\n", - "if project == 'xinavane':\n", - " chosen_area = [[32.6790, -25.0333, 32.7453, -25.0235], [32.6213, -25.0647, 32.6284, -25.0570]]" + "geo_json = gpd.read_file(str(geojson_file))" ] }, { "cell_type": "code", "execution_count": 13, - "id": "6c02d7de-cddf-4fc3-8d23-8431415d07b8", + "id": "dc24d54e-2272-4f30-bcf5-4d8fc381915c", + "metadata": {}, + "outputs": [], + "source": [ + "geometries = [Geometry(geometry, crs=CRS.WGS84) for geometry in geo_json.geometry]" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "id": "cd071b42-d0cd-4e54-8f88-ad1a339748e3", + "metadata": {}, + "outputs": [], + "source": [ + "shapely_geometries = [geometry.geometry for geometry in geometries]" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "id": "301d12e4-e47a-4034-aec0-aa5673e64935", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - " Image downloaded for 2023-02-07\n", - " Image downloaded for 2023-02-07\n", - " Image downloaded for 2023-02-08\n", - " Image downloaded for 2023-02-08\n", - " Image downloaded for 2023-02-09\n", - " Image downloaded for 2023-02-09\n", - " Image downloaded for 2023-02-10\n", - " Image downloaded for 2023-02-10\n", - " Image downloaded for 2023-02-11\n", - " Image downloaded for 2023-02-11\n", - " Image downloaded for 2023-02-12\n", - " Image downloaded for 2023-02-12\n", - " Image downloaded for 2023-02-13\n", - " Image downloaded for 2023-02-13\n", - " Image downloaded for 2023-02-14\n", - " Image downloaded for 2023-02-14\n", - " Image downloaded for 2023-02-15\n", - " Image downloaded for 2023-02-15\n", - " Image downloaded for 2023-02-16\n", - " Image downloaded for 2023-02-16\n", - " Image downloaded for 2023-02-17\n", - " Image downloaded for 2023-02-17\n", - " Image downloaded for 2023-02-18\n", - " Image downloaded for 2023-02-18\n", - " Image downloaded for 2023-02-19\n", - " Image downloaded for 2023-02-19\n", - " Image downloaded for 2023-02-20\n", - " Image downloaded for 2023-02-20\n", - " Image downloaded for 2023-02-21\n", - " Image downloaded for 2023-02-21\n", - " Image downloaded for 2023-02-22\n", - " Image downloaded for 2023-02-22\n", - " Image downloaded for 2023-02-23\n", - " Image downloaded for 2023-02-23\n", - " Image downloaded for 2023-02-24\n", - " Image downloaded for 2023-02-24\n", - " Image downloaded for 2023-02-25\n", - " Image downloaded for 2023-02-25\n", - " Image downloaded for 2023-02-26\n", - " Image downloaded for 2023-02-26\n", - " Image downloaded for 2023-02-27\n", - " Image downloaded for 2023-02-27\n", - " Image downloaded for 2023-02-28\n", - " Image downloaded for 2023-02-28\n", - " Image downloaded for 2023-03-01\n", - " Image downloaded for 2023-03-01\n", - " Image downloaded for 2023-03-02\n", - " Image downloaded for 2023-03-02\n", - " Image downloaded for 2023-03-03\n", - " Image downloaded for 2023-03-03\n", - " Image downloaded for 2023-03-04\n", - " Image downloaded for 2023-03-04\n", - " Image downloaded for 2023-03-05\n", - " Image downloaded for 2023-03-05\n", - " Image downloaded for 2023-03-06\n", - " Image downloaded for 2023-03-06\n", - " Image downloaded for 2023-03-07\n", - " Image downloaded for 2023-03-07\n", - " Image downloaded for 2023-03-08\n", - " Image downloaded for 2023-03-08\n", - " Image downloaded for 2023-03-09\n", - " Image downloaded for 2023-03-09\n", - " Image downloaded for 2023-03-10\n", - " Image downloaded for 2023-03-10\n", - " Image downloaded for 2023-03-11\n", - " Image downloaded for 2023-03-11\n", - " Image downloaded for 2023-03-12\n", - " Image downloaded for 2023-03-12\n", - " Image downloaded for 2023-03-13\n", - " Image downloaded for 2023-03-13\n", - " Image downloaded for 2023-03-14\n", - " Image downloaded for 2023-03-14\n", - " Image downloaded for 2023-03-15\n", - " Image downloaded for 2023-03-15\n", - " Image downloaded for 2023-03-16\n", - " Image downloaded for 2023-03-16\n", - " Image downloaded for 2023-03-17\n", - " Image downloaded for 2023-03-17\n", - " Image downloaded for 2023-03-18\n", - " Image downloaded for 2023-03-18\n", - " Image downloaded for 2023-03-19\n", - " Image downloaded for 2023-03-19\n", - " Image downloaded for 2023-03-20\n", - " Image downloaded for 2023-03-20\n", - " Image downloaded for 2023-03-21\n", - " Image downloaded for 2023-03-21\n", - " Image downloaded for 2023-03-22\n", - " Image downloaded for 2023-03-22\n", - " Image downloaded for 2023-03-23\n", - " Image downloaded for 2023-03-23\n", - " Image downloaded for 2023-03-24\n", - " Image downloaded for 2023-03-24\n", - " Image downloaded for 2023-03-25\n", - " Image downloaded for 2023-03-25\n", - " Image downloaded for 2023-03-26\n", - " Image downloaded for 2023-03-26\n", - " Image downloaded for 2023-03-27\n", - " Image downloaded for 2023-03-27\n", - " Image downloaded for 2023-03-28\n", - " Image downloaded for 2023-03-28\n", - " Image downloaded for 2023-03-29\n", - " Image downloaded for 2023-03-29\n", - " Image downloaded for 2023-03-30\n", - " Image downloaded for 2023-03-30\n", - " Image downloaded for 2023-03-31\n", - " Image downloaded for 2023-03-31\n", - " Image downloaded for 2023-04-01\n", - " Image downloaded for 2023-04-01\n", - " Image downloaded for 2023-04-02\n", - " Image downloaded for 2023-04-02\n", - " Image downloaded for 2023-04-03\n", - " Image downloaded for 2023-04-03\n", - " Image downloaded for 2023-04-04\n", - " Image downloaded for 2023-04-04\n", - " Image downloaded for 2023-04-05\n", - " Image downloaded for 2023-04-05\n", - " Image downloaded for 2023-04-06\n", - " Image downloaded for 2023-04-06\n", - " Image downloaded for 2023-04-07\n", - " Image downloaded for 2023-04-07\n", - " Image downloaded for 2023-04-08\n", - " Image downloaded for 2023-04-08\n", - " Image downloaded for 2023-04-09\n", - " Image downloaded for 2023-04-09\n", - " Image downloaded for 2023-04-10\n", - " Image downloaded for 2023-04-10\n", - " Image downloaded for 2023-04-11\n", - " Image downloaded for 2023-04-11\n", - " Image downloaded for 2023-04-12\n", - " Image downloaded for 2023-04-12\n", - " Image downloaded for 2023-04-13\n", - " Image downloaded for 2023-04-13\n", - " Image downloaded for 2023-04-14\n", - " Image downloaded for 2023-04-14\n", - " Image downloaded for 2023-04-15\n", - " Image downloaded for 2023-04-15\n", - " Image downloaded for 2023-04-16\n", - " Image downloaded for 2023-04-16\n", - " Image downloaded for 2023-04-17\n", - " Image downloaded for 2023-04-17\n", - " Image downloaded for 2023-04-18\n", - " Image downloaded for 2023-04-18\n", - " Image downloaded for 2023-04-19\n", - " Image downloaded for 2023-04-19\n", - " Image downloaded for 2023-04-20\n", - " Image downloaded for 2023-04-20\n", - " Image downloaded for 2023-04-21\n", - " Image downloaded for 2023-04-21\n", - " Image downloaded for 2023-04-22\n", - " Image downloaded for 2023-04-22\n", - " Image downloaded for 2023-04-23\n", - " Image downloaded for 2023-04-23\n", - " Image downloaded for 2023-04-24\n", - " Image downloaded for 2023-04-24\n", - " Image downloaded for 2023-04-25\n", - " Image downloaded for 2023-04-25\n", - " Image downloaded for 2023-04-26\n", - " Image downloaded for 2023-04-26\n", - " Image downloaded for 2023-04-27\n", - " Image downloaded for 2023-04-27\n", - " Image downloaded for 2023-04-28\n", - " Image downloaded for 2023-04-28\n", - " Image downloaded for 2023-04-29\n", - " Image downloaded for 2023-04-29\n", - " Image downloaded for 2023-04-30\n", - " Image downloaded for 2023-04-30\n", - " Image downloaded for 2023-05-01\n", - " Image downloaded for 2023-05-01\n", - " Image downloaded for 2023-05-02\n", - " Image downloaded for 2023-05-02\n", - " Image downloaded for 2023-05-03\n", - " Image downloaded for 2023-05-03\n", - " Image downloaded for 2023-05-04\n", - " Image downloaded for 2023-05-04\n", - " Image downloaded for 2023-05-05\n", - " Image downloaded for 2023-05-05\n", - " Image downloaded for 2023-05-06\n", - " Image downloaded for 2023-05-06\n", - " Image downloaded for 2023-05-07\n", - " Image downloaded for 2023-05-07\n", - " Image downloaded for 2023-05-08\n", - " Image downloaded for 2023-05-08\n", - " Image downloaded for 2023-05-09\n", - " Image downloaded for 2023-05-09\n", - " Image downloaded for 2023-05-10\n", - " Image downloaded for 2023-05-10\n", - " Image downloaded for 2023-05-11\n", - " Image downloaded for 2023-05-11\n", - " Image downloaded for 2023-05-12\n", - " Image downloaded for 2023-05-12\n", - " Image downloaded for 2023-05-13\n", - " Image downloaded for 2023-05-13\n", - " Image downloaded for 2023-05-14\n", - " Image downloaded for 2023-05-14\n", - " Image downloaded for 2023-05-15\n", - " Image downloaded for 2023-05-15\n", - " Image downloaded for 2023-05-16\n", - " Image downloaded for 2023-05-16\n", - " Image downloaded for 2023-05-17\n", - " Image downloaded for 2023-05-17\n", - " Image downloaded for 2023-05-18\n", - " Image downloaded for 2023-05-18\n", - " Image downloaded for 2023-05-19\n", - " Image downloaded for 2023-05-19\n", - " Image downloaded for 2023-05-20\n", - " Image downloaded for 2023-05-20\n", - " Image downloaded for 2023-05-21\n", - " Image downloaded for 2023-05-21\n", - " Image downloaded for 2023-05-22\n", - " Image downloaded for 2023-05-22\n", - " Image downloaded for 2023-05-23\n", - " Image downloaded for 2023-05-23\n", - " Image downloaded for 2023-05-24\n", - " Image downloaded for 2023-05-24\n", - " Image downloaded for 2023-05-25\n", - " Image downloaded for 2023-05-25\n", - " Image downloaded for 2023-05-26\n", - " Image downloaded for 2023-05-26\n", - " Image downloaded for 2023-05-27\n", - " Image downloaded for 2023-05-27\n", - " Image downloaded for 2023-05-28\n", - " Image downloaded for 2023-05-28\n", - " Image downloaded for 2023-05-29\n", - " Image downloaded for 2023-05-29\n", - " Image downloaded for 2023-05-30\n", - " Image downloaded for 2023-05-30\n", - " Image downloaded for 2023-05-31\n", - " Image downloaded for 2023-05-31\n", - " Image downloaded for 2023-06-01\n", - " Image downloaded for 2023-06-01\n", - " Image downloaded for 2023-06-02\n", - " Image downloaded for 2023-06-02\n", - " Image downloaded for 2023-06-03\n", - " Image downloaded for 2023-06-03\n", - " Image downloaded for 2023-06-04\n", - " Image downloaded for 2023-06-04\n", - " Image downloaded for 2023-06-05\n", - " Image downloaded for 2023-06-05\n", - " Image downloaded for 2023-06-06\n", - " Image downloaded for 2023-06-06\n", - " Image downloaded for 2023-06-07\n", - " Image downloaded for 2023-06-07\n", - " Image downloaded for 2023-06-08\n", - " Image downloaded for 2023-06-08\n", - " Image downloaded for 2023-06-09\n", - " Image downloaded for 2023-06-09\n", - " Image downloaded for 2023-06-10\n", - " Image downloaded for 2023-06-10\n", - " Image downloaded for 2023-06-11\n", - " Image downloaded for 2023-06-11\n", - " Image downloaded for 2023-06-12\n", - " Image downloaded for 2023-06-12\n", - " Image downloaded for 2023-06-13\n", - " Image downloaded for 2023-06-13\n", - " Image downloaded for 2023-06-14\n", - " Image downloaded for 2023-06-14\n", - " Image downloaded for 2023-06-15\n", - " Image downloaded for 2023-06-15\n", - " Image downloaded for 2023-06-16\n", - " Image downloaded for 2023-06-16\n", - " Image downloaded for 2023-06-17\n", - " Image downloaded for 2023-06-17\n", - " Image downloaded for 2023-06-18\n", - " Image downloaded for 2023-06-18\n", - " Image downloaded for 2023-06-19\n", - " Image downloaded for 2023-06-19\n", - " Image downloaded for 2023-06-20\n", - " Image downloaded for 2023-06-20\n", - " Image downloaded for 2023-06-21\n", - " Image downloaded for 2023-06-21\n", - " Image downloaded for 2023-06-22\n", - " Image downloaded for 2023-06-22\n", - " Image downloaded for 2023-06-23\n", - " Image downloaded for 2023-06-23\n", - " Image downloaded for 2023-06-24\n", - " Image downloaded for 2023-06-24\n", - " Image downloaded for 2023-06-25\n", - " Image downloaded for 2023-06-25\n", - " Image downloaded for 2023-06-26\n", - " Image downloaded for 2023-06-26\n", - " Image downloaded for 2023-06-27\n", - " Image downloaded for 2023-06-27\n", - " Image downloaded for 2023-06-28\n", - " Image downloaded for 2023-06-28\n", - " Image downloaded for 2023-06-29\n", - " Image downloaded for 2023-06-29\n", - " Image downloaded for 2023-06-30\n", - " Image downloaded for 2023-06-30\n", - " Image downloaded for 2023-07-01\n", - " Image downloaded for 2023-07-01\n", - " Image downloaded for 2023-07-02\n", - " Image downloaded for 2023-07-02\n", - " Image downloaded for 2023-07-03\n", - " Image downloaded for 2023-07-03\n", - " Image downloaded for 2023-07-04\n", - " Image downloaded for 2023-07-04\n", - " Image downloaded for 2023-07-05\n", - " Image downloaded for 2023-07-05\n", - " Image downloaded for 2023-07-06\n", - " Image downloaded for 2023-07-06\n", - " Image downloaded for 2023-07-07\n", - " Image downloaded for 2023-07-07\n", - " Image downloaded for 2023-07-08\n", - " Image downloaded for 2023-07-08\n", - " Image downloaded for 2023-07-09\n", - " Image downloaded for 2023-07-09\n", - " Image downloaded for 2023-07-10\n", - " Image downloaded for 2023-07-10\n", - " Image downloaded for 2023-07-11\n", - " Image downloaded for 2023-07-11\n", - " Image downloaded for 2023-07-12\n", - " Image downloaded for 2023-07-12\n", - " Image downloaded for 2023-07-13\n", - " Image downloaded for 2023-07-13\n", - " Image downloaded for 2023-07-14\n", - " Image downloaded for 2023-07-14\n", - " Image downloaded for 2023-07-15\n", - " Image downloaded for 2023-07-15\n", - " Image downloaded for 2023-07-16\n", - " Image downloaded for 2023-07-16\n", - " Image downloaded for 2023-07-17\n", - " Image downloaded for 2023-07-17\n", - " Image downloaded for 2023-07-18\n", - " Image downloaded for 2023-07-18\n", - " Image downloaded for 2023-07-19\n", - " Image downloaded for 2023-07-19\n", - " Image downloaded for 2023-07-20\n", - " Image downloaded for 2023-07-20\n", - " Image downloaded for 2023-07-21\n", - " Image downloaded for 2023-07-21\n", - " Image downloaded for 2023-07-22\n", - " Image downloaded for 2023-07-22\n", - " Image downloaded for 2023-07-23\n", - " Image downloaded for 2023-07-23\n", - " Image downloaded for 2023-07-24\n", - " Image downloaded for 2023-07-24\n", - " Image downloaded for 2023-07-25\n", - " Image downloaded for 2023-07-25\n", - " Image downloaded for 2023-07-26\n", - " Image downloaded for 2023-07-26\n", - " Image downloaded for 2023-07-27\n", - " Image downloaded for 2023-07-27\n", - " Image downloaded for 2023-07-28\n", - " Image downloaded for 2023-07-28\n", - " Image downloaded for 2023-07-29\n", - " Image downloaded for 2023-07-29\n", - " Image downloaded for 2023-07-30\n", - " Image downloaded for 2023-07-30\n", - " Image downloaded for 2023-07-31\n", - " Image downloaded for 2023-07-31\n", - " Image downloaded for 2023-08-01\n", - " Image downloaded for 2023-08-01\n", - " Image downloaded for 2023-08-02\n", - " Image downloaded for 2023-08-02\n", - " Image downloaded for 2023-08-03\n", - " Image downloaded for 2023-08-03\n", - " Image downloaded for 2023-08-04\n", - " Image downloaded for 2023-08-04\n", - " Image downloaded for 2023-08-05\n", - " Image downloaded for 2023-08-05\n", - " Image downloaded for 2023-08-06\n", - " Image downloaded for 2023-08-06\n", - " Image downloaded for 2023-08-07\n", - " Image downloaded for 2023-08-07\n", - " Image downloaded for 2023-08-08\n", - " Image downloaded for 2023-08-08\n", - " Image downloaded for 2023-08-09\n", - " Image downloaded for 2023-08-09\n", - " Image downloaded for 2023-08-10\n", - " Image downloaded for 2023-08-10\n", - " Image downloaded for 2023-08-11\n", - " Image downloaded for 2023-08-11\n", - " Image downloaded for 2023-08-12\n", - " Image downloaded for 2023-08-12\n", - " Image downloaded for 2023-08-13\n", - " Image downloaded for 2023-08-13\n", - " Image downloaded for 2023-08-14\n", - " Image downloaded for 2023-08-14\n", - " Image downloaded for 2023-08-15\n", - " Image downloaded for 2023-08-15\n", - " Image downloaded for 2023-08-16\n", - " Image downloaded for 2023-08-16\n", - " Image downloaded for 2023-08-17\n", - " Image downloaded for 2023-08-17\n", - " Image downloaded for 2023-08-18\n", - " Image downloaded for 2023-08-18\n", - " Image downloaded for 2023-08-19\n", - " Image downloaded for 2023-08-19\n", - " Image downloaded for 2023-08-20\n", - " Image downloaded for 2023-08-20\n", - " Image downloaded for 2023-08-21\n", - " Image downloaded for 2023-08-21\n", - " Image downloaded for 2023-08-22\n", - " Image downloaded for 2023-08-22\n", - " Image downloaded for 2023-08-23\n", - " Image downloaded for 2023-08-23\n", - " Image downloaded for 2023-08-24\n", - " Image downloaded for 2023-08-24\n", - " Image downloaded for 2023-08-25\n", - " Image downloaded for 2023-08-25\n", - " Image downloaded for 2023-08-26\n", - " Image downloaded for 2023-08-26\n", - " Image downloaded for 2023-08-27\n", - " Image downloaded for 2023-08-27\n", - " Image downloaded for 2023-08-28\n", - " Image downloaded for 2023-08-28\n", - " Image downloaded for 2023-08-29\n", - " Image downloaded for 2023-08-29\n", - " Image downloaded for 2023-08-30\n", - " Image downloaded for 2023-08-30\n", - " Image downloaded for 2023-08-31\n", - " Image downloaded for 2023-08-31\n", - " Image downloaded for 2023-09-01\n", - " Image downloaded for 2023-09-01\n", - " Image downloaded for 2023-09-02\n", - " Image downloaded for 2023-09-02\n", - " Image downloaded for 2023-09-03\n", - " Image downloaded for 2023-09-03\n", - " Image downloaded for 2023-09-04\n", - " Image downloaded for 2023-09-04\n", - " Image downloaded for 2023-09-05\n", - " Image downloaded for 2023-09-05\n", - " Image downloaded for 2023-09-06\n", - " Image downloaded for 2023-09-06\n", - " Image downloaded for 2023-09-07\n", - " Image downloaded for 2023-09-07\n", - " Image downloaded for 2023-09-08\n", - " Image downloaded for 2023-09-08\n", - " Image downloaded for 2023-09-09\n", - " Image downloaded for 2023-09-09\n", - " Image downloaded for 2023-09-10\n", - " Image downloaded for 2023-09-10\n", - " Image downloaded for 2023-09-11\n", - " Image downloaded for 2023-09-11\n", - " Image downloaded for 2023-09-12\n", - " Image downloaded for 2023-09-12\n", - " Image downloaded for 2023-09-13\n", - " Image downloaded for 2023-09-13\n", - " Image downloaded for 2023-09-14\n", - " Image downloaded for 2023-09-14\n", - " Image downloaded for 2023-09-15\n", - " Image downloaded for 2023-09-15\n", - " Image downloaded for 2023-09-16\n", - " Image downloaded for 2023-09-16\n", - " Image downloaded for 2023-09-17\n", - " Image downloaded for 2023-09-17\n", - " Image downloaded for 2023-09-18\n", - " Image downloaded for 2023-09-18\n", - " Image downloaded for 2023-09-19\n", - " Image downloaded for 2023-09-19\n", - " Image downloaded for 2023-09-20\n", - " Image downloaded for 2023-09-20\n", - " Image downloaded for 2023-09-21\n", - " Image downloaded for 2023-09-21\n", - " Image downloaded for 2023-09-22\n", - " Image downloaded for 2023-09-22\n", - " Image downloaded for 2023-09-23\n", - " Image downloaded for 2023-09-23\n", - " Image downloaded for 2023-09-24\n", - " Image downloaded for 2023-09-24\n", - " Image downloaded for 2023-09-25\n", - " Image downloaded for 2023-09-25\n", - " Image downloaded for 2023-09-26\n", - " Image downloaded for 2023-09-26\n", - " Image downloaded for 2023-09-27\n", - " Image downloaded for 2023-09-27\n", - " Image downloaded for 2023-09-28\n", - " Image downloaded for 2023-09-28\n", - " Image downloaded for 2023-09-29\n", - " Image downloaded for 2023-09-29\n", - " Image downloaded for 2023-09-30\n", - " Image downloaded for 2023-09-30\n", - " Image downloaded for 2023-10-01\n", - " Image downloaded for 2023-10-01\n", - " Image downloaded for 2023-10-02\n", - " Image downloaded for 2023-10-02\n", - " Image downloaded for 2023-10-03\n", - " Image downloaded for 2023-10-03\n", - " Image downloaded for 2023-10-04\n", - " Image downloaded for 2023-10-04\n", - " Image downloaded for 2023-10-05\n", - " Image downloaded for 2023-10-05\n", - " Image downloaded for 2023-10-06\n", - " Image downloaded for 2023-10-06\n", - " Image downloaded for 2023-10-07\n", - " Image downloaded for 2023-10-07\n", - " Image downloaded for 2023-10-08\n", - " Image downloaded for 2023-10-08\n", - " Image downloaded for 2023-10-09\n", - " Image downloaded for 2023-10-09\n", - " Image downloaded for 2023-10-10\n", - " Image downloaded for 2023-10-10\n", - " Image downloaded for 2023-10-11\n", - " Image downloaded for 2023-10-11\n", - " Image downloaded for 2023-10-12\n", - " Image downloaded for 2023-10-12\n", - " Image downloaded for 2023-10-13\n", - " Image downloaded for 2023-10-13\n", - " Image downloaded for 2023-10-14\n", - " Image downloaded for 2023-10-14\n", - " Image downloaded for 2023-10-15\n", - " Image downloaded for 2023-10-15\n", - " Image downloaded for 2023-10-16\n", - " Image downloaded for 2023-10-16\n", - " Image downloaded for 2023-10-17\n", - " Image downloaded for 2023-10-17\n", - " Image downloaded for 2023-10-18\n", - " Image downloaded for 2023-10-18\n", - " Image downloaded for 2023-10-19\n", - " Image downloaded for 2023-10-19\n", - " Image downloaded for 2023-10-20\n", - " Image downloaded for 2023-10-20\n", - " Image downloaded for 2023-10-21\n", - " Image downloaded for 2023-10-21\n", - " Image downloaded for 2023-10-22\n", - " Image downloaded for 2023-10-22\n", - " Image downloaded for 2023-10-23\n", - " Image downloaded for 2023-10-23\n", - " Image downloaded for 2023-10-24\n", - " Image downloaded for 2023-10-24\n", - " Image downloaded for 2023-10-25\n", - " Image downloaded for 2023-10-25\n", - " Image downloaded for 2023-10-26\n", - " Image downloaded for 2023-10-26\n", - " Image downloaded for 2023-10-27\n", - " Image downloaded for 2023-10-27\n", - " Image downloaded for 2023-10-28\n", - " Image downloaded for 2023-10-28\n", - " Image downloaded for 2023-10-29\n", - " Image downloaded for 2023-10-29\n", - " Image downloaded for 2023-10-30\n", - " Image downloaded for 2023-10-30\n", - " Image downloaded for 2023-10-31\n", - " Image downloaded for 2023-10-31\n", - " Image downloaded for 2023-11-01\n", - " Image downloaded for 2023-11-01\n", - " Image downloaded for 2023-11-02\n", - " Image downloaded for 2023-11-02\n", - " Image downloaded for 2023-11-03\n", - " Image downloaded for 2023-11-03\n", - " Image downloaded for 2023-11-04\n", - " Image downloaded for 2023-11-04\n", - " Image downloaded for 2023-11-05\n", - " Image downloaded for 2023-11-05\n", - " Image downloaded for 2023-11-06\n", - " Image downloaded for 2023-11-06\n", - " Image downloaded for 2023-11-07\n", - " Image downloaded for 2023-11-07\n", - " Image downloaded for 2023-11-08\n", - " Image downloaded for 2023-11-08\n", - " Image downloaded for 2023-11-09\n", - " Image downloaded for 2023-11-09\n", - " Image downloaded for 2023-11-10\n", - " Image downloaded for 2023-11-10\n", - " Image downloaded for 2023-11-11\n", - " Image downloaded for 2023-11-11\n", - " Image downloaded for 2023-11-12\n", - " Image downloaded for 2023-11-12\n", - " Image downloaded for 2023-11-13\n", - " Image downloaded for 2023-11-13\n", - " Image downloaded for 2023-11-14\n", - " Image downloaded for 2023-11-14\n", - " Image downloaded for 2023-11-15\n", - " Image downloaded for 2023-11-15\n", - " Image downloaded for 2023-11-16\n", - " Image downloaded for 2023-11-16\n", - " Image downloaded for 2023-11-17\n", - " Image downloaded for 2023-11-17\n", - " Image downloaded for 2023-11-18\n", - " Image downloaded for 2023-11-18\n", - " Image downloaded for 2023-11-19\n", - " Image downloaded for 2023-11-19\n", - " Image downloaded for 2023-11-20\n", - " Image downloaded for 2023-11-20\n", - " Image downloaded for 2023-11-21\n", - " Image downloaded for 2023-11-21\n", - " Image downloaded for 2023-11-22\n", - " Image downloaded for 2023-11-22\n", - " Image downloaded for 2023-11-23\n", - " Image downloaded for 2023-11-23\n", - " Image downloaded for 2023-11-24\n", - " Image downloaded for 2023-11-24\n", - " Image downloaded for 2023-11-25\n", - " Image downloaded for 2023-11-25\n", - " Image downloaded for 2023-11-26\n", - " Image downloaded for 2023-11-26\n", - " Image downloaded for 2023-11-27\n", - " Image downloaded for 2023-11-27\n", - " Image downloaded for 2023-11-28\n", - " Image downloaded for 2023-11-28\n", - " Image downloaded for 2023-11-29\n", - " Image downloaded for 2023-11-29\n", - " Image downloaded for 2023-11-30\n", - " Image downloaded for 2023-11-30\n", - " Image downloaded for 2023-12-01\n", - " Image downloaded for 2023-12-01\n", - " Image downloaded for 2023-12-02\n", - " Image downloaded for 2023-12-02\n", - " Image downloaded for 2023-12-03\n", - " Image downloaded for 2023-12-03\n", - " Image downloaded for 2023-12-04\n", - " Image downloaded for 2023-12-04\n", - " Image downloaded for 2023-12-05\n", - " Image downloaded for 2023-12-05\n", - " Image downloaded for 2023-12-06\n", - " Image downloaded for 2023-12-06\n", - " Image downloaded for 2023-12-07\n", - " Image downloaded for 2023-12-07\n", - " Image downloaded for 2023-12-08\n", - " Image downloaded for 2023-12-08\n", - " Image downloaded for 2023-12-09\n", - " Image downloaded for 2023-12-09\n", - " Image downloaded for 2023-12-10\n", - " Image downloaded for 2023-12-10\n", - " Image downloaded for 2023-12-11\n", - " Image downloaded for 2023-12-11\n", - " Image downloaded for 2023-12-12\n", - " Image downloaded for 2023-12-12\n", - " Image downloaded for 2023-12-13\n", - " Image downloaded for 2023-12-13\n", - " Image downloaded for 2023-12-14\n", - " Image downloaded for 2023-12-14\n", - " Image downloaded for 2023-12-15\n", - " Image downloaded for 2023-12-15\n", - " Image downloaded for 2023-12-16\n", - " Image downloaded for 2023-12-16\n", - " Image downloaded for 2023-12-17\n", - " Image downloaded for 2023-12-17\n", - " Image downloaded for 2023-12-18\n", - " Image downloaded for 2023-12-18\n", - " Image downloaded for 2023-12-19\n", - " Image downloaded for 2023-12-19\n", - " Image downloaded for 2023-12-20\n", - " Image downloaded for 2023-12-20\n", - " Image downloaded for 2023-12-21\n", - " Image downloaded for 2023-12-21\n", - " Image downloaded for 2023-12-22\n", - " Image downloaded for 2023-12-22\n", - " Image downloaded for 2023-12-23\n", - " Image downloaded for 2023-12-23\n", - " Image downloaded for 2023-12-24\n", - " Image downloaded for 2023-12-24\n", - " Image downloaded for 2023-12-25\n", - " Image downloaded for 2023-12-25\n", - " Image downloaded for 2023-12-26\n", - " Image downloaded for 2023-12-26\n", - " Image downloaded for 2023-12-27\n", - " Image downloaded for 2023-12-27\n", - " Image downloaded for 2023-12-28\n", - " Image downloaded for 2023-12-28\n", - " Image downloaded for 2023-12-29\n", - " Image downloaded for 2023-12-29\n", - " Image downloaded for 2023-12-30\n", - " Image downloaded for 2023-12-30\n", - " Image downloaded for 2023-12-31\n", - " Image downloaded for 2023-12-31\n", - " Image downloaded for 2024-01-01\n", - " Image downloaded for 2024-01-01\n", - " Image downloaded for 2024-01-02\n", - " Image downloaded for 2024-01-02\n", - " Image downloaded for 2024-01-03\n", - " Image downloaded for 2024-01-03\n", - " Image downloaded for 2024-01-04\n", - " Image downloaded for 2024-01-04\n", - " Image downloaded for 2024-01-05\n", - " Image downloaded for 2024-01-05\n", - " Image downloaded for 2024-01-06\n", - " Image downloaded for 2024-01-06\n", - " Image downloaded for 2024-01-07\n", - " Image downloaded for 2024-01-07\n", - " Image downloaded for 2024-01-08\n", - " Image downloaded for 2024-01-08\n", - " Image downloaded for 2024-01-09\n", - " Image downloaded for 2024-01-09\n", - " Image downloaded for 2024-01-10\n", - " Image downloaded for 2024-01-10\n", - " Image downloaded for 2024-01-11\n", - " Image downloaded for 2024-01-11\n", - " Image downloaded for 2024-01-12\n", - " Image downloaded for 2024-01-12\n", - " Image downloaded for 2024-01-13\n", - " Image downloaded for 2024-01-13\n", - " Image downloaded for 2024-01-14\n", - " Image downloaded for 2024-01-14\n", - " Image downloaded for 2024-01-15\n", - " Image downloaded for 2024-01-15\n", - " Image downloaded for 2024-01-16\n", - " Image downloaded for 2024-01-16\n", - " Image downloaded for 2024-01-17\n", - " Image downloaded for 2024-01-17\n", - " Image downloaded for 2024-01-18\n", - " Image downloaded for 2024-01-18\n", - " Image downloaded for 2024-01-19\n", - " Image downloaded for 2024-01-19\n", - " Image downloaded for 2024-01-20\n", - " Image downloaded for 2024-01-20\n", - " Image downloaded for 2024-01-21\n", - " Image downloaded for 2024-01-21\n", - " Image downloaded for 2024-01-22\n", - " Image downloaded for 2024-01-22\n", - " Image downloaded for 2024-01-23\n", - " Image downloaded for 2024-01-23\n", - " Image downloaded for 2024-01-24\n", - " Image downloaded for 2024-01-24\n", - " Image downloaded for 2024-01-25\n", - " Image downloaded for 2024-01-25\n", - " Image downloaded for 2024-01-26\n", - " Image downloaded for 2024-01-26\n", - " Image downloaded for 2024-01-27\n", - " Image downloaded for 2024-01-27\n", - " Image downloaded for 2024-01-28\n", - " Image downloaded for 2024-01-28\n", - " Image downloaded for 2024-01-29\n", - " Image downloaded for 2024-01-29\n", - " Image downloaded for 2024-01-30\n", - " Image downloaded for 2024-01-30\n", - " Image downloaded for 2024-01-31\n", - " Image downloaded for 2024-01-31\n", - " Image downloaded for 2024-02-01\n", - " Image downloaded for 2024-02-01\n", - " Image downloaded for 2024-02-02\n", - " Image downloaded for 2024-02-02\n", - " Image downloaded for 2024-02-03\n", - " Image downloaded for 2024-02-03\n", - " Image downloaded for 2024-02-04\n", - " Image downloaded for 2024-02-04\n", - " Image downloaded for 2024-02-05\n", - " Image downloaded for 2024-02-05\n", - " Image downloaded for 2024-02-06\n", - " Image downloaded for 2024-02-06\n", - " Image downloaded for 2024-02-07\n", - " Image downloaded for 2024-02-07\n", - " Image downloaded for 2024-02-08\n", - " Image downloaded for 2024-02-08\n", - " Image downloaded for 2024-02-09\n", - " Image downloaded for 2024-02-09\n", - " Image downloaded for 2024-02-10\n", - " Image downloaded for 2024-02-10\n", - " Image downloaded for 2024-02-11\n", - " Image downloaded for 2024-02-11\n", - " Image downloaded for 2024-02-12\n", - " Image downloaded for 2024-02-12\n", - " Image downloaded for 2024-02-13\n", - " Image downloaded for 2024-02-13\n", - " Image downloaded for 2024-02-14\n", - " Image downloaded for 2024-02-14\n", - " Image downloaded for 2024-02-15\n", - " Image downloaded for 2024-02-15\n", - " Image downloaded for 2024-02-16\n", - " Image downloaded for 2024-02-16\n", - " Image downloaded for 2024-02-17\n", - " Image downloaded for 2024-02-17\n", - " Image downloaded for 2024-02-18\n", - " Image downloaded for 2024-02-18\n", - " Image downloaded for 2024-02-19\n", - " Image downloaded for 2024-02-19\n", - " Image downloaded for 2024-02-20\n", - " Image downloaded for 2024-02-20\n", - " Image downloaded for 2024-02-21\n", - " Image downloaded for 2024-02-21\n", - " Image downloaded for 2024-02-22\n", - " Image downloaded for 2024-02-22\n", - " Image downloaded for 2024-02-23\n", - " Image downloaded for 2024-02-23\n", - " Image downloaded for 2024-02-24\n", - " Image downloaded for 2024-02-24\n", - " Image downloaded for 2024-02-25\n", - " Image downloaded for 2024-02-25\n", - " Image downloaded for 2024-02-26\n", - " Image downloaded for 2024-02-26\n", - " Image downloaded for 2024-02-27\n", - " Image downloaded for 2024-02-27\n", - " Image downloaded for 2024-02-28\n", - " Image downloaded for 2024-02-28\n", - " Image downloaded for 2024-02-29\n", - " Image downloaded for 2024-02-29\n", - " Image downloaded for 2024-03-01\n", - " Image downloaded for 2024-03-01\n", - " Image downloaded for 2024-03-02\n", - " Image downloaded for 2024-03-02\n", - " Image downloaded for 2024-03-03\n", - " Image downloaded for 2024-03-03\n", - " Image downloaded for 2024-03-04\n", - " Image downloaded for 2024-03-04\n", - " Image downloaded for 2024-03-05\n", - " Image downloaded for 2024-03-05\n", - " Image downloaded for 2024-03-06\n", - " Image downloaded for 2024-03-06\n", - " Image downloaded for 2024-03-07\n", - " Image downloaded for 2024-03-07\n", - " Image downloaded for 2024-03-08\n", - " Image downloaded for 2024-03-08\n", - " Image downloaded for 2024-03-09\n", - " Image downloaded for 2024-03-09\n", - " Image downloaded for 2024-03-10\n", - " Image downloaded for 2024-03-10\n", - " Image downloaded for 2024-03-11\n", - " Image downloaded for 2024-03-11\n", - " Image downloaded for 2024-03-12\n", - " Image downloaded for 2024-03-12\n" + "Area bounding box: BBox(((34.883117060422094, -17.35152458627111), (34.983858813209004, -17.29173171459206)), crs=CRS('4326'))\n", + "\n" + ] + } + ], + "source": [ + "bbox_splitter = BBoxSplitter(\n", + " shapely_geometries, CRS.WGS84, (5, 5), reduce_bbox_sizes=True\n", + ") # bounding box will be split into a grid of 5x4 bounding boxes\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": 16, + "id": "431f6856-8d7e-4868-b627-20deeb47d77e", + "metadata": {}, + "outputs": [ + { + "data": { + "image/svg+xml": [ + "" + ], + "text/plain": [ + "" + ] + }, + "execution_count": 16, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "geometry_list = bbox_splitter.get_geometry_list()\n", + "\n", + "geometry_list[0]" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "id": "b0cabe8f-e1f2-4b18-8ac0-c2565d0ff16b", + "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": 18, + "id": "8f2c3e20-894c-4fe5-95d3-482ee3bac117", + "metadata": {}, + "outputs": [], + "source": [ + "#from mpl_toolkits.basemap import Basemap # Available here: https://github.com/matplotlib/basemap\n", + "#from matplotlib.patches import Polygon as PltPolygon\n", + "\n", + "#show_splitter(bbox_splitter, show_legend=True)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "id": "41b7369c-f768-44ba-983e-eb8eae4f3afd", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " Image downloaded for 2024-04-30 and bbox 34.893901568473275,-17.347991154602312,34.902244620706924,-17.34035402194366\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/usr/local/anaconda3/lib/python3.11/site-packages/sentinelhub/geometry.py:136: SHDeprecationWarning: Initializing `BBox` objects from `BBox` objects will no longer be possible in future versions.\n", + " return BBox._tuple_from_bbox(bbox)\n", + "/var/folders/qt/jcd_lqsd6nq6_5902w6403_h0000gn/T/ipykernel_17811/1690163568.py:67: SHDeprecationWarning: The string representation of `BBox` will change to match its `repr` representation.\n", + " print(f' Image downloaded for ' +slot + ' and bbox ' + str(bbox))\n", + "/usr/local/anaconda3/lib/python3.11/site-packages/sentinelhub/geometry.py:136: SHDeprecationWarning: Initializing `BBox` objects from `BBox` objects will no longer be possible in future versions.\n", + " return BBox._tuple_from_bbox(bbox)\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " Image downloaded for 2024-04-30 and bbox 34.88396660293689,-17.329532375657408,34.90142638883001,-17.32760743759949\n", + " Image downloaded for 2024-04-30 and bbox 34.88382012875465,-17.32760743759949,34.90326541097948,-17.315648863263682\n", + " Image downloaded for 2024-04-30 and bbox 34.883117060422094,-17.315648863263682,34.9023997776829,-17.30369028892787\n", + " Image downloaded for 2024-04-30 and bbox 34.883228421674296,-17.30369028892787,34.90087977072043,-17.29173171459206\n", + " Image downloaded for 2024-04-30 and bbox 34.905630133532,-17.344205996328164,34.92341376153686,-17.3395660119353\n", + " Image downloaded for 2024-04-30 and bbox 34.905710855573936,-17.3395660119353,34.92341376153686,-17.32760743759949\n", + " Image downloaded for 2024-04-30 and bbox 34.90326541097948,-17.32760743759949,34.9146041448172,-17.316916692391352\n", + " Image downloaded for 2024-04-30 and bbox 34.92341376153686,-17.35152458627111,34.93795515789262,-17.3395660119353\n", + " Image downloaded for 2024-04-30 and bbox 34.92341376153686,-17.3395660119353,34.930609068174576,-17.334652123669677\n", + " Image downloaded for 2024-04-30 and bbox 34.95572747068288,-17.346631434137443,34.96371046265162,-17.3395660119353\n", + " Image downloaded for 2024-04-30 and bbox 34.95078266733916,-17.3395660119353,34.96371046265162,-17.32760743759949\n", + " Image downloaded for 2024-04-30 and bbox 34.947001852567226,-17.32760743759949,34.96371046265162,-17.315648863263682\n", + " Image downloaded for 2024-04-30 and bbox 34.95178751078458,-17.315648863263682,34.96371046265162,-17.311133447223234\n", + " Image downloaded for 2024-04-30 and bbox 34.96371046265162,-17.34987611658989,34.983858813209004,-17.3395660119353\n", + " Image downloaded for 2024-04-30 and bbox 34.96371046265162,-17.3395660119353,34.982903717937305,-17.32760743759949\n", + " Image downloaded for 2024-04-30 and bbox 34.96371046265162,-17.32760743759949,34.977469765322226,-17.322351372243453\n", + " Image downloaded for 2024-04-30 and bbox 34.96371046265162,-17.315106596091614,34.96405511470557,-17.312526972941786\n", + " Image downloaded for 2024-05-01 and bbox 34.893901568473275,-17.347991154602312,34.902244620706924,-17.34035402194366\n", + " Image downloaded for 2024-05-01 and bbox 34.88396660293689,-17.329532375657408,34.90142638883001,-17.32760743759949\n", + " Image downloaded for 2024-05-01 and bbox 34.88382012875465,-17.32760743759949,34.90326541097948,-17.315648863263682\n", + " Image downloaded for 2024-05-01 and bbox 34.883117060422094,-17.315648863263682,34.9023997776829,-17.30369028892787\n", + " Image downloaded for 2024-05-01 and bbox 34.883228421674296,-17.30369028892787,34.90087977072043,-17.29173171459206\n", + " Image downloaded for 2024-05-01 and bbox 34.905630133532,-17.344205996328164,34.92341376153686,-17.3395660119353\n", + " Image downloaded for 2024-05-01 and bbox 34.905710855573936,-17.3395660119353,34.92341376153686,-17.32760743759949\n", + " Image downloaded for 2024-05-01 and bbox 34.90326541097948,-17.32760743759949,34.9146041448172,-17.316916692391352\n", + " Image downloaded for 2024-05-01 and bbox 34.92341376153686,-17.35152458627111,34.93795515789262,-17.3395660119353\n", + " Image downloaded for 2024-05-01 and bbox 34.92341376153686,-17.3395660119353,34.930609068174576,-17.334652123669677\n", + " Image downloaded for 2024-05-01 and bbox 34.95572747068288,-17.346631434137443,34.96371046265162,-17.3395660119353\n", + " Image downloaded for 2024-05-01 and bbox 34.95078266733916,-17.3395660119353,34.96371046265162,-17.32760743759949\n", + " Image downloaded for 2024-05-01 and bbox 34.947001852567226,-17.32760743759949,34.96371046265162,-17.315648863263682\n", + " Image downloaded for 2024-05-01 and bbox 34.95178751078458,-17.315648863263682,34.96371046265162,-17.311133447223234\n", + " Image downloaded for 2024-05-01 and bbox 34.96371046265162,-17.34987611658989,34.983858813209004,-17.3395660119353\n", + " Image downloaded for 2024-05-01 and bbox 34.96371046265162,-17.3395660119353,34.982903717937305,-17.32760743759949\n", + " Image downloaded for 2024-05-01 and bbox 34.96371046265162,-17.32760743759949,34.977469765322226,-17.322351372243453\n", + " Image downloaded for 2024-05-01 and bbox 34.96371046265162,-17.315106596091614,34.96405511470557,-17.312526972941786\n", + " Image downloaded for 2024-05-02 and bbox 34.893901568473275,-17.347991154602312,34.902244620706924,-17.34035402194366\n", + " Image downloaded for 2024-05-02 and bbox 34.88396660293689,-17.329532375657408,34.90142638883001,-17.32760743759949\n", + " Image downloaded for 2024-05-02 and bbox 34.88382012875465,-17.32760743759949,34.90326541097948,-17.315648863263682\n", + " Image downloaded for 2024-05-02 and bbox 34.883117060422094,-17.315648863263682,34.9023997776829,-17.30369028892787\n", + " Image downloaded for 2024-05-02 and bbox 34.883228421674296,-17.30369028892787,34.90087977072043,-17.29173171459206\n", + " Image downloaded for 2024-05-02 and bbox 34.905630133532,-17.344205996328164,34.92341376153686,-17.3395660119353\n", + " Image downloaded for 2024-05-02 and bbox 34.905710855573936,-17.3395660119353,34.92341376153686,-17.32760743759949\n", + " Image downloaded for 2024-05-02 and bbox 34.90326541097948,-17.32760743759949,34.9146041448172,-17.316916692391352\n", + " Image downloaded for 2024-05-02 and bbox 34.92341376153686,-17.35152458627111,34.93795515789262,-17.3395660119353\n", + " Image downloaded for 2024-05-02 and bbox 34.92341376153686,-17.3395660119353,34.930609068174576,-17.334652123669677\n", + " Image downloaded for 2024-05-02 and bbox 34.95572747068288,-17.346631434137443,34.96371046265162,-17.3395660119353\n", + " Image downloaded for 2024-05-02 and bbox 34.95078266733916,-17.3395660119353,34.96371046265162,-17.32760743759949\n", + " Image downloaded for 2024-05-02 and bbox 34.947001852567226,-17.32760743759949,34.96371046265162,-17.315648863263682\n", + " Image downloaded for 2024-05-02 and bbox 34.95178751078458,-17.315648863263682,34.96371046265162,-17.311133447223234\n", + " Image downloaded for 2024-05-02 and bbox 34.96371046265162,-17.34987611658989,34.983858813209004,-17.3395660119353\n", + " Image downloaded for 2024-05-02 and bbox 34.96371046265162,-17.3395660119353,34.982903717937305,-17.32760743759949\n", + " Image downloaded for 2024-05-02 and bbox 34.96371046265162,-17.32760743759949,34.977469765322226,-17.322351372243453\n", + " Image downloaded for 2024-05-02 and bbox 34.96371046265162,-17.315106596091614,34.96405511470557,-17.312526972941786\n", + " Image downloaded for 2024-05-03 and bbox 34.893901568473275,-17.347991154602312,34.902244620706924,-17.34035402194366\n", + " Image downloaded for 2024-05-03 and bbox 34.88396660293689,-17.329532375657408,34.90142638883001,-17.32760743759949\n", + " Image downloaded for 2024-05-03 and bbox 34.88382012875465,-17.32760743759949,34.90326541097948,-17.315648863263682\n", + " Image downloaded for 2024-05-03 and bbox 34.883117060422094,-17.315648863263682,34.9023997776829,-17.30369028892787\n", + " Image downloaded for 2024-05-03 and bbox 34.883228421674296,-17.30369028892787,34.90087977072043,-17.29173171459206\n", + " Image downloaded for 2024-05-03 and bbox 34.905630133532,-17.344205996328164,34.92341376153686,-17.3395660119353\n", + " Image downloaded for 2024-05-03 and bbox 34.905710855573936,-17.3395660119353,34.92341376153686,-17.32760743759949\n", + " Image downloaded for 2024-05-03 and bbox 34.90326541097948,-17.32760743759949,34.9146041448172,-17.316916692391352\n", + " Image downloaded for 2024-05-03 and bbox 34.92341376153686,-17.35152458627111,34.93795515789262,-17.3395660119353\n", + " Image downloaded for 2024-05-03 and bbox 34.92341376153686,-17.3395660119353,34.930609068174576,-17.334652123669677\n", + " Image downloaded for 2024-05-03 and bbox 34.95572747068288,-17.346631434137443,34.96371046265162,-17.3395660119353\n", + " Image downloaded for 2024-05-03 and bbox 34.95078266733916,-17.3395660119353,34.96371046265162,-17.32760743759949\n", + " Image downloaded for 2024-05-03 and bbox 34.947001852567226,-17.32760743759949,34.96371046265162,-17.315648863263682\n", + " Image downloaded for 2024-05-03 and bbox 34.95178751078458,-17.315648863263682,34.96371046265162,-17.311133447223234\n", + " Image downloaded for 2024-05-03 and bbox 34.96371046265162,-17.34987611658989,34.983858813209004,-17.3395660119353\n", + " Image downloaded for 2024-05-03 and bbox 34.96371046265162,-17.3395660119353,34.982903717937305,-17.32760743759949\n", + " Image downloaded for 2024-05-03 and bbox 34.96371046265162,-17.32760743759949,34.977469765322226,-17.322351372243453\n", + " Image downloaded for 2024-05-03 and bbox 34.96371046265162,-17.315106596091614,34.96405511470557,-17.312526972941786\n", + " Image downloaded for 2024-05-04 and bbox 34.893901568473275,-17.347991154602312,34.902244620706924,-17.34035402194366\n", + " Image downloaded for 2024-05-04 and bbox 34.88396660293689,-17.329532375657408,34.90142638883001,-17.32760743759949\n", + " Image downloaded for 2024-05-04 and bbox 34.88382012875465,-17.32760743759949,34.90326541097948,-17.315648863263682\n", + " Image downloaded for 2024-05-04 and bbox 34.883117060422094,-17.315648863263682,34.9023997776829,-17.30369028892787\n", + " Image downloaded for 2024-05-04 and bbox 34.883228421674296,-17.30369028892787,34.90087977072043,-17.29173171459206\n", + " Image downloaded for 2024-05-04 and bbox 34.905630133532,-17.344205996328164,34.92341376153686,-17.3395660119353\n", + " Image downloaded for 2024-05-04 and bbox 34.905710855573936,-17.3395660119353,34.92341376153686,-17.32760743759949\n", + " Image downloaded for 2024-05-04 and bbox 34.90326541097948,-17.32760743759949,34.9146041448172,-17.316916692391352\n", + " Image downloaded for 2024-05-04 and bbox 34.92341376153686,-17.35152458627111,34.93795515789262,-17.3395660119353\n", + " Image downloaded for 2024-05-04 and bbox 34.92341376153686,-17.3395660119353,34.930609068174576,-17.334652123669677\n", + " Image downloaded for 2024-05-04 and bbox 34.95572747068288,-17.346631434137443,34.96371046265162,-17.3395660119353\n", + " Image downloaded for 2024-05-04 and bbox 34.95078266733916,-17.3395660119353,34.96371046265162,-17.32760743759949\n", + " Image downloaded for 2024-05-04 and bbox 34.947001852567226,-17.32760743759949,34.96371046265162,-17.315648863263682\n", + " Image downloaded for 2024-05-04 and bbox 34.95178751078458,-17.315648863263682,34.96371046265162,-17.311133447223234\n", + " Image downloaded for 2024-05-04 and bbox 34.96371046265162,-17.34987611658989,34.983858813209004,-17.3395660119353\n", + " Image downloaded for 2024-05-04 and bbox 34.96371046265162,-17.3395660119353,34.982903717937305,-17.32760743759949\n", + " Image downloaded for 2024-05-04 and bbox 34.96371046265162,-17.32760743759949,34.977469765322226,-17.322351372243453\n", + " Image downloaded for 2024-05-04 and bbox 34.96371046265162,-17.315106596091614,34.96405511470557,-17.312526972941786\n", + " Image downloaded for 2024-05-05 and bbox 34.893901568473275,-17.347991154602312,34.902244620706924,-17.34035402194366\n", + " Image downloaded for 2024-05-05 and bbox 34.88396660293689,-17.329532375657408,34.90142638883001,-17.32760743759949\n", + " Image downloaded for 2024-05-05 and bbox 34.88382012875465,-17.32760743759949,34.90326541097948,-17.315648863263682\n", + " Image downloaded for 2024-05-05 and bbox 34.883117060422094,-17.315648863263682,34.9023997776829,-17.30369028892787\n", + " Image downloaded for 2024-05-05 and bbox 34.883228421674296,-17.30369028892787,34.90087977072043,-17.29173171459206\n", + " Image downloaded for 2024-05-05 and bbox 34.905630133532,-17.344205996328164,34.92341376153686,-17.3395660119353\n", + " Image downloaded for 2024-05-05 and bbox 34.905710855573936,-17.3395660119353,34.92341376153686,-17.32760743759949\n", + " Image downloaded for 2024-05-05 and bbox 34.90326541097948,-17.32760743759949,34.9146041448172,-17.316916692391352\n", + " Image downloaded for 2024-05-05 and bbox 34.92341376153686,-17.35152458627111,34.93795515789262,-17.3395660119353\n", + " Image downloaded for 2024-05-05 and bbox 34.92341376153686,-17.3395660119353,34.930609068174576,-17.334652123669677\n", + " Image downloaded for 2024-05-05 and bbox 34.95572747068288,-17.346631434137443,34.96371046265162,-17.3395660119353\n", + " Image downloaded for 2024-05-05 and bbox 34.95078266733916,-17.3395660119353,34.96371046265162,-17.32760743759949\n", + " Image downloaded for 2024-05-05 and bbox 34.947001852567226,-17.32760743759949,34.96371046265162,-17.315648863263682\n", + " Image downloaded for 2024-05-05 and bbox 34.95178751078458,-17.315648863263682,34.96371046265162,-17.311133447223234\n", + " Image downloaded for 2024-05-05 and bbox 34.96371046265162,-17.34987611658989,34.983858813209004,-17.3395660119353\n", + " Image downloaded for 2024-05-05 and bbox 34.96371046265162,-17.3395660119353,34.982903717937305,-17.32760743759949\n", + " Image downloaded for 2024-05-05 and bbox 34.96371046265162,-17.32760743759949,34.977469765322226,-17.322351372243453\n", + " Image downloaded for 2024-05-05 and bbox 34.96371046265162,-17.315106596091614,34.96405511470557,-17.312526972941786\n", + " Image downloaded for 2024-05-06 and bbox 34.893901568473275,-17.347991154602312,34.902244620706924,-17.34035402194366\n", + " Image downloaded for 2024-05-06 and bbox 34.88396660293689,-17.329532375657408,34.90142638883001,-17.32760743759949\n", + " Image downloaded for 2024-05-06 and bbox 34.88382012875465,-17.32760743759949,34.90326541097948,-17.315648863263682\n", + " Image downloaded for 2024-05-06 and bbox 34.883117060422094,-17.315648863263682,34.9023997776829,-17.30369028892787\n", + " Image downloaded for 2024-05-06 and bbox 34.883228421674296,-17.30369028892787,34.90087977072043,-17.29173171459206\n", + " Image downloaded for 2024-05-06 and bbox 34.905630133532,-17.344205996328164,34.92341376153686,-17.3395660119353\n", + " Image downloaded for 2024-05-06 and bbox 34.905710855573936,-17.3395660119353,34.92341376153686,-17.32760743759949\n", + " Image downloaded for 2024-05-06 and bbox 34.90326541097948,-17.32760743759949,34.9146041448172,-17.316916692391352\n", + " Image downloaded for 2024-05-06 and bbox 34.92341376153686,-17.35152458627111,34.93795515789262,-17.3395660119353\n", + " Image downloaded for 2024-05-06 and bbox 34.92341376153686,-17.3395660119353,34.930609068174576,-17.334652123669677\n", + " Image downloaded for 2024-05-06 and bbox 34.95572747068288,-17.346631434137443,34.96371046265162,-17.3395660119353\n", + " Image downloaded for 2024-05-06 and bbox 34.95078266733916,-17.3395660119353,34.96371046265162,-17.32760743759949\n", + " Image downloaded for 2024-05-06 and bbox 34.947001852567226,-17.32760743759949,34.96371046265162,-17.315648863263682\n", + " Image downloaded for 2024-05-06 and bbox 34.95178751078458,-17.315648863263682,34.96371046265162,-17.311133447223234\n", + " Image downloaded for 2024-05-06 and bbox 34.96371046265162,-17.34987611658989,34.983858813209004,-17.3395660119353\n", + " Image downloaded for 2024-05-06 and bbox 34.96371046265162,-17.3395660119353,34.982903717937305,-17.32760743759949\n", + " Image downloaded for 2024-05-06 and bbox 34.96371046265162,-17.32760743759949,34.977469765322226,-17.322351372243453\n", + " Image downloaded for 2024-05-06 and bbox 34.96371046265162,-17.315106596091614,34.96405511470557,-17.312526972941786\n" ] } ], "source": [ "# Load areas outside the loop if they remain constant\n", - "bbox_area = json.dumps(chosen_area)\n", - "areas = json.loads(os.getenv('BBOX', bbox_area))\n", + "#bbox_area = json.dumps(chosen_area)\n", + "#areas = json.loads(os.getenv('BBOX', bbox_area))\n", "resolution = 3\n", "\n", "for slot in slots:\n", - " for area in areas:\n", - " bbox = BBox(bbox=area, crs=CRS.WGS84)\n", + " for bbox in bbox_list:\n", + " bbox = BBox(bbox=bbox, crs=CRS.WGS84)\n", " size = bbox_to_dimensions(bbox, resolution=resolution)\n", " download_function(slot, bbox, size)" ] }, { "cell_type": "code", - "execution_count": 14, + "execution_count": 20, + "id": "7c0f8f0e-b1bc-4b5a-939d-e4358a485c06", + "metadata": {}, + "outputs": [], + "source": [ + "\n", + "#if project == 'chemba':\n", + "# chosen_area = [[34.9460, -17.3500, 34.9839, -17.3110], [34.8830, -17.3516, 34.9380, -17.2917]]\n", + "\n", + "#if project == 'chemba_test_8b':\n", + "# chosen_area = [[34.946, -17.3516, 34.938, -17.2917], [34.883, -17.3516, 34.938, -17.2917]]\n", + "\n", + "#if project == 'xinavane':\n", + "# chosen_area = [[32.6790, -25.0333, 32.7453, -25.0235], [32.6213, -25.0647, 32.6284, -25.0570]]" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "id": "16c449ab-eb40-4ed9-9a26-6a64dae114e1", + "metadata": {}, + "outputs": [], + "source": [ + "#bbox_area = json.dumps(chosen_area)\n", + "\n", + "#areas = json.loads(os.getenv('BBOX', bbox_area))\n", + "#areas" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "id": "6c02d7de-cddf-4fc3-8d23-8431415d07b8", + "metadata": {}, + "outputs": [], + "source": [ + "# Load areas outside the loop if they remain constant\n", + "#bbox_area = json.dumps(chosen_area)\n", + "#areas = json.loads(os.getenv('BBOX', bbox_area))\n", + "#resolution = 3\n", + "\n", + "#for slot in slots:\n", + "# for area in areas:\n", + "# bbox = BBox(bbox=area, crs=CRS.WGS84)\n", + "# size = bbox_to_dimensions(bbox, resolution=resolution)\n", + "# download_function(slot, bbox, size)" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "id": "f62d8af8-1c5c-4a83-b888-7205bbe191af", + "metadata": {}, + "outputs": [], + "source": [ + "#size" + ] + }, + { + "cell_type": "code", + "execution_count": 24, "id": "68db3c15-6f94-432e-b315-c329e4251b21", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/070a249fec43caa77a02049c86e586aa/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/d5f234792673d5b8a6d1cc13cec7e041/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/9cddb3abd8b3c33879d686aa6a9b9dee/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/2dbfbc7cbda2f7db8be8b7680431e47c/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/24a72e1bbc4f25006ab15e148857f041/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/bc05af36e35b08d3063ae998d98750a1/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/b2e92c6e2b3eba648b87631c05fd33c4/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/7da8a528bdd7da9d2915e0ad5bd3aa49/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/e6a86feba66db9be7d0f6f753d5f8a07/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/992d8bdfea483876a24577943ba3c6e9/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/15c39463650e9ff19c944d10cc759b8e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/ce03682adb8065c3297d1a79fd5c66b2/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/ffa026ea4fc2c76fd15ffab3e4956273/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/253fb50e5b4fccb6a0b9068248ef2029/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/565116cd18de8ffff80c637b10a7b857/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/40b4c208b22757a8d7f1de760e23db78/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/b24b16e1b41745ca3df7db17f9ec722f/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/4cd80c7f1e11573349c6d85eba82006e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/070a249fec43caa77a02049c86e586aa/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/d5f234792673d5b8a6d1cc13cec7e041/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/9cddb3abd8b3c33879d686aa6a9b9dee/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/2dbfbc7cbda2f7db8be8b7680431e47c/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/24a72e1bbc4f25006ab15e148857f041/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/bc05af36e35b08d3063ae998d98750a1/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/b2e92c6e2b3eba648b87631c05fd33c4/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/7da8a528bdd7da9d2915e0ad5bd3aa49/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/e6a86feba66db9be7d0f6f753d5f8a07/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/992d8bdfea483876a24577943ba3c6e9/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/15c39463650e9ff19c944d10cc759b8e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/ce03682adb8065c3297d1a79fd5c66b2/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/ffa026ea4fc2c76fd15ffab3e4956273/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/253fb50e5b4fccb6a0b9068248ef2029/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/565116cd18de8ffff80c637b10a7b857/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/40b4c208b22757a8d7f1de760e23db78/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/b24b16e1b41745ca3df7db17f9ec722f/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/4cd80c7f1e11573349c6d85eba82006e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/070a249fec43caa77a02049c86e586aa/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/d5f234792673d5b8a6d1cc13cec7e041/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/9cddb3abd8b3c33879d686aa6a9b9dee/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/2dbfbc7cbda2f7db8be8b7680431e47c/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/24a72e1bbc4f25006ab15e148857f041/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/bc05af36e35b08d3063ae998d98750a1/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/b2e92c6e2b3eba648b87631c05fd33c4/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/7da8a528bdd7da9d2915e0ad5bd3aa49/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/e6a86feba66db9be7d0f6f753d5f8a07/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/b24b16e1b41745ca3df7db17f9ec722f/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/4cd80c7f1e11573349c6d85eba82006e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/ffa026ea4fc2c76fd15ffab3e4956273/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/15c39463650e9ff19c944d10cc759b8e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/992d8bdfea483876a24577943ba3c6e9/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/253fb50e5b4fccb6a0b9068248ef2029/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/ce03682adb8065c3297d1a79fd5c66b2/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/565116cd18de8ffff80c637b10a7b857/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/40b4c208b22757a8d7f1de760e23db78/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/b0064a92db1de58dee5904e42904a917/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/dcceff6661d50aa590c48edbec3c28c7/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/d6640ca5ed0ad46fa7a4649b4bc7a66e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/80795e1d20de17e172c477271a844e3f/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/07e14f1169d45a017a76a9aaa55aa5bb/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/a29c686db3482bd689e3120500d7a9db/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/928f5225aeea66f054d6831b978609ee/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/14a9a612173eba8f8449e843b79ab9ad/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/1dfa662195163fcb4ecb1b29291d252e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/ab759841791d0c72960cc02a07733882/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/0edf804e3a696952a59c89101a705f6f/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/bcf51810bcdddc017491fe147176480f/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/11ad498177b78b485e9f1419c01ec37d/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/b17cc2b782472f71056afd14253e7c7b/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/fae4bc342d58f06032b244eb15a5926e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/3008c948ae005039ec18316d45f18673/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/40c017b2e4a4019b6b9e320ef22c6fe7/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/87292edb77850d399aa0f6ad8a554ab5/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/b0064a92db1de58dee5904e42904a917/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/dcceff6661d50aa590c48edbec3c28c7/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/d6640ca5ed0ad46fa7a4649b4bc7a66e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/80795e1d20de17e172c477271a844e3f/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/07e14f1169d45a017a76a9aaa55aa5bb/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/a29c686db3482bd689e3120500d7a9db/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/928f5225aeea66f054d6831b978609ee/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/14a9a612173eba8f8449e843b79ab9ad/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/1dfa662195163fcb4ecb1b29291d252e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/ab759841791d0c72960cc02a07733882/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/0edf804e3a696952a59c89101a705f6f/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/bcf51810bcdddc017491fe147176480f/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/11ad498177b78b485e9f1419c01ec37d/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/b17cc2b782472f71056afd14253e7c7b/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/fae4bc342d58f06032b244eb15a5926e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/3008c948ae005039ec18316d45f18673/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/40c017b2e4a4019b6b9e320ef22c6fe7/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/87292edb77850d399aa0f6ad8a554ab5/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/b0064a92db1de58dee5904e42904a917/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/dcceff6661d50aa590c48edbec3c28c7/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/d6640ca5ed0ad46fa7a4649b4bc7a66e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/80795e1d20de17e172c477271a844e3f/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/07e14f1169d45a017a76a9aaa55aa5bb/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/ab759841791d0c72960cc02a07733882/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/fae4bc342d58f06032b244eb15a5926e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/0edf804e3a696952a59c89101a705f6f/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/11ad498177b78b485e9f1419c01ec37d/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/14a9a612173eba8f8449e843b79ab9ad/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/928f5225aeea66f054d6831b978609ee/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/b17cc2b782472f71056afd14253e7c7b/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/40c017b2e4a4019b6b9e320ef22c6fe7/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/a29c686db3482bd689e3120500d7a9db/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/87292edb77850d399aa0f6ad8a554ab5/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/1dfa662195163fcb4ecb1b29291d252e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/bcf51810bcdddc017491fe147176480f/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/3008c948ae005039ec18316d45f18673/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/7c3ae61521b7a6ab565225bb2249e4ec/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/ce0d47e14c97bbd784d118be2de0ae62/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/8dd96d3653f8e346e8098dc94c7e7cbd/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/ef08978e6219198d92b84878f68f9ae8/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/9d189abac90b8d44258b7966dbc5972a/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/6d4a207922a70ec6127d854d17f598e4/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/00ae1802be716a8949626bf14d0fe65d/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/143da61a9ceb72a81c2b8dc1f631eb2d/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/5691e02bc2d2913609d767911c880c2d/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/ff90ec1893e2333adb5e9de63c556bf2/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/2ee0d0739f1df2a96036e2eb9746c9e7/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/c82f67408211a5cd46957c546d913295/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/dd75980281bec0338d16a10595e51884/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/7cadb81ddbe4b4176700b80b9bee1bcd/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/c115e5f439927e7b937196d45323c125/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/e62127de6d9132a2a06da9fcd7fcf44e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/f09379504212b0f2696f029e78381658/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/df640075c8118c47b2e07fd78e96c75d/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/7c3ae61521b7a6ab565225bb2249e4ec/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/ce0d47e14c97bbd784d118be2de0ae62/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/8dd96d3653f8e346e8098dc94c7e7cbd/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/ef08978e6219198d92b84878f68f9ae8/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/9d189abac90b8d44258b7966dbc5972a/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/6d4a207922a70ec6127d854d17f598e4/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/00ae1802be716a8949626bf14d0fe65d/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/143da61a9ceb72a81c2b8dc1f631eb2d/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/5691e02bc2d2913609d767911c880c2d/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/ff90ec1893e2333adb5e9de63c556bf2/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/2ee0d0739f1df2a96036e2eb9746c9e7/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/c82f67408211a5cd46957c546d913295/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/dd75980281bec0338d16a10595e51884/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/7cadb81ddbe4b4176700b80b9bee1bcd/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/c115e5f439927e7b937196d45323c125/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/e62127de6d9132a2a06da9fcd7fcf44e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/f09379504212b0f2696f029e78381658/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/df640075c8118c47b2e07fd78e96c75d/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/7c3ae61521b7a6ab565225bb2249e4ec/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/ce0d47e14c97bbd784d118be2de0ae62/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/8dd96d3653f8e346e8098dc94c7e7cbd/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/ef08978e6219198d92b84878f68f9ae8/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/9d189abac90b8d44258b7966dbc5972a/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/6d4a207922a70ec6127d854d17f598e4/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/00ae1802be716a8949626bf14d0fe65d/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/143da61a9ceb72a81c2b8dc1f631eb2d/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/5691e02bc2d2913609d767911c880c2d/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/ff90ec1893e2333adb5e9de63c556bf2/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/2ee0d0739f1df2a96036e2eb9746c9e7/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/dd75980281bec0338d16a10595e51884/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/c82f67408211a5cd46957c546d913295/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/df640075c8118c47b2e07fd78e96c75d/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/7cadb81ddbe4b4176700b80b9bee1bcd/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/e62127de6d9132a2a06da9fcd7fcf44e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/f09379504212b0f2696f029e78381658/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/c115e5f439927e7b937196d45323c125/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/1c88c78ecb9577729d2f858937f1a715/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/7b5d1d3e3eb5bc4b0a5d37e7d7a853f4/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/f345af9d6fb371618c890b8648360f37/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/d2b3758861aa0a725742a06fcf4b1715/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/98f992dc9d814da5494e78bc76786fed/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/b4bc4099ff05d542f37679176df3220a/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/bedc27aa80ee539b6224e5027aa73bfd/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/f49a7a4b5171c5710a21e4a5705b71dc/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/03be40a9c2d05f7bc22b0e074323dca1/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/69f44076887e0190fe85f2fe3c830acf/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/3820b9461a1622c3b583885be4fd40e8/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/4b90894ec916a7d180bf2ddcb5b7d4e5/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/7c9e2a2700c85973afa9b27a4389464e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/09c61fc78f8bec1993f6376d48efaf0e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/6b3e5435a6ddb1005c4b54533f39b55d/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/dfcb4a9dddcbc391cee80586031a0c03/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/a325232d8b7c5fe528d5d6f1367c6fc7/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/94cb38836b57a6721d7fc1f0b4b436b7/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/1c88c78ecb9577729d2f858937f1a715/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/7b5d1d3e3eb5bc4b0a5d37e7d7a853f4/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/f345af9d6fb371618c890b8648360f37/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/d2b3758861aa0a725742a06fcf4b1715/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/98f992dc9d814da5494e78bc76786fed/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/b4bc4099ff05d542f37679176df3220a/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/bedc27aa80ee539b6224e5027aa73bfd/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/f49a7a4b5171c5710a21e4a5705b71dc/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/03be40a9c2d05f7bc22b0e074323dca1/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/69f44076887e0190fe85f2fe3c830acf/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/3820b9461a1622c3b583885be4fd40e8/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/4b90894ec916a7d180bf2ddcb5b7d4e5/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/7c9e2a2700c85973afa9b27a4389464e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/09c61fc78f8bec1993f6376d48efaf0e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/6b3e5435a6ddb1005c4b54533f39b55d/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/dfcb4a9dddcbc391cee80586031a0c03/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/a325232d8b7c5fe528d5d6f1367c6fc7/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/94cb38836b57a6721d7fc1f0b4b436b7/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/1c88c78ecb9577729d2f858937f1a715/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/7b5d1d3e3eb5bc4b0a5d37e7d7a853f4/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/f345af9d6fb371618c890b8648360f37/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/d2b3758861aa0a725742a06fcf4b1715/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/98f992dc9d814da5494e78bc76786fed/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/b4bc4099ff05d542f37679176df3220a/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/bedc27aa80ee539b6224e5027aa73bfd/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/f49a7a4b5171c5710a21e4a5705b71dc/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/03be40a9c2d05f7bc22b0e074323dca1/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/69f44076887e0190fe85f2fe3c830acf/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/3820b9461a1622c3b583885be4fd40e8/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/4b90894ec916a7d180bf2ddcb5b7d4e5/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/09c61fc78f8bec1993f6376d48efaf0e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/7c9e2a2700c85973afa9b27a4389464e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/6b3e5435a6ddb1005c4b54533f39b55d/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/dfcb4a9dddcbc391cee80586031a0c03/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/a325232d8b7c5fe528d5d6f1367c6fc7/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/94cb38836b57a6721d7fc1f0b4b436b7/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/d269062c99ec6358bbcddf4d85830e1e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/59fb3df57c52022d90f415be322e5d1c/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/9caece3569faf5643e28bf213be9fbad/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/201bc3d66659f2b76c8b2b18e0a248f5/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/df85beb0ea7efdf5b8241c6a338b3f58/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/aa91ca61df4a4c00ceca2d66194aeb3d/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/db9ffc54a1ee8aeeb453b4c37c90670b/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/1e634885b84129cf19b99665ba58e7fd/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/805061a259ae2ec6d2fef39eba67e5bd/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/2220ba9439566890a8b21e768c72e97a/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/9c5ed1a949fd843e00d4094c0cde2a45/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/05fc279fa016124b724d0156ac6cfec7/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/49e3a225d1b5d42735702b0e75898fe9/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/cbdef469ba6fe33ef40237c8708cd5f2/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/be226cf4eb6bd1076834180b48a4936a/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/2f1470b5b6222f1f9e2db22c20d55926/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/260011d11ef255b17515affe882f195f/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/081ba00079f1355c7386b466a3be7332/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/d269062c99ec6358bbcddf4d85830e1e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/59fb3df57c52022d90f415be322e5d1c/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/9caece3569faf5643e28bf213be9fbad/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/201bc3d66659f2b76c8b2b18e0a248f5/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/df85beb0ea7efdf5b8241c6a338b3f58/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/aa91ca61df4a4c00ceca2d66194aeb3d/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/db9ffc54a1ee8aeeb453b4c37c90670b/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/1e634885b84129cf19b99665ba58e7fd/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/805061a259ae2ec6d2fef39eba67e5bd/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/2220ba9439566890a8b21e768c72e97a/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/9c5ed1a949fd843e00d4094c0cde2a45/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/05fc279fa016124b724d0156ac6cfec7/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/49e3a225d1b5d42735702b0e75898fe9/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/cbdef469ba6fe33ef40237c8708cd5f2/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/be226cf4eb6bd1076834180b48a4936a/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/2f1470b5b6222f1f9e2db22c20d55926/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/260011d11ef255b17515affe882f195f/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/081ba00079f1355c7386b466a3be7332/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/d269062c99ec6358bbcddf4d85830e1e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/59fb3df57c52022d90f415be322e5d1c/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/be226cf4eb6bd1076834180b48a4936a/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/9caece3569faf5643e28bf213be9fbad/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/201bc3d66659f2b76c8b2b18e0a248f5/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/df85beb0ea7efdf5b8241c6a338b3f58/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/aa91ca61df4a4c00ceca2d66194aeb3d/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/db9ffc54a1ee8aeeb453b4c37c90670b/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/1e634885b84129cf19b99665ba58e7fd/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/805061a259ae2ec6d2fef39eba67e5bd/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/2220ba9439566890a8b21e768c72e97a/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/9c5ed1a949fd843e00d4094c0cde2a45/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/05fc279fa016124b724d0156ac6cfec7/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/49e3a225d1b5d42735702b0e75898fe9/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/cbdef469ba6fe33ef40237c8708cd5f2/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/260011d11ef255b17515affe882f195f/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/081ba00079f1355c7386b466a3be7332/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/2f1470b5b6222f1f9e2db22c20d55926/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/bcce0f7421aeaf7cfab93d09c3b58998/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/2a98e627489ae5d22e495adc012c1389/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/c050b780390fe646e72bee9b81d71179/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/19510c8d6ecfa862d1201b60c399cfb5/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/b79bcb2a831f7ec32c2d51fb2de0d086/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/c0474d3ea9f9db792523c9b5b26c425b/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/90bf7f40b26a14a1eb6da580cc32b969/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/0a2e98d3a638c38b7e8981ff267f09dc/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/39277034ce64bf946dc60587811427eb/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/74074c1cb9d7063cc551aea96f668adf/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/bbd4cad44445666248ac3b1534ce3471/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/d361732ffabb8fa5ea8a180ddb40222a/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/652afe35c656c387fc3520b583b834cd/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/ad82798694128157adb64d1b8a2c8448/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/f7c27016bced65294ae50adced005920/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/f5c2f4919afdd0863e5008c1973073d8/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/8fe0e74407ff561eb3fe64d463e663c6/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/a083c53173057f787c7505f323bbb12b/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/bcce0f7421aeaf7cfab93d09c3b58998/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/2a98e627489ae5d22e495adc012c1389/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/c050b780390fe646e72bee9b81d71179/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/19510c8d6ecfa862d1201b60c399cfb5/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/b79bcb2a831f7ec32c2d51fb2de0d086/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/c0474d3ea9f9db792523c9b5b26c425b/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/90bf7f40b26a14a1eb6da580cc32b969/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/0a2e98d3a638c38b7e8981ff267f09dc/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/39277034ce64bf946dc60587811427eb/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/74074c1cb9d7063cc551aea96f668adf/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/bbd4cad44445666248ac3b1534ce3471/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/d361732ffabb8fa5ea8a180ddb40222a/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/652afe35c656c387fc3520b583b834cd/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/ad82798694128157adb64d1b8a2c8448/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/f7c27016bced65294ae50adced005920/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/f5c2f4919afdd0863e5008c1973073d8/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/8fe0e74407ff561eb3fe64d463e663c6/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/a083c53173057f787c7505f323bbb12b/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/bcce0f7421aeaf7cfab93d09c3b58998/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/2a98e627489ae5d22e495adc012c1389/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/c050b780390fe646e72bee9b81d71179/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/19510c8d6ecfa862d1201b60c399cfb5/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/b79bcb2a831f7ec32c2d51fb2de0d086/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/c0474d3ea9f9db792523c9b5b26c425b/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/90bf7f40b26a14a1eb6da580cc32b969/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/0a2e98d3a638c38b7e8981ff267f09dc/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/39277034ce64bf946dc60587811427eb/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/a083c53173057f787c7505f323bbb12b/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/d361732ffabb8fa5ea8a180ddb40222a/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/8fe0e74407ff561eb3fe64d463e663c6/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/74074c1cb9d7063cc551aea96f668adf/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/bbd4cad44445666248ac3b1534ce3471/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/f5c2f4919afdd0863e5008c1973073d8/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/652afe35c656c387fc3520b583b834cd/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/f7c27016bced65294ae50adced005920/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/ad82798694128157adb64d1b8a2c8448/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/b8d623ea5876f6aca53982448545df4e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/f553cf6572d545c7bd0375533e1104a6/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/2b1e32cea7de7b44297080f52ce8b977/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/98fdae0b2a978f454a5ba3d525c4ec0a/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/1697260e186dd1888764affb75206978/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/b9766914398211c229f30474437a6dde/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/914ef14d917eea8b7b4052a57e63226b/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/a9090cb73c3d49ff70b13f1bad2f9ae8/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/b586a751b45e71ad1eae14034be541a4/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/5f85ddaa33a3f32a0c6e9d918efffeba/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/a83fd5e1ceb617fe53b870d7df1fe84a/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/0a27248d1ba8877a330f7b61e121ff3d/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/26a04d578de509b9bc216707b2e244c3/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/e2e21792b94aeb2bc7943798e2369c72/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/76db8c0e2a04ba1d266ad45279ca6ab1/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/1b4e026a38e07fd2af6c4fe65e595be8/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/81c414d946f67775de1da2aafb72c393/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/ad18dd0cd388525def320f0fb7b31939/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/b8d623ea5876f6aca53982448545df4e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/f553cf6572d545c7bd0375533e1104a6/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/2b1e32cea7de7b44297080f52ce8b977/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/98fdae0b2a978f454a5ba3d525c4ec0a/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/1697260e186dd1888764affb75206978/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/b9766914398211c229f30474437a6dde/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/914ef14d917eea8b7b4052a57e63226b/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/a9090cb73c3d49ff70b13f1bad2f9ae8/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/b586a751b45e71ad1eae14034be541a4/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/5f85ddaa33a3f32a0c6e9d918efffeba/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/a83fd5e1ceb617fe53b870d7df1fe84a/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/0a27248d1ba8877a330f7b61e121ff3d/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/26a04d578de509b9bc216707b2e244c3/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/e2e21792b94aeb2bc7943798e2369c72/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/76db8c0e2a04ba1d266ad45279ca6ab1/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/1b4e026a38e07fd2af6c4fe65e595be8/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/81c414d946f67775de1da2aafb72c393/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/ad18dd0cd388525def320f0fb7b31939/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/b8d623ea5876f6aca53982448545df4e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/f553cf6572d545c7bd0375533e1104a6/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/2b1e32cea7de7b44297080f52ce8b977/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/98fdae0b2a978f454a5ba3d525c4ec0a/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/1697260e186dd1888764affb75206978/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/b9766914398211c229f30474437a6dde/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/76db8c0e2a04ba1d266ad45279ca6ab1/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/e2e21792b94aeb2bc7943798e2369c72/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/81c414d946f67775de1da2aafb72c393/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/914ef14d917eea8b7b4052a57e63226b/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/a9090cb73c3d49ff70b13f1bad2f9ae8/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/b586a751b45e71ad1eae14034be541a4/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/0a27248d1ba8877a330f7b61e121ff3d/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/26a04d578de509b9bc216707b2e244c3/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/a83fd5e1ceb617fe53b870d7df1fe84a/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/5f85ddaa33a3f32a0c6e9d918efffeba/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/1b4e026a38e07fd2af6c4fe65e595be8/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/ad18dd0cd388525def320f0fb7b31939/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n" + ] + } + ], "source": [ "for slot in slots:\n", " merge_files(slot)" @@ -1182,9 +1459,11 @@ }, { "cell_type": "code", - "execution_count": 15, + "execution_count": 25, "id": "cb3fa856-a550-4899-844a-e69209bba3ad", - "metadata": {}, + "metadata": { + "tags": [] + }, "outputs": [ { "name": "stdout", @@ -1243,7 +1522,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.9.13" + "version": "3.11.4" } }, "nbformat": 4, diff --git a/r_app/CI_report_dashboard_planet.Rmd b/r_app/CI_report_dashboard_planet.Rmd index 1c03956..784e285 100644 --- a/r_app/CI_report_dashboard_planet.Rmd +++ b/r_app/CI_report_dashboard_planet.Rmd @@ -124,7 +124,11 @@ CI_m3 <- brick(here(weekly_CI_mosaic, paste0("week_",week_minus_3, "_", year_3, # last_week_dif_raster <- ((CI - CI_m1) / CI_m1) * 100 last_week_dif_raster_abs <- (CI - CI_m1) +``` +```{r data_129, message=TRUE, warning=TRUE, include=FALSE} three_week_dif_raster_abs <- (CI - CI_m3) +``` +```{r data_132, message=TRUE, warning=TRUE, include=FALSE} # AllPivots0 <-st_read(here(data_dir_project, "pivot.geojson")) diff --git a/r_app/Rplots.pdf b/r_app/Rplots.pdf index 43ef5b7..075f215 100644 Binary files a/r_app/Rplots.pdf and b/r_app/Rplots.pdf differ diff --git a/runpython.sh b/runpython.sh index 8afafaa..c03d2ab 100755 --- a/runpython.sh +++ b/runpython.sh @@ -33,17 +33,18 @@ echo "Aantal dagen: $days" echo "Project directory: $project_dir" echo "BBOX: $bbox" + # Activeer de virtuele omgeving script_dir="$(dirname "$0")" source "$script_dir/python_app/myenv/bin/activate" - +echo "$script_dir/python_app/planet_download.ipynb" export DAYS=$days export DATE=$date export PROJECT_DIR=$project_dir export BBOX=$bbox # Hier kan je verdere stappen toevoegen, zoals het uitvoeren van je Python-script of Jupyter Notebook -jupyter nbconvert --execute --to script --stdout "$script_dir/python_app/Chemba_download.ipynb" +jupyter nbconvert --execute --to script --stdout "$script_dir/python_app/planet_download.ipynb" # Deactiveer de virtuele omgeving (optioneel) deactivate