1531 lines
210 KiB
Plaintext
1531 lines
210 KiB
Plaintext
{
|
|
"cells": [
|
|
{
|
|
"cell_type": "markdown",
|
|
"id": "0c18e312-8421-47d7-84f9-ed7d5e47e7ee",
|
|
"metadata": {
|
|
"tags": []
|
|
},
|
|
"source": [
|
|
"#### Load packages and connect to SentinelHub"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 1,
|
|
"id": "b7ca7102-5fd9-481f-90cd-3ba60e288649",
|
|
"metadata": {},
|
|
"outputs": [],
|
|
"source": [
|
|
"# $ pip install sentinelhub\n",
|
|
"# pip install gdal\n",
|
|
"\n",
|
|
"import os\n",
|
|
"import json\n",
|
|
"import datetime\n",
|
|
"import numpy as np\n",
|
|
"import matplotlib.pyplot as plt\n",
|
|
"from pathlib import Path\n",
|
|
"from osgeo import gdal\n",
|
|
"\n",
|
|
"from sentinelhub import MimeType, CRS, BBox, SentinelHubRequest, SentinelHubDownloadClient, \\\n",
|
|
" DataCollection, bbox_to_dimensions, DownloadRequest, SHConfig, BBoxSplitter, read_data, Geometry\n",
|
|
"\n",
|
|
"config = SHConfig()\n",
|
|
"\n",
|
|
"import time\n",
|
|
"import shutil\n",
|
|
"\n",
|
|
"import geopandas as gpd\n",
|
|
"from shapely.geometry import MultiLineString, MultiPolygon, Polygon, box, shape\n"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 2,
|
|
"id": "330c967c-2742-4a7a-9a61-28bfdaf8eeca",
|
|
"metadata": {},
|
|
"outputs": [],
|
|
"source": [
|
|
"# pip install geopandas"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 3,
|
|
"id": "49f8496a-a267-4b74-9500-a168e031ed68",
|
|
"metadata": {},
|
|
"outputs": [],
|
|
"source": [
|
|
"#import pipreqs\n",
|
|
"#pipreqs Resilience BV/4002 CMD App - General/4002 CMD Team/4002 TechnicalData/04 WP2 technical/python/Chemba_download.ipynb"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 4,
|
|
"id": "5491a840-779c-4f0c-8164-c3de738b3298",
|
|
"metadata": {},
|
|
"outputs": [],
|
|
"source": [
|
|
"config.sh_client_id = '1a72d811-4f0e-4447-8282-df09608cff44'\n",
|
|
"config.sh_client_secret = 'FcBlRL29i9ZmTzhmKTv1etSMFs5PxSos'"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 5,
|
|
"id": "eb1fb662-0e25-4ca9-8317-c6953290842b",
|
|
"metadata": {},
|
|
"outputs": [],
|
|
"source": [
|
|
"collection_id = 'c691479f-358c-46b1-b0f0-e12b70a9856c'\n",
|
|
"byoc = DataCollection.define_byoc(\n",
|
|
" collection_id,\n",
|
|
" name='planet_data2',\n",
|
|
" is_timeless=True)"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "markdown",
|
|
"id": "6adb603d-8182-48c6-a051-869e16ee7bba",
|
|
"metadata": {
|
|
"tags": []
|
|
},
|
|
"source": [
|
|
"#### Set some variables\n",
|
|
"The only place anything might need to be changed."
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 6,
|
|
"id": "060396e0-e5ee-4b54-b211-5d8bfcba167f",
|
|
"metadata": {},
|
|
"outputs": [],
|
|
"source": [
|
|
"project = 'chemba' #or xinavane or chemba_test_8b\n",
|
|
"#project = 'xinavane' #or xinavane or chemba_test_8b\n",
|
|
"#project = 'chemba_test_8b' #or xinavane or chemba_test_8b\n"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 7,
|
|
"id": "c9f79e81-dff8-4109-8d26-6c423142dcf2",
|
|
"metadata": {},
|
|
"outputs": [],
|
|
"source": [
|
|
"# Adjust the number of days needed\n",
|
|
"days = 7 #change back to 28 which is the default. 3 years is 1095 days."
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 8,
|
|
"id": "e18bdf8f-be4b-44ab-baaa-de5de60d92cb",
|
|
"metadata": {},
|
|
"outputs": [],
|
|
"source": [
|
|
"#delete all the satellite outputs -> then True\n",
|
|
"empty_folder_question = False"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "markdown",
|
|
"id": "81bbb513-0bd2-4277-83e8-6f94051ce70b",
|
|
"metadata": {
|
|
"tags": []
|
|
},
|
|
"source": [
|
|
"#### Define functions\n",
|
|
"After this block, no manual changes to parameters are required. \n"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 9,
|
|
"id": "3f7c8e04-4569-457b-b39d-283582c4ba36",
|
|
"metadata": {},
|
|
"outputs": [],
|
|
"source": [
|
|
"BASE_PATH = Path('../laravel_app/storage/app') / os.getenv('PROJECT_DIR',project) \n",
|
|
"BASE_PATH_SINGLE_IMAGES = Path(BASE_PATH / 'single_images')\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",
|
|
" os.makedirs(BASE_PATH_SINGLE_IMAGES)\n",
|
|
" \n",
|
|
"if not os.path.exists(folder_for_merged_tifs):\n",
|
|
" os.makedirs(folder_for_merged_tifs)\n",
|
|
"\n",
|
|
"if not os.path.exists(folder_for_virtual_raster):\n",
|
|
" os.makedirs(folder_for_virtual_raster)"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 10,
|
|
"id": "244b5752-4f02-4347-9278-f6a0a46b88f4",
|
|
"metadata": {},
|
|
"outputs": [],
|
|
"source": [
|
|
"evalscript_true_color = \"\"\"\n",
|
|
" //VERSION=3\n",
|
|
"\n",
|
|
" function setup() {\n",
|
|
" return {\n",
|
|
" input: [{\n",
|
|
" bands: [\"Red\", \"Green\", \"Blue\", \"NIR\", \"UDM2_Clear\"]\n",
|
|
" }],\n",
|
|
" output: {\n",
|
|
" bands: 4 \n",
|
|
" //sampleType: \"FLOAT32\"\n",
|
|
" }\n",
|
|
" };\n",
|
|
" }\n",
|
|
"\n",
|
|
" function evaluatePixel(sample) {\n",
|
|
" // Scale the bands\n",
|
|
" var scaledBlue = [2.5 * sample.Blue / 10000];\n",
|
|
" var scaledGreen = [2.5 * sample.Green / 10000];\n",
|
|
" var scaledRed = [2.5 * sample.Red / 10000];\n",
|
|
" var scaledNIR = [2.5 * sample.NIR / 10000];\n",
|
|
" \n",
|
|
" // Calculate the CI (Chlorophyll Index) using the scaled values\n",
|
|
" // var CI = [scaledNIR / scaledGreen - 1] ;\n",
|
|
"\n",
|
|
"// Output the scaled bands and CI\n",
|
|
" if (sample.UDM2_Clear != 0) { \n",
|
|
" return [\n",
|
|
" scaledRed,\n",
|
|
" scaledGreen,\n",
|
|
" scaledBlue,\n",
|
|
" scaledNIR\n",
|
|
" // sample.UDM,\n",
|
|
" // CI,\n",
|
|
" ]\n",
|
|
" } else {\n",
|
|
" return [NaN, NaN, NaN, NaN]}\n",
|
|
" }\n",
|
|
"\"\"\"\n",
|
|
"\n",
|
|
"def get_true_color_request_day(time_interval, bbox, size):\n",
|
|
" return SentinelHubRequest(\n",
|
|
" evalscript=evalscript_true_color,\n",
|
|
" input_data=[\n",
|
|
" SentinelHubRequest.input_data(\n",
|
|
" data_collection=DataCollection.planet_data2,\n",
|
|
" time_interval=(time_interval, time_interval)\n",
|
|
" )\n",
|
|
" ],\n",
|
|
" responses=[\n",
|
|
" SentinelHubRequest.output_response('default', MimeType.TIFF)\n",
|
|
" ],\n",
|
|
" bbox=bbox,\n",
|
|
" size=size,\n",
|
|
" config=config,\n",
|
|
" data_folder=str(BASE_PATH_SINGLE_IMAGES / time_interval),\n",
|
|
"\n",
|
|
" )\n",
|
|
"\n",
|
|
"def download_function(slot, bbox, size):\n",
|
|
" # create a list of requests\n",
|
|
" list_of_requests = [get_true_color_request_day(slot, bbox, size)]\n",
|
|
" list_of_requests = [request.download_list[0] for request in list_of_requests]\n",
|
|
"\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 + ' and bbox ' + str(bbox))\n",
|
|
" \n",
|
|
" time.sleep(.1)\n",
|
|
" \n",
|
|
"\n",
|
|
"def merge_files(slot):\n",
|
|
" \n",
|
|
" # List the downloaded Tiffs in the different subfolders with pathlib (native library)\n",
|
|
" file_list = [f\"{x}/response.tiff\" for x in Path(BASE_PATH_SINGLE_IMAGES / slot).iterdir()]\n",
|
|
" \n",
|
|
" #print(file_list)\n",
|
|
"\n",
|
|
" folder_for_merged_tifs = str(BASE_PATH / 'merged_tif' / f\"{slot}.tif\")\n",
|
|
" folder_for_virtual_raster = str(BASE_PATH / 'merged_virtual' / f\"merged{slot}.vrt\")\n",
|
|
"\n",
|
|
" # Create a virtual raster\n",
|
|
" vrt_all = gdal.BuildVRT(folder_for_virtual_raster, file_list)\n",
|
|
" vrt_all = gdal.BuildVRT(folder_for_virtual_raster, file_list)\n",
|
|
"\n",
|
|
" # Convert to JPEG\n",
|
|
" gdal.Translate(folder_for_merged_tifs,folder_for_virtual_raster)"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 11,
|
|
"id": "848dc773-70d6-4ae6-b05c-d6ebfb41624d",
|
|
"metadata": {},
|
|
"outputs": [
|
|
{
|
|
"name": "stdout",
|
|
"output_type": "stream",
|
|
"text": [
|
|
"Monthly time windows:\n",
|
|
"\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"
|
|
]
|
|
}
|
|
],
|
|
"source": [
|
|
"days_needed = int(os.environ.get(\"DAYS\", days))\n",
|
|
"date_str = os.environ.get(\"DATE\")\n",
|
|
"if date_str:\n",
|
|
" # Parse de datumstring naar een datetime.date object\n",
|
|
" end = datetime.datetime.strptime(date_str, \"%Y-%m-%d\").date()\n",
|
|
"else:\n",
|
|
" # Gebruik de huidige datum als fallback\n",
|
|
" end = datetime.date.today() \n",
|
|
"\n",
|
|
"start = end - datetime.timedelta(days=days_needed - 1)\n",
|
|
"\n",
|
|
"slots = [(start + datetime.timedelta(days=i)).strftime('%Y-%m-%d') for i in range(days_needed)]\n",
|
|
"\n",
|
|
"print('Monthly time windows:\\n')\n",
|
|
"if len(slots) > 10:\n",
|
|
" for slot in slots[:3]:\n",
|
|
" print(slot)\n",
|
|
" print(\"...\")\n",
|
|
" for slot in slots[-3:]:\n",
|
|
" print(slot)\n",
|
|
"else:\n",
|
|
" for slot in slots:\n",
|
|
" print(slot)\n",
|
|
"\n"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "markdown",
|
|
"id": "f8ea846f-783b-4460-a951-7b522273555f",
|
|
"metadata": {},
|
|
"source": [
|
|
"#### Download images\n"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 12,
|
|
"id": "c803e373-2567-4233-af7d-0d2d6f7d4f8e",
|
|
"metadata": {},
|
|
"outputs": [],
|
|
"source": [
|
|
"geo_json = gpd.read_file(str(geojson_file))"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 13,
|
|
"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": [
|
|
"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": [
|
|
"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"100.0\" height=\"100.0\" viewBox=\"34.89356784638393 -17.348324876691656 0.009010496412336977 0.008304576837339539\" preserveAspectRatio=\"xMinYMin meet\"><g transform=\"matrix(1,0,0,-1,0,-34.68834517654597)\"><g><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.00018020992824673953\" opacity=\"0.6\" d=\"M 34.89710494521702,-17.347833766448016 L 34.89698975304432,-17.347874177923067 L 34.8968725164452,-17.34790874415768 L 34.89675355676649,-17.34793737040395 L 34.89663320007866,-17.34795997819553 L 34.89651177628195,-17.34797650556274 L 34.896389618201965,-17.347986907202465 L 34.89626706067743,-17.347991154602312 L 34.89614443964215,-17.34798923611885 L 34.896022091204195,-17.347981157009478 L 34.895900350724474,-17.347966939418107 L 34.8957795518974,-17.347946622314364 L 34.89566002583616,-17.347920261386893 L 34.89554210016498,-17.34788792889058 L 34.895426098121014,-17.347849713448607 L 34.89531233766828,-17.34780571980946 L 34.895201130626,-17.347756068559807 L 34.89509278181383,-17.347700895793917 L 34.89498758821625,-17.347640352740644 L 34.89488583816851,-17.34757460534883 L 34.894787810566186,-17.347503833832434 L 34.89469377410076,-17.3474282321765 L 34.89460398652301,-17.347348007605405 L 34.8945303752709,-17.34727497027393 L 34.89451869393659,-17.347263380014812 L 34.89443813012342,-17.347174581368925 L 34.894362515902834,-17.347081855064534 L 34.894292058526425,-17.34698545526396 L 34.894226951109985,-17.346885646198167 L 34.89416737210416,-17.346782701442645 L 34.89411348480542,-17.346676903167346 L 34.89406543690857,-17.346568541363308 L 34.89402336010195,-17.346457913047725 L 34.89398736970653,-17.34634532144977 L 34.89395756436004,-17.346231075179425 L 34.893934025746624,-17.346115487381585 L 34.89391681837304,-17.345998874877647 L 34.89390598939205,-17.345881557297147 L 34.893901568473275,-17.34576385620162 L 34.89390356772199,-17.3456460942032 L 34.89391198164605,-17.34552859408036 L 34.89392678717113,-17.345411677893143 L 34.89394794370411,-17.345295666100494 L 34.89397539324438,-17.345180876681777 L 34.8940090605431,-17.345067624265408 L 34.89404885330942,-17.344956219266344 L 34.89409466246367,-17.3448469670353 L 34.89414636243646,-17.344740167021918 L 34.89420381151283,-17.34463611195395 L 34.89426685222096,-17.344535087034966 L 34.89433531176375,-17.34443736916271 L 34.89440900249255,-17.344343226170164 L 34.89448772242161,-17.344252916091463 L 34.89457125578166,-17.344166686454802 L 34.89463395594873,-17.344108401435214 L 34.89465937361147,-17.344084773603896 L 34.8947518343853,-17.344007402050345 L 34.89484838467508,-17.343934783858305 L 34.89494875984489,-17.34386711806326 L 34.895052684776374,-17.343804590126624 L 34.89515987462275,-17.34374737142734 L 34.895270035589526,-17.34369561879237 L 34.89538286573971,-17.343649474066748 L 34.89549805582132,-17.343609063724955 L 34.89561529011493,-17.34357449852429 L 34.89573424729897,-17.34354587320131 L 34.89585460133029,-17.343523266212244 L 34.89597602233779,-17.343506739517984 L 34.89609817752637,-17.34349633841427 L 34.89622073208903,-17.34349209140763 L 34.89634335012438,-17.343494010137192 L 34.89646569555726,-17.34350208934283 L 34.89658743305965,-17.34351630687961 L 34.896708228969764,-17.343536623778476 L 34.89682775220639,-17.343562984353067 L 34.896945675176234,-17.34359531635232 L 34.89706167467175,-17.343633531158535 L 34.89717543275681,-17.343677524030166 L 34.897286637638175,-17.34372717438897 L 34.897394984519835,-17.34378234615043 L 34.89750017643848,-17.3438428880967 L 34.89760192507725,-17.34390863429107 L 34.897699951556,-17.343979404532686 L 34.89779398719557,-17.344055004850485 L 34.89788377425419,-17.344135228034745 L 34.897969066633934,-17.344219854204994 L 34.8980185343094,-17.34427437726421 L 34.89804963055518,-17.344308651412607 L 34.89812524519733,-17.34440137627653 L 34.89819570330422,-17.344497774650247 L 34.89826081175203,-17.344597582318404 L 34.89832039207885,-17.344700525720842 L 34.89837428097369,-17.344806322702414 L 34.898422330724294,-17.344914683286273 L 34.898464409622015,-17.345025310468575 L 34.898500402322924,-17.345137901032597 L 34.89853021016408,-17.345252146379647 L 34.89855375143402,-17.345367733374978 L 34.89857096159683,-17.345484345205968 L 34.898581793469205,-17.34560166225045 L 34.89858621734986,-17.345719362952764 L 34.89858422110107,-17.345837124705092 L 34.898575810182095,-17.34595462473166 L 34.89856100763434,-17.346071540973472 L 34.89853985401833,-17.34618755297101 L 34.89851240730267,-17.346302342742597 L 34.89847874270529,-17.346415595656016 L 34.898438952487425,-17.34652700129085 L 34.89839314570082,-17.346636254289407 L 34.89834144788897,-17.346743055193635 L 34.89828400074309,-17.34684711126604 L 34.89822096171391,-17.34694813729203 L 34.898152503580086,-17.347045856361728 L 34.89807881397485,-17.347140000629064 L 34.89800009487166,-17.347230312045884 L 34.897916562030716,-17.347316543069386 L 34.89784433134804,-17.347383688817565 L 34.89782844440759,-17.34739845734063 L 34.8977359835257,-17.347475830332453 L 34.89763943281436,-17.34754844996496 L 34.89753905691407,-17.347616117186867 L 34.897435130951216,-17.347678646521146 L 34.89732793978386,-17.34773586657351 L 34.897217777220966,-17.347787620502217 L 34.89710494521702,-17.347833766448016 z\" /><path fill-rule=\"evenodd\" fill=\"#66cc99\" stroke=\"#555555\" stroke-width=\"0.00018020992824673953\" opacity=\"0.6\" d=\"M 34.897562058646876,-17.342508060319165 L 34.89757047025678,-17.342390560250386 L 34.89758527335711,-17.34227364400817 L 34.89760642736136,-17.3421576320516 L 34.89763387427587,-17.34204284236052 L 34.897667538859004,-17.341929589564067 L 34.89770732882734,-17.34181818407825 L 34.8977531351089,-17.341708931255134 L 34.89780483214212,-17.341602130545965 L 34.89786227822016,-17.341498074680427 L 34.89792531587937,-17.341397048864266 L 34.89799377233102,-17.341299329997696 L 34.89806745993494,-17.3412051859164 L 34.89814617671392,-17.34111487465755 L 34.89822970690735,-17.34102864375251 L 34.89831782156266,-17.34094672954852 L 34.89841027916282,-17.340869356560894 L 34.89850682628843,-17.340796736857698 L 34.89860719831227,-17.34072906947856 L 34.898711120124595,-17.340666539889227 L 34.89881830688715,-17.340609319473213 L 34.89892846481391,-17.340557565062127 L 34.89904129197622,-17.34051141850593 L 34.89915647913026,-17.34047100628408 L 34.89927371056463,-17.340436439159028 L 34.8993698935897,-17.3404132919784 L 34.89939266496559,-17.340407811872627 L 34.89951301629766,-17.340385202886463 L 34.89963443469706,-17.34036867416691 L 34.89975658737589,-17.340358271015273 L 34.899879139534015,-17.34035402194366 L 34.90000175527662,-17.340355938596865 L 34.90012409853482,-17.340364015720475 L 34.900245833986595,-17.340378231175233 L 34.90036662797573,-17.340398545997807 L 34.90048614942631,-17.340424904507497 L 34.900604070749914,-17.340457234458924 L 34.90072006874351,-17.340495447239984 L 34.90083382547509,-17.340539438114668 L 34.900945029155146,-17.34058908651024 L 34.901053374990944,-17.340644256347534 L 34.901158566022026,-17.34070479641398 L 34.90126031393398,-17.34077054077801 L 34.90135833984864,-17.340841309243807 L 34.90145237508843,-17.34091690784516 L 34.901542161912666,-17.34099712937705 L 34.901627454224055,-17.34108175396354 L 34.90170801824314,-17.34117054966033 L 34.9017836331491,-17.341263273090505 L 34.901854091685024,-17.341359670111498 L 34.90191920072598,-17.34145947651166 L 34.90197878180835,-17.341562418734288 L 34.90203267161912,-17.34166821462749 L 34.90208072244353,-17.341776574217395 L 34.902122802569984,-17.341887200502885 L 34.90215879665121,-17.341999790269696 L 34.902178392629686,-17.3420748920176 L 34.90218860602046,-17.342114034921313 L 34.90221214896208,-17.342229621324904 L 34.9022293609356,-17.342346232669474 L 34.902240194752764,-17.342463549334198 L 34.902244620706924,-17.34258124976445 L 34.9022426266547,-17.342699011353165 L 34.902234218049344,-17.34281651132501 L 34.90221941792589,-17.34293342762114 L 34.902198266838255,-17.343049439781904 L 34.90217082274807,-17.343164229825184 L 34.90213716086611,-17.34327748311801 L 34.90209737344615,-17.343388889238934 L 34.90205156953228,-17.343498142828913 L 34.90199987466011,-17.34360494442831 L 34.9019424305128,-17.343709001297707 L 34.90187939453284,-17.343810028220332 L 34.901810939490574,-17.343907748283865 L 34.901737253010715,-17.344001893639497 L 34.90165853705819,-17.344092206236112 L 34.90157500738451,-17.34417843852765 L 34.901486892936596,-17.344260354151714 L 34.901394435229165,-17.344337728577433 L 34.90129788768282,-17.344410349721 L 34.90119751492937,-17.34447801852694 L 34.90109359208659,-17.344540549513926 L 34.90098640400398,-17.344597771283127 L 34.90087624448205,-17.344649526988103 L 34.90076341546693,-17.344695674764722 L 34.90064822622275,-17.344736088120147 L 34.900577206073855,-17.344757029496293 L 34.90053099248378,-17.344770656279508 L 34.900412035589035,-17.34479928448961 L 34.900291681601324,-17.34482189427876 L 34.90017026041349,-17.344838423671792 L 34.900048104844025,-17.344848827360014 L 34.89992554972471,-17.344853076825434 L 34.899802930982794,-17.344851160418948 L 34.89968058472003,-17.344843083392274 L 34.899558846291384,-17.34482886788359 L 34.89943804938565,-17.34480855285684 L 34.89931852511072,-17.344782193994938 L 34.89920060108596,-17.344749863547143 L 34.89908460054398,-17.344711650130986 L 34.898970841444694,-17.34466765848942 L 34.89885963560362,-17.344618009203618 L 34.898751287837094,-17.34456283836248 L 34.898646095126765,-17.34450229718957 L 34.898544345805426,-17.344436551628583 L 34.89844631876669,-17.34436578188844 L 34.89835228270044,-17.34429018194934 L 34.898262495356455,-17.344209959030934 L 34.89817720283769,-17.344125333024376 L 34.898096638925864,-17.344036535889487 L 34.89802102444064,-17.34394381101897 L 34.89795056663431,-17.343847412571144 L 34.89788545862384,-17.34374760477334 L 34.89782587886151,-17.34364466119751 L 34.89777199064591,-17.343538864010416 L 34.89772394167431,-17.34343050320011 L 34.897681863638006,-17.343319875781045 L 34.89764587186136,-17.34320728497993 L 34.897632654475345,-17.343156624592137 L 34.8976160649859,-17.343093039404593 L 34.897592524699924,-17.342977452198006 L 34.89757531551482,-17.342860840179966 L 34.897564484588315,-17.34274352297867 L 34.89756006159534,-17.3426258221546 L 34.897562058646876,-17.342508060319165 z\" /></g></g></svg>"
|
|
],
|
|
"text/plain": [
|
|
"<MULTIPOLYGON (((34.897 -17.348, 34.897 -17.348, 34.897 -17.348, 34.897 -17....>"
|
|
]
|
|
},
|
|
"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",
|
|
"resolution = 3\n",
|
|
"\n",
|
|
"for slot in slots:\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": 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": [
|
|
{
|
|
"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)"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "markdown",
|
|
"id": "4274d8e7-1ea3-46db-9528-069ede0b2132",
|
|
"metadata": {
|
|
"tags": []
|
|
},
|
|
"source": [
|
|
"#### Delete intermediate files\n"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 25,
|
|
"id": "cb3fa856-a550-4899-844a-e69209bba3ad",
|
|
"metadata": {
|
|
"tags": []
|
|
},
|
|
"outputs": [
|
|
{
|
|
"name": "stdout",
|
|
"output_type": "stream",
|
|
"text": [
|
|
"Skipping empty_folders function.\n"
|
|
]
|
|
}
|
|
],
|
|
"source": [
|
|
"# List of folder names\n",
|
|
"\n",
|
|
"folders_to_empty = [BASE_PATH / 'merged_virtual', BASE_PATH_SINGLE_IMAGES]\n",
|
|
" \n",
|
|
"# Function to empty folders\n",
|
|
"\n",
|
|
"# Function to empty folders\n",
|
|
"def empty_folders(folders, run=True):\n",
|
|
" if not run:\n",
|
|
" print(\"Skipping empty_folders function.\")\n",
|
|
" return\n",
|
|
" \n",
|
|
" for folder in folders:\n",
|
|
" try:\n",
|
|
" for filename in os.listdir(folder):\n",
|
|
" file_path = os.path.join(folder, filename)\n",
|
|
" try:\n",
|
|
" if os.path.isfile(file_path):\n",
|
|
" os.unlink(file_path)\n",
|
|
" elif os.path.isdir(file_path):\n",
|
|
" shutil.rmtree(file_path)\n",
|
|
" except Exception as e:\n",
|
|
" print(f\"Error: {e}\")\n",
|
|
" print(f\"Emptied folder: {folder}\")\n",
|
|
" except OSError as e:\n",
|
|
" print(f\"Error: {e}\")\n",
|
|
"\n",
|
|
"# Call the function to empty folders only if the 'run' parameter is set to True\n",
|
|
"empty_folders(folders_to_empty, run=empty_folder_question)\n"
|
|
]
|
|
}
|
|
],
|
|
"metadata": {
|
|
"kernelspec": {
|
|
"display_name": "Python 3 (ipykernel)",
|
|
"language": "python",
|
|
"name": "python3"
|
|
},
|
|
"language_info": {
|
|
"codemirror_mode": {
|
|
"name": "ipython",
|
|
"version": 3
|
|
},
|
|
"file_extension": ".py",
|
|
"mimetype": "text/x-python",
|
|
"name": "python",
|
|
"nbconvert_exporter": "python",
|
|
"pygments_lexer": "ipython3",
|
|
"version": "3.11.4"
|
|
}
|
|
},
|
|
"nbformat": 4,
|
|
"nbformat_minor": 5
|
|
}
|