updated project
This commit is contained in:
parent
64a576d638
commit
dce7344947
|
|
@ -55,17 +55,17 @@ public function handle(): void
|
||||||
];
|
];
|
||||||
$currentPath = '/usr/bin:/usr/gnu/bin:/usr/local/bin:/bin:/usr/bin/Users/mfolkerts/anaconda3/bin:/Library/Apple/usr/bin';
|
$currentPath = '/usr/bin:/usr/gnu/bin:/usr/local/bin:/bin:/usr/bin/Users/mfolkerts/anaconda3/bin:/Library/Apple/usr/bin';
|
||||||
|
|
||||||
try{
|
try {
|
||||||
$process = ProcessNew::timeout(220)
|
$process = ProcessNew::timeout(220)
|
||||||
->env(['PATH' => $currentPath . ':/usr/local/Cellar/pandoc/3.1.8/bin/pandoc'])
|
->env(['PATH' => $currentPath.':/usr/local/Cellar/pandoc/3.1.8/bin/pandoc'])
|
||||||
->start($command, function (string $type, string $output ) {
|
->start($command, function (string $type, string $output) {
|
||||||
logger($output);
|
logger($output);
|
||||||
});
|
});
|
||||||
$results = $process->wait();
|
$results = $process->wait();
|
||||||
if($results->successful()){
|
if ($results->successful()) {
|
||||||
$this->mosaic->setStatusSuccess();
|
$this->mosaic->setStatusSuccess();
|
||||||
}
|
}
|
||||||
}catch(\RuntimeException|ProcessTimedOutException|ProcessFailedException $e){
|
} catch (\RuntimeException|ProcessTimedOutException|ProcessFailedException $e) {
|
||||||
echo $e->getMessage();
|
echo $e->getMessage();
|
||||||
$this->mosaic->setStatusFailed();
|
$this->mosaic->setStatusFailed();
|
||||||
}
|
}
|
||||||
|
|
@ -74,33 +74,36 @@ public function handle(): void
|
||||||
/**
|
/**
|
||||||
* Check if the project has a mosaic for given period.
|
* Check if the project has a mosaic for given period.
|
||||||
*/
|
*/
|
||||||
public static function handleFor(Project $project,Carbon $endDate, int $offset): NullJob|ProjectMosiacGeneratorJob
|
public static function handleFor(Project $project, Carbon $endDate, int $offset): NullJob|ProjectMosiacGeneratorJob
|
||||||
{
|
{
|
||||||
|
$endDate = $endDate->clone();
|
||||||
logger("ProjectMosiacGeneratorJob::handleFor($endDate, $offset)");
|
logger("ProjectMosiacGeneratorJob::handleFor($endDate, $offset)");
|
||||||
if ($project->hasInvalidMosaicFor($endDate,$offset)) {
|
if ($project->hasInvalidMosaicFor($endDate, $offset)) {
|
||||||
logger("ProjecMosaicGeneratorJob::handleFor(end_date: $endDate, offset: $offset): InvalidMosaic.");
|
logger("ProjecMosaicGeneratorJob::handleFor(end_date: $endDate, offset: $offset): InvalidMosaic.");
|
||||||
return new NullJob();
|
return new NullJob();
|
||||||
}
|
}
|
||||||
|
|
||||||
$week = $endDate->clone()->next($project->mail_day)->week;
|
logger(__CLASS__."::".__METHOD__."::Project->mail_day::".$project->mail_day);
|
||||||
$year = $endDate->clone()->next($project->mail_day)->year;
|
|
||||||
|
|
||||||
|
if (Carbon::parse($project->mail_day)->dayOfWeek < $endDate->dayOfWeek) {
|
||||||
|
$endDate->next($project->mail_day);
|
||||||
|
}
|
||||||
/**
|
/**
|
||||||
* @var ProjectMosaic $mosaic
|
* @var ProjectMosaic $mosaic
|
||||||
*/
|
*/
|
||||||
$mosaic = $project->mosaics()->updateOrCreate(
|
$mosaic = $project->mosaics()->updateOrCreate(
|
||||||
[
|
[
|
||||||
'name' => sprintf('Week_%s_%s', $week, $year),
|
'name' => sprintf('Week_%s_%s', $endDate->week, $endDate->year),
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
'name' => sprintf('Week_%s_%s', $week, $year),
|
'name' => sprintf('Week_%s_%s', $endDate->week, $endDate->year),
|
||||||
'path' => sprintf('%s/%s/%s',
|
'path' => sprintf('%s/%s/%s',
|
||||||
$project->download_path,
|
$project->download_path,
|
||||||
'mosaics',
|
'mosaics',
|
||||||
sprintf('week_%s_%s.tif', $week, $year)
|
sprintf('week_%s_%s.tif', $endDate->week, $endDate->year)
|
||||||
),
|
),
|
||||||
'end_date' => $endDate->format('Y-m-d'),
|
'end_date' => $endDate->format('Y-m-d'),
|
||||||
'offset' => $offset,
|
'offset' => $offset,
|
||||||
]);
|
]);
|
||||||
return new self($mosaic);
|
return new self($mosaic);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -316,7 +316,6 @@ public function scheduleReport(?Carbon $endDate = null, ?int $offset = null)
|
||||||
$this->mosaics()->where('name', $latestMosaicToDelete)->first()?->delete();
|
$this->mosaics()->where('name', $latestMosaicToDelete)->first()?->delete();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
logger('Scheduling report for '.$endDate->format('d-m-Y').' with offset '.$offset.' days');
|
logger('Scheduling report for '.$endDate->format('d-m-Y').' with offset '.$offset.' days');
|
||||||
Bus::chain([
|
Bus::chain([
|
||||||
Bus::batch($this->getFileDownloadsFor($endDate->clone(), $offset)),
|
Bus::batch($this->getFileDownloadsFor($endDate->clone(), $offset)),
|
||||||
|
|
@ -335,6 +334,7 @@ public function scheduleTestReport()
|
||||||
{
|
{
|
||||||
$endDate = Carbon::yesterday();
|
$endDate = Carbon::yesterday();
|
||||||
$offset = 7;
|
$offset = 7;
|
||||||
|
$this->mail_day = $endDate->dayName;
|
||||||
|
|
||||||
for ($step = 0; $step<=3; $step++) {
|
for ($step = 0; $step<=3; $step++) {
|
||||||
$latestMosaicToDelete = ProjectMosaic::projectMosaicNameFormat($endDate->clone(), $offset*$step);
|
$latestMosaicToDelete = ProjectMosaic::projectMosaicNameFormat($endDate->clone(), $offset*$step);
|
||||||
|
|
@ -342,9 +342,7 @@ public function scheduleTestReport()
|
||||||
$this->mosaics()->where('name', $latestMosaicToDelete)->first()?->delete();
|
$this->mosaics()->where('name', $latestMosaicToDelete)->first()?->delete();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
logger('Scheduling test report for '.$endDate->format('d-m-Y').' with offset '.$offset.' days');
|
logger('Scheduling test report for '.$endDate->format('d-m-Y').' with offset '.$offset.' days');
|
||||||
|
|
||||||
Bus::chain([
|
Bus::chain([
|
||||||
Bus::batch($this->getFileDownloadsFor($endDate->clone(), $offset)),
|
Bus::batch($this->getFileDownloadsFor($endDate->clone(), $offset)),
|
||||||
Bus::batch($this->getTestMosaicsFor($endDate->clone())),
|
Bus::batch($this->getTestMosaicsFor($endDate->clone())),
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -44,7 +44,7 @@
|
||||||
"src": "node_modules/leaflet/dist/images/marker-icon.png"
|
"src": "node_modules/leaflet/dist/images/marker-icon.png"
|
||||||
},
|
},
|
||||||
"resources/css/app.css": {
|
"resources/css/app.css": {
|
||||||
"file": "assets/app-36af0ee7.css",
|
"file": "assets/app-287c5da9.css",
|
||||||
"isEntry": true,
|
"isEntry": true,
|
||||||
"src": "resources/css/app.css"
|
"src": "resources/css/app.css"
|
||||||
},
|
},
|
||||||
|
|
|
||||||
80
pivot.geojson
Normal file
80
pivot.geojson
Normal file
|
|
@ -0,0 +1,80 @@
|
||||||
|
{
|
||||||
|
"type": "FeatureCollection",
|
||||||
|
"name": "Sony_trial",
|
||||||
|
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
|
||||||
|
"features": [
|
||||||
|
{ "type": "Feature", "properties": { "field": "4042903", "sub_field": "4042903" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.549953905787561, -0.922915429414839 ], [ 34.549828694277387, -0.923021886080446 ], [ 34.549717625808142, -0.923125941818272 ], [ 34.549628348107582, -0.923256270140473 ], [ 34.549589862974607, -0.923402652447291 ], [ 34.549545745270393, -0.923548523600757 ], [ 34.549499461421739, -0.92366860429326 ], [ 34.549526795425663, -0.92382172368986 ], [ 34.549540533982103, -0.923962985646977 ], [ 34.549548459947303, -0.924093942061356 ], [ 34.549608521785558, -0.924186699219492 ], [ 34.549649285434619, -0.924321641181188 ], [ 34.549678435552458, -0.924482190345894 ], [ 34.549643934058068, -0.924572704608711 ], [ 34.549619050920533, -0.924672681305338 ], [ 34.549592348003188, -0.924739959147393 ], [ 34.549613556310739, -0.924832046705356 ], [ 34.54955218364335, -0.924878069322249 ], [ 34.549486950008387, -0.924954784488041 ], [ 34.549421921962669, -0.925052769654829 ], [ 34.549376129232257, -0.925137269477682 ], [ 34.549355432485939, -0.925219847470198 ], [ 34.549431176515093, -0.925504924780274 ], [ 34.549466632031347, -0.925655076621386 ], [ 34.549514780488387, -0.925721150332201 ], [ 34.549556857119462, -0.925762571461321 ], [ 34.549631126091668, -0.92579806688147 ], [ 34.5496522775112, -0.925878645151319 ], [ 34.549643114649427, -0.925964698651907 ], [ 34.54960749008292, -0.926075311205271 ], [ 34.549656823005641, -0.92613792579843 ], [ 34.549767840458443, -0.92611463691025 ], [ 34.549799761613173, -0.925980445015098 ], [ 34.549858185637149, -0.9258793340686 ], [ 34.549924219406932, -0.925817320367601 ], [ 34.549990232701653, -0.925747555592705 ], [ 34.550035631060737, -0.925664706576271 ], [ 34.550064223219429, -0.92558560651495 ], [ 34.550115231803623, -0.925519491162867 ], [ 34.550138091699182, -0.925459047064998 ], [ 34.550166920241487, -0.925330359993552 ], [ 34.550228813797233, -0.925181970291741 ], [ 34.550390810439943, -0.924508546690978 ], [ 34.550410105893931, -0.924315565369893 ], [ 34.550419983318797, -0.924160798019344 ], [ 34.550450975558583, -0.924018300069256 ], [ 34.550432207576833, -0.923879213423036 ], [ 34.550442507896292, -0.923683985981069 ], [ 34.550439292665871, -0.923458377194445 ], [ 34.550429975239439, -0.923293641799181 ], [ 34.550451599724823, -0.923155587600997 ], [ 34.550480768368281, -0.923056523815696 ], [ 34.550458861029362, -0.923009369467096 ], [ 34.550250915823042, -0.922633992455874 ], [ 34.549953905787561, -0.922915429414839 ] ] ] } },
|
||||||
|
{ "type": "Feature", "properties": { "field": "4042902", "sub_field": "4042902" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.551608672825047, -0.921178729822374 ], [ 34.55143343246683, -0.921211653177208 ], [ 34.551120358606973, -0.921280680539983 ], [ 34.550936654850787, -0.921278342875399 ], [ 34.550805464883283, -0.921248890164281 ], [ 34.550776268690832, -0.921348455087677 ], [ 34.550805199243918, -0.9214516408875 ], [ 34.55072958710943, -0.921563213762755 ], [ 34.550635115013932, -0.921686537977029 ], [ 34.550540605858806, -0.921836294348995 ], [ 34.550453527158012, -0.92198661702017 ], [ 34.550424556924881, -0.922070859143133 ], [ 34.550445005992039, -0.922170236587777 ], [ 34.550421253244743, -0.922343918767005 ], [ 34.550319428666839, -0.922420264501648 ], [ 34.550309307729492, -0.92247497154792 ], [ 34.55030104585849, -0.922597489374206 ], [ 34.550289235379807, -0.922695761924851 ], [ 34.550411281467909, -0.922917347019954 ], [ 34.550471970375852, -0.92295599811673 ], [ 34.550807049582353, -0.923135522082279 ], [ 34.551477589384312, -0.923520678004762 ], [ 34.551551549774473, -0.923443530368199 ], [ 34.551670006349973, -0.923294158400227 ], [ 34.551854441732218, -0.92307496336656 ], [ 34.551931823147811, -0.922992792616735 ], [ 34.551977110464627, -0.922868218236384 ], [ 34.55196012709176, -0.922760621319948 ], [ 34.551918746003629, -0.922308204986594 ], [ 34.551910527566747, -0.922085257281872 ], [ 34.551906235973362, -0.921904542788813 ], [ 34.551894106862797, -0.92171341298756 ], [ 34.551885951264033, -0.921616816162145 ], [ 34.551830612284682, -0.921324977635609 ], [ 34.551801909736383, -0.921252933956047 ], [ 34.55175557352014, -0.921205858406093 ], [ 34.551608672825047, -0.921178729822374 ] ] ] } },
|
||||||
|
{ "type": "Feature", "properties": { "field": "4043005", "sub_field": "4043005" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.552088160063327, -0.922825851714054 ], [ 34.552133576393892, -0.922807798835908 ], [ 34.55217799564798, -0.922777845522849 ], [ 34.55222550523041, -0.922745832372555 ], [ 34.552270462618097, -0.92271586465647 ], [ 34.552321656009482, -0.922690012344663 ], [ 34.552383617824148, -0.922659021846177 ], [ 34.552436333498491, -0.922633712035394 ], [ 34.552494822035683, -0.922608350724822 ], [ 34.552553879317209, -0.922584014288059 ], [ 34.552612451168081, -0.922570020351295 ], [ 34.5526793963244, -0.922552924060609 ], [ 34.552733103174937, -0.922545533743633 ], [ 34.552779255274373, -0.922546968605383 ], [ 34.552826120999512, -0.922548411708287 ], [ 34.552876332271929, -0.922552980704899 ], [ 34.552918811795763, -0.922557619186 ], [ 34.552962452649062, -0.922563835744672 ], [ 34.553061435356547, -0.92258577932245 ], [ 34.553136776801793, -0.922601540514673 ], [ 34.553224217700411, -0.922624268741799 ], [ 34.553314956309663, -0.922649405569011 ], [ 34.55339593266342, -0.922678778207114 ], [ 34.553458182840487, -0.922699120220038 ], [ 34.553531278291437, -0.922731786296172 ], [ 34.553633991342487, -0.922780066127885 ], [ 34.553695043320253, -0.922806940149418 ], [ 34.553749825603283, -0.922761247474833 ], [ 34.553777246078681, -0.922737461710221 ], [ 34.553803944524077, -0.922701138224347 ], [ 34.553858052033952, -0.922679363590779 ], [ 34.553911783834778, -0.92266271698067 ], [ 34.553945785221337, -0.922647890887525 ], [ 34.554015129404164, -0.922614484388564 ], [ 34.554140816759173, -0.92256281538609 ], [ 34.554281938637949, -0.922514594055678 ], [ 34.554421062267338, -0.922472593515596 ], [ 34.554546840176833, -0.922417695510853 ], [ 34.554645629483232, -0.9223658045991 ], [ 34.554723323781772, -0.922251636270901 ], [ 34.554663627845173, -0.922157397201618 ], [ 34.554501550595973, -0.922047912161215 ], [ 34.554341179945709, -0.921938536861109 ], [ 34.55412040140402, -0.921806926767444 ], [ 34.55382493460273, -0.921619586837996 ], [ 34.553683439965553, -0.921553703180351 ], [ 34.553531489399163, -0.921467287737541 ], [ 34.553411820250489, -0.921389937454016 ], [ 34.553262558018972, -0.921338066588737 ], [ 34.55313719951981, -0.921291017978154 ], [ 34.553042139306207, -0.921263152597427 ], [ 34.552933615538002, -0.921225651206016 ], [ 34.552829791726467, -0.921209386584942 ], [ 34.55271875314962, -0.921187617683103 ], [ 34.552586846127006, -0.921155372356545 ], [ 34.552496715194764, -0.921061946385722 ], [ 34.552354104199182, -0.920831004391208 ], [ 34.552250232867777, -0.9207071673267 ], [ 34.552113725176582, -0.920586273898043 ], [ 34.551983576554818, -0.920543216327482 ], [ 34.55187366770717, -0.920553302469636 ], [ 34.551802876555591, -0.920693085971517 ], [ 34.551774748335127, -0.920833138932691 ], [ 34.551776128417004, -0.921008632260352 ], [ 34.551816273335959, -0.921161048946093 ], [ 34.551889400596522, -0.921364685065552 ], [ 34.551917236503101, -0.921551124676623 ], [ 34.551941434870187, -0.92178770927621 ], [ 34.551946145213194, -0.921949910042194 ], [ 34.551951377326013, -0.922161882213934 ], [ 34.551968363571319, -0.92247849038726 ], [ 34.551975222644572, -0.922611076818726 ], [ 34.552011026582377, -0.922774388938912 ], [ 34.552039849075847, -0.922827637115716 ], [ 34.552088160063327, -0.922825851714054 ] ] ] } },
|
||||||
|
{ "type": "Feature", "properties": { "field": "4043105", "sub_field": "4043105" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.555509459688153, -0.925709408954186 ], [ 34.555739938463162, -0.925818073568178 ], [ 34.555969678335977, -0.925981017168614 ], [ 34.556187282815301, -0.926139882216563 ], [ 34.556388474100451, -0.926256436438567 ], [ 34.556638285855037, -0.926355172138286 ], [ 34.556872190162558, -0.926411743322927 ], [ 34.557067365872271, -0.926428504793532 ], [ 34.557143146363003, -0.926346648845565 ], [ 34.557085547751747, -0.926021071928589 ], [ 34.557103588144791, -0.925894197826655 ], [ 34.557064292679947, -0.925679162339949 ], [ 34.55685666692586, -0.925133938719143 ], [ 34.556729399210077, -0.924883814526183 ], [ 34.55676096008311, -0.92470823154645 ], [ 34.556748036968891, -0.924585182505237 ], [ 34.556708918771371, -0.924352074124327 ], [ 34.556607857146041, -0.924149777346567 ], [ 34.556439990390793, -0.924119956278078 ], [ 34.556110316699339, -0.92406423353291 ], [ 34.555816920023148, -0.923960726246742 ], [ 34.555550780526282, -0.923848584900721 ], [ 34.555272308483538, -0.923710422911073 ], [ 34.555055608561673, -0.923598801986745 ], [ 34.554769993706849, -0.923448389298672 ], [ 34.554623292171676, -0.923358293753513 ], [ 34.554489494348303, -0.923324394856752 ], [ 34.554364855692427, -0.923342883766579 ], [ 34.554330982702368, -0.923408634312422 ], [ 34.554361631373659, -0.923495568277219 ], [ 34.554457270169323, -0.923682124462206 ], [ 34.554579934837442, -0.924020811406282 ], [ 34.554772214768583, -0.924536250437399 ], [ 34.555205972042863, -0.92570973518327 ], [ 34.555509459688153, -0.925709408954186 ] ] ] } },
|
||||||
|
{ "type": "Feature", "properties": { "field": "4043300", "sub_field": "4043300" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.55500010388716, -0.925729724166885 ], [ 34.554815416306553, -0.925824172011236 ], [ 34.554493229963732, -0.925955186894103 ], [ 34.554366371897473, -0.926030887904257 ], [ 34.55438145910977, -0.926079195806835 ], [ 34.554450857716013, -0.926118181420821 ], [ 34.554441800182488, -0.926160554409572 ], [ 34.554468954444808, -0.926223924242449 ], [ 34.554523203525697, -0.926329847145483 ], [ 34.5545714345348, -0.926486676558429 ], [ 34.554640785145338, -0.926640426549582 ], [ 34.554698056450967, -0.926776100002257 ], [ 34.554700986679372, -0.926881620383687 ], [ 34.55474308684547, -0.926969245869581 ], [ 34.554757856188743, -0.927065037108207 ], [ 34.554754888897477, -0.927119851666412 ], [ 34.554784427623233, -0.927173011501317 ], [ 34.554799192389581, -0.927226190967236 ], [ 34.554788324523749, -0.927319650661485 ], [ 34.554779075672229, -0.927437985991291 ], [ 34.554777980832817, -0.927495932238439 ], [ 34.554749313511508, -0.927546662621851 ], [ 34.554769308992597, -0.927588815888672 ], [ 34.554755492370703, -0.927620022920744 ], [ 34.554746643646439, -0.927720692907202 ], [ 34.554740770489403, -0.927788587805893 ], [ 34.554751645784037, -0.927838678308091 ], [ 34.554764459488418, -0.927886907877704 ], [ 34.554769403654177, -0.927931817220093 ], [ 34.554795976081799, -0.927970290721876 ], [ 34.554826525803989, -0.927959771485658 ], [ 34.55489568508375, -0.927951538345265 ], [ 34.554954077075237, -0.927957808558022 ], [ 34.555055391050693, -0.927941065749427 ], [ 34.555158728474701, -0.927928373130648 ], [ 34.55523701519553, -0.927913313522222 ], [ 34.555303545835962, -0.927914982344162 ], [ 34.555386261851517, -0.92790973326947 ], [ 34.555525735700691, -0.927885586395847 ], [ 34.555678705555323, -0.927876003679317 ], [ 34.555806623370167, -0.927870872817918 ], [ 34.55577721146021, -0.927786204326906 ], [ 34.55574417241715, -0.927689603158888 ], [ 34.555721686463528, -0.927609669790082 ], [ 34.555711069097242, -0.927565054416384 ], [ 34.555679690257193, -0.927469736733362 ], [ 34.555659965388159, -0.927407198535972 ], [ 34.555614617016282, -0.927252563277375 ], [ 34.555564360824349, -0.927068132129641 ], [ 34.555542095778932, -0.926968847552537 ], [ 34.555522896457489, -0.926914303070717 ], [ 34.555489882354259, -0.926806832152098 ], [ 34.555476584301438, -0.926749373676807 ], [ 34.555457414617003, -0.926687987696569 ], [ 34.555438012757513, -0.926620001575276 ], [ 34.555415726375642, -0.926555159309076 ], [ 34.555392342034928, -0.92647247562498 ], [ 34.555375889756583, -0.926423881581669 ], [ 34.555362026885788, -0.926375635745604 ], [ 34.555337034949318, -0.926300980907256 ], [ 34.555321091792671, -0.926241179561965 ], [ 34.555303296893022, -0.926189833220389 ], [ 34.555279051202703, -0.92610347919197 ], [ 34.555252633446358, -0.926018054378397 ], [ 34.555241151924747, -0.92597212112809 ], [ 34.555224895818228, -0.9259168233514 ], [ 34.555181450674723, -0.925797006117427 ], [ 34.555146780138521, -0.925694697973774 ], [ 34.555123560703898, -0.925699966094116 ], [ 34.55500010388716, -0.925729724166885 ] ] ] } },
|
||||||
|
{ "type": "Feature", "properties": { "field": "4043602", "sub_field": "4043602" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.553674774353318, -0.93267587656135 ], [ 34.553549269448489, -0.932798125415028 ], [ 34.553416905535741, -0.932934029471101 ], [ 34.553355877844062, -0.933021346372711 ], [ 34.553339626169993, -0.933093325003052 ], [ 34.553321562460617, -0.93314166583812 ], [ 34.553571562766983, -0.933525497945626 ], [ 34.554288992549893, -0.934545217521544 ], [ 34.554351364938363, -0.933994386183116 ], [ 34.554395240298298, -0.933696906377955 ], [ 34.554472349394267, -0.933476753831473 ], [ 34.554629815379137, -0.932853251290078 ], [ 34.554028210273408, -0.932271639322232 ], [ 34.553674774353318, -0.93267587656135 ] ] ] } },
|
||||||
|
{ "type": "Feature", "properties": { "field": "4043605", "sub_field": "4043605" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.554588300610163, -0.933043918140478 ], [ 34.554515049455148, -0.933363669619721 ], [ 34.554440722806177, -0.933668076626236 ], [ 34.554382323994723, -0.933955673354905 ], [ 34.554363168574604, -0.934044426702733 ], [ 34.554337980310329, -0.934208086476938 ], [ 34.554322852947912, -0.93432686837825 ], [ 34.554307718440441, -0.934442791723271 ], [ 34.554292563195602, -0.934548602485776 ], [ 34.554344874911123, -0.934641811865121 ], [ 34.554428318917893, -0.934680091366967 ], [ 34.55455129929085, -0.934735657165726 ], [ 34.554590704826573, -0.934783271818582 ], [ 34.554644336558518, -0.934850269567502 ], [ 34.554692007838973, -0.934903117970457 ], [ 34.554745869008407, -0.934934871849997 ], [ 34.554816777825003, -0.934972654475994 ], [ 34.554891813094898, -0.934929185073533 ], [ 34.555082198294294, -0.934803438841388 ], [ 34.555174860241507, -0.93477403602769 ], [ 34.555216990043469, -0.934811815146646 ], [ 34.555287157510612, -0.934827366650809 ], [ 34.555434125414052, -0.934800373703462 ], [ 34.555476160272129, -0.934698770764122 ], [ 34.555557757338832, -0.934666682890835 ], [ 34.555682398502483, -0.934606373823952 ], [ 34.555773056200593, -0.93455277978454 ], [ 34.555848288249877, -0.934486512942307 ], [ 34.555953767208308, -0.934476601727844 ], [ 34.55603885231907, -0.934473310221176 ], [ 34.556077220894693, -0.934570076254651 ], [ 34.556110606835638, -0.934573654443377 ], [ 34.556203532023403, -0.934533309995852 ], [ 34.556331303534272, -0.934492993463781 ], [ 34.556364929709083, -0.934564636721849 ], [ 34.55646271020418, -0.934550822472242 ], [ 34.556546664713537, -0.934520999586034 ], [ 34.556489822086583, -0.934477608076142 ], [ 34.556359334353019, -0.934411745190418 ], [ 34.556218491774359, -0.934303638344415 ], [ 34.556054208291542, -0.934144268391174 ], [ 34.555922700445109, -0.934011410001409 ], [ 34.555831057407687, -0.933937750126399 ], [ 34.55572077339545, -0.93382316390346 ], [ 34.555573361904692, -0.933706518176647 ], [ 34.55545305164042, -0.933600210962462 ], [ 34.55531527805924, -0.93346787781041 ], [ 34.555185592089828, -0.933352838266484 ], [ 34.55503919705442, -0.933203096495186 ], [ 34.554934594676801, -0.933128856316324 ], [ 34.554814651456617, -0.933024509607928 ], [ 34.554644136320583, -0.93286802662885 ], [ 34.554613463634801, -0.932949854023246 ], [ 34.554588300610163, -0.933043918140478 ] ] ] } },
|
||||||
|
{ "type": "Feature", "properties": { "field": "5052103", "sub_field": "5052103" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.534783224210891, -0.927750627573522 ], [ 34.534673740602678, -0.927866416161864 ], [ 34.534555047759397, -0.927991423609823 ], [ 34.534417889830742, -0.928114627184638 ], [ 34.534261588532807, -0.928266143964292 ], [ 34.534382112991928, -0.928383762854953 ], [ 34.534515115814592, -0.928531648779706 ], [ 34.534758483072913, -0.928812135134087 ], [ 34.5350394851476, -0.929122059332023 ], [ 34.535162557203208, -0.929247733355751 ], [ 34.535318415895958, -0.929421127230475 ], [ 34.535408319521139, -0.929533710195232 ], [ 34.535532487077937, -0.929684997831544 ], [ 34.535737783904978, -0.929894614015247 ], [ 34.535828249621822, -0.92998630818356 ], [ 34.535926232755102, -0.930089342813404 ], [ 34.536045494759342, -0.930153585370948 ], [ 34.536097589885372, -0.930055112049898 ], [ 34.536146104150127, -0.929949022471525 ], [ 34.536183313881693, -0.92984055521213 ], [ 34.536247492339953, -0.929668772566253 ], [ 34.53628673143195, -0.929614214772345 ], [ 34.536280621179429, -0.92956645444109 ], [ 34.536259792085303, -0.929521219489881 ], [ 34.536288908638276, -0.929440454793479 ], [ 34.536326524707228, -0.929317128720852 ], [ 34.536368360875997, -0.9292087287401 ], [ 34.53640514118915, -0.929122374523152 ], [ 34.536467667746237, -0.928912459145159 ], [ 34.536531971939773, -0.928735001891769 ], [ 34.536572179170847, -0.928642535736552 ], [ 34.536631879217033, -0.928571794745631 ], [ 34.536604274117387, -0.928552508269177 ], [ 34.536360711608957, -0.928397991031595 ], [ 34.536163269071579, -0.928287087647733 ], [ 34.535936247988161, -0.92815367003299 ], [ 34.5357161765847, -0.928027452402824 ], [ 34.535500736940023, -0.927909153646728 ], [ 34.535160155435939, -0.927720979503536 ], [ 34.53486950256179, -0.927563094449098 ], [ 34.534783224210891, -0.927750627573522 ] ] ] } },
|
||||||
|
{ "type": "Feature", "properties": { "field": "5052207", "sub_field": "5052207" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.52665233687101, -0.926451849113769 ], [ 34.526549031387979, -0.926421292213002 ], [ 34.52636234847833, -0.926423293621708 ], [ 34.526255399757808, -0.926413582175781 ], [ 34.526246808013411, -0.926737214469312 ], [ 34.526255829188017, -0.927012306907619 ], [ 34.526209337065808, -0.927122817639197 ], [ 34.526233317970409, -0.927122725088743 ], [ 34.526399209410037, -0.927165315489124 ], [ 34.526666553593493, -0.927209492914412 ], [ 34.526783263461539, -0.927217922692568 ], [ 34.52677780269206, -0.926892524736238 ], [ 34.526767992435623, -0.926461322857392 ], [ 34.52665233687101, -0.926451849113769 ] ] ] } },
|
||||||
|
{ "type": "Feature", "properties": { "field": "5052503", "sub_field": "5052503" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.535792229603693, -0.932385232119908 ], [ 34.535718505136757, -0.932357688898829 ], [ 34.535625141998473, -0.93234823014146 ], [ 34.535546130619913, -0.932322296613725 ], [ 34.535449404311613, -0.932294911686073 ], [ 34.535358490443237, -0.932273049448474 ], [ 34.535279898689467, -0.932251075628959 ], [ 34.535168172423113, -0.932219774571223 ], [ 34.535033393952332, -0.932203606779849 ], [ 34.534932442744903, -0.932184524102873 ], [ 34.534831699405153, -0.932168904833163 ], [ 34.534738470369327, -0.932163112081459 ], [ 34.534675212582478, -0.93215947946806 ], [ 34.534524751971638, -0.932167322032268 ], [ 34.534493018044707, -0.932155817414133 ], [ 34.534372069575447, -0.932167778810375 ], [ 34.534235874584887, -0.932146126055935 ], [ 34.534120791690491, -0.932118164040404 ], [ 34.534017396537891, -0.932096877808103 ], [ 34.533923039823833, -0.93206722796976 ], [ 34.533851012565592, -0.932036653104644 ], [ 34.533802279277573, -0.932013687830131 ], [ 34.53370292091121, -0.931966621176691 ], [ 34.533645618872463, -0.931925788464853 ], [ 34.533539587727788, -0.931858483218474 ], [ 34.533416124999647, -0.931764047303608 ], [ 34.533257938798137, -0.931648826546791 ], [ 34.533165851309782, -0.931580853159021 ], [ 34.533128347449022, -0.93153357059081 ], [ 34.533058171360722, -0.931440678671277 ], [ 34.533013016562784, -0.931409292052244 ], [ 34.532961540039082, -0.931352973643015 ], [ 34.532929568243709, -0.931364273365281 ], [ 34.532820306986878, -0.931440574937691 ], [ 34.532722031778292, -0.931521970141527 ], [ 34.532655767964243, -0.931573568878514 ], [ 34.532564087283127, -0.93164404455207 ], [ 34.532490956169369, -0.931702517177011 ], [ 34.532382100091411, -0.931788081820573 ], [ 34.5322902651832, -0.931860326685017 ], [ 34.532257995880968, -0.931915681038881 ], [ 34.53227663494286, -0.931961361059287 ], [ 34.53230133445124, -0.932015360661792 ], [ 34.532353781972773, -0.932082086531564 ], [ 34.532434929900901, -0.932147469987126 ], [ 34.532581471437837, -0.932254749055244 ], [ 34.532680386874787, -0.932346905161402 ], [ 34.532764439254102, -0.932409207832152 ], [ 34.532818993720127, -0.932450559006884 ], [ 34.532899354967483, -0.932494876831535 ], [ 34.532924025077698, -0.932524068912605 ], [ 34.532987805860373, -0.932554086189291 ], [ 34.533003447095673, -0.932579517060399 ], [ 34.533044022467926, -0.932596057873901 ], [ 34.533097964357637, -0.932638774524081 ], [ 34.533170278318721, -0.932665620467646 ], [ 34.533234387010552, -0.932720213807133 ], [ 34.533337252373201, -0.932777225722834 ], [ 34.533498416469648, -0.932845462955281 ], [ 34.533541962765739, -0.932854862853214 ], [ 34.533657485492952, -0.932890106905377 ], [ 34.533752805010522, -0.932902863241544 ], [ 34.533950629685172, -0.932958327532738 ], [ 34.534051559616238, -0.932957893433282 ], [ 34.534173488895249, -0.932977325542006 ], [ 34.53428504011913, -0.932993765218645 ], [ 34.534421608485367, -0.933013991998831 ], [ 34.534520858623146, -0.933050363966649 ], [ 34.534578600689819, -0.933065340011993 ], [ 34.534648908580351, -0.933109657562736 ], [ 34.534694792993278, -0.933164118120941 ], [ 34.534750849408667, -0.933231528487763 ], [ 34.534812966017917, -0.933267127165317 ], [ 34.534863611303912, -0.933271486019655 ], [ 34.534954585041447, -0.933244669908512 ], [ 34.535015289104606, -0.93317902496481 ], [ 34.535106973014763, -0.93315079604498 ], [ 34.535163412212171, -0.93300474878075 ], [ 34.53523545011543, -0.932950469435098 ], [ 34.535368832331123, -0.932906162870744 ], [ 34.535540407188712, -0.932838451073196 ], [ 34.53573621593948, -0.932743682976791 ], [ 34.535934559897314, -0.932427858602648 ], [ 34.535792229603693, -0.932385232119908 ] ] ] } },
|
||||||
|
{ "type": "Feature", "properties": { "field": "5052900", "sub_field": "5052900" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.545669473229168, -0.924590041660346 ], [ 34.545681876877431, -0.924713493162345 ], [ 34.545687773785858, -0.924899493140795 ], [ 34.545699167382622, -0.925054380660408 ], [ 34.545759988225761, -0.925217201850196 ], [ 34.545842112522678, -0.925390068705403 ], [ 34.545986627992583, -0.92557019709001 ], [ 34.546078579951477, -0.925689900243108 ], [ 34.546211259612193, -0.925907671227523 ], [ 34.546311329065169, -0.926060921804421 ], [ 34.546360255687382, -0.926323936766513 ], [ 34.546431466534557, -0.926388847578765 ], [ 34.546467097729732, -0.926472549041247 ], [ 34.546668043786873, -0.92647932876508 ], [ 34.546824106835693, -0.926449973297853 ], [ 34.547007336781817, -0.926500970254778 ], [ 34.547187223590967, -0.926576086285329 ], [ 34.547250204271307, -0.926646969187909 ], [ 34.547356069479257, -0.926647664072749 ], [ 34.54747848122345, -0.926668591345438 ], [ 34.547557628870543, -0.926600252224721 ], [ 34.547622199250071, -0.926537881102239 ], [ 34.547674752045822, -0.926459132259183 ], [ 34.54770916362709, -0.926388296109076 ], [ 34.547723372008441, -0.926284796508099 ], [ 34.54776394722834, -0.926191428726727 ], [ 34.547784254605332, -0.9261223550005 ], [ 34.547774100295847, -0.926045203528169 ], [ 34.547796447207652, -0.925931260493529 ], [ 34.54772540768866, -0.925727274707497 ], [ 34.547682868337461, -0.925502267956573 ], [ 34.547614235692187, -0.92520125818961 ], [ 34.547557704006898, -0.924746068665844 ], [ 34.547529218999713, -0.924357312094286 ], [ 34.547520916681158, -0.924063094768483 ], [ 34.547368325379558, -0.924071856656302 ], [ 34.547141101389123, -0.924108957427577 ], [ 34.546807068157563, -0.924117658974762 ], [ 34.54659722316552, -0.924136113432964 ], [ 34.546402529828072, -0.924160377942412 ], [ 34.546236928674482, -0.924216272693043 ], [ 34.546045083282813, -0.924305381784234 ], [ 34.545876232742373, -0.924425320230292 ], [ 34.545669473229168, -0.924590041660346 ] ] ] } },
|
||||||
|
{ "type": "Feature", "properties": { "field": "5053500", "sub_field": "5053500" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.541706557224742, -0.939573609926086 ], [ 34.541488174734077, -0.939782419669452 ], [ 34.541827468063893, -0.940122180657309 ], [ 34.542160258211787, -0.940435779985403 ], [ 34.54237579096354, -0.940626237567017 ], [ 34.542566271728482, -0.940823252646794 ], [ 34.54278274262203, -0.941029231961956 ], [ 34.543052530428987, -0.941255920941919 ], [ 34.543243126141121, -0.941380775689292 ], [ 34.543377286379979, -0.9414707434785 ], [ 34.543510936156913, -0.941553761831122 ], [ 34.543698317077741, -0.941622515758221 ], [ 34.543887140869003, -0.941663589331152 ], [ 34.544067451126892, -0.941685906899316 ], [ 34.544086232702483, -0.94148781233902 ], [ 34.544117843038912, -0.941487960894649 ], [ 34.544092375026111, -0.941314058037309 ], [ 34.544043365051792, -0.940915675542696 ], [ 34.543966952903908, -0.940486431902214 ], [ 34.54344503202681, -0.941010104294636 ], [ 34.543095325002071, -0.940674810279224 ], [ 34.543111096988149, -0.940622439048768 ], [ 34.543358571308993, -0.940464060440975 ], [ 34.543558010346651, -0.940325463180145 ], [ 34.543753570585572, -0.940155895777708 ], [ 34.54370723808136, -0.940080621811769 ], [ 34.543396524103692, -0.939724906332436 ], [ 34.543417312805552, -0.939676427792454 ], [ 34.543297593632992, -0.939627856649012 ], [ 34.543288908205717, -0.9395777665594 ], [ 34.543196408297057, -0.939497688467097 ], [ 34.543151158914682, -0.939428548769639 ], [ 34.542917075554612, -0.939170251586432 ], [ 34.542784017267337, -0.939283955609318 ], [ 34.54275460837178, -0.939314959908645 ], [ 34.542806473209893, -0.939361403268703 ], [ 34.542641502479711, -0.939532031965027 ], [ 34.5424335919962, -0.939724633615244 ], [ 34.542293559452503, -0.939866277655496 ], [ 34.542173515936049, -0.939988063669737 ], [ 34.542042761557589, -0.939898598468815 ], [ 34.541944265329533, -0.939824731837004 ], [ 34.541873793320768, -0.939771986371341 ], [ 34.541831726538653, -0.939684044729136 ], [ 34.541779087560691, -0.939617263940667 ], [ 34.541706557224742, -0.939573609926086 ] ] ] } },
|
||||||
|
{ "type": "Feature", "properties": { "field": "5053504", "sub_field": "5053504" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.541465691483822, -0.939753084296751 ], [ 34.541680454604709, -0.939541654810764 ], [ 34.541810341429553, -0.9393186930189 ], [ 34.541829993305633, -0.93924677512763 ], [ 34.541804039748648, -0.939200955716626 ], [ 34.54165097836556, -0.939064654364699 ], [ 34.541490761513487, -0.938914304997256 ], [ 34.541329214654347, -0.938756545071425 ], [ 34.541237460409739, -0.938665319547647 ], [ 34.541141739732083, -0.938578462467459 ], [ 34.540950529979803, -0.93837529309646 ], [ 34.540822854404993, -0.938238240204175 ], [ 34.540787868416473, -0.938301190662269 ], [ 34.540755231093101, -0.938411602444627 ], [ 34.540725151162903, -0.938467579628276 ], [ 34.54066123981508, -0.938498761592688 ], [ 34.540607317661838, -0.938522506710558 ], [ 34.540524669545313, -0.93849008592498 ], [ 34.540430853384471, -0.938447630146408 ], [ 34.540435491429903, -0.938396790567148 ], [ 34.540401949140048, -0.93834436705599 ], [ 34.540344261893047, -0.938360611440881 ], [ 34.540294764655421, -0.938293236286766 ], [ 34.540265117870867, -0.938223473062474 ], [ 34.540273096762157, -0.938171317589093 ], [ 34.540308665741428, -0.938129360316831 ], [ 34.540366283595311, -0.938067600295252 ], [ 34.540401279177964, -0.938039309844606 ], [ 34.540448285425661, -0.938083832977763 ], [ 34.540567678430698, -0.937996610315746 ], [ 34.540496765509168, -0.937878041004843 ], [ 34.5403683055196, -0.937725057998191 ], [ 34.540253740143783, -0.937597968712069 ], [ 34.540221584266092, -0.937564523915815 ], [ 34.540154666238003, -0.937587725582232 ], [ 34.540139732811362, -0.937626016866467 ], [ 34.540190597731538, -0.937715322558704 ], [ 34.540238910213027, -0.93774011421596 ], [ 34.540247590812427, -0.937830538184951 ], [ 34.540206672641879, -0.937852908649836 ], [ 34.540145132440067, -0.937862953728013 ], [ 34.540088824264373, -0.937833871626359 ], [ 34.540033404152062, -0.937767375880663 ], [ 34.539976100180603, -0.937679591264356 ], [ 34.539950190513487, -0.93765737595339 ], [ 34.539875796178471, -0.937711800522302 ], [ 34.539794715600159, -0.937699650478249 ], [ 34.539626951115707, -0.937739385509953 ], [ 34.539526760614521, -0.937870703905419 ], [ 34.539712594265168, -0.938038003045797 ], [ 34.539917467249893, -0.938229648202813 ], [ 34.540055201546153, -0.938374545755907 ], [ 34.540197612885052, -0.938522498712547 ], [ 34.540372100976647, -0.938702525737063 ], [ 34.540584266540968, -0.938905116294664 ], [ 34.540805926608627, -0.939119893317215 ], [ 34.540958661459463, -0.939270627960592 ], [ 34.54111877854119, -0.939412783566784 ], [ 34.541341409994637, -0.939644001429581 ], [ 34.541465691483822, -0.939753084296751 ] ] ] } },
|
||||||
|
{ "type": "Feature", "properties": { "field": "5053900", "sub_field": "5053900" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.546930103420721, -0.934130170460893 ], [ 34.546889340894353, -0.934332741536233 ], [ 34.546798992938889, -0.934721842281054 ], [ 34.546755953929313, -0.93494256044316 ], [ 34.546700479762272, -0.935287249009985 ], [ 34.546595253967787, -0.935611093665608 ], [ 34.546721964153662, -0.93572505773128 ], [ 34.54706838417021, -0.935730952260012 ], [ 34.547300493971427, -0.935759803057746 ], [ 34.547473962868018, -0.935767727361452 ], [ 34.547609180529143, -0.935749735180223 ], [ 34.547836365481878, -0.935768658505488 ], [ 34.547985421410573, -0.93576739680351 ], [ 34.548177537552888, -0.935764989302652 ], [ 34.548311041715138, -0.935781443953689 ], [ 34.548332761814798, -0.935724748117192 ], [ 34.548363654023817, -0.935567802883859 ], [ 34.548467056736001, -0.935343215972168 ], [ 34.548599702258812, -0.935129585069048 ], [ 34.548671354954543, -0.935076112014066 ], [ 34.548712742093798, -0.935009904268599 ], [ 34.548663307799401, -0.93491654681797 ], [ 34.548589183164729, -0.93480119184009 ], [ 34.548486974802017, -0.934657579000962 ], [ 34.548387931699743, -0.934539828845787 ], [ 34.548282984238227, -0.934408846003896 ], [ 34.548204542645223, -0.93430595464684 ], [ 34.548133626544342, -0.934228963435491 ], [ 34.548085109574977, -0.934191523874398 ], [ 34.548038364702563, -0.934149103594434 ], [ 34.547979141051862, -0.934115717713364 ], [ 34.547892804146763, -0.934101591717427 ], [ 34.547793184504712, -0.934089509280276 ], [ 34.547643780887228, -0.934052624672216 ], [ 34.547478520028768, -0.934017423346149 ], [ 34.547325132533103, -0.933962170229604 ], [ 34.547221135098823, -0.933929042335754 ], [ 34.547035367858918, -0.933868546281725 ], [ 34.54698375065847, -0.933834163948455 ], [ 34.546930103420721, -0.934130170460893 ] ] ] } },
|
||||||
|
{ "type": "Feature", "properties": { "field": "5053903", "sub_field": "5053903" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.548248704503401, -0.934360411880229 ], [ 34.548481339536423, -0.934641912983941 ], [ 34.54859650806759, -0.934807203367999 ], [ 34.548820562482007, -0.935123272165046 ], [ 34.549027300756791, -0.935396481707047 ], [ 34.549158325619842, -0.935565098379747 ], [ 34.549317223168231, -0.935786935775804 ], [ 34.54939783490174, -0.93587761232669 ], [ 34.549515237565252, -0.935991250433117 ], [ 34.549617467493533, -0.936056422686082 ], [ 34.549816354103193, -0.936043494228619 ], [ 34.549904446612352, -0.935904093262751 ], [ 34.549965707124237, -0.93594967245741 ], [ 34.550009914701903, -0.935934854260927 ], [ 34.550111814404183, -0.935829121762902 ], [ 34.550172260595573, -0.935528377409765 ], [ 34.550237616196497, -0.935429822826994 ], [ 34.550315199475193, -0.93535034317855 ], [ 34.550298879458147, -0.935309272956854 ], [ 34.550297655378372, -0.935254685470897 ], [ 34.550352123639129, -0.935212773738001 ], [ 34.550357932265669, -0.935084197680812 ], [ 34.550395207323973, -0.934921637095413 ], [ 34.550376971554797, -0.934903487653296 ], [ 34.55031621329951, -0.934813596398485 ], [ 34.55021504603868, -0.934687807011838 ], [ 34.550081547458888, -0.934513160317549 ], [ 34.549959956616988, -0.934364952914248 ], [ 34.549939247381651, -0.93434561652985 ], [ 34.549923634993888, -0.934308659008827 ], [ 34.549897047663507, -0.934280490088323 ], [ 34.54988110417758, -0.93422737658848 ], [ 34.549770937274559, -0.934110992255372 ], [ 34.549657300463487, -0.933979575962715 ], [ 34.549589405679001, -0.933877721440225 ], [ 34.54958034934554, -0.933806746302359 ], [ 34.549707191014448, -0.933742547437205 ], [ 34.549596690136497, -0.933616581934539 ], [ 34.54949602210413, -0.933567276057734 ], [ 34.549425051666297, -0.933469846772563 ], [ 34.549347887861657, -0.933358875430701 ], [ 34.549294982668989, -0.933273551576339 ], [ 34.549265210974021, -0.933161774803202 ], [ 34.549222045390053, -0.933083600280653 ], [ 34.549177119037033, -0.933032303762606 ], [ 34.549017275006207, -0.933048913941534 ], [ 34.548977179280861, -0.932970609980235 ], [ 34.548908778030537, -0.933066482764625 ], [ 34.548829174659367, -0.93328342054411 ], [ 34.54877371779277, -0.933404740656681 ], [ 34.548703289746207, -0.933519110095533 ], [ 34.54868469550037, -0.933649831555364 ], [ 34.548649164414478, -0.933715025417453 ], [ 34.548550458323547, -0.933864210464505 ], [ 34.548487979217953, -0.933961101808509 ], [ 34.548355674558501, -0.934149483170109 ], [ 34.548233561657469, -0.934116293102513 ], [ 34.548101448076032, -0.934008373713582 ], [ 34.548047662139552, -0.933981188721003 ], [ 34.547966584165387, -0.934038805205804 ], [ 34.548248704503401, -0.934360411880229 ] ] ] } },
|
||||||
|
{ "type": "Feature", "properties": { "field": "5054101", "sub_field": "5054101" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.553180932730882, -0.935099934463369 ], [ 34.552958732598547, -0.935076405560519 ], [ 34.55270329304804, -0.935114303517583 ], [ 34.55248836521902, -0.935167230356232 ], [ 34.552237576897262, -0.935236645988029 ], [ 34.552008980183047, -0.935310987692372 ], [ 34.551879841491107, -0.935465119955381 ], [ 34.55166047384219, -0.935702921689815 ], [ 34.55145448353214, -0.935966337701239 ], [ 34.551446572887258, -0.936146645652655 ], [ 34.551635060789692, -0.936245225915063 ], [ 34.552023631854709, -0.936388368760097 ], [ 34.552371889133553, -0.936560332778929 ], [ 34.552649803731541, -0.936732260709667 ], [ 34.552776388428697, -0.936552908084865 ], [ 34.552926139049767, -0.936627472533845 ], [ 34.553077262899983, -0.936325006482906 ], [ 34.552854489959593, -0.936120326476626 ], [ 34.553121814312263, -0.935569356936707 ], [ 34.553186840882532, -0.935516940345767 ], [ 34.553501169601383, -0.935755757526611 ], [ 34.553547543994107, -0.935728160336167 ], [ 34.553469583649353, -0.935544092102352 ], [ 34.55341974879255, -0.935346662483438 ], [ 34.553344297499287, -0.935121230467525 ], [ 34.553180932730882, -0.935099934463369 ] ] ] } },
|
||||||
|
{ "type": "Feature", "properties": { "field": "5054700", "sub_field": "5054700" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.550997037837277, -0.938867425948718 ], [ 34.55108554359596, -0.939060242885368 ], [ 34.551132279937264, -0.939211541188952 ], [ 34.551168483912832, -0.939451426131663 ], [ 34.551168589723432, -0.939721965640746 ], [ 34.551158351482577, -0.939982116418097 ], [ 34.551106044162758, -0.94021133591185 ], [ 34.551032915852197, -0.940476826638307 ], [ 34.550980715660273, -0.940695309201552 ], [ 34.55090796948496, -0.940919047317615 ], [ 34.550803836247013, -0.941080229411472 ], [ 34.550673711065023, -0.94121528857656 ], [ 34.550543644856667, -0.941428167516212 ], [ 34.550382539039468, -0.941754195805586 ], [ 34.550538396569912, -0.941843381667403 ], [ 34.550986161582223, -0.941809005234404 ], [ 34.551320307987623, -0.941774040082822 ], [ 34.551546338569018, -0.941353473100571 ], [ 34.551689141457672, -0.941090722880128 ], [ 34.55183212581197, -0.940834223452808 ], [ 34.551927627136763, -0.940639706314624 ], [ 34.552061398141547, -0.94030498526725 ], [ 34.552190719556172, -0.940005316520549 ], [ 34.552264660524003, -0.939923781155046 ], [ 34.55223321585904, -0.939802187375593 ], [ 34.55228339154629, -0.93963481282665 ], [ 34.552342925574123, -0.939522958215415 ], [ 34.552385005080012, -0.939459303133774 ], [ 34.552444930820329, -0.939289454641191 ], [ 34.552507497850499, -0.939104789909473 ], [ 34.552512668011339, -0.939001792558041 ], [ 34.552487326372891, -0.938854216399812 ], [ 34.552454780953383, -0.938713329556919 ], [ 34.552408893064943, -0.938598036046374 ], [ 34.552369999136168, -0.938451379876354 ], [ 34.552337718528662, -0.93830275312876 ], [ 34.552310802028472, -0.938185427729408 ], [ 34.550997037837277, -0.938867425948718 ] ] ] } },
|
||||||
|
{ "type": "Feature", "properties": { "field": "6060200", "sub_field": "6060200" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.557852843267938, -0.937228970842136 ], [ 34.557860070225189, -0.937535214159227 ], [ 34.55786363171741, -0.937864871445712 ], [ 34.557864813524233, -0.938165734270179 ], [ 34.557866819035937, -0.938303646928434 ], [ 34.557883770381729, -0.938410345440698 ], [ 34.557951506318567, -0.938389860660336 ], [ 34.558031813255973, -0.938392843873322 ], [ 34.558133404695013, -0.938414052161486 ], [ 34.558243886710187, -0.93843298127374 ], [ 34.558391625534263, -0.938469742820982 ], [ 34.558558333242317, -0.938507998075633 ], [ 34.5587382035554, -0.938534963897948 ], [ 34.559002792848993, -0.938563887265276 ], [ 34.559144430441989, -0.938577461328016 ], [ 34.559249088604872, -0.938602133550412 ], [ 34.559384146760003, -0.938641862634871 ], [ 34.559585166681352, -0.938667440760838 ], [ 34.559704681356031, -0.938680241843457 ], [ 34.560083965683788, -0.938767688458231 ], [ 34.560303417194341, -0.938817784156387 ], [ 34.560538310316353, -0.938870089815587 ], [ 34.560692252842621, -0.938907470908007 ], [ 34.560839114076643, -0.938934520736556 ], [ 34.560947450782137, -0.938940412531647 ], [ 34.56095690906092, -0.938883415719136 ], [ 34.56084707485531, -0.938717331416211 ], [ 34.560690988189059, -0.938462849135301 ], [ 34.560433914929128, -0.938051700080878 ], [ 34.56026843445342, -0.937803669128382 ], [ 34.560165695343727, -0.937646162516694 ], [ 34.560059316896883, -0.937501359608436 ], [ 34.559972638097967, -0.93737995764798 ], [ 34.559869672437969, -0.937200161348368 ], [ 34.559833077893003, -0.9371113695263 ], [ 34.559753818336787, -0.936958666584284 ], [ 34.559691126793901, -0.936757707425897 ], [ 34.559664183744147, -0.936647763589564 ], [ 34.559629720495892, -0.936581693835134 ], [ 34.559583974202582, -0.936569220143932 ], [ 34.559529131086528, -0.936600594240786 ], [ 34.559437924891292, -0.936637331487374 ], [ 34.559330422625521, -0.936681384699246 ], [ 34.559219421591898, -0.936716289417416 ], [ 34.559021387020401, -0.936777195905574 ], [ 34.558901107650968, -0.936830317025692 ], [ 34.558801195108153, -0.936868408759734 ], [ 34.55868682574264, -0.936918853043817 ], [ 34.558584974293979, -0.936949324634589 ], [ 34.558402590811582, -0.937023470817248 ], [ 34.558324003138523, -0.937056121099421 ], [ 34.558192093099393, -0.937094112967603 ], [ 34.558050529321832, -0.937148613214844 ], [ 34.557936323261828, -0.937196033449615 ], [ 34.557852843267938, -0.937228970842136 ] ] ] } },
|
||||||
|
{ "type": "Feature", "properties": { "field": "6060300", "sub_field": "6060300" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.558976017460289, -0.935106587878912 ], [ 34.559068315515553, -0.935297128033958 ], [ 34.559117400526183, -0.935404510853889 ], [ 34.559194722176578, -0.935549875056488 ], [ 34.559281550998001, -0.935786146478888 ], [ 34.559379429163343, -0.935994240390407 ], [ 34.559471319021952, -0.936221241102205 ], [ 34.559553257135491, -0.936420301371242 ], [ 34.559635102201192, -0.936583323347886 ], [ 34.559668259402557, -0.936666177633761 ], [ 34.559721380816093, -0.936826086492039 ], [ 34.559793378540732, -0.936990516196701 ], [ 34.559851525578843, -0.937136265205663 ], [ 34.559893977450692, -0.937210968398009 ], [ 34.559932426268062, -0.937215141979689 ], [ 34.559983808340363, -0.937157116857538 ], [ 34.56008257461108, -0.937091224714377 ], [ 34.560128060671417, -0.937039374237995 ], [ 34.560198748831233, -0.936987590699913 ], [ 34.560281759423347, -0.936915993858341 ], [ 34.560355422445838, -0.936862628448687 ], [ 34.560412139335973, -0.936827111583465 ], [ 34.560482262837787, -0.936781691973907 ], [ 34.560532811043487, -0.93675411288578 ], [ 34.560593595853803, -0.936718297361174 ], [ 34.560653798887842, -0.936690482516943 ], [ 34.560724099541403, -0.936662183631398 ], [ 34.560777010412878, -0.936632531469764 ], [ 34.560872502344083, -0.93659203464466 ], [ 34.560944530979818, -0.936559219496554 ], [ 34.561016555092323, -0.936527901709969 ], [ 34.561091393192889, -0.936499327437972 ], [ 34.561165548233681, -0.936471696565284 ], [ 34.56121886492474, -0.936457010833968 ], [ 34.561191128387073, -0.936398046636452 ], [ 34.561154051881331, -0.936334334821904 ], [ 34.5611230570305, -0.936283104547488 ], [ 34.56109284954799, -0.936230699396512 ], [ 34.56105329712765, -0.936131781139948 ], [ 34.560992885874853, -0.936040004382009 ], [ 34.560937944622303, -0.935951355815491 ], [ 34.560897784735232, -0.935885540023542 ], [ 34.560836692591877, -0.935804252741328 ], [ 34.560767578022812, -0.935725175608477 ], [ 34.560710000252563, -0.935667704251859 ], [ 34.560671531978272, -0.935596060466168 ], [ 34.560589721144929, -0.935528216944984 ], [ 34.560529737249063, -0.935474153520192 ], [ 34.560468724149644, -0.935421314516884 ], [ 34.560385025824331, -0.935339209844212 ], [ 34.560334636345402, -0.935294473058085 ], [ 34.560269345443778, -0.935226186795654 ], [ 34.56018454524272, -0.935118083881895 ], [ 34.560102540466538, -0.935061186451809 ], [ 34.560017986914673, -0.935006370952656 ], [ 34.559943308673887, -0.934943575410601 ], [ 34.559867365863603, -0.934880632868853 ], [ 34.559762079201093, -0.934809599481301 ], [ 34.559665427196933, -0.934747456967058 ], [ 34.55960735588507, -0.934732746940201 ], [ 34.559549842170142, -0.934723768997936 ], [ 34.55946869712232, -0.934741817715285 ], [ 34.559377533618587, -0.934755228811434 ], [ 34.559276066424097, -0.934794753376352 ], [ 34.55918932254221, -0.9348104931697 ], [ 34.559097178252387, -0.934850586217423 ], [ 34.558972246816552, -0.934905790559178 ], [ 34.558919694139782, -0.934959026403948 ], [ 34.558976017460289, -0.935106587878912 ] ] ] } },
|
||||||
|
{ "type": "Feature", "properties": { "field": "6060402", "sub_field": "6060402" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.562047951432469, -0.936348941315117 ], [ 34.561889039853092, -0.936366861453264 ], [ 34.561723749041647, -0.936394877078957 ], [ 34.561590537789833, -0.936398885461474 ], [ 34.561404558617141, -0.936442071792937 ], [ 34.561252461314069, -0.936469530740704 ], [ 34.561132053448212, -0.936513621363894 ], [ 34.560972263709012, -0.936568705477211 ], [ 34.560835148140526, -0.936637638812016 ], [ 34.560715415784941, -0.936695070129837 ], [ 34.560550918627072, -0.936768110903719 ], [ 34.560478267031911, -0.936832267769592 ], [ 34.560461018898707, -0.936935789538192 ], [ 34.560477834247401, -0.937039022498238 ], [ 34.560543985328032, -0.937128773821982 ], [ 34.560648811843059, -0.937136559110768 ], [ 34.560748858629722, -0.937213097637696 ], [ 34.560859913010972, -0.937313469198771 ], [ 34.5609819979313, -0.937474424164033 ], [ 34.561080324061479, -0.937611259938077 ], [ 34.561177973855088, -0.937679673359398 ], [ 34.56129111453793, -0.937732566268734 ], [ 34.561433297688467, -0.937735574898722 ], [ 34.561575733561263, -0.937780816763351 ], [ 34.561766165425901, -0.937800360087911 ], [ 34.561925247157788, -0.937848926256882 ], [ 34.561980376080207, -0.937804278971455 ], [ 34.561835229062652, -0.937639466990072 ], [ 34.561818533655611, -0.937523058226641 ], [ 34.561876066767447, -0.937464864464142 ], [ 34.561991828312138, -0.93740127894646 ], [ 34.562134436060553, -0.937318814502162 ], [ 34.562253602073682, -0.937262705525774 ], [ 34.562527504074843, -0.937457423072451 ], [ 34.562608239597708, -0.937538982798876 ], [ 34.562684781309258, -0.937550225759819 ], [ 34.562766756788847, -0.937609780160599 ], [ 34.562826397724578, -0.937698679350459 ], [ 34.56288219920711, -0.937783850064629 ], [ 34.563044854457502, -0.937944389599098 ], [ 34.563155554810898, -0.938041020958146 ], [ 34.563219299822869, -0.93806552628613 ], [ 34.563258963186527, -0.938044266374161 ], [ 34.56328995962506, -0.937978601926951 ], [ 34.563266718728663, -0.937912234372241 ], [ 34.563167171665498, -0.937784589443595 ], [ 34.563077871222958, -0.937631358422223 ], [ 34.562993617132378, -0.93752529926678 ], [ 34.562928015588, -0.937424982309207 ], [ 34.562847167007853, -0.937323787824009 ], [ 34.562765252367043, -0.937216404449598 ], [ 34.562682171382853, -0.937098912099776 ], [ 34.56259275915928, -0.936991709648374 ], [ 34.562535333526867, -0.93687456973791 ], [ 34.562494488776231, -0.936805680253093 ], [ 34.562454988688529, -0.93672227028965 ], [ 34.562440007452018, -0.936673518087343 ], [ 34.562409724115717, -0.936623714062286 ], [ 34.562380756968103, -0.936572851897972 ], [ 34.562342171074263, -0.936520948287765 ], [ 34.562306474841748, -0.936484330009124 ], [ 34.562280069550603, -0.936429186399744 ], [ 34.562247117203867, -0.936382831770413 ], [ 34.562239303641867, -0.936350350447514 ], [ 34.562221680014112, -0.936311341740856 ], [ 34.562047951432469, -0.936348941315117 ] ] ] } },
|
||||||
|
{ "type": "Feature", "properties": { "field": "6060903", "sub_field": "6060903" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.56328298534217, -0.938097566815428 ], [ 34.563187053692452, -0.938246906471678 ], [ 34.563082560269173, -0.938392977802981 ], [ 34.562978199939828, -0.93856517255279 ], [ 34.562879801764502, -0.938717013762466 ], [ 34.562747447403872, -0.938931181348619 ], [ 34.562578648307507, -0.939208270697123 ], [ 34.562482369821993, -0.939346423838679 ], [ 34.562375576023683, -0.939531435958377 ], [ 34.562286842087353, -0.939683576551875 ], [ 34.56243035701165, -0.939691132191057 ], [ 34.562520179148883, -0.939761466443001 ], [ 34.562577860453487, -0.939809396867309 ], [ 34.562640008291012, -0.939873753654653 ], [ 34.562733751945053, -0.939954828353401 ], [ 34.562803974188213, -0.940000406198137 ], [ 34.562891668468268, -0.940056627587217 ], [ 34.56298773402937, -0.940118079650616 ], [ 34.563081462256307, -0.940163855092131 ], [ 34.56317496987478, -0.940231088676979 ], [ 34.563290142769702, -0.940306245149335 ], [ 34.563400362910087, -0.940405722851545 ], [ 34.563494474564934, -0.940482636106667 ], [ 34.563616887937123, -0.940585954734602 ], [ 34.563729335835603, -0.940671061716603 ], [ 34.563807834060682, -0.9407271316088 ], [ 34.563905101614587, -0.940803902464746 ], [ 34.564001955805203, -0.940887080240754 ], [ 34.564046286147949, -0.940909860428429 ], [ 34.564090638892807, -0.940916892847869 ], [ 34.564124163094533, -0.940903924678141 ], [ 34.564160089611697, -0.940884787123465 ], [ 34.56420992552934, -0.940863936389365 ], [ 34.564254145808462, -0.940851429237077 ], [ 34.564299404788763, -0.940845656704668 ], [ 34.564343140386541, -0.940835618038098 ], [ 34.564406841540332, -0.940839100393561 ], [ 34.564460073920642, -0.94084737167559 ], [ 34.564535671802133, -0.940873754175154 ], [ 34.564627126234242, -0.940919905142326 ], [ 34.564712539519263, -0.940974682833834 ], [ 34.564809299477147, -0.941028681911311 ], [ 34.564896733234477, -0.941087855598186 ], [ 34.565001581985463, -0.941154983252145 ], [ 34.565032580258453, -0.941180937251277 ], [ 34.565048038440693, -0.94120236199872 ], [ 34.565087570987508, -0.941225349675389 ], [ 34.565128688938692, -0.941227183224262 ], [ 34.565166421479162, -0.941224755034779 ], [ 34.565188756356569, -0.941209529500743 ], [ 34.565202558935113, -0.941168548163426 ], [ 34.565198282625538, -0.941135099172812 ], [ 34.565167256223504, -0.941082635888805 ], [ 34.56512268771219, -0.941013739306124 ], [ 34.565066715144731, -0.940921549737213 ], [ 34.564967849427518, -0.940794116329619 ], [ 34.56489139652129, -0.940696079381134 ], [ 34.564812170146929, -0.940578588283 ], [ 34.564754683035837, -0.940450584704632 ], [ 34.564727202542002, -0.940428655815235 ], [ 34.564678539661003, -0.940343500767292 ], [ 34.564613125649167, -0.940230132116131 ], [ 34.564545895739293, -0.940110711919265 ], [ 34.56446829955383, -0.93996770713866 ], [ 34.564379533552582, -0.939802151905064 ], [ 34.564306395922813, -0.939645095814265 ], [ 34.564219088643092, -0.939479073018728 ], [ 34.564151679894799, -0.939356568590428 ], [ 34.564078578115087, -0.939213062654645 ], [ 34.564007341755278, -0.939076393231496 ], [ 34.563942579523122, -0.938951876586385 ], [ 34.563890993670867, -0.938844759303588 ], [ 34.563826785167578, -0.938733500189001 ], [ 34.563766322560419, -0.938623610085901 ], [ 34.5636946276367, -0.93849506631048 ], [ 34.563613197721047, -0.938351170886085 ], [ 34.563535481684987, -0.938237047907577 ], [ 34.563466635165923, -0.938122744140632 ], [ 34.563383514114939, -0.937992153067153 ], [ 34.56328298534217, -0.938097566815428 ] ] ] } },
|
||||||
|
{ "type": "Feature", "properties": { "field": "6061202", "sub_field": "6061202" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.563412633277068, -0.953764505334999 ], [ 34.563410493480767, -0.953698816188417 ], [ 34.563407438718592, -0.95360793833634 ], [ 34.563395942280749, -0.953522088206648 ], [ 34.563379704521537, -0.953442125147083 ], [ 34.563371412567307, -0.953347894900107 ], [ 34.563368298592273, -0.953294044154205 ], [ 34.563340772341697, -0.953199730362909 ], [ 34.563318529373653, -0.953037210606039 ], [ 34.563305607919702, -0.952843431554228 ], [ 34.563300597110903, -0.952760634219125 ], [ 34.563299777085433, -0.952686239884051 ], [ 34.563304791137739, -0.952603999458888 ], [ 34.563317364751008, -0.952543747090193 ], [ 34.56332906211577, -0.952481419806867 ], [ 34.563348861006332, -0.952367881651293 ], [ 34.563365422583082, -0.952248219873624 ], [ 34.563391804065219, -0.952176350869153 ], [ 34.563421951330128, -0.952069153003623 ], [ 34.563450944551512, -0.951972619896199 ], [ 34.563477462343151, -0.951899368639084 ], [ 34.563522418843633, -0.951802699086863 ], [ 34.563551112993927, -0.951723711167442 ], [ 34.563580885279407, -0.951646660735279 ], [ 34.563610606572212, -0.95160924087183 ], [ 34.563645092682357, -0.951546816267192 ], [ 34.563674642846941, -0.951497577798037 ], [ 34.563713766144318, -0.951439633945076 ], [ 34.563747261080508, -0.951390752188038 ], [ 34.563764589932347, -0.951337170713454 ], [ 34.563766870574909, -0.951259708733762 ], [ 34.563775749371587, -0.951203711736827 ], [ 34.563727040317801, -0.951201452656603 ], [ 34.56360098379082, -0.95117509991155 ], [ 34.563444315174721, -0.951120915295164 ], [ 34.563302985454257, -0.951067478579174 ], [ 34.563144367623487, -0.951003168008442 ], [ 34.563019226007313, -0.950957229381434 ], [ 34.562858254515383, -0.950899078479307 ], [ 34.562724229129827, -0.950842828806694 ], [ 34.56262865610222, -0.950844649019923 ], [ 34.562555581582387, -0.950868068774932 ], [ 34.562520513474517, -0.950907083450337 ], [ 34.56249039384911, -0.950961430031651 ], [ 34.562558235476907, -0.951005331752434 ], [ 34.562549426174598, -0.95107227787539 ], [ 34.562550958882021, -0.951114445263011 ], [ 34.562523198292602, -0.951140929288254 ], [ 34.562498497794508, -0.951278135445709 ], [ 34.562519670171682, -0.951435354670306 ], [ 34.562495177854267, -0.951555325921586 ], [ 34.562527735807521, -0.951729532340012 ], [ 34.562532937470188, -0.951836888648031 ], [ 34.562539669344822, -0.951980547370537 ], [ 34.562542841554652, -0.952127453850126 ], [ 34.562546146309941, -0.952270074785028 ], [ 34.562548080796212, -0.952406656760983 ], [ 34.562596141487163, -0.952392805671962 ], [ 34.562622010804077, -0.952464806603097 ], [ 34.562671869151707, -0.952581767005594 ], [ 34.56271197093875, -0.952640555767094 ], [ 34.562749239951273, -0.952663087758918 ], [ 34.562775320510553, -0.952699063808961 ], [ 34.562786952966917, -0.952764153137919 ], [ 34.562811930467177, -0.952808615188538 ], [ 34.562845319849579, -0.952873261505711 ], [ 34.562880676523932, -0.952936864872653 ], [ 34.562918113422391, -0.952984466265804 ], [ 34.562942054302567, -0.953039653674587 ], [ 34.562960034218086, -0.953104773889572 ], [ 34.562977836260373, -0.953151294258845 ], [ 34.563001638652658, -0.953233269959531 ], [ 34.56301766846984, -0.95328708438954 ], [ 34.563067229576603, -0.953358315211352 ], [ 34.563110707509949, -0.953512668934048 ], [ 34.563156365312487, -0.953647551489281 ], [ 34.563185346930972, -0.953714713322723 ], [ 34.563226628417659, -0.95375924902681 ], [ 34.563250630001257, -0.953788211018825 ], [ 34.563305276028949, -0.95380971342724 ], [ 34.563353966570297, -0.953827769177983 ], [ 34.563395186262397, -0.953853280010399 ], [ 34.563412633277068, -0.953764505334999 ] ] ] } },
|
||||||
|
{ "type": "Feature", "properties": { "field": "6061203", "sub_field": "6061203" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.563772613837898, -0.951200219151594 ], [ 34.563769930238728, -0.951126156400271 ], [ 34.563765296735632, -0.951039750086685 ], [ 34.563759819044449, -0.950920305450956 ], [ 34.563753119459747, -0.950793764983595 ], [ 34.56375778774936, -0.950664620847281 ], [ 34.563753881491387, -0.950498158738108 ], [ 34.563756093591287, -0.950419256783648 ], [ 34.563753290498269, -0.950336898857359 ], [ 34.563749420957357, -0.95024066167604 ], [ 34.563735145645651, -0.950147585138417 ], [ 34.563740647637331, -0.949970505772212 ], [ 34.563749544434451, -0.949881400873366 ], [ 34.563762915808837, -0.949731475682167 ], [ 34.563781994305458, -0.949603636259247 ], [ 34.56379944115227, -0.949514269998835 ], [ 34.563822618805098, -0.949440147971241 ], [ 34.56385843535287, -0.949335500060865 ], [ 34.563910068816327, -0.949207015646193 ], [ 34.563941478421853, -0.949122167208385 ], [ 34.56398462429285, -0.949033307630625 ], [ 34.564024465081623, -0.948914275647537 ], [ 34.564061949436379, -0.948807349669194 ], [ 34.56409014981601, -0.948725725884568 ], [ 34.56414160611309, -0.948578750950327 ], [ 34.564181217180341, -0.948507516676558 ], [ 34.564197373647772, -0.948468964262312 ], [ 34.564195696391671, -0.948429969673095 ], [ 34.564152150769722, -0.948446347057506 ], [ 34.56411136597486, -0.948455002521879 ], [ 34.564058341818971, -0.948498905594822 ], [ 34.564013094302162, -0.948541589474174 ], [ 34.56397762649059, -0.948577864680458 ], [ 34.563942421734481, -0.948595681121637 ], [ 34.563892041911252, -0.948616198586044 ], [ 34.56384040719049, -0.948644421284542 ], [ 34.563780568598169, -0.948662957106635 ], [ 34.563726626929778, -0.948679076991184 ], [ 34.563687514181439, -0.948656222131405 ], [ 34.563639042654721, -0.948650897050287 ], [ 34.56357608730751, -0.948655182459228 ], [ 34.563529895528447, -0.948658175398647 ], [ 34.56349242661959, -0.948667023266616 ], [ 34.563438826188978, -0.948682654169064 ], [ 34.563377070906689, -0.948708488239168 ], [ 34.563324888898777, -0.948741737962861 ], [ 34.563261223832093, -0.948777620698668 ], [ 34.563227095338952, -0.94881404272967 ], [ 34.56317661857917, -0.948860707906959 ], [ 34.563106023414839, -0.948918556018733 ], [ 34.563048919651543, -0.94898262428119 ], [ 34.563011516524178, -0.949025085141645 ], [ 34.562949634406714, -0.949123287926734 ], [ 34.562877011551727, -0.949219183418228 ], [ 34.562798026813716, -0.949298666216451 ], [ 34.562721504665717, -0.949366812123096 ], [ 34.562642806946698, -0.949419891053614 ], [ 34.562584336934101, -0.949484864093732 ], [ 34.56255258664968, -0.949516825908587 ], [ 34.562542577074467, -0.949566122064339 ], [ 34.562547457200758, -0.949647554865793 ], [ 34.562547240653103, -0.949736402696516 ], [ 34.562550568768557, -0.94981710438084 ], [ 34.562568559503958, -0.949888815620715 ], [ 34.562570049754378, -0.949973016012915 ], [ 34.562561572662403, -0.950055783674802 ], [ 34.5625537139926, -0.950130092201404 ], [ 34.562534150497683, -0.950223562523314 ], [ 34.562536076014958, -0.950294957522259 ], [ 34.562524993785132, -0.950409228009147 ], [ 34.562520360953272, -0.950489042514314 ], [ 34.562533673585413, -0.950544573726143 ], [ 34.562532270478499, -0.95061277785639 ], [ 34.562537620472817, -0.950685043783203 ], [ 34.562556300449728, -0.950722506510559 ], [ 34.562583621070573, -0.950756817130024 ], [ 34.562613101289081, -0.9507994375841 ], [ 34.562669925686031, -0.950819960808682 ], [ 34.562766480833332, -0.95085394657464 ], [ 34.562878920232841, -0.950901029988364 ], [ 34.562996863405473, -0.950946195926506 ], [ 34.56313914703253, -0.950997691165694 ], [ 34.563291625863073, -0.951060449302592 ], [ 34.563386970466823, -0.951096835397235 ], [ 34.563458611804123, -0.951123284993352 ], [ 34.563560332014518, -0.951158940511587 ], [ 34.563602882511447, -0.951174467050457 ], [ 34.563657531594302, -0.951185019751093 ], [ 34.56373015936834, -0.951202256436061 ], [ 34.563772613837898, -0.951200219151594 ] ] ] } },
|
||||||
|
{ "type": "Feature", "properties": { "field": "6061300", "sub_field": "6061300" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.563766102348488, -0.95001328288598 ], [ 34.563753457495757, -0.950104209249168 ], [ 34.563763584425438, -0.950190148655666 ], [ 34.563770325718657, -0.950278022669958 ], [ 34.563777135432026, -0.950374519702983 ], [ 34.56377584410393, -0.950579304663387 ], [ 34.563771746092698, -0.95091152341684 ], [ 34.563795048468407, -0.951182393721236 ], [ 34.563797971666382, -0.951279596192014 ], [ 34.56383394003246, -0.95128509119133 ], [ 34.563868490712963, -0.951224912148353 ], [ 34.563972939131851, -0.95115578029844 ], [ 34.564143992261691, -0.95104223245545 ], [ 34.564291903705701, -0.95094157249156 ], [ 34.564455965078793, -0.950835837742927 ], [ 34.564607861946293, -0.950727659991304 ], [ 34.564769483586389, -0.95060907371308 ], [ 34.564903473462323, -0.950509051005508 ], [ 34.565066622207723, -0.950383718819744 ], [ 34.56524515556967, -0.950273706121946 ], [ 34.565404571114243, -0.950176047517148 ], [ 34.565536198541047, -0.950097522706695 ], [ 34.565646046721881, -0.95003803867075 ], [ 34.56575888106785, -0.949970014876401 ], [ 34.565856560759237, -0.949905074852706 ], [ 34.565920186302158, -0.949848048760252 ], [ 34.566061325545832, -0.949731940289116 ], [ 34.566182777138422, -0.949641184966009 ], [ 34.566312097308227, -0.949552823695386 ], [ 34.566423976113569, -0.94946386854817 ], [ 34.566455303864458, -0.949424473475399 ], [ 34.566397290025328, -0.949332165730037 ], [ 34.566300758877411, -0.949271953243915 ], [ 34.566220001331118, -0.949233722364932 ], [ 34.566095101314673, -0.949195447020934 ], [ 34.565994809737369, -0.949238883871353 ], [ 34.565765185359361, -0.949293557630401 ], [ 34.565420218767869, -0.949353959508296 ], [ 34.565217853398273, -0.94940471111741 ], [ 34.564999438330631, -0.949467525528773 ], [ 34.564826816519869, -0.949529401713736 ], [ 34.564664334529382, -0.949623963980234 ], [ 34.564448788346013, -0.949719956024585 ], [ 34.564363176623829, -0.949753904683067 ], [ 34.564274732420287, -0.949814445979998 ], [ 34.56411939784369, -0.949857206840383 ], [ 34.564023299314158, -0.949886732115663 ], [ 34.56376347365007, -0.949986164435659 ], [ 34.563766102348488, -0.95001328288598 ] ] ] } },
|
||||||
|
{ "type": "Feature", "properties": { "field": "6061400", "sub_field": "6061400" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.568810046503863, -0.943964585747067 ], [ 34.568738049197563, -0.943989725049818 ], [ 34.568621015772507, -0.944029676210508 ], [ 34.56852951267323, -0.944080185107264 ], [ 34.568417863583242, -0.944147590253526 ], [ 34.56829377732889, -0.944230834765371 ], [ 34.568155573774128, -0.944322054133031 ], [ 34.568051813281009, -0.944394399214409 ], [ 34.56794201541345, -0.944488807748579 ], [ 34.567848275945622, -0.944571298535238 ], [ 34.567787050808278, -0.944636975096419 ], [ 34.567702822418397, -0.944711952684238 ], [ 34.56761156545052, -0.944810645895895 ], [ 34.567530724508259, -0.944888377708683 ], [ 34.567456059539388, -0.944964018781708 ], [ 34.567378249941882, -0.945068235794707 ], [ 34.567292205773832, -0.9451687297032 ], [ 34.567198192686682, -0.945287974782392 ], [ 34.567139034050108, -0.94538313712565 ], [ 34.567069069336448, -0.945502197578341 ], [ 34.567025598486047, -0.945627625270741 ], [ 34.566989163807889, -0.945736131091518 ], [ 34.566967587297853, -0.945848347193474 ], [ 34.566963345982707, -0.94595680540756 ], [ 34.566956227459542, -0.946070415988507 ], [ 34.566950044464228, -0.946173813808427 ], [ 34.566946599775108, -0.946286931582142 ], [ 34.56693745422406, -0.946398957403152 ], [ 34.566944229659768, -0.946516809692735 ], [ 34.566972491649437, -0.946535673564228 ], [ 34.567054623104617, -0.946554505686297 ], [ 34.567152640369983, -0.946562252048201 ], [ 34.567284439801753, -0.946593847448864 ], [ 34.56737637585708, -0.946615547098397 ], [ 34.5675275484545, -0.946669733917131 ], [ 34.56768671640004, -0.946720977318914 ], [ 34.567807800830742, -0.946762301598169 ], [ 34.567965637694599, -0.946817381412621 ], [ 34.568096588435253, -0.94686344629178 ], [ 34.568232170541577, -0.94690748817112 ], [ 34.568346892556193, -0.946943613636464 ], [ 34.568461714843437, -0.946978912590318 ], [ 34.568526003031593, -0.946873438836936 ], [ 34.568574700009343, -0.946806945550839 ], [ 34.568613840208869, -0.946740351479694 ], [ 34.56865577342225, -0.946674415609843 ], [ 34.568707146978227, -0.946596521523192 ], [ 34.568745707439817, -0.946547274568358 ], [ 34.56881705948971, -0.946470793509121 ], [ 34.568886687746009, -0.946384883924949 ], [ 34.568958684427933, -0.946285835644308 ], [ 34.569022006967337, -0.94619050127799 ], [ 34.569074622154133, -0.946125927152283 ], [ 34.569131571770029, -0.946059068616926 ], [ 34.569184728619291, -0.946001938008304 ], [ 34.569227146224463, -0.945945748161872 ], [ 34.569270136551303, -0.945878811602698 ], [ 34.569313923288547, -0.945827436629715 ], [ 34.569342982147603, -0.945789288296245 ], [ 34.569369716032362, -0.945754075838296 ], [ 34.569409684025217, -0.945707754713162 ], [ 34.56944606954599, -0.945666444325839 ], [ 34.569477668413548, -0.945624061352747 ], [ 34.569532944545067, -0.945544524903904 ], [ 34.56956243684413, -0.945507440491706 ], [ 34.56962108887064, -0.945450618496868 ], [ 34.569669717045628, -0.945398929496901 ], [ 34.569707391374429, -0.945347123756646 ], [ 34.569743324277638, -0.945292771237487 ], [ 34.569799502410433, -0.945216000237869 ], [ 34.569871372855118, -0.945121727275396 ], [ 34.569960382350153, -0.945015476836301 ], [ 34.570089335465042, -0.944840931298561 ], [ 34.570293434905771, -0.944744871453326 ], [ 34.57025680458829, -0.944731642318865 ], [ 34.570167125400332, -0.944695965621431 ], [ 34.570091174214546, -0.944660591045018 ], [ 34.569975301222343, -0.944610554454133 ], [ 34.569871267343899, -0.944550260848163 ], [ 34.569777278644523, -0.944495908096491 ], [ 34.569664593879658, -0.944417190865415 ], [ 34.5695308430045, -0.944322774607099 ], [ 34.569443073294217, -0.944261802636979 ], [ 34.569301322025623, -0.944180302192191 ], [ 34.569228444384137, -0.944137028783418 ], [ 34.569133130083507, -0.944083595680774 ], [ 34.569053918150267, -0.944038532782168 ], [ 34.568947254266689, -0.943970009499904 ], [ 34.568810046503863, -0.943964585747067 ] ] ] } },
|
||||||
|
{ "type": "Feature", "properties": { "field": "6061500", "sub_field": "6061500" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.569846055181912, -0.947638202580217 ], [ 34.569967020490303, -0.947711401292405 ], [ 34.57006874502153, -0.947804078513903 ], [ 34.570234872820691, -0.947946986537398 ], [ 34.570361071611018, -0.948048587643409 ], [ 34.570465451646861, -0.948143872003523 ], [ 34.570538895630428, -0.948216037933212 ], [ 34.570589359658847, -0.948279998057953 ], [ 34.570705391432803, -0.948431971162152 ], [ 34.570790596970767, -0.948544065741588 ], [ 34.570830893479638, -0.948633674264151 ], [ 34.570922502334199, -0.948890408838436 ], [ 34.570983156766417, -0.949085234357642 ], [ 34.571026000619121, -0.949171846800037 ], [ 34.571098768430538, -0.949369185929991 ], [ 34.571176625088057, -0.949560390048503 ], [ 34.571199634599971, -0.949641894707795 ], [ 34.571267572753158, -0.949605347234934 ], [ 34.571348145481473, -0.949546079862417 ], [ 34.571416761419997, -0.949476387307222 ], [ 34.571521976919414, -0.949374827914039 ], [ 34.57162310796209, -0.949286645166953 ], [ 34.571717332961683, -0.949219716456199 ], [ 34.571823084250781, -0.949169911565245 ], [ 34.571891120668781, -0.949147119491263 ], [ 34.571991064978818, -0.949122718826153 ], [ 34.572102940308973, -0.94910835714319 ], [ 34.572306972144652, -0.949083205592593 ], [ 34.572433618640353, -0.949045404834373 ], [ 34.572494557405108, -0.948999937141199 ], [ 34.572527206766303, -0.948946871408388 ], [ 34.572525387845779, -0.94888204397534 ], [ 34.572504755382781, -0.948705312501355 ], [ 34.572468967337407, -0.948508096350086 ], [ 34.572307918426823, -0.94854763396176 ], [ 34.572172253279888, -0.948368232869291 ], [ 34.5719882349944, -0.948078508749082 ], [ 34.57184636762333, -0.947812864413316 ], [ 34.571708216522687, -0.947531331848734 ], [ 34.571679112462967, -0.947477731718549 ], [ 34.571751793816802, -0.947392175187253 ], [ 34.571764458601017, -0.947310358237479 ], [ 34.571763902322658, -0.947226571792916 ], [ 34.571738512037513, -0.947170295692954 ], [ 34.571727026476843, -0.947103104213844 ], [ 34.571703166900512, -0.947054393011809 ], [ 34.571653777006318, -0.946963991497987 ], [ 34.571614308156427, -0.946882674820822 ], [ 34.571583506576857, -0.946807519360616 ], [ 34.57158298426441, -0.946744459936857 ], [ 34.571565951524057, -0.946687444316986 ], [ 34.571534798960698, -0.946624830132533 ], [ 34.57151085226495, -0.946556275521207 ], [ 34.571481999537369, -0.946518638523661 ], [ 34.571395175543749, -0.94656923824989 ], [ 34.571280524292717, -0.946644260106482 ], [ 34.571102827021143, -0.946757890977277 ], [ 34.571070742851823, -0.946765831144049 ], [ 34.570982022512503, -0.946827852713698 ], [ 34.57087317296611, -0.946887800609666 ], [ 34.570771799308517, -0.94696168049272 ], [ 34.570657967294864, -0.947034564602896 ], [ 34.570587174046103, -0.947074459875616 ], [ 34.570482129432428, -0.947148374611054 ], [ 34.570420666662962, -0.947189363999159 ], [ 34.570308184769317, -0.947260474259097 ], [ 34.570133227720753, -0.947356277042962 ], [ 34.570005742747213, -0.947447663560301 ], [ 34.569810171705527, -0.947561078579386 ], [ 34.569818087810987, -0.947602578016631 ], [ 34.569846055181912, -0.947638202580217 ] ] ] } },
|
||||||
|
{ "type": "Feature", "properties": { "field": "6061700", "sub_field": "6061700" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.565730659546333, -0.95005133994557 ], [ 34.565598498868709, -0.950116171161564 ], [ 34.565443785601687, -0.950200637616687 ], [ 34.565319314112493, -0.950274609257177 ], [ 34.565123043192763, -0.950413969854517 ], [ 34.565083524510051, -0.950481853962385 ], [ 34.565102592618622, -0.950569657565796 ], [ 34.565248638831413, -0.950755978447297 ], [ 34.565383717247023, -0.950941420023507 ], [ 34.565457901648443, -0.951055598776663 ], [ 34.565506447147619, -0.951141876561133 ], [ 34.565554981981123, -0.951199948074836 ], [ 34.565636983649867, -0.951237210339005 ], [ 34.565762806860917, -0.951267869842601 ], [ 34.56591171734091, -0.951293801607831 ], [ 34.56603077950605, -0.951333816840857 ], [ 34.566132444126808, -0.95135339797984 ], [ 34.566234695588527, -0.951387036368335 ], [ 34.566346025692233, -0.951424481173909 ], [ 34.566448229452917, -0.951474886586198 ], [ 34.566573424945418, -0.951523936215531 ], [ 34.566720936076429, -0.951597660312421 ], [ 34.566808931977491, -0.951648176291428 ], [ 34.56693700610132, -0.951719259020865 ], [ 34.566968646534711, -0.951667844012175 ], [ 34.567029008058789, -0.951547294430409 ], [ 34.567060017824033, -0.951517620646045 ], [ 34.567099806321387, -0.951455428175183 ], [ 34.567127338159374, -0.951412407192599 ], [ 34.567169503960542, -0.951362697252135 ], [ 34.567271645802272, -0.951249545808076 ], [ 34.567301796066523, -0.951187283500097 ], [ 34.567337445865277, -0.95115036230993 ], [ 34.567378502524143, -0.951075475331751 ], [ 34.567420845938408, -0.950994761671779 ], [ 34.567482701702502, -0.950902988285793 ], [ 34.567588368284071, -0.950763259649556 ], [ 34.567661860539893, -0.950656746251332 ], [ 34.567640355666292, -0.950616320149369 ], [ 34.567556197416138, -0.950561774173468 ], [ 34.567392694470662, -0.950463583250721 ], [ 34.567277376210427, -0.950388710264892 ], [ 34.567145459004479, -0.950310429456408 ], [ 34.566951753078122, -0.95022164251249 ], [ 34.566729328622458, -0.950113463531199 ], [ 34.566543679095652, -0.950041611518208 ], [ 34.566403199822197, -0.950005661595825 ], [ 34.56622669016167, -0.949988848263174 ], [ 34.566084787840119, -0.949985038595024 ], [ 34.565889461941303, -0.949997832457179 ], [ 34.565730659546333, -0.95005133994557 ] ] ] } },
|
||||||
|
{ "type": "Feature", "properties": { "field": "6061701", "sub_field": "6061701" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.567665725707528, -0.950654893582503 ], [ 34.567630367707729, -0.95070548464654 ], [ 34.567595666264751, -0.950755942022439 ], [ 34.567559191968797, -0.95080456227241 ], [ 34.567519737046297, -0.950856638986229 ], [ 34.567484563251, -0.950904134138807 ], [ 34.567450831579627, -0.950954046043834 ], [ 34.567423138650163, -0.950994534800289 ], [ 34.567420458666923, -0.951001668914762 ], [ 34.56733931087917, -0.951150884976078 ], [ 34.56730335848637, -0.951188271606075 ], [ 34.567273288683438, -0.951250158466385 ], [ 34.567259510015603, -0.951265299047142 ], [ 34.567210121787213, -0.951319681263899 ], [ 34.567163064186794, -0.951372314643547 ], [ 34.567127220946283, -0.951414993495025 ], [ 34.567077288397577, -0.951494046656905 ], [ 34.567061493939043, -0.951518406134952 ], [ 34.567055915971913, -0.951523667083161 ], [ 34.567030012478817, -0.95154806194626 ], [ 34.567011790718041, -0.951584052638317 ], [ 34.566982915786568, -0.951643955790132 ], [ 34.566975416870783, -0.951660658406103 ], [ 34.567135335300222, -0.951823748219414 ], [ 34.567191591869168, -0.951839986432451 ], [ 34.567234258927272, -0.951905916850492 ], [ 34.567365644877952, -0.952040384790503 ], [ 34.567454771836069, -0.952131959323161 ], [ 34.567529039263071, -0.952257600592596 ], [ 34.567584637106478, -0.95226917069375 ], [ 34.567627833308677, -0.952335575100938 ], [ 34.567702078591417, -0.952431401450154 ], [ 34.567711585923639, -0.952464829986358 ], [ 34.567768983265317, -0.952524443656922 ], [ 34.567834584788542, -0.952595482337696 ], [ 34.567894024348909, -0.952671683822833 ], [ 34.567961667211982, -0.952658575165951 ], [ 34.567999537331339, -0.95264887544813 ], [ 34.568079671285091, -0.95264725877533 ], [ 34.568170095940118, -0.952626233256571 ], [ 34.568215337700238, -0.952633378060927 ], [ 34.568300013146491, -0.952636125545318 ], [ 34.568385298142957, -0.952631174537842 ], [ 34.568474078057477, -0.95262582250972 ], [ 34.568575259955537, -0.952622125424805 ], [ 34.568707583847782, -0.952605116789168 ], [ 34.568871382300983, -0.95259657080832 ], [ 34.568955010191551, -0.952595221575713 ], [ 34.569055710862571, -0.952584846736856 ], [ 34.569134969646093, -0.952577701075613 ], [ 34.569283071858678, -0.952573848302895 ], [ 34.569374648965201, -0.952567990965698 ], [ 34.569462608342143, -0.95255966280007 ], [ 34.569460541048286, -0.952531346286346 ], [ 34.569442015581409, -0.952476722079846 ], [ 34.56939759816882, -0.952425909345801 ], [ 34.569311243430541, -0.952300517629457 ], [ 34.569256935862903, -0.952218063374193 ], [ 34.569185841337109, -0.952137560074363 ], [ 34.569120744047432, -0.952049121252449 ], [ 34.5690393929127, -0.951960600201135 ], [ 34.568974632374271, -0.951885209792444 ], [ 34.568922769093781, -0.951826129448256 ], [ 34.568866068514509, -0.951770200106296 ], [ 34.568792583917919, -0.95169349158489 ], [ 34.568705396502793, -0.951598078877063 ], [ 34.568640277614293, -0.951537336104596 ], [ 34.568568273797837, -0.951466522286875 ], [ 34.568501406792087, -0.95139240270118 ], [ 34.568446534774701, -0.951331406945822 ], [ 34.568384603159842, -0.951283428245691 ], [ 34.568335578553729, -0.951229381353914 ], [ 34.568285671250401, -0.951186037605012 ], [ 34.568212400951651, -0.951099287184519 ], [ 34.568141557791613, -0.951028487999667 ], [ 34.568091470030211, -0.950992367118524 ], [ 34.56805329853583, -0.950946325063839 ], [ 34.568008074014337, -0.950889298572486 ], [ 34.567960703459804, -0.950867581216682 ], [ 34.567926114227177, -0.95082850215649 ], [ 34.56786481304875, -0.950766508844413 ], [ 34.567819304901299, -0.950735634205612 ], [ 34.567748814855939, -0.950686057290834 ], [ 34.56768284646509, -0.950643353445747 ], [ 34.567665725707528, -0.950654893582503 ] ] ] } },
|
||||||
|
{ "type": "Feature", "properties": { "field": "6061901", "sub_field": "6061901" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.565831010839368, -0.95507186766011 ], [ 34.565869067360019, -0.955303106659455 ], [ 34.565862074251029, -0.955366699026719 ], [ 34.565875602236162, -0.955527480521167 ], [ 34.565893685902203, -0.955561002295009 ], [ 34.565922129120267, -0.955648977219897 ], [ 34.565974164598231, -0.955736430879251 ], [ 34.566006412741487, -0.955847908760921 ], [ 34.566067362704572, -0.956016005340774 ], [ 34.56612663476794, -0.956186742770303 ], [ 34.566181543371577, -0.956414606445891 ], [ 34.566203398398187, -0.956546511687618 ], [ 34.5662211409741, -0.956777790171051 ], [ 34.566287898523591, -0.95692532197268 ], [ 34.566328075677731, -0.956914031900954 ], [ 34.566367302470248, -0.95689307176187 ], [ 34.566411377105553, -0.95685973940474 ], [ 34.566444327348073, -0.956840158517186 ], [ 34.566481771628979, -0.956803539937518 ], [ 34.566540986264712, -0.956749807840965 ], [ 34.566590595702131, -0.956698619593601 ], [ 34.566643474398717, -0.95661453774298 ], [ 34.56671490748576, -0.956539390755371 ], [ 34.566832503191883, -0.956446743727849 ], [ 34.566840351021561, -0.956401051201264 ], [ 34.566842147185383, -0.956344696586916 ], [ 34.566826098573181, -0.956295449819925 ], [ 34.566806974902029, -0.956257349682258 ], [ 34.566777991041718, -0.956208491854384 ], [ 34.566769078816399, -0.956151381727223 ], [ 34.566740967009082, -0.956044444233995 ], [ 34.566742569855037, -0.955998550365998 ], [ 34.566724405090262, -0.955964591743428 ], [ 34.566710156780893, -0.955869436693762 ], [ 34.56669599366893, -0.955800246167782 ], [ 34.566659982261271, -0.955756919777267 ], [ 34.566560667170762, -0.955635980291823 ], [ 34.56648356033832, -0.955545900792265 ], [ 34.566383733656778, -0.955462013024694 ], [ 34.566304342289797, -0.955397006030856 ], [ 34.56617917657347, -0.955281156095537 ], [ 34.566061500143007, -0.955171625234053 ], [ 34.56597093292568, -0.95510188217572 ], [ 34.565892653591469, -0.955044480938004 ], [ 34.565843422135899, -0.955031603182395 ], [ 34.565831010839368, -0.95507186766011 ] ] ] } },
|
||||||
|
{ "type": "Feature", "properties": { "field": "6062303", "sub_field": "6062303" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.569866626400547, -0.956432384291117 ], [ 34.569828936440743, -0.9567425105654 ], [ 34.569809050611639, -0.957048512459033 ], [ 34.569810269082083, -0.957208973258086 ], [ 34.569834987578169, -0.957378680507061 ], [ 34.569872262625118, -0.957608716165172 ], [ 34.569948183462643, -0.957827004836252 ], [ 34.57007655854688, -0.958121007368647 ], [ 34.570200026222999, -0.958350102557654 ], [ 34.570240067164818, -0.958372247974586 ], [ 34.57034505866546, -0.958395820856173 ], [ 34.570361659185693, -0.958360086417659 ], [ 34.570365856847523, -0.958243917833511 ], [ 34.570381172798641, -0.958125526743814 ], [ 34.570424311700712, -0.958049752518672 ], [ 34.570480043159499, -0.957980596322035 ], [ 34.570521982576381, -0.957914068108058 ], [ 34.570543419854687, -0.95781953556514 ], [ 34.570742962355752, -0.95754061954266 ], [ 34.570763958468781, -0.957519832735442 ], [ 34.570856625889263, -0.957417253729299 ], [ 34.570996278186868, -0.957370483045307 ], [ 34.571070179975251, -0.957288004638505 ], [ 34.571111822928678, -0.957229758488819 ], [ 34.571154166841239, -0.957121273790033 ], [ 34.571216398185257, -0.957033770179495 ], [ 34.571324025088813, -0.956968877085001 ], [ 34.57138775812453, -0.956903736951132 ], [ 34.571387757990358, -0.956830100133441 ], [ 34.571373538790077, -0.95669132035513 ], [ 34.571332931289277, -0.956568134744861 ], [ 34.571311569760297, -0.956460589551581 ], [ 34.571292514129198, -0.956387631285697 ], [ 34.571269932689503, -0.956294366269487 ], [ 34.571214206270618, -0.956197228234933 ], [ 34.571164663708508, -0.956090590696037 ], [ 34.57111473666437, -0.956089648532655 ], [ 34.570997090737492, -0.956100234296776 ], [ 34.570871901140038, -0.95611309416345 ], [ 34.570692402940743, -0.956109227507034 ], [ 34.570581286908897, -0.956110760684709 ], [ 34.570439183104362, -0.956117930402086 ], [ 34.570243206512487, -0.956154124014644 ], [ 34.570064772870303, -0.95617013210258 ], [ 34.569910689214488, -0.956163764327384 ], [ 34.569866626400547, -0.956432384291117 ] ] ] } },
|
||||||
|
{ "type": "Feature", "properties": { "field": "6062500", "sub_field": "6062500" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.571182573224299, -0.959410768557859 ], [ 34.571347387129109, -0.959487226857878 ], [ 34.571547631705407, -0.959586460828647 ], [ 34.571683575616262, -0.959643253767572 ], [ 34.571826853982273, -0.959707566093221 ], [ 34.571932894655433, -0.959751891851527 ], [ 34.572064966606227, -0.959812820160149 ], [ 34.572254374071647, -0.959899392593756 ], [ 34.57245274202036, -0.959995517065813 ], [ 34.572620644487571, -0.960064689997953 ], [ 34.572845533037793, -0.960150209007432 ], [ 34.572931544494089, -0.960185681156871 ], [ 34.573023192661111, -0.960221096862117 ], [ 34.573121434054308, -0.960270405010707 ], [ 34.573190032034773, -0.960320183648462 ], [ 34.573297367044482, -0.960349567624137 ], [ 34.573351011804419, -0.960331792094438 ], [ 34.573391491079711, -0.960268008949486 ], [ 34.573437429762869, -0.960208235003451 ], [ 34.573491062027927, -0.960127311333077 ], [ 34.573532826209032, -0.960056516500583 ], [ 34.573582652160432, -0.959984359551822 ], [ 34.573622097753557, -0.959923586403882 ], [ 34.573660340701103, -0.959834711690866 ], [ 34.573692615309177, -0.959783039501891 ], [ 34.573788322954108, -0.959615581869032 ], [ 34.573628681333247, -0.959532964695749 ], [ 34.573476655000228, -0.959481242298123 ], [ 34.573378797424077, -0.959453256307567 ], [ 34.573283566541761, -0.959396489596727 ], [ 34.573183662334777, -0.959362984441989 ], [ 34.573126854705727, -0.959339934614829 ], [ 34.57290542739063, -0.959266433167276 ], [ 34.572809248338672, -0.959225945313593 ], [ 34.572703433834633, -0.959176185663176 ], [ 34.57260261238558, -0.959136946988661 ], [ 34.572508862528423, -0.959096962981402 ], [ 34.572409873004787, -0.959070941568962 ], [ 34.572317654420686, -0.959049063980752 ], [ 34.572262147967358, -0.959032814336491 ], [ 34.572214908261962, -0.959043389110391 ], [ 34.572119040854957, -0.959044077584444 ], [ 34.572001759387149, -0.959041947502384 ], [ 34.571914975962777, -0.959044777949747 ], [ 34.571823263618519, -0.959034798542265 ], [ 34.571694718692839, -0.959011951176374 ], [ 34.571630825613667, -0.95901837453353 ], [ 34.571577128535097, -0.959025397620712 ], [ 34.571530365472441, -0.959029642109392 ], [ 34.571454518708506, -0.959046664671909 ], [ 34.571410818766829, -0.959067873199211 ], [ 34.571364278906621, -0.959078401702797 ], [ 34.571294761636139, -0.959099697705485 ], [ 34.571218951412121, -0.959132292221977 ], [ 34.571116588446159, -0.959189768751309 ], [ 34.571038106766487, -0.959244115325465 ], [ 34.570991749848559, -0.959306177719553 ], [ 34.571182573224299, -0.959410768557859 ] ] ] } },
|
||||||
|
{ "type": "Feature", "properties": { "field": "6062803", "sub_field": "6062803" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.575797307570717, -0.96421793575432 ], [ 34.575811944739591, -0.96434636639762 ], [ 34.575802628284073, -0.964449691176575 ], [ 34.575791354028027, -0.96470478636432 ], [ 34.57578826110062, -0.964781422038892 ], [ 34.575779974151388, -0.964898293342914 ], [ 34.575767502374077, -0.965075016985121 ], [ 34.575746751777501, -0.965208527724229 ], [ 34.575707320447002, -0.965425273368156 ], [ 34.575674042325858, -0.965603480249849 ], [ 34.575681012616073, -0.965752717921282 ], [ 34.575698752500287, -0.965964755717255 ], [ 34.575724338132481, -0.966063434535509 ], [ 34.575760821355757, -0.966249010866006 ], [ 34.575762109520959, -0.966319847320956 ], [ 34.575775986403237, -0.966469606201993 ], [ 34.575786448691858, -0.966563196813133 ], [ 34.575842519399878, -0.96660812301485 ], [ 34.575877978223822, -0.966649627761506 ], [ 34.575918417543988, -0.966657323024184 ], [ 34.575962030565321, -0.966605722292452 ], [ 34.576014101222967, -0.966538398913295 ], [ 34.576041244195437, -0.96646650156077 ], [ 34.576056925346172, -0.966403829537513 ], [ 34.576061106112228, -0.966333796084843 ], [ 34.576072620055832, -0.966278335662449 ], [ 34.576084207256123, -0.9662288591514 ], [ 34.576120826147623, -0.966139979584187 ], [ 34.576154360346102, -0.966041477813251 ], [ 34.576177567020963, -0.965947344134338 ], [ 34.576192485705853, -0.965855425992075 ], [ 34.576192500791862, -0.965778478775171 ], [ 34.576232194224922, -0.965721425221273 ], [ 34.576490139582553, -0.965709020575432 ], [ 34.576574405228037, -0.965629270406783 ], [ 34.576626411770746, -0.965448126741519 ], [ 34.576634091053123, -0.965289896550298 ], [ 34.576688846093539, -0.965180985165961 ], [ 34.576824162304717, -0.96504055255292 ], [ 34.576928433172441, -0.964879203469496 ], [ 34.577005973342182, -0.964705748196022 ], [ 34.577032512796883, -0.964554934523287 ], [ 34.576851586634973, -0.964550253409361 ], [ 34.576712078106013, -0.964545853599731 ], [ 34.576630920025003, -0.96454682869262 ], [ 34.576555885410023, -0.964532205545207 ], [ 34.576463535663073, -0.964500928365535 ], [ 34.576384255082672, -0.96446961004062 ], [ 34.576315812212201, -0.964422322631092 ], [ 34.576264504298777, -0.964378573136173 ], [ 34.576203947342911, -0.964334538003248 ], [ 34.576153394639533, -0.964305077626159 ], [ 34.576103690244892, -0.964272080220386 ], [ 34.576040345525307, -0.964239213793023 ], [ 34.57597198000753, -0.964210761571794 ], [ 34.575918445785263, -0.964189059024242 ], [ 34.57585872588043, -0.96418359719882 ], [ 34.575797307570717, -0.96421793575432 ] ] ] } },
|
||||||
|
{ "type": "Feature", "properties": { "field": "6064201", "sub_field": "6064201" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.575845314282638, -0.952564343099833 ], [ 34.575876600755251, -0.952657237525368 ], [ 34.575883941582099, -0.952767951387741 ], [ 34.575878719149117, -0.952863061670459 ], [ 34.575887119168208, -0.953054433365098 ], [ 34.575881103843948, -0.95332136008377 ], [ 34.575880179709628, -0.953483985242139 ], [ 34.575879373363342, -0.953674408973022 ], [ 34.575875625665702, -0.953953688357749 ], [ 34.575880060795697, -0.954158507031475 ], [ 34.575885454653509, -0.954375547429653 ], [ 34.57587760973535, -0.954576090024166 ], [ 34.576039097965079, -0.954459887152491 ], [ 34.576212466972692, -0.954315359126733 ], [ 34.576612297021221, -0.954112545623666 ], [ 34.576861241344538, -0.953980150295585 ], [ 34.576946994652488, -0.95394172416485 ], [ 34.577000160061509, -0.953878736831836 ], [ 34.577005146211199, -0.953811225872298 ], [ 34.577015109186327, -0.953679830041548 ], [ 34.576990968056627, -0.953637364302443 ], [ 34.576967419625007, -0.95355933833574 ], [ 34.576923808624052, -0.953503942109447 ], [ 34.576887510813258, -0.953425699042282 ], [ 34.576888778853672, -0.953375738999712 ], [ 34.576900058415703, -0.953334799905816 ], [ 34.576949483472717, -0.953286885188182 ], [ 34.57698123583382, -0.953251861764207 ], [ 34.57703475744912, -0.953228805313946 ], [ 34.577081104327718, -0.953209497445364 ], [ 34.577127277774778, -0.953185374178337 ], [ 34.577183965777166, -0.953154113808158 ], [ 34.577193483355217, -0.953121997554273 ], [ 34.577164024403558, -0.953100718058683 ], [ 34.57710367543644, -0.953094969719981 ], [ 34.577065562780177, -0.953105646527392 ], [ 34.577044423436611, -0.953122481511205 ], [ 34.577003924725773, -0.953138271036375 ], [ 34.576936264543569, -0.953146394195949 ], [ 34.576890037485128, -0.953141815959771 ], [ 34.576854693237841, -0.953107316814234 ], [ 34.576844859221218, -0.953052444282821 ], [ 34.576868096009051, -0.95301510872393 ], [ 34.576891988806132, -0.95300094915119 ], [ 34.576883670972109, -0.952976286349708 ], [ 34.57690620680831, -0.952953303249688 ], [ 34.576936011680097, -0.952958729523722 ], [ 34.576944728279862, -0.952912972145152 ], [ 34.576938802836892, -0.95288463748521 ], [ 34.576936293900189, -0.952866241455012 ], [ 34.576958158338108, -0.952840115134716 ], [ 34.576984526898862, -0.952816783670952 ], [ 34.577012717193639, -0.952809922109294 ], [ 34.577036677872101, -0.952810745573168 ], [ 34.577057311853657, -0.95278068251418 ], [ 34.577066256322411, -0.9527702298319 ], [ 34.577080988453083, -0.952772915161617 ], [ 34.577114945340313, -0.952773603319881 ], [ 34.577112670795067, -0.95274921105816 ], [ 34.577110434051278, -0.952703639056376 ], [ 34.577103235569872, -0.952670690240268 ], [ 34.577082511981253, -0.952665729997325 ], [ 34.57705539152029, -0.95265810369115 ], [ 34.577007402366561, -0.952609349513088 ], [ 34.576958674509243, -0.95256533172007 ], [ 34.576907860698711, -0.952497957521688 ], [ 34.576805912333953, -0.952390559898551 ], [ 34.576742723951639, -0.952455151898559 ], [ 34.576736317121927, -0.952488504805798 ], [ 34.576692964115047, -0.952517384759755 ], [ 34.576664974822819, -0.952516118321182 ], [ 34.57658849174485, -0.952525851178414 ], [ 34.576535648828987, -0.952556440125921 ], [ 34.576499493198583, -0.952583784815904 ], [ 34.576482704665963, -0.952649957400705 ], [ 34.576422908438403, -0.952648566949586 ], [ 34.576355232466959, -0.952647176525695 ], [ 34.57627532875857, -0.952624855326426 ], [ 34.576222949453332, -0.952568775512835 ], [ 34.576215069310997, -0.952525209389637 ], [ 34.576143221654682, -0.952464958400842 ], [ 34.576076936315687, -0.952427417399928 ], [ 34.576022262296121, -0.952401788528154 ], [ 34.575965629668652, -0.95237824954316 ], [ 34.575913287141177, -0.952362137549634 ], [ 34.575878115520098, -0.952396445629145 ], [ 34.575861954315052, -0.952430624029422 ], [ 34.575834767526572, -0.952501517807033 ], [ 34.575845314282638, -0.952564343099833 ] ] ] } },
|
||||||
|
{ "type": "Feature", "properties": { "field": "5054301", "sub_field": "5054301" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.538614006728309, -0.937295159875682 ], [ 34.538408394751578, -0.93731790412386 ], [ 34.538263474680143, -0.937353266906348 ], [ 34.538058346134591, -0.937414468787554 ], [ 34.537895180260797, -0.937457443439961 ], [ 34.537698344545369, -0.937539408776141 ], [ 34.537699612849913, -0.937615225992449 ], [ 34.537744405970763, -0.937721510984875 ], [ 34.537825440686142, -0.937819377198522 ], [ 34.537922969754597, -0.937889287272829 ], [ 34.538003423718791, -0.937953102085107 ], [ 34.538092658501917, -0.937992678591727 ], [ 34.538174554184863, -0.938081673588041 ], [ 34.53823829020066, -0.938149676804672 ], [ 34.5382770436605, -0.938199562916455 ], [ 34.538348608935287, -0.938333209528001 ], [ 34.538409503995616, -0.938452228450148 ], [ 34.538520176971922, -0.938633472560225 ], [ 34.538640547023029, -0.938832605615851 ], [ 34.538774772357527, -0.939026303673155 ], [ 34.538876967986653, -0.939124336049317 ], [ 34.539016537974312, -0.939299830943291 ], [ 34.539190402873622, -0.939172760062439 ], [ 34.539404864706327, -0.93900784790625 ], [ 34.539538671748083, -0.938877972810122 ], [ 34.539875632245987, -0.938626557468231 ], [ 34.539999437742381, -0.9385094351392 ], [ 34.54002500739216, -0.93843846609628 ], [ 34.540000521512873, -0.938374443449126 ], [ 34.539902133259808, -0.93825019038948 ], [ 34.539710999097252, -0.938078633047195 ], [ 34.539532852460518, -0.937923679190471 ], [ 34.539357993652843, -0.937764039728054 ], [ 34.539206197766028, -0.937624998770883 ], [ 34.53909517494354, -0.937494842271371 ], [ 34.538974435859913, -0.937325495724277 ], [ 34.538899254708113, -0.937201257639342 ], [ 34.538614006728309, -0.937295159875682 ] ] ] } },
|
||||||
|
{ "type": "Feature", "properties": { "field": "6060401", "sub_field": "6060401" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.560717214823882, -0.937346087716135 ], [ 34.560795498968552, -0.937435333077331 ], [ 34.56092665941371, -0.937592223480204 ], [ 34.560977916773929, -0.937751898925968 ], [ 34.561039178239767, -0.937862283182275 ], [ 34.561163198601051, -0.938062425585428 ], [ 34.561336131477951, -0.938291935918973 ], [ 34.561591587224562, -0.938610110772675 ], [ 34.561706333480082, -0.938789088383083 ], [ 34.561879438973143, -0.939114682930599 ], [ 34.562045520875927, -0.939317172742496 ], [ 34.562189979793061, -0.939518019408987 ], [ 34.562275931446337, -0.939638578322953 ], [ 34.562356170982767, -0.939502829223118 ], [ 34.562465239971971, -0.939331811645646 ], [ 34.562589522493766, -0.939135822181707 ], [ 34.562815316289523, -0.938771016717565 ], [ 34.562879353447002, -0.938665660513832 ], [ 34.562802918544833, -0.938578889707957 ], [ 34.563003559518052, -0.938395881033321 ], [ 34.563171745070058, -0.938098449904279 ], [ 34.562969698392408, -0.937914318071334 ], [ 34.56277815011137, -0.937717559735836 ], [ 34.562617102831759, -0.937583673908376 ], [ 34.562437227765344, -0.937425062219046 ], [ 34.562251855172043, -0.937295695323794 ], [ 34.562119305888771, -0.937370538328174 ], [ 34.561957158480311, -0.937447002750355 ], [ 34.561878233607153, -0.93751109666265 ], [ 34.561873562914002, -0.937640521121358 ], [ 34.562020065717029, -0.937799634976545 ], [ 34.561942762352253, -0.937881966216469 ], [ 34.561849642577947, -0.93785448087304 ], [ 34.561721893777943, -0.937837791470578 ], [ 34.561571992869403, -0.937805111353681 ], [ 34.561444472003863, -0.937795001533462 ], [ 34.561318731956717, -0.937779229609841 ], [ 34.561138897639147, -0.937728618816632 ], [ 34.561069525835613, -0.937641721406521 ], [ 34.560930364626991, -0.937472146715816 ], [ 34.560811170368787, -0.937323815248525 ], [ 34.560732460359453, -0.93728565601596 ], [ 34.560717214823882, -0.937346087716135 ] ] ] } },
|
||||||
|
{ "type": "Feature", "properties": { "field": "4041504", "sub_field": "4041504" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.540945242230073, -0.908844578725473 ], [ 34.540831637303377, -0.908824604437187 ], [ 34.540732976981907, -0.908817588903443 ], [ 34.54060587001598, -0.908796487089208 ], [ 34.540526849073117, -0.908780407096542 ], [ 34.540416675197747, -0.908773304403307 ], [ 34.540306241145103, -0.908756104661879 ], [ 34.54021762712172, -0.908741852256393 ], [ 34.54008307930971, -0.908725398053023 ], [ 34.539995366391942, -0.908719217455979 ], [ 34.539923651263997, -0.908715077215289 ], [ 34.539797905830959, -0.908704653329033 ], [ 34.539708777706061, -0.908698419827761 ], [ 34.539634755003853, -0.90869109377208 ], [ 34.539543195896613, -0.908683727358615 ], [ 34.539454385985351, -0.908677320226465 ], [ 34.539366420429147, -0.908678178725695 ], [ 34.539267951892597, -0.908689213515821 ], [ 34.539193262709269, -0.908715813829014 ], [ 34.539127203271107, -0.908733209125112 ], [ 34.539134675433438, -0.908760153893682 ], [ 34.539148372816307, -0.908794300521009 ], [ 34.539199000609052, -0.908843890833148 ], [ 34.539313670051627, -0.908949411094504 ], [ 34.539520908059757, -0.909137221611279 ], [ 34.539716376016997, -0.909316803277216 ], [ 34.539852085325627, -0.909438533764908 ], [ 34.539971823812579, -0.909567222382717 ], [ 34.54009573469903, -0.909683437384916 ], [ 34.54025104579987, -0.909816148682556 ], [ 34.5404428574112, -0.910007816858932 ], [ 34.540605385748229, -0.910153495526099 ], [ 34.540811349450301, -0.910353529809689 ], [ 34.540914672286632, -0.910448088248669 ], [ 34.541023142904898, -0.910562514798092 ], [ 34.541135729574577, -0.910654780111972 ], [ 34.541237466436677, -0.91063472489973 ], [ 34.541355664631347, -0.910607375833174 ], [ 34.541479218339603, -0.910590111261229 ], [ 34.541590918637908, -0.910584920800715 ], [ 34.541681595231282, -0.910586357611047 ], [ 34.541774669356172, -0.910586572146593 ], [ 34.541883084188882, -0.910603609043918 ], [ 34.542014455273787, -0.910627076511659 ], [ 34.542134905191091, -0.91063561799631 ], [ 34.542267837614517, -0.910651788046531 ], [ 34.54236984138273, -0.91066571689273 ], [ 34.542491899244929, -0.910670740309048 ], [ 34.54257978105484, -0.910675728517511 ], [ 34.542689222047407, -0.910688428924351 ], [ 34.542780776297498, -0.910693549395552 ], [ 34.542893183690978, -0.910709843702442 ], [ 34.543002243533238, -0.910750380142372 ], [ 34.543125842028957, -0.910780766697943 ], [ 34.543238848083092, -0.910798587429689 ], [ 34.543303057776292, -0.910763785230574 ], [ 34.543257544653677, -0.91070926891129 ], [ 34.543102556831563, -0.910569857542882 ], [ 34.542884889262943, -0.910383915558593 ], [ 34.542729785779557, -0.910262554791964 ], [ 34.542552606168279, -0.910122600789862 ], [ 34.542299870244733, -0.909895891530868 ], [ 34.542085443499587, -0.909686971016663 ], [ 34.541900904133001, -0.90952734601931 ], [ 34.541738443639353, -0.909388358214463 ], [ 34.541584196372021, -0.909243369570897 ], [ 34.54138728304072, -0.909083496619821 ], [ 34.541192058542158, -0.908926676971226 ], [ 34.541082718853673, -0.908830564253815 ], [ 34.540945242230073, -0.908844578725473 ] ] ] } },
|
||||||
|
{ "type": "Feature", "properties": { "field": "5052000", "sub_field": "5052000" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.534347367899848, -0.926233361184167 ], [ 34.534146048427083, -0.926106713631068 ], [ 34.533872510246503, -0.925943344758386 ], [ 34.533666642110212, -0.925805634488996 ], [ 34.53362909353028, -0.925864159482374 ], [ 34.533599875317712, -0.925893391388211 ], [ 34.533548028020142, -0.926021175163537 ], [ 34.533491499369987, -0.926139908381789 ], [ 34.533408946169097, -0.92633732317283 ], [ 34.53337208778062, -0.926445761520366 ], [ 34.53332883667678, -0.926527390154635 ], [ 34.533720633718829, -0.926735670800234 ], [ 34.534031145274682, -0.926919550273542 ], [ 34.534416821128268, -0.927136409554956 ], [ 34.534620981739188, -0.927255052295813 ], [ 34.534952238206778, -0.927438365571888 ], [ 34.535260542064151, -0.927594816843955 ], [ 34.535560399756477, -0.927768056617246 ], [ 34.535759159094063, -0.927886618971133 ], [ 34.535867877709087, -0.927723069966856 ], [ 34.535932766060697, -0.927634204228447 ], [ 34.536000882950333, -0.927490205428812 ], [ 34.536038497406253, -0.927403500445924 ], [ 34.536046058953247, -0.927316598551609 ], [ 34.536025567765577, -0.927255782110522 ], [ 34.535953809542292, -0.927203395276154 ], [ 34.53579748980632, -0.927102453573265 ], [ 34.535662930657708, -0.927024919117899 ], [ 34.535529770514863, -0.926926775832482 ], [ 34.535376290065471, -0.926859386604877 ], [ 34.53515440774558, -0.926725128113218 ], [ 34.534956530600148, -0.926589945687906 ], [ 34.534656888156967, -0.926437565693267 ], [ 34.534347367899848, -0.926233361184167 ] ] ] } },
|
||||||
|
{ "type": "Feature", "properties": { "field": "5052001", "sub_field": "5052001" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.533659405832672, -0.925802844235474 ], [ 34.533605947952211, -0.925765767402526 ], [ 34.53352387633015, -0.925712676120291 ], [ 34.533488203865289, -0.925669233542209 ], [ 34.533425291000732, -0.925619507425907 ], [ 34.53337854928499, -0.925581053533614 ], [ 34.53333655126881, -0.925545404303784 ], [ 34.533308505860589, -0.925525278478524 ], [ 34.533222617541043, -0.925474466030925 ], [ 34.533195556785742, -0.925447308661653 ], [ 34.533151645500553, -0.925410654519727 ], [ 34.533067568395268, -0.925343581808959 ], [ 34.532961081730903, -0.925265340129986 ], [ 34.532847807200731, -0.925170936321242 ], [ 34.532733789755788, -0.925090179782801 ], [ 34.532615573046932, -0.92498542748747 ], [ 34.53248636356183, -0.924869679486086 ], [ 34.532392022383178, -0.924780665824841 ], [ 34.532205951705564, -0.924648372490322 ], [ 34.532140494444803, -0.924587913265304 ], [ 34.531980181350903, -0.924500861722504 ], [ 34.531863837069608, -0.924437316678932 ], [ 34.53172084732585, -0.92434874981366 ], [ 34.53162069109716, -0.924496253429358 ], [ 34.531515946011318, -0.924645011513159 ], [ 34.531415579296727, -0.924785026678941 ], [ 34.531346382015407, -0.924880844821343 ], [ 34.531285790393653, -0.924957889726101 ], [ 34.531219581711497, -0.9250434066426 ], [ 34.531156002568807, -0.925186373273072 ], [ 34.53115597003211, -0.925255674706963 ], [ 34.53121932237746, -0.925291089660594 ], [ 34.531365328483233, -0.925379561595939 ], [ 34.531514297209199, -0.925472252234149 ], [ 34.531636563672542, -0.925541182462745 ], [ 34.531811639592867, -0.925623283471353 ], [ 34.531905477186633, -0.925669832274818 ], [ 34.532052786778792, -0.925778506820819 ], [ 34.532185162296443, -0.925860460315481 ], [ 34.532317187340801, -0.925930463906492 ], [ 34.532417175030197, -0.925986398530013 ], [ 34.532635585194761, -0.926103325282024 ], [ 34.532783293054308, -0.926179161551637 ], [ 34.532936852748193, -0.926259690190111 ], [ 34.532987829024627, -0.926290176700344 ], [ 34.533037493193852, -0.926322116528597 ], [ 34.533310645884967, -0.926482998729378 ], [ 34.533382776913662, -0.926333946093458 ], [ 34.533417069001487, -0.926258236899782 ], [ 34.533449502903572, -0.926198706166863 ], [ 34.533487628046807, -0.926054942413065 ], [ 34.533554287147354, -0.925953063623161 ], [ 34.533593515425657, -0.925881502572423 ], [ 34.533659405832672, -0.925802844235474 ] ] ] } },
|
||||||
|
{ "type": "Feature", "properties": { "field": "5052002", "sub_field": "5052002" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.532133209557529, -0.923756077574488 ], [ 34.532045979773187, -0.923897536655814 ], [ 34.531885549056973, -0.924126856000855 ], [ 34.531754097811877, -0.92435034023602 ], [ 34.531922199924892, -0.92444819178244 ], [ 34.532128092495697, -0.924561323711918 ], [ 34.532184068778072, -0.924611161906684 ], [ 34.532376757975747, -0.924757087007173 ], [ 34.532447466346063, -0.924814669372207 ], [ 34.532623553604118, -0.924968481435637 ], [ 34.532797337603391, -0.925123652226369 ], [ 34.53303241638249, -0.925304151254063 ], [ 34.533233489312899, -0.925474751402654 ], [ 34.533317897510429, -0.925525831100529 ], [ 34.533495108965738, -0.925667200946376 ], [ 34.533532135923203, -0.925711416398562 ], [ 34.53364341870499, -0.925788063704153 ], [ 34.533684590189232, -0.92565947368146 ], [ 34.533733819344953, -0.925515959578313 ], [ 34.533766215762931, -0.92540322410155 ], [ 34.533819459387317, -0.925228280994388 ], [ 34.533897206894267, -0.925070415766624 ], [ 34.534008827519123, -0.924811259624856 ], [ 34.534087478226979, -0.924577399309178 ], [ 34.533969241637337, -0.924518359833473 ], [ 34.5338192825932, -0.924444211879812 ], [ 34.53366224052359, -0.924367885931837 ], [ 34.533477498844, -0.924285523040322 ], [ 34.533208168152868, -0.924155365883691 ], [ 34.533001710375693, -0.924054552790724 ], [ 34.532885815978503, -0.923987803944717 ], [ 34.532817049978277, -0.92392381772219 ], [ 34.532719191160567, -0.923863910313447 ], [ 34.532631973653679, -0.923814413084275 ], [ 34.532455236673073, -0.923713445557497 ], [ 34.532269004240348, -0.923610968316206 ], [ 34.532133209557529, -0.923756077574488 ] ] ] } },
|
||||||
|
{ "type": "Feature", "properties": { "field": "5052003", "sub_field": "5052003" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.534015342125151, -0.924824767967818 ], [ 34.533975964965258, -0.924908135966177 ], [ 34.533931247277003, -0.925011771650762 ], [ 34.533824003878173, -0.925235924918133 ], [ 34.533806405271029, -0.925288975828658 ], [ 34.533746042796267, -0.925490789638935 ], [ 34.533655316717862, -0.925771899266922 ], [ 34.533717127266982, -0.925804156946335 ], [ 34.533959836725117, -0.925943994828833 ], [ 34.534362754888853, -0.926188930615339 ], [ 34.534517484662317, -0.926299696861157 ], [ 34.534776090914043, -0.926480556155401 ], [ 34.534971272632497, -0.926583582054293 ], [ 34.535048078522408, -0.926635160250001 ], [ 34.5351230146183, -0.926687954571534 ], [ 34.535216217643338, -0.926734638084245 ], [ 34.535360424971167, -0.92682390325644 ], [ 34.535532073184157, -0.926919308663553 ], [ 34.535596439949423, -0.926966614229236 ], [ 34.535643643807717, -0.927002386376921 ], [ 34.535726669985308, -0.92705077936244 ], [ 34.535844635271289, -0.927106066976178 ], [ 34.535959906720379, -0.927151716540505 ], [ 34.535938746482572, -0.927110442627029 ], [ 34.535902049018929, -0.927039884044579 ], [ 34.535867287069152, -0.926975112709728 ], [ 34.53583144199748, -0.926882954401055 ], [ 34.535804206764169, -0.926823662043834 ], [ 34.535786792050281, -0.926759560187474 ], [ 34.535778545009492, -0.926711182028214 ], [ 34.535749378897542, -0.926601278541001 ], [ 34.535720258465659, -0.926527396025661 ], [ 34.535697945241509, -0.926464166048104 ], [ 34.535670662071148, -0.926396963836052 ], [ 34.535647292915712, -0.926331710008426 ], [ 34.535617688388967, -0.926258342954307 ], [ 34.535582377958157, -0.926172442738121 ], [ 34.535555668041169, -0.926106092370309 ], [ 34.535527446064492, -0.926037105422775 ], [ 34.535515815300599, -0.925991460372017 ], [ 34.535475915305447, -0.925908214675238 ], [ 34.535453355463567, -0.925829230830856 ], [ 34.535428915643067, -0.925744600835954 ], [ 34.535415833256252, -0.925650602935998 ], [ 34.53538944670381, -0.92558284844125 ], [ 34.535351255132248, -0.925528928745327 ], [ 34.535293782429846, -0.92542085327613 ], [ 34.535205286144311, -0.925322080007275 ], [ 34.535116938360098, -0.925242441307145 ], [ 34.535004993536148, -0.925123632329132 ], [ 34.534910010587048, -0.925041738807952 ], [ 34.534821910961767, -0.924988249579339 ], [ 34.534737176845887, -0.924913866918562 ], [ 34.534658420111931, -0.924871319238601 ], [ 34.534581450392423, -0.924827743063981 ], [ 34.534512829781818, -0.924780652784013 ], [ 34.53439926516603, -0.92472985214732 ], [ 34.534295845437953, -0.924679583917042 ], [ 34.534174644787491, -0.924632325885409 ], [ 34.534089773579289, -0.924578282670331 ], [ 34.534015342125151, -0.924824767967818 ] ] ] } },
|
||||||
|
{ "type": "Feature", "properties": { "field": "5050808", "sub_field": "5050808" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.52770800966379, -0.921251231687896 ], [ 34.527494780432598, -0.921196458734716 ], [ 34.527430951056992, -0.921368466036676 ], [ 34.527370053940423, -0.921603940016133 ], [ 34.52734485933906, -0.921752839462381 ], [ 34.527305914048128, -0.921923708593364 ], [ 34.527235832801559, -0.922171904372469 ], [ 34.527215545365792, -0.922310117436956 ], [ 34.527181331836339, -0.922461181363848 ], [ 34.527145750291552, -0.922627724466101 ], [ 34.527114199308038, -0.922728278726916 ], [ 34.527026974301457, -0.922971534942114 ], [ 34.527070297080911, -0.922993201191055 ], [ 34.527272396635702, -0.923114274855002 ], [ 34.528299217192973, -0.923731507310856 ], [ 34.528352974197993, -0.923666458451996 ], [ 34.528415473738193, -0.923550109763229 ], [ 34.5284947703909, -0.923397272271299 ], [ 34.528565977361019, -0.923241295827978 ], [ 34.528623766228108, -0.923106545683334 ], [ 34.528726752325262, -0.92288834790676 ], [ 34.528869353510281, -0.922629628356977 ], [ 34.52894820936335, -0.922487980317654 ], [ 34.528991541098208, -0.922404316440664 ], [ 34.529047680281572, -0.922349882084793 ], [ 34.529153841230077, -0.922204865430793 ], [ 34.529109772348242, -0.92216392666217 ], [ 34.5289399800007, -0.922048465904708 ], [ 34.528728717083759, -0.921908417834265 ], [ 34.528655852776431, -0.921842657499325 ], [ 34.528573233758877, -0.921767123092823 ], [ 34.52848352242512, -0.92169715645525 ], [ 34.528424963840379, -0.921616256744177 ], [ 34.528374670387258, -0.921526972963477 ], [ 34.528303091539797, -0.921443494124081 ], [ 34.528136947241052, -0.921299869758246 ], [ 34.527976634273067, -0.921161903527828 ], [ 34.527830234630841, -0.921058644603074 ], [ 34.52770800966379, -0.921251231687896 ] ] ] } },
|
||||||
|
{ "type": "Feature", "properties": { "field": "5050804", "sub_field": "5050804" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.530183157587651, -0.91994543101739 ], [ 34.530183416361631, -0.920010265738726 ], [ 34.530204717631463, -0.920104621575252 ], [ 34.530212021269023, -0.920237309508057 ], [ 34.530210587779848, -0.920338513832515 ], [ 34.530197050886102, -0.920432468241723 ], [ 34.530200874639398, -0.920524388303117 ], [ 34.530201262619947, -0.920636654373792 ], [ 34.53021706562091, -0.920726141536274 ], [ 34.530236235163557, -0.920851465203746 ], [ 34.530255328812068, -0.920945570307973 ], [ 34.530264055910507, -0.921030944585788 ], [ 34.530246996855482, -0.921080385512856 ], [ 34.530219753290098, -0.921143248560418 ], [ 34.530224713238212, -0.921196441731092 ], [ 34.530195225958963, -0.921270930616946 ], [ 34.530211676955261, -0.921356802361745 ], [ 34.530173890174247, -0.921413268740487 ], [ 34.530114087090773, -0.921491809371978 ], [ 34.530035625201293, -0.921558350875161 ], [ 34.5300078856814, -0.92169319199684 ], [ 34.530056965356778, -0.921722141918574 ], [ 34.530132974154341, -0.921783326452261 ], [ 34.530190068429292, -0.921834146229842 ], [ 34.530265791206858, -0.921900133444197 ], [ 34.530360884659068, -0.921987653416308 ], [ 34.530477809981043, -0.9220647832905 ], [ 34.530541133720888, -0.922076219115818 ], [ 34.530621948324857, -0.922035643471182 ], [ 34.530697889626722, -0.921978278054321 ], [ 34.530794112807953, -0.921935570457935 ], [ 34.530843330672589, -0.92190038206473 ], [ 34.530938347604952, -0.921828144227081 ], [ 34.531017225976882, -0.921737573772419 ], [ 34.531084811367592, -0.921635069879859 ], [ 34.531127202881429, -0.921535351440904 ], [ 34.531211112367473, -0.92141891030178 ], [ 34.531283664320597, -0.921315969392489 ], [ 34.53134203693164, -0.92122949697012 ], [ 34.531396414082401, -0.921132819239215 ], [ 34.53146121558057, -0.921051226648128 ], [ 34.531517342328478, -0.92100014400878 ], [ 34.531598527462222, -0.920977791385493 ], [ 34.531677949809342, -0.920957183367935 ], [ 34.531772358238292, -0.920953515761914 ], [ 34.531872711709497, -0.920964907657504 ], [ 34.532004188723157, -0.920944339320768 ], [ 34.531823912812278, -0.920785753977203 ], [ 34.531618729451772, -0.920618593465505 ], [ 34.531468053470142, -0.920492891549718 ], [ 34.531319525776681, -0.920366341332395 ], [ 34.531156275471901, -0.920225292393335 ], [ 34.531019603804637, -0.92011805414339 ], [ 34.530841163327374, -0.919996053466087 ], [ 34.53071557028882, -0.919923093089096 ], [ 34.530705320173702, -0.919858876669395 ], [ 34.530228280709892, -0.919727082983633 ], [ 34.530183157587651, -0.91994543101739 ] ] ] } },
|
||||||
|
{ "type": "Feature", "properties": { "field": "5050901", "sub_field": "5050901" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.525304410225253, -0.919064004915167 ], [ 34.52521959189545, -0.919223640968199 ], [ 34.525057041662023, -0.919559363300321 ], [ 34.524733014991, -0.920198991652287 ], [ 34.524673781700308, -0.920347952874653 ], [ 34.524729425097298, -0.920391026134701 ], [ 34.524835326771047, -0.920435893914915 ], [ 34.524937638942042, -0.920484351218204 ], [ 34.525063285164293, -0.920552550351291 ], [ 34.525170981961352, -0.920624338743465 ], [ 34.525312694410417, -0.920688050685458 ], [ 34.525411416533338, -0.920743686814437 ], [ 34.525517318651403, -0.920795733362725 ], [ 34.52563243869124, -0.920849315429497 ], [ 34.525741935907647, -0.920883254255345 ], [ 34.52583876320417, -0.920924490003055 ], [ 34.525973991448012, -0.920970732235609 ], [ 34.526089263556372, -0.92100272832988 ], [ 34.526202639194508, -0.921059642416158 ], [ 34.526276039410398, -0.921088191465268 ], [ 34.526365675847309, -0.921107618042661 ], [ 34.526444456954849, -0.921125274653341 ], [ 34.526548081633713, -0.921141270719185 ], [ 34.526651609073447, -0.921143263883623 ], [ 34.526749879532723, -0.921156149869119 ], [ 34.526844730527444, -0.921163639148705 ], [ 34.526928933415263, -0.921187136207987 ], [ 34.527002433344137, -0.921208790648791 ], [ 34.527108205774113, -0.921237584790557 ], [ 34.527226521001189, -0.921294993151492 ], [ 34.527316382765598, -0.921332904908933 ], [ 34.527415129304693, -0.921374276088336 ], [ 34.5274768443781, -0.921240344267814 ], [ 34.5274937261972, -0.921143841527881 ], [ 34.527559239393867, -0.920860201462533 ], [ 34.52759399161279, -0.920815415490482 ], [ 34.527647358243463, -0.920547465719939 ], [ 34.527598467089682, -0.920523913202289 ], [ 34.527495065430593, -0.920474872311483 ], [ 34.527400762419113, -0.920424061203239 ], [ 34.527279796034307, -0.920350044909755 ], [ 34.527187142509881, -0.920271314725815 ], [ 34.527011371291863, -0.920135709098761 ], [ 34.526844150699212, -0.919982944677517 ], [ 34.52667544502188, -0.91984467084443 ], [ 34.526521439223849, -0.91970316641762 ], [ 34.526377627279743, -0.919586229578593 ], [ 34.52625540334904, -0.919494459295098 ], [ 34.52616106404075, -0.919449294739936 ], [ 34.526045442319408, -0.919370084614416 ], [ 34.525876542266808, -0.919262214667902 ], [ 34.525736490968207, -0.919168573911634 ], [ 34.525635792831117, -0.919092796309553 ], [ 34.52553312764465, -0.91899699220532 ], [ 34.525442928118473, -0.918915685909535 ], [ 34.525304410225253, -0.919064004915167 ] ] ] } },
|
||||||
|
{ "type": "Feature", "properties": { "field": "5050902", "sub_field": "5050902" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.52586641910554, -0.91817119283239 ], [ 34.525794989353628, -0.918271704333209 ], [ 34.52571336284322, -0.918391902775726 ], [ 34.525674156267307, -0.918475987012139 ], [ 34.525598702269882, -0.918581697249461 ], [ 34.525515297081093, -0.918697459536219 ], [ 34.525426362300443, -0.9188471271119 ], [ 34.525437771192138, -0.918884921652122 ], [ 34.525450671684332, -0.918907599294705 ], [ 34.525622416108703, -0.919064997175687 ], [ 34.525693342633311, -0.919123994459411 ], [ 34.525961463262448, -0.919304414238333 ], [ 34.526178812550953, -0.919451002080805 ], [ 34.526255141454207, -0.919486040183845 ], [ 34.526303078928699, -0.919524804776131 ], [ 34.526356511157033, -0.919559150359163 ], [ 34.526397718050497, -0.919596105163776 ], [ 34.526450199919687, -0.919633723288267 ], [ 34.526509625790368, -0.919675303616689 ], [ 34.526551306446841, -0.919717871906941 ], [ 34.526601702200232, -0.919758382931013 ], [ 34.52666002284866, -0.9198018110256 ], [ 34.526728529587622, -0.919861752493292 ], [ 34.526826264772687, -0.919946730835443 ], [ 34.52691900304535, -0.920021734579957 ], [ 34.526944519008353, -0.920060566654937 ], [ 34.526985051003336, -0.920097945029118 ], [ 34.52702224672943, -0.920133790713742 ], [ 34.527087750919527, -0.920185288696172 ], [ 34.527191006545337, -0.920264351273083 ], [ 34.527261694821348, -0.920315506726033 ], [ 34.527359350789261, -0.920391933425251 ], [ 34.527464532045641, -0.92045151429056 ], [ 34.527540571287247, -0.920489271759522 ], [ 34.527644819822669, -0.920539000873311 ], [ 34.527665581559503, -0.920458628372601 ], [ 34.527709698908978, -0.92024603489371 ], [ 34.527725704884723, -0.920165702201648 ], [ 34.527757932831449, -0.92003053476636 ], [ 34.527776716847612, -0.919936431952649 ], [ 34.527740919030862, -0.919868957151202 ], [ 34.527699493774278, -0.919831970805046 ], [ 34.527661112251508, -0.919800074675496 ], [ 34.527613101802601, -0.919753688614701 ], [ 34.527559108589379, -0.91971643212342 ], [ 34.52752458499252, -0.919676513218926 ], [ 34.527484390274402, -0.919636135701488 ], [ 34.527433712742543, -0.91957793075183 ], [ 34.527379331357899, -0.919509900665571 ], [ 34.527310115645697, -0.919427136140896 ], [ 34.52727458062423, -0.919365721585632 ], [ 34.527225717172072, -0.919313002579595 ], [ 34.527179414656047, -0.919265009519645 ], [ 34.527138650741563, -0.919185651887178 ], [ 34.527093994757273, -0.919103549748245 ], [ 34.527059175552971, -0.919033157154032 ], [ 34.527026755504949, -0.918990364649011 ], [ 34.526986642588, -0.918948029201745 ], [ 34.526943773165797, -0.918888214726676 ], [ 34.526915834636362, -0.918853852391099 ], [ 34.526849561307273, -0.918755794735537 ], [ 34.526799033305529, -0.918629255352756 ], [ 34.52672632732969, -0.918528001609896 ], [ 34.52660296485611, -0.918427229952259 ], [ 34.526511319351727, -0.918351485713809 ], [ 34.526406970013419, -0.918281656908934 ], [ 34.526245896136743, -0.918209357447599 ], [ 34.526113350934793, -0.918159134247896 ], [ 34.525953140122013, -0.918039326741041 ], [ 34.52586641910554, -0.91817119283239 ] ] ] } },
|
||||||
|
{ "type": "Feature", "properties": { "field": "5051600", "sub_field": "5051600" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.547482866933777, -0.923989816275373 ], [ 34.54744828488468, -0.923653764668648 ], [ 34.547418759814427, -0.923422638441662 ], [ 34.547385886321237, -0.92327595443094 ], [ 34.547314138553133, -0.92314987706918 ], [ 34.547320049469008, -0.922979201780599 ], [ 34.54733190107617, -0.9228218974135 ], [ 34.5473023179443, -0.922669097399129 ], [ 34.547242283500069, -0.922566852205525 ], [ 34.547224454480869, -0.922464222121681 ], [ 34.547215924913303, -0.922388676430896 ], [ 34.547166787636151, -0.922290428337254 ], [ 34.547136518989802, -0.92221260840737 ], [ 34.547147557061038, -0.922135169056411 ], [ 34.547082259291088, -0.921953207230318 ], [ 34.547046751864123, -0.921908588743095 ], [ 34.546973699051073, -0.92194503704399 ], [ 34.546903708022583, -0.921997986682482 ], [ 34.546806162033171, -0.922078571023268 ], [ 34.546731690124133, -0.922135736388566 ], [ 34.546626869707438, -0.922210544847922 ], [ 34.54650044314922, -0.92230997163446 ], [ 34.546461546592752, -0.92234480974402 ], [ 34.546459132483449, -0.92236215294418 ], [ 34.546950129644522, -0.923380254756027 ], [ 34.546870750847887, -0.923411668901174 ], [ 34.54678505585516, -0.923446586873587 ], [ 34.546640088572588, -0.923504302337025 ], [ 34.54648923370091, -0.92356445735708 ], [ 34.546474358719493, -0.923538120859067 ], [ 34.546458194741248, -0.923510291918314 ], [ 34.546427433848933, -0.923457313410359 ], [ 34.546396574608593, -0.923403970809781 ], [ 34.546365034065012, -0.923353050945804 ], [ 34.546301815293063, -0.923240245361742 ], [ 34.546244710597009, -0.923119288054216 ], [ 34.546136786542348, -0.922890755491929 ], [ 34.546082629245497, -0.922775880246347 ], [ 34.546030015122213, -0.922664861549979 ], [ 34.545939629921577, -0.922706037183885 ], [ 34.545745465081119, -0.922832019370497 ], [ 34.545495654745338, -0.922999447332138 ], [ 34.545353993747717, -0.923066729278439 ], [ 34.545190833034248, -0.923163398546972 ], [ 34.545037381374392, -0.923234926328528 ], [ 34.544971146650433, -0.923288559242863 ], [ 34.544962556562282, -0.923347538326125 ], [ 34.54501146383064, -0.923432296131679 ], [ 34.545089208944447, -0.923521729582388 ], [ 34.545136440497153, -0.923574889749943 ], [ 34.545154465045833, -0.923604621961517 ], [ 34.545164660312018, -0.923766420065778 ], [ 34.545221801530587, -0.923871262702203 ], [ 34.545337414837, -0.923894366183033 ], [ 34.545451217405109, -0.923872545530491 ], [ 34.545511210394793, -0.923890698815635 ], [ 34.545591920062208, -0.923922403981407 ], [ 34.545648205209581, -0.923965989985525 ], [ 34.545667014494832, -0.92405518230562 ], [ 34.545691071050342, -0.92415355232523 ], [ 34.545733635529857, -0.924269656215766 ], [ 34.545810047580048, -0.924394144421056 ], [ 34.545995514476708, -0.924285607720291 ], [ 34.546096155390572, -0.924222799173978 ], [ 34.546186075029112, -0.924185708099781 ], [ 34.546288737249412, -0.92414178275284 ], [ 34.546436718197761, -0.924098355483879 ], [ 34.546645293027893, -0.924078620673798 ], [ 34.546780156591034, -0.924064614015532 ], [ 34.546889920501407, -0.924058514518308 ], [ 34.547153697149888, -0.924038805919448 ], [ 34.547328351818898, -0.92402463470605 ], [ 34.547482866933777, -0.923989816275373 ] ] ] } },
|
||||||
|
{ "type": "Feature", "properties": { "field": "5051604", "sub_field": "5051604" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.546032735764001, -0.922665580813154 ], [ 34.546308369984573, -0.923250338116272 ], [ 34.546490889545673, -0.923562979951137 ], [ 34.546948591125947, -0.923379377915842 ], [ 34.546457104561, -0.922363677391 ], [ 34.546032735764001, -0.922665580813154 ] ] ] } },
|
||||||
|
{ "type": "Feature", "properties": { "field": "5051503", "sub_field": "5051503" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.542740201146231, -0.916348005952099 ], [ 34.542689841096362, -0.916535838724767 ], [ 34.542648952702493, -0.916684240675167 ], [ 34.542617679864712, -0.916817873512961 ], [ 34.542618687137796, -0.916948104536881 ], [ 34.54260871718931, -0.917077131498606 ], [ 34.542593829151997, -0.917348166818644 ], [ 34.542555810125137, -0.917556349026141 ], [ 34.542567259017751, -0.917686782626387 ], [ 34.542558071871667, -0.917729707346745 ], [ 34.542551916305989, -0.917880593472634 ], [ 34.542543829540627, -0.917977643734387 ], [ 34.542530436476383, -0.918095282653989 ], [ 34.542609499299253, -0.918225895707215 ], [ 34.542773698190572, -0.918476607831967 ], [ 34.542928164081587, -0.918685109447898 ], [ 34.542946123688438, -0.918672650463089 ], [ 34.542977605113691, -0.918651257638947 ], [ 34.543025500675149, -0.918652210262394 ], [ 34.543182901173132, -0.918667963426411 ], [ 34.543376966053202, -0.918681348249643 ], [ 34.543408000726913, -0.918620110444174 ], [ 34.543462991770241, -0.918603999632591 ], [ 34.543589153390393, -0.918609709793809 ], [ 34.543671096092353, -0.918667137659975 ], [ 34.543807363904669, -0.918675802005624 ], [ 34.54398437021834, -0.918703364153218 ], [ 34.544106791369011, -0.918715565013279 ], [ 34.544256120660307, -0.918712317743673 ], [ 34.544381032565703, -0.918700707555993 ], [ 34.544467153399012, -0.918704319534864 ], [ 34.54461158118464, -0.918721942164225 ], [ 34.544619723093867, -0.918691727446187 ], [ 34.544531780533283, -0.918599650543242 ], [ 34.544402136538658, -0.918498985557099 ], [ 34.544332438281728, -0.918399953658575 ], [ 34.544261059350532, -0.918278763490578 ], [ 34.544221228959287, -0.918197737207375 ], [ 34.544185481329478, -0.918132658016582 ], [ 34.544130532761713, -0.918057135178505 ], [ 34.544089812539049, -0.917994799874068 ], [ 34.544049729897267, -0.917923987946429 ], [ 34.544022124741147, -0.917883460876299 ], [ 34.543999796119287, -0.917845636525243 ], [ 34.543979279151607, -0.917813388934252 ], [ 34.543966947394573, -0.917782405416515 ], [ 34.543961583055243, -0.917762949589959 ], [ 34.543953511895602, -0.917726755258667 ], [ 34.543945170529383, -0.917678176629384 ], [ 34.543952302906447, -0.917617965211975 ], [ 34.543966912032957, -0.917574264374757 ], [ 34.543973921419372, -0.91751831658457 ], [ 34.543960307034432, -0.917470819786153 ], [ 34.543938491990581, -0.917422573040152 ], [ 34.543940838145488, -0.917384900666109 ], [ 34.543938682925649, -0.917347088138421 ], [ 34.543888143571067, -0.917284093007754 ], [ 34.543760568359829, -0.917141325273617 ], [ 34.543670762448272, -0.917073653296933 ], [ 34.543599080296673, -0.916998006820899 ], [ 34.543488356389297, -0.916927234121464 ], [ 34.543399169430771, -0.916847003568278 ], [ 34.543311315332993, -0.916772981572547 ], [ 34.54323542028245, -0.916703264168358 ], [ 34.54312690174843, -0.916608283201851 ], [ 34.543019740341158, -0.916501736187686 ], [ 34.542917699446669, -0.916410543096059 ], [ 34.542783746543279, -0.916274847762805 ], [ 34.542740201146231, -0.916348005952099 ] ] ] } },
|
||||||
|
{ "type": "Feature", "properties": { "field": "1010201", "sub_field": "1010201" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.51837824847216, -0.900837192547212 ], [ 34.518338793412298, -0.900951212740684 ], [ 34.518268356307452, -0.901155973971843 ], [ 34.518185111372183, -0.901387015960091 ], [ 34.51809890480876, -0.901596711505853 ], [ 34.518008518046763, -0.901830229623396 ], [ 34.517925511498127, -0.902018218212892 ], [ 34.517862553832693, -0.902172183911117 ], [ 34.517829726901716, -0.90226726581969 ], [ 34.517791921170847, -0.902358356628008 ], [ 34.517761788885977, -0.902457683954003 ], [ 34.517795761415691, -0.90247848153883 ], [ 34.517956756898172, -0.902532579230399 ], [ 34.518092084623959, -0.902577016725212 ], [ 34.518282045484341, -0.902658652697211 ], [ 34.518501926131748, -0.902764743079635 ], [ 34.518640986183243, -0.902835107549234 ], [ 34.51874848970985, -0.9029014175985 ], [ 34.51885458576389, -0.902979120559028 ], [ 34.518872264818228, -0.903018896044785 ], [ 34.518907560135538, -0.903025609678664 ], [ 34.51896145905107, -0.903061496979006 ], [ 34.519083512915188, -0.902979953062459 ], [ 34.519150118622683, -0.902927293380604 ], [ 34.519210536711697, -0.902896446652473 ], [ 34.519280841719379, -0.902861568278515 ], [ 34.519319094707278, -0.902811794159423 ], [ 34.519413324522851, -0.902726663919728 ], [ 34.519446156044268, -0.902679559536237 ], [ 34.51949180214325, -0.902637635305297 ], [ 34.519532451230688, -0.902579233880188 ], [ 34.51960752107567, -0.902516787748808 ], [ 34.519621722851561, -0.902478083797161 ], [ 34.519661689923367, -0.902444622383039 ], [ 34.519700892385089, -0.902394676463164 ], [ 34.519714320505948, -0.90236108844656 ], [ 34.519729226471249, -0.902338970394226 ], [ 34.519760346873703, -0.902278703521343 ], [ 34.5197945262167, -0.902194787464252 ], [ 34.51982434135018, -0.902120035515331 ], [ 34.519869787036477, -0.902041215043953 ], [ 34.519901117504197, -0.901931565004541 ], [ 34.519925871997387, -0.901796495583365 ], [ 34.519907073781653, -0.901727104196491 ], [ 34.51993271739444, -0.901657578177105 ], [ 34.519930103879943, -0.901572496804256 ], [ 34.519871541030177, -0.901529611772476 ], [ 34.51987256579752, -0.901448371059767 ], [ 34.519881329794977, -0.901400255264767 ], [ 34.519897951934148, -0.901367394073681 ], [ 34.519871147040057, -0.901256709651319 ], [ 34.519849391643277, -0.901124526953371 ], [ 34.519841662059868, -0.901035003258579 ], [ 34.519742933900837, -0.901003895326969 ], [ 34.519586448953078, -0.900962281860045 ], [ 34.519380114775217, -0.900917233752896 ], [ 34.519240934169368, -0.900887137622625 ], [ 34.518963664399791, -0.900843821846796 ], [ 34.518934331426877, -0.900847963251883 ], [ 34.518792794626123, -0.900824266614687 ], [ 34.51863166392868, -0.900785882291954 ], [ 34.518506984436527, -0.900759903426554 ], [ 34.518431457954257, -0.900767646355463 ], [ 34.51837824847216, -0.900837192547212 ] ] ] } },
|
||||||
|
{ "type": "Feature", "properties": { "field": "1010303", "sub_field": "1010303" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.513986220488157, -0.900023245651626 ], [ 34.513962874277922, -0.900084787140925 ], [ 34.513899109182709, -0.90010891834102 ], [ 34.513853875358762, -0.900066544537844 ], [ 34.513792406604253, -0.900068663890433 ], [ 34.513695829850519, -0.900137368795702 ], [ 34.513587724480352, -0.900212981728826 ], [ 34.513573590680103, -0.900252567864826 ], [ 34.513475625507581, -0.900265716319965 ], [ 34.513431715271992, -0.900346912433732 ], [ 34.513366224426747, -0.90034411138635 ], [ 34.513238995735684, -0.900443514553995 ], [ 34.513231703230282, -0.900505369046661 ], [ 34.513312499262547, -0.900568428114204 ], [ 34.513333807643292, -0.900679069138749 ], [ 34.51338134525885, -0.900753290782355 ], [ 34.51340578207099, -0.900846489494634 ], [ 34.513513034664911, -0.900849416742391 ], [ 34.513544069013648, -0.900861282168641 ], [ 34.513703097651479, -0.900913169053577 ], [ 34.513865167142328, -0.900967832378583 ], [ 34.514009203442107, -0.900990569327986 ], [ 34.514184531635003, -0.90098166538859 ], [ 34.514251198443318, -0.90099773755762 ], [ 34.514485680252967, -0.901011969464327 ], [ 34.514622246073714, -0.901016555029688 ], [ 34.51470247406337, -0.901013402130563 ], [ 34.514795015354323, -0.901023033484835 ], [ 34.514706491793838, -0.900816870359253 ], [ 34.514640192477259, -0.900629122096417 ], [ 34.514588471347381, -0.900502442605525 ], [ 34.514542853104601, -0.900367404619409 ], [ 34.514520432525181, -0.90028035375167 ], [ 34.514481189997923, -0.900205420350721 ], [ 34.514456742081983, -0.900146845557817 ], [ 34.514431064923983, -0.900091739541714 ], [ 34.514398612528502, -0.900003121502256 ], [ 34.514357471045592, -0.899924982082969 ], [ 34.51432331990646, -0.899852589134044 ], [ 34.514288976240913, -0.899765085956189 ], [ 34.514174943687593, -0.899817849356222 ], [ 34.514148606184612, -0.899840112650476 ], [ 34.514041657665388, -0.89992666181085 ], [ 34.513984059559903, -0.89998405212997 ], [ 34.513986220488157, -0.900023245651626 ] ] ] } },
|
||||||
|
{ "type": "Feature", "properties": { "field": "1001000", "sub_field": "1001000" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.511938411959072, -0.901057179078545 ], [ 34.511804018364913, -0.901096026606617 ], [ 34.511639359222343, -0.901129615584726 ], [ 34.511497005328103, -0.901144443272819 ], [ 34.511337564271223, -0.901150048882179 ], [ 34.511226574221617, -0.901163781446344 ], [ 34.511099015704701, -0.901166371536106 ], [ 34.511026718069388, -0.901184828404466 ], [ 34.51093400358468, -0.90119958129028 ], [ 34.510824073155177, -0.901208866819166 ], [ 34.510774764893782, -0.901272510305671 ], [ 34.510773277849779, -0.901373706114091 ], [ 34.510759105331083, -0.901545219021137 ], [ 34.510757834542737, -0.901749500799801 ], [ 34.510766978933972, -0.901852218590377 ], [ 34.510777133433287, -0.901949758360403 ], [ 34.510787188669489, -0.902041154659011 ], [ 34.510802792031932, -0.902133551831301 ], [ 34.510961934198868, -0.902226356416664 ], [ 34.51105032137108, -0.902222167329869 ], [ 34.511184171510067, -0.90221773304103 ], [ 34.511322588171012, -0.902221904390838 ], [ 34.511450434640913, -0.902213161033459 ], [ 34.511581254610768, -0.902212146955381 ], [ 34.511680741996138, -0.902207432438906 ], [ 34.511775520019889, -0.902206639044849 ], [ 34.511913332816498, -0.90220191206019 ], [ 34.511918027693227, -0.902165815145353 ], [ 34.511933602662531, -0.902022336288681 ], [ 34.511967752568673, -0.901858732252457 ], [ 34.511991589721653, -0.901684837997192 ], [ 34.512019748795993, -0.901554914081015 ], [ 34.51203665497367, -0.901465866399761 ], [ 34.512047301459432, -0.90136763839563 ], [ 34.512065071842592, -0.90131201607139 ], [ 34.512068934745777, -0.901235535404897 ], [ 34.512071953751473, -0.901141284602794 ], [ 34.512074872418879, -0.901042470685134 ], [ 34.511938411959072, -0.901057179078545 ] ] ] } },
|
||||||
|
{ "type": "Feature", "properties": { "field": "1011100", "sub_field": "1011100" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.519208931103996, -0.908876578068891 ], [ 34.519203180487317, -0.90929056647405 ], [ 34.51910344292601, -0.90972786353296 ], [ 34.519041528382218, -0.910069055768932 ], [ 34.518959714445927, -0.910250970149846 ], [ 34.519413045524637, -0.910444703282255 ], [ 34.519709123306718, -0.910591381752942 ], [ 34.519995722535569, -0.910672984905034 ], [ 34.520058868057077, -0.91048766496981 ], [ 34.519997132836039, -0.910433234303694 ], [ 34.519898952072893, -0.910325853793141 ], [ 34.519888773909948, -0.910190751104098 ], [ 34.519935943653621, -0.910012799600289 ], [ 34.519961795767088, -0.909943040801617 ], [ 34.519997118211499, -0.909848472598546 ], [ 34.520015456397672, -0.909740980598854 ], [ 34.520053396944753, -0.909633536360202 ], [ 34.520078428860202, -0.909544638740592 ], [ 34.520081992968493, -0.909442288060986 ], [ 34.520068222885833, -0.90938657795314 ], [ 34.52008868071136, -0.909258766655697 ], [ 34.520100348942037, -0.90914870601373 ], [ 34.520024612338297, -0.90914580425384 ], [ 34.519930216191938, -0.909068963508122 ], [ 34.519860147431281, -0.909031066242259 ], [ 34.519784822858497, -0.90897595461969 ], [ 34.519715172410258, -0.90892214570315 ], [ 34.519621672701398, -0.90888474341552 ], [ 34.519520458026157, -0.908855272366838 ], [ 34.519439668337462, -0.908848075158386 ], [ 34.519395571789268, -0.908856446223636 ], [ 34.519298277672561, -0.908854817163703 ], [ 34.519208931103996, -0.908876578068891 ] ] ] } },
|
||||||
|
{ "type": "Feature", "properties": { "field": "1011101", "sub_field": "1011101" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.519430671596098, -0.907311247234191 ], [ 34.519403442172049, -0.907431125998368 ], [ 34.519416377380793, -0.90762464993588 ], [ 34.519421512731597, -0.907813383763557 ], [ 34.519391948719942, -0.907957778231823 ], [ 34.519372757113977, -0.908140516024695 ], [ 34.519368952139622, -0.908231609012429 ], [ 34.519324388859339, -0.908366856445116 ], [ 34.51923879705663, -0.90845806911979 ], [ 34.519196036496908, -0.908559799244833 ], [ 34.519152860587752, -0.908725537002578 ], [ 34.519212873334403, -0.908808477088603 ], [ 34.51930151186194, -0.908849607508205 ], [ 34.519394573772267, -0.908853677916469 ], [ 34.519436378063027, -0.908843555809788 ], [ 34.519498933005131, -0.908848404271704 ], [ 34.519541320275813, -0.90885625436205 ], [ 34.51971428206506, -0.908918950904406 ], [ 34.519785364357212, -0.908973310274625 ], [ 34.519859698032207, -0.909027205048137 ], [ 34.519890703903357, -0.909043850639497 ], [ 34.519922640228138, -0.909057797875883 ], [ 34.519988037419438, -0.909111449763057 ], [ 34.520026055757199, -0.909143517551423 ], [ 34.520077289267057, -0.909145258556508 ], [ 34.520100185568268, -0.909143605358855 ], [ 34.520125667702253, -0.909132404595935 ], [ 34.520041058976368, -0.908801776169283 ], [ 34.520017781744507, -0.908663794638363 ], [ 34.519973609080203, -0.908519294536588 ], [ 34.520018381549228, -0.908327202816611 ], [ 34.520110790557958, -0.908202852054441 ], [ 34.520224119615797, -0.908072202867713 ], [ 34.520271990260063, -0.907944310414605 ], [ 34.5202965378827, -0.90777435165356 ], [ 34.520326808979547, -0.907645906369297 ], [ 34.520422747572127, -0.907493397989325 ], [ 34.520560760124241, -0.907403250880809 ], [ 34.52057304446415, -0.907337241884186 ], [ 34.520447941131913, -0.90730393487868 ], [ 34.520304416969203, -0.907280051833667 ], [ 34.520142750431553, -0.907244699205106 ], [ 34.519936456982698, -0.907212583281798 ], [ 34.519736484136061, -0.907198432759958 ], [ 34.519587406382499, -0.907189710800453 ], [ 34.519423611149058, -0.907217040025416 ], [ 34.519430671596098, -0.907311247234191 ] ] ] } },
|
||||||
|
{ "type": "Feature", "properties": { "field": "1011400", "sub_field": "1011400" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.510758610655387, -0.905885689803315 ], [ 34.510456544685198, -0.905900646386417 ], [ 34.510379652455157, -0.905920724949738 ], [ 34.510252579740929, -0.906416653875258 ], [ 34.510085722946258, -0.907099014013562 ], [ 34.510012001213589, -0.907448367166705 ], [ 34.510138903441167, -0.907545832341052 ], [ 34.510282102553717, -0.907674560843473 ], [ 34.510476858738741, -0.907762571630095 ], [ 34.510715384770243, -0.907813770616189 ], [ 34.511080011635649, -0.907865885243262 ], [ 34.511236254850623, -0.907872342181254 ], [ 34.511238064741733, -0.907733908918801 ], [ 34.511215002825551, -0.907646422761833 ], [ 34.511172938880073, -0.907475406622138 ], [ 34.511150094923103, -0.907348368498127 ], [ 34.511109062948037, -0.907047509189752 ], [ 34.511080178937441, -0.906707349561861 ], [ 34.511038353576623, -0.90635806734885 ], [ 34.511019377435368, -0.906005764159707 ], [ 34.510873721960998, -0.905894227490523 ], [ 34.510758610655387, -0.905885689803315 ] ] ] } },
|
||||||
|
{ "type": "Feature", "properties": { "field": "1012001", "sub_field": "1012001" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.513139554258167, -0.911086150372873 ], [ 34.513136248549458, -0.910274863515073 ], [ 34.513179369739781, -0.909752868800165 ], [ 34.512949165768497, -0.909799438685062 ], [ 34.512771345564197, -0.909834398597343 ], [ 34.512567832074438, -0.909834707530268 ], [ 34.512354094608611, -0.909806364890723 ], [ 34.512003462903877, -0.909738620120708 ], [ 34.511736513040297, -0.909690600030969 ], [ 34.511706192521487, -0.909813627900492 ], [ 34.511630426621018, -0.910248618247966 ], [ 34.511637583515054, -0.910743601750185 ], [ 34.511805810695741, -0.911190366823789 ], [ 34.511969878091932, -0.911481969045885 ], [ 34.512064352258179, -0.911681191666797 ], [ 34.512171673284413, -0.911888177177493 ], [ 34.512298296720942, -0.912099551883246 ], [ 34.512429203588603, -0.912325920536879 ], [ 34.512572094084, -0.91261426397109 ], [ 34.512698913649729, -0.912848449243454 ], [ 34.512857206206363, -0.913138991953266 ], [ 34.51296724699619, -0.913315700591728 ], [ 34.51303806720847, -0.913416512230801 ], [ 34.513128201259093, -0.913445856770996 ], [ 34.513223596989278, -0.913462809139023 ], [ 34.513279626493933, -0.913440792474507 ], [ 34.513264511775013, -0.913243669187823 ], [ 34.51325575948767, -0.913071524778667 ], [ 34.51324593813348, -0.913003715121047 ], [ 34.513252141357363, -0.912952610352458 ], [ 34.513243877497999, -0.912907543173047 ], [ 34.513229425000517, -0.912808697647574 ], [ 34.513216181028959, -0.912643228008377 ], [ 34.513200622774903, -0.912430899508012 ], [ 34.513176889321343, -0.91222775853927 ], [ 34.513158842029632, -0.912128197803911 ], [ 34.513152671932978, -0.911963059675516 ], [ 34.513139554258167, -0.911086150372873 ] ] ] } },
|
||||||
|
{ "type": "Feature", "properties": { "field": "1012700", "sub_field": "1012700" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.524265233805323, -0.920527483286595 ], [ 34.524483166042167, -0.919996009544827 ], [ 34.524670434188401, -0.919600857905171 ], [ 34.524824964325987, -0.91927885882836 ], [ 34.525100772873927, -0.918810037195537 ], [ 34.525324244035453, -0.918451457149671 ], [ 34.525581073883671, -0.918056514686223 ], [ 34.525718913323523, -0.917872859169124 ], [ 34.525478224156458, -0.91786551213264 ], [ 34.525191635541283, -0.9178912281918 ], [ 34.524931353077058, -0.917863735345823 ], [ 34.524710168217567, -0.917889491198302 ], [ 34.524552203310883, -0.917898721231318 ], [ 34.524387576737482, -0.917907851185374 ], [ 34.524206480648623, -0.917915235561809 ], [ 34.523969110358848, -0.917957429032201 ], [ 34.523595937087727, -0.918054708853504 ], [ 34.523568745007019, -0.918640473255753 ], [ 34.523543376917132, -0.919167259219033 ], [ 34.523534877418413, -0.919777213563372 ], [ 34.523530673462822, -0.920281430534534 ], [ 34.523485348331263, -0.920665318099264 ], [ 34.523592316737172, -0.920792213044447 ], [ 34.523720213929622, -0.920857057941214 ], [ 34.524107934073292, -0.92106330532541 ], [ 34.524265233805323, -0.920527483286595 ] ] ] } },
|
||||||
|
{ "type": "Feature", "properties": { "field": "1012909", "sub_field": "1012909" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.521618761389902, -0.919493489632326 ], [ 34.521577997739954, -0.919463212007479 ], [ 34.521406255441732, -0.919220820163204 ], [ 34.521251883201892, -0.918990470271571 ], [ 34.521080402368199, -0.91874799064303 ], [ 34.520929584692873, -0.918519020094812 ], [ 34.520827871196403, -0.918350233761384 ], [ 34.52070133645632, -0.918128490080051 ], [ 34.520624092221091, -0.918008995637789 ], [ 34.520580405340468, -0.918018511877683 ], [ 34.520433881811307, -0.918161894682087 ], [ 34.520288610712043, -0.91829686388127 ], [ 34.520222799724017, -0.91837390321084 ], [ 34.520100022739101, -0.918508479708238 ], [ 34.520044686945951, -0.91862140167736 ], [ 34.519929421410623, -0.918838464964216 ], [ 34.519833193883791, -0.919024290768085 ], [ 34.520105371188102, -0.919165730756644 ], [ 34.520330874386516, -0.919257295899866 ], [ 34.520448622901398, -0.919322011425809 ], [ 34.520534100942882, -0.919426193693054 ], [ 34.520622287035252, -0.919628833397926 ], [ 34.520724985596438, -0.919896625263197 ], [ 34.520815863000088, -0.920178690050686 ], [ 34.520927618153181, -0.920470325244822 ], [ 34.521144053944333, -0.920300667778434 ], [ 34.521311248972353, -0.920175644264859 ], [ 34.521509621209027, -0.920056052860448 ], [ 34.521591303805288, -0.919967088793644 ], [ 34.521788216811267, -0.919761450532473 ], [ 34.521618761389902, -0.919493489632326 ] ] ] } },
|
||||||
|
{ "type": "Feature", "properties": { "field": "1012900", "sub_field": "1012900" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.520505195487033, -0.917764896279184 ], [ 34.520428394271583, -0.917603955030876 ], [ 34.520325651837581, -0.917379226264249 ], [ 34.520203184649752, -0.917117054271879 ], [ 34.520096488150948, -0.916913917278344 ], [ 34.519995899583918, -0.916700141795235 ], [ 34.519895961000969, -0.916508023277245 ], [ 34.519798300935427, -0.916355564671962 ], [ 34.519697808625317, -0.916365946149683 ], [ 34.519650297274673, -0.916425221135862 ], [ 34.519589766082852, -0.916518642341546 ], [ 34.519535445930003, -0.916597479218715 ], [ 34.519461999721557, -0.916707763610808 ], [ 34.519341357262697, -0.916894106131288 ], [ 34.519213621440578, -0.917066000010511 ], [ 34.519115725399807, -0.917219759376196 ], [ 34.519017613224079, -0.917366802650916 ], [ 34.518892977189758, -0.917539409956867 ], [ 34.518781120842682, -0.91771576588679 ], [ 34.518674056251413, -0.917887178580075 ], [ 34.51857112933272, -0.918039423793816 ], [ 34.518474624563048, -0.918160035640695 ], [ 34.518407770876983, -0.91825272734301 ], [ 34.518339216985673, -0.918373362481335 ], [ 34.518376958533572, -0.918426608642758 ], [ 34.518578151351569, -0.918535794977386 ], [ 34.51885358133287, -0.918642420715495 ], [ 34.519121627137913, -0.918761277036333 ], [ 34.519392183317422, -0.918877735712298 ], [ 34.519633369569192, -0.91897025538135 ], [ 34.519820009641627, -0.919034032019808 ], [ 34.519911517399862, -0.918843498652406 ], [ 34.519999825812121, -0.918665769762833 ], [ 34.520093436130963, -0.918514858508648 ], [ 34.520139200673079, -0.918461086993989 ], [ 34.520306287297267, -0.918263121073218 ], [ 34.520598395328818, -0.917963211984098 ], [ 34.520505195487033, -0.917764896279184 ] ] ] } },
|
||||||
|
{ "type": "Feature", "properties": { "field": "1013000", "sub_field": "1013000" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.523771804491993, -0.920965184449886 ], [ 34.52355211150612, -0.920833370112687 ], [ 34.523240524917647, -0.920698941305932 ], [ 34.522948819392177, -0.920567230392938 ], [ 34.522757352149803, -0.920467910245286 ], [ 34.522494775246493, -0.920320934003666 ], [ 34.522283385977367, -0.920193501038596 ], [ 34.522108804705127, -0.920068172165904 ], [ 34.521971735162509, -0.919944041725902 ], [ 34.521869580435833, -0.919847012417692 ], [ 34.521609379592661, -0.91996346275988 ], [ 34.521500767746673, -0.920068181881336 ], [ 34.521380197306122, -0.920165521524226 ], [ 34.521278050550237, -0.920273122792473 ], [ 34.521329941929046, -0.920381726217848 ], [ 34.521367605243761, -0.920430230958364 ], [ 34.521537169084411, -0.920533603314368 ], [ 34.521677720699273, -0.920636249270086 ], [ 34.521799277324462, -0.920729130687698 ], [ 34.521951032238157, -0.920843779770792 ], [ 34.522055443237861, -0.920938987092375 ], [ 34.522138962055983, -0.921012205712515 ], [ 34.522220451284412, -0.921131850392346 ], [ 34.522325885276757, -0.921267864728465 ], [ 34.52240034499939, -0.921372466828975 ], [ 34.522416971829728, -0.921440383739503 ], [ 34.522535990779183, -0.921616101573336 ], [ 34.522634173625818, -0.921724191987613 ], [ 34.522768903640923, -0.921906545845439 ], [ 34.522922215504693, -0.922071018794141 ], [ 34.52308168453898, -0.922186297795552 ], [ 34.52329299080057, -0.922345694997977 ], [ 34.523540284471707, -0.922537162135317 ], [ 34.523598745555027, -0.922558639787358 ], [ 34.523716272481458, -0.922346495351749 ], [ 34.52375201062042, -0.922165253240244 ], [ 34.523823443035667, -0.921921004310222 ], [ 34.523874416594637, -0.921719353180174 ], [ 34.523983427381559, -0.921440643920634 ], [ 34.524069440118829, -0.921106539086621 ], [ 34.523771804491993, -0.920965184449886 ] ] ] } },
|
||||||
|
{ "type": "Feature", "properties": { "field": "1013100", "sub_field": "1013100" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.522095601763347, -0.922008590859519 ], [ 34.522082083658589, -0.92224350667508 ], [ 34.522083017329713, -0.922440201014402 ], [ 34.522064940520018, -0.922671550173641 ], [ 34.522078657132433, -0.922853427540987 ], [ 34.522074835848599, -0.922926328504075 ], [ 34.522070234428092, -0.923111048446732 ], [ 34.522066374927903, -0.923293261617024 ], [ 34.522281620617548, -0.923362333175234 ], [ 34.522578706550618, -0.923476343506421 ], [ 34.522754397265302, -0.923546666157641 ], [ 34.522908511020383, -0.923602561468295 ], [ 34.523007041961478, -0.923627933562831 ], [ 34.523287597484412, -0.923698826018212 ], [ 34.523311650666017, -0.923613048900772 ], [ 34.523360297585207, -0.923450656411917 ], [ 34.523391752205221, -0.923385396401878 ], [ 34.52340816392379, -0.923324754764822 ], [ 34.523430936433392, -0.923271330748426 ], [ 34.523449001575329, -0.923153529788586 ], [ 34.523477209364863, -0.923040406744568 ], [ 34.523498850347622, -0.922977075813894 ], [ 34.523539543677067, -0.922820774641505 ], [ 34.523569791927947, -0.92271010297262 ], [ 34.523608119754819, -0.922604310677956 ], [ 34.5235760565334, -0.922573083623914 ], [ 34.523515532073539, -0.922545665510756 ], [ 34.523457508580712, -0.922504608981499 ], [ 34.523396523893808, -0.922458454340417 ], [ 34.52333864954042, -0.922415271419546 ], [ 34.523276825554547, -0.922371395034965 ], [ 34.523215051902312, -0.922319923817291 ], [ 34.523160029741213, -0.922282057963562 ], [ 34.523104956957482, -0.922243894042543 ], [ 34.523020943004063, -0.922186171592107 ], [ 34.522972028746452, -0.922150582091132 ], [ 34.522937349813311, -0.922114736332867 ], [ 34.522871362225523, -0.922056006261297 ], [ 34.522807026069508, -0.921995275573366 ], [ 34.522744593120677, -0.921933621355166 ], [ 34.522691840655327, -0.921865306350077 ], [ 34.522627212655472, -0.921764192662986 ], [ 34.522579671070709, -0.921708038184003 ], [ 34.522519697825373, -0.921633446198725 ], [ 34.522481076374419, -0.921574875581976 ], [ 34.522429745807202, -0.921496063532083 ], [ 34.522392547406021, -0.921440569639598 ], [ 34.522372254888353, -0.921384290524263 ], [ 34.522341587145569, -0.92134071135225 ], [ 34.522258515546632, -0.921218180145253 ], [ 34.522178549602607, -0.921114709682415 ], [ 34.522084743049597, -0.920985159853987 ], [ 34.522073154028007, -0.920997877444582 ], [ 34.522064858441439, -0.921071355994465 ], [ 34.522068928873971, -0.921288865982173 ], [ 34.522075089775377, -0.921520798088599 ], [ 34.522078945055853, -0.921855525232579 ], [ 34.522095601763347, -0.922008590859519 ] ] ] } },
|
||||||
|
{ "type": "Feature", "properties": { "field": "3030200", "sub_field": "3030200" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.536617560627569, -0.885980601116327 ], [ 34.536673986844228, -0.886036903298095 ], [ 34.536743890194323, -0.886136542063422 ], [ 34.536781845050683, -0.886241071713184 ], [ 34.536796673600762, -0.886347007359641 ], [ 34.536854101006647, -0.886561768900872 ], [ 34.536935211242763, -0.88686749579186 ], [ 34.537002857527384, -0.88696210009635 ], [ 34.537292406874073, -0.886946627352536 ], [ 34.537548666248107, -0.886941150749121 ], [ 34.537768326135627, -0.886925416551544 ], [ 34.53798450809149, -0.886912477051908 ], [ 34.538154457035972, -0.886893971654903 ], [ 34.538349131772037, -0.886880844532617 ], [ 34.538502241787647, -0.886868598710018 ], [ 34.538632827804378, -0.886837726648621 ], [ 34.5385518845587, -0.886514031553046 ], [ 34.538423757737789, -0.886068792097811 ], [ 34.538296250386907, -0.885675780942109 ], [ 34.538193941697969, -0.88533547840479 ], [ 34.538165194848872, -0.885334387534625 ], [ 34.537969231805008, -0.885341701489345 ], [ 34.537783717563727, -0.885379163079379 ], [ 34.537550349319083, -0.885408726239732 ], [ 34.537403195943767, -0.885424699020383 ], [ 34.537139265828927, -0.88544221403267 ], [ 34.53689890549709, -0.885469560049606 ], [ 34.536729014609087, -0.885494466106983 ], [ 34.536608736825123, -0.885531174785686 ], [ 34.536473779096333, -0.885626637604989 ], [ 34.536501074752863, -0.885745998469748 ], [ 34.536551708243643, -0.885810363726022 ], [ 34.536617560627569, -0.885980601116327 ] ] ] } },
|
||||||
|
{ "type": "Feature", "properties": { "field": "3030202", "sub_field": "3030202" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.536345356716318, -0.885056442758892 ], [ 34.536370963120973, -0.884812101190816 ], [ 34.536424225168993, -0.884585321305103 ], [ 34.53641438033344, -0.884384900190548 ], [ 34.536414401444603, -0.884140394818468 ], [ 34.536267654445957, -0.883986540005361 ], [ 34.535954102702647, -0.883998986289156 ], [ 34.535699982673968, -0.883887395824221 ], [ 34.535475777609463, -0.883792906514868 ], [ 34.535044948078713, -0.883755339899821 ], [ 34.535006117798282, -0.883905987774327 ], [ 34.53488547621243, -0.883984399039325 ], [ 34.534855921453712, -0.884094575170945 ], [ 34.53484659129419, -0.884190414288755 ], [ 34.534885858612853, -0.884302470662388 ], [ 34.534978830898751, -0.884382626034699 ], [ 34.535043450521151, -0.884552063851802 ], [ 34.535179400535327, -0.884620319207911 ], [ 34.535257561345837, -0.884714133195304 ], [ 34.535355596687857, -0.884865678043501 ], [ 34.5354175450749, -0.885070972848452 ], [ 34.535458935179427, -0.88520562382038 ], [ 34.535518677575318, -0.88539725710442 ], [ 34.535552638809158, -0.885500888478197 ], [ 34.535564622982903, -0.885630487729073 ], [ 34.535602289105107, -0.885820516193421 ], [ 34.535861458341166, -0.885794155871595 ], [ 34.536233165786562, -0.885723627320019 ], [ 34.536428704149003, -0.885644218410799 ], [ 34.536386076945433, -0.885448258648769 ], [ 34.536352517797432, -0.885298119640413 ], [ 34.536345356716318, -0.885056442758892 ] ] ] } },
|
||||||
|
{ "type": "Feature", "properties": { "field": "3030502", "sub_field": "3030502" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.525707606997507, -0.886991467332092 ], [ 34.525610125112671, -0.886829260252008 ], [ 34.525445042461641, -0.886457892993553 ], [ 34.525347202636802, -0.886253132112314 ], [ 34.525252011039221, -0.886003541106689 ], [ 34.525165732343233, -0.885761855753994 ], [ 34.525055693746317, -0.885434280608493 ], [ 34.52492157350774, -0.885029200262 ], [ 34.524836705029713, -0.884786490932541 ], [ 34.524742976065482, -0.884531649465352 ], [ 34.524680950467918, -0.884457523618707 ], [ 34.524621804405079, -0.884527258706587 ], [ 34.524513330332127, -0.884708514635391 ], [ 34.524442213898517, -0.884841429541409 ], [ 34.524364147489443, -0.885019733937742 ], [ 34.524241771038533, -0.885243942199991 ], [ 34.524165515034603, -0.885410418433398 ], [ 34.524134674448348, -0.885521917422699 ], [ 34.524054328404567, -0.885655012431237 ], [ 34.523978448008407, -0.88581131290611 ], [ 34.523959956609247, -0.885944745592198 ], [ 34.523844080701679, -0.886116800209075 ], [ 34.523745869004053, -0.886291003377689 ], [ 34.523720839886892, -0.88636705556442 ], [ 34.523597983215673, -0.886631667491453 ], [ 34.523785933796631, -0.886817076887192 ], [ 34.523974480606647, -0.886969895389799 ], [ 34.524135347810237, -0.887091232209902 ], [ 34.524301223016707, -0.887184760328571 ], [ 34.524569373989308, -0.887266040277715 ], [ 34.524734443423391, -0.887326118275844 ], [ 34.524978043504518, -0.887433368749342 ], [ 34.525186501308717, -0.887621198431213 ], [ 34.525383923620737, -0.887736653637014 ], [ 34.525463956355019, -0.887739069129746 ], [ 34.525585001030159, -0.887342279295034 ], [ 34.525707606997507, -0.886991467332092 ] ] ] } },
|
||||||
|
{ "type": "Feature", "properties": { "field": "3030605", "sub_field": "3030605" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.522874102946957, -0.888315975496343 ], [ 34.522795910708801, -0.888280227364099 ], [ 34.522664192406737, -0.888228614857543 ], [ 34.52251537879804, -0.888212107939554 ], [ 34.52236569300814, -0.888211963714187 ], [ 34.522187892143798, -0.888214279389358 ], [ 34.522011575231822, -0.888213832248302 ], [ 34.521861713441247, -0.888200777368131 ], [ 34.521689074977623, -0.888189130895645 ], [ 34.521403498972987, -0.888176826081174 ], [ 34.521159973546183, -0.888168524096773 ], [ 34.520871208675452, -0.888166420564283 ], [ 34.520744149676368, -0.888160744826702 ], [ 34.520521910626833, -0.888157081859761 ], [ 34.52031635176435, -0.888132626512105 ], [ 34.520041016057739, -0.888188025581604 ], [ 34.519904181906149, -0.888304642813209 ], [ 34.51988696851987, -0.888528273148105 ], [ 34.519815927743572, -0.888745355502783 ], [ 34.51982493471882, -0.888854266760543 ], [ 34.519840225186151, -0.889008453964452 ], [ 34.519789628261819, -0.889087598043702 ], [ 34.51969278810283, -0.889187370548036 ], [ 34.519742190755053, -0.88926167124459 ], [ 34.519800560935309, -0.889357217654385 ], [ 34.519844742943818, -0.88944436830991 ], [ 34.519869481823463, -0.889533375443232 ], [ 34.519857607194361, -0.889609971885344 ], [ 34.519958108788792, -0.889661990250945 ], [ 34.520057549069563, -0.889665813339229 ], [ 34.52014253894032, -0.889669714784415 ], [ 34.520239596391178, -0.889691130894382 ], [ 34.520339585136639, -0.889702857684944 ], [ 34.520569616036553, -0.889736351497297 ], [ 34.52068459337314, -0.88972996709626 ], [ 34.520773877314042, -0.889731429260138 ], [ 34.520852053728682, -0.889722536367833 ], [ 34.520915795657487, -0.88969168664084 ], [ 34.520949721514782, -0.889664009346066 ], [ 34.52100077567534, -0.889648952581511 ], [ 34.521093097761742, -0.889636210678628 ], [ 34.521161920192867, -0.889615957377862 ], [ 34.52124581502823, -0.889593197135363 ], [ 34.521357873144893, -0.889572849197453 ], [ 34.52144511658237, -0.889553886881358 ], [ 34.521558250012632, -0.889511293538763 ], [ 34.521672169772017, -0.889480663908299 ], [ 34.521768597080758, -0.88944470170459 ], [ 34.521854817617893, -0.889418578801708 ], [ 34.521991218544557, -0.889403195806632 ], [ 34.522080744002189, -0.889388982297286 ], [ 34.522169001369981, -0.889367250298639 ], [ 34.522269382195688, -0.889341770558027 ], [ 34.522359531145398, -0.889287690621904 ], [ 34.522463620756326, -0.889220882908416 ], [ 34.522532975690638, -0.889146470350315 ], [ 34.522616388484472, -0.889025797889715 ], [ 34.522681732688937, -0.888895383681052 ], [ 34.522749308977929, -0.8887777296674 ], [ 34.52278214580604, -0.888681187911944 ], [ 34.522826026183708, -0.888593592373105 ], [ 34.522864720039351, -0.888523666736225 ], [ 34.522909410173973, -0.888458211188169 ], [ 34.522955695927237, -0.888384491173686 ], [ 34.522874102946957, -0.888315975496343 ] ] ] } },
|
||||||
|
{ "type": "Feature", "properties": { "field": "3030905", "sub_field": "3030905" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.536923281478181, -0.894146202114993 ], [ 34.536608400220167, -0.894133713986721 ], [ 34.536410864420098, -0.894083545659719 ], [ 34.536120657350253, -0.894031511780457 ], [ 34.535805396911272, -0.893899069933241 ], [ 34.535548347706467, -0.893819615175383 ], [ 34.535323285481972, -0.89373796702868 ], [ 34.535011031387931, -0.893595121616291 ], [ 34.534726850235117, -0.893454813051842 ], [ 34.534459219574188, -0.893280322839782 ], [ 34.534245135668101, -0.893181586414943 ], [ 34.534103042690823, -0.893057526162428 ], [ 34.533901726232919, -0.892923282571821 ], [ 34.533752486940287, -0.892722847490753 ], [ 34.533571156432821, -0.892623375767475 ], [ 34.533497012027667, -0.892680432744437 ], [ 34.533435990534947, -0.892793935584303 ], [ 34.533444005987491, -0.892900968709259 ], [ 34.533531022313518, -0.893033021247117 ], [ 34.533840890368552, -0.893307599450846 ], [ 34.534280802146398, -0.893574768537199 ], [ 34.534614811059157, -0.893845786849296 ], [ 34.534978080355167, -0.894041229641924 ], [ 34.535300088890402, -0.894173391620305 ], [ 34.535675317554883, -0.894317950898089 ], [ 34.536082032430379, -0.894487067647732 ], [ 34.536367815714719, -0.894606037214495 ], [ 34.536532022279623, -0.89467502664043 ], [ 34.536793311949957, -0.894653378861545 ], [ 34.536941630802893, -0.894639196728228 ], [ 34.537102727978237, -0.894562599232535 ], [ 34.537277915000843, -0.89447152297273 ], [ 34.537413898506671, -0.89439125258764 ], [ 34.537497228668279, -0.89433431923696 ], [ 34.537529883356392, -0.894254857154114 ], [ 34.537422227043052, -0.894192121536371 ], [ 34.537276161920829, -0.894152569891916 ], [ 34.536923281478181, -0.894146202114993 ] ] ] } },
|
||||||
|
{ "type": "Feature", "properties": { "field": "3031003", "sub_field": "3031003" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.539047435160789, -0.889790961195856 ], [ 34.538943808892029, -0.889661604537627 ], [ 34.538849155459253, -0.889519078021152 ], [ 34.538733872433347, -0.889348130237497 ], [ 34.538659454025691, -0.889146821925549 ], [ 34.538593263126771, -0.888969964658338 ], [ 34.538582097771808, -0.888829343287316 ], [ 34.538591128714693, -0.88867872972944 ], [ 34.538605779329878, -0.888454387778357 ], [ 34.538622510480486, -0.88834826533628 ], [ 34.538630297280363, -0.888225198345054 ], [ 34.538334118841959, -0.888297514931604 ], [ 34.538217681577052, -0.888330809988812 ], [ 34.53809849673727, -0.888367443899521 ], [ 34.538041134895778, -0.888378242042615 ], [ 34.537806300990617, -0.888433143491951 ], [ 34.537622249701002, -0.888477567539044 ], [ 34.537423718930199, -0.88852881019101 ], [ 34.53728988993138, -0.888556329657343 ], [ 34.537145620573803, -0.888609480362287 ], [ 34.537116967622268, -0.888676358336934 ], [ 34.537088232380981, -0.888773057411767 ], [ 34.537040612961832, -0.888919097034318 ], [ 34.536994936904946, -0.889027591289536 ], [ 34.53693587511016, -0.88914216022636 ], [ 34.536964690832093, -0.889187163515724 ], [ 34.537079688030737, -0.889404615603874 ], [ 34.53721009297324, -0.889615789452438 ], [ 34.537291277926741, -0.889745795913354 ], [ 34.537389097949358, -0.889843660259736 ], [ 34.537500567274272, -0.88993765003916 ], [ 34.537611347285207, -0.890022312244365 ], [ 34.537727389559947, -0.890090891407343 ], [ 34.537854814629881, -0.890173911942978 ], [ 34.537932537437207, -0.890229666660998 ], [ 34.538031614071492, -0.890306855257499 ], [ 34.538138828089231, -0.890340346996286 ], [ 34.538268163019438, -0.890311016107943 ], [ 34.538390349558341, -0.890252041686586 ], [ 34.538488331714852, -0.890195645205552 ], [ 34.538667101707659, -0.890121219569716 ], [ 34.538863894406639, -0.890031146312384 ], [ 34.539133920710732, -0.889902360254434 ], [ 34.539047435160789, -0.889790961195856 ] ] ] } },
|
||||||
|
{ "type": "Feature", "properties": { "field": "3001600", "sub_field": "3001600" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.539821299751523, -0.889641952738347 ], [ 34.539729077937857, -0.88966579319306 ], [ 34.539626052105667, -0.889694956980739 ], [ 34.5392374261382, -0.889891550228907 ], [ 34.538823176567398, -0.890080310450118 ], [ 34.538538340154759, -0.890207859850543 ], [ 34.538622292481428, -0.890454348727002 ], [ 34.538677883658593, -0.890625819171358 ], [ 34.538708413665347, -0.890772091959701 ], [ 34.538731650348247, -0.890863029691557 ], [ 34.539234269759348, -0.890981927031959 ], [ 34.539886403775803, -0.891121270339552 ], [ 34.540046136582433, -0.891115229777098 ], [ 34.540053072382833, -0.891035905168066 ], [ 34.540036746445217, -0.890621346860179 ], [ 34.54000159507779, -0.889673985433273 ], [ 34.539926735547333, -0.889656373268251 ], [ 34.539821299751523, -0.889641952738347 ] ] ] } },
|
||||||
|
{ "type": "Feature", "properties": { "field": "3031602", "sub_field": "3031602" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.52264380005407, -0.892192691676663 ], [ 34.52252223114413, -0.892199525843174 ], [ 34.522337724169013, -0.892228657104294 ], [ 34.522186736916112, -0.89224394797691 ], [ 34.522051317788218, -0.892290483855329 ], [ 34.521869266670002, -0.892325557398651 ], [ 34.521698349686623, -0.892336088376079 ], [ 34.521533397689069, -0.892371912453417 ], [ 34.521522618307998, -0.89244064347482 ], [ 34.521600595566937, -0.892567354719302 ], [ 34.521755880250488, -0.892754907014837 ], [ 34.521968505951911, -0.892931944500411 ], [ 34.522389625558262, -0.893257272238818 ], [ 34.522715677058088, -0.893528375268688 ], [ 34.522725773336028, -0.893629468529925 ], [ 34.522822436473902, -0.893657276583365 ], [ 34.523108699580057, -0.893599385427077 ], [ 34.523251279552127, -0.893466138076297 ], [ 34.523461842603652, -0.89338014291256 ], [ 34.523434205224937, -0.893316528416234 ], [ 34.52331254238274, -0.893090991508509 ], [ 34.523263769037079, -0.892989406890379 ], [ 34.523183850635021, -0.892840383545834 ], [ 34.523079262051127, -0.892627966554487 ], [ 34.52295241750776, -0.892439214629478 ], [ 34.522879867137327, -0.892321540503091 ], [ 34.522817145477283, -0.892253205818276 ], [ 34.522811629431473, -0.89219021205126 ], [ 34.52264380005407, -0.892192691676663 ] ] ] } },
|
||||||
|
{ "type": "Feature", "properties": { "field": "4040300", "sub_field": "4040300" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.546429127399051, -0.893759990462458 ], [ 34.546584352414037, -0.893626599046613 ], [ 34.54672445710127, -0.89349880637004 ], [ 34.546862449458729, -0.893347858410663 ], [ 34.546884134977887, -0.893304562540744 ], [ 34.54685838701257, -0.893138383835451 ], [ 34.546773062417699, -0.892894519248026 ], [ 34.546651338540762, -0.892513676831905 ], [ 34.546530379815728, -0.89217895514234 ], [ 34.546446986480618, -0.891901167149516 ], [ 34.546360910342273, -0.891617214064163 ], [ 34.546250136147592, -0.891469335974731 ], [ 34.546151187748158, -0.891370062996309 ], [ 34.545959855817983, -0.891283288689934 ], [ 34.545785720656809, -0.89122095971923 ], [ 34.545631634160607, -0.891158814249701 ], [ 34.545531058265453, -0.891151311379413 ], [ 34.545506553223319, -0.891211873910421 ], [ 34.545475772044448, -0.891362437260686 ], [ 34.545486090861637, -0.891597695062014 ], [ 34.545494892835357, -0.89180099461259 ], [ 34.545528399433522, -0.892090640860727 ], [ 34.545546757435297, -0.892269860140339 ], [ 34.545546474739353, -0.892562863695235 ], [ 34.545558604446313, -0.892741345249357 ], [ 34.545564260591213, -0.893036774591205 ], [ 34.545560860812103, -0.89320013536648 ], [ 34.54556837222426, -0.89342760789714 ], [ 34.545593527355827, -0.893573069075591 ], [ 34.545623604772622, -0.893743026756136 ], [ 34.545668325594441, -0.893883700372863 ], [ 34.545747797671041, -0.89397728374952 ], [ 34.545845545880113, -0.894041840228317 ], [ 34.545993147009277, -0.894070817606175 ], [ 34.546123079186678, -0.893983580002884 ], [ 34.54628653771627, -0.893861660445379 ], [ 34.546429127399051, -0.893759990462458 ] ] ] } },
|
||||||
|
{ "type": "Feature", "properties": { "field": "4040203", "sub_field": "4040203" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.545346660131813, -0.895364424242096 ], [ 34.545216925951422, -0.895413481745366 ], [ 34.545064950318377, -0.895482227557478 ], [ 34.54505531476628, -0.895488766068318 ], [ 34.545044167040928, -0.895495937161893 ], [ 34.545025560463017, -0.895504437561114 ], [ 34.544990904715597, -0.895519508157209 ], [ 34.544972854487582, -0.89552852950907 ], [ 34.544949008560558, -0.89553674736892 ], [ 34.544931778011751, -0.895540192649941 ], [ 34.544914826282287, -0.895546286440193 ], [ 34.544898674304221, -0.895551848161685 ], [ 34.544886774797703, -0.89555740189518 ], [ 34.544874151970753, -0.895563976275653 ], [ 34.544851484038581, -0.895570528705068 ], [ 34.544786341800361, -0.895588687299509 ], [ 34.544733874493723, -0.895592450754245 ], [ 34.544737540203514, -0.895599983521354 ], [ 34.544797402772218, -0.895705960329503 ], [ 34.54490284199963, -0.895890300424285 ], [ 34.544981045562871, -0.896046386814128 ], [ 34.545049112526563, -0.896224202624854 ], [ 34.545120900636533, -0.896370185665496 ], [ 34.545222429679029, -0.896554645695028 ], [ 34.545294430367477, -0.896720669935476 ], [ 34.545338154698243, -0.896759781423663 ], [ 34.545403651108352, -0.896726867970137 ], [ 34.545451598093443, -0.896644560726363 ], [ 34.545497000116292, -0.896599338940271 ], [ 34.545571117214131, -0.896588987329083 ], [ 34.54561027914891, -0.89653434749713 ], [ 34.545680787862558, -0.89644379783768 ], [ 34.54571385250884, -0.896421233219934 ], [ 34.545738044025427, -0.896369848515056 ], [ 34.545773896187953, -0.896306391771816 ], [ 34.545783365373481, -0.896245134777539 ], [ 34.545821510764348, -0.896155749594179 ], [ 34.545864297569288, -0.896144772409539 ], [ 34.545886787593147, -0.896123919828061 ], [ 34.545926347832378, -0.896079637751177 ], [ 34.545901162250871, -0.895863590606706 ], [ 34.545915713274503, -0.895748921634547 ], [ 34.545928036727283, -0.895689301738479 ], [ 34.545918097188007, -0.895632481191181 ], [ 34.545936804252953, -0.895617807290127 ], [ 34.545941468594407, -0.895576873353398 ], [ 34.545943284590031, -0.895513872261604 ], [ 34.545911246428773, -0.89541186262273 ], [ 34.545961096442362, -0.895345573964001 ], [ 34.545971964271779, -0.895290608221904 ], [ 34.545960857703513, -0.895239333289659 ], [ 34.54593251020313, -0.895203255895403 ], [ 34.545884786805573, -0.895192496927578 ], [ 34.54573477840777, -0.895222888510933 ], [ 34.545649571852501, -0.895270186691174 ], [ 34.545533824526139, -0.89529856670143 ], [ 34.545407208728989, -0.895330708777093 ], [ 34.545346660131813, -0.895364424242096 ] ] ] } },
|
||||||
|
{ "type": "Feature", "properties": { "field": "4040302", "sub_field": "4040302" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.546804849296393, -0.893428948751392 ], [ 34.546786933037367, -0.893443962543283 ], [ 34.546731151683048, -0.89350183032134 ], [ 34.546644289739682, -0.893574414077814 ], [ 34.546519610446992, -0.893696695419895 ], [ 34.54637173641509, -0.893810055904819 ], [ 34.54625544230317, -0.893896105135394 ], [ 34.546140678544567, -0.893996525329763 ], [ 34.546207128973528, -0.893997330490784 ], [ 34.546346532351052, -0.893993329324257 ], [ 34.546396225076087, -0.893938669470011 ], [ 34.546461425077368, -0.894040136056087 ], [ 34.546387649205847, -0.894095121046012 ], [ 34.546438361065363, -0.89421894324125 ], [ 34.546377667091043, -0.894291983956646 ], [ 34.546405689846473, -0.894376225038975 ], [ 34.546514424027038, -0.894481280091841 ], [ 34.5466645905353, -0.894410588897931 ], [ 34.546753751918018, -0.894350356647595 ], [ 34.546837980188521, -0.894282297890344 ], [ 34.546913969422043, -0.89422710139819 ], [ 34.546995465716677, -0.894161538109946 ], [ 34.547045057420199, -0.894094540937606 ], [ 34.54721153257784, -0.893994757796281 ], [ 34.547141174265377, -0.893882227120138 ], [ 34.547060826508812, -0.893752243467843 ], [ 34.54698496639984, -0.893611421278898 ], [ 34.546866219569793, -0.893485134092283 ], [ 34.546804849296393, -0.893428948751392 ] ] ] } },
|
||||||
|
{ "type": "Feature", "properties": { "field": "4040504", "sub_field": "4040504" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.543585140800268, -0.898459372763502 ], [ 34.543491021626117, -0.898609224816674 ], [ 34.543423997037678, -0.898709637295602 ], [ 34.543351026114152, -0.898818816187959 ], [ 34.543304178473527, -0.898957468261547 ], [ 34.543183172717242, -0.899063571584511 ], [ 34.543063141614198, -0.899169209216355 ], [ 34.542909123735527, -0.899250116580847 ], [ 34.542713526521041, -0.89935772498592 ], [ 34.542590097469343, -0.899409877468063 ], [ 34.542401332323607, -0.899486929038952 ], [ 34.542227986485521, -0.899571155907203 ], [ 34.542156387889172, -0.899621687177244 ], [ 34.542057141435237, -0.899680600490134 ], [ 34.542005578565799, -0.899723960071718 ], [ 34.541942884520147, -0.899773830436902 ], [ 34.541920542353573, -0.899816565933936 ], [ 34.541940502411528, -0.899855029958428 ], [ 34.541980901171392, -0.899873329977297 ], [ 34.542057843184843, -0.899875821021125 ], [ 34.542111469652461, -0.899865920502288 ], [ 34.542183918710137, -0.899897125903452 ], [ 34.542266843750468, -0.899877140865403 ], [ 34.542336898114563, -0.899878194448408 ], [ 34.54248818579272, -0.899815321564963 ], [ 34.542623564144471, -0.899765777953643 ], [ 34.542736250379548, -0.899733714914361 ], [ 34.542922896257508, -0.899680188426357 ], [ 34.543076230726427, -0.899615556346586 ], [ 34.543250339280583, -0.899554671588568 ], [ 34.543371013268818, -0.899514510876655 ], [ 34.543575480089501, -0.899418874794969 ], [ 34.543816865129777, -0.899322678083571 ], [ 34.543778039504552, -0.899047849675489 ], [ 34.543762000626067, -0.898820764185567 ], [ 34.543728853120058, -0.898665963641965 ], [ 34.543741319019887, -0.898477264082946 ], [ 34.543770717974539, -0.898302527927467 ], [ 34.543734727415647, -0.898290796783235 ], [ 34.543699928704072, -0.898300402465279 ], [ 34.543663400085038, -0.898325759264189 ], [ 34.543585140800268, -0.898459372763502 ] ] ] } },
|
||||||
|
{ "type": "Feature", "properties": { "field": "4040901", "sub_field": "4040901" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.539332985859183, -0.901023969567886 ], [ 34.539609538280381, -0.901506996459428 ], [ 34.53981881389722, -0.901876323933854 ], [ 34.540098788090212, -0.901812261715397 ], [ 34.540489006604012, -0.901812059602001 ], [ 34.54113166200235, -0.901692736090445 ], [ 34.541215329932669, -0.90111737797991 ], [ 34.541877821256513, -0.900792751334525 ], [ 34.542282470161553, -0.900525452470653 ], [ 34.542900409498053, -0.900201520535209 ], [ 34.543132224816418, -0.900005589256897 ], [ 34.543179463799881, -0.899737710811518 ], [ 34.542959236061243, -0.899729366062433 ], [ 34.542253515732099, -0.899952684536085 ], [ 34.542026100232597, -0.899966659530357 ], [ 34.54170366630175, -0.899872649817949 ], [ 34.541468509567252, -0.899859501189631 ], [ 34.541106763935801, -0.900003874359908 ], [ 34.54062248421495, -0.900238909823403 ], [ 34.540114766710587, -0.900478749476243 ], [ 34.539593388400171, -0.900705227083569 ], [ 34.53932852548693, -0.900872504706341 ], [ 34.539332985859183, -0.901023969567886 ] ] ] } },
|
||||||
|
{ "type": "Feature", "properties": { "field": "4041104", "sub_field": "4041104" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.545473670123457, -0.900313944199276 ], [ 34.545367756850183, -0.900545028112076 ], [ 34.545228486621887, -0.900736771658958 ], [ 34.545126719726802, -0.900771883829354 ], [ 34.544941149717367, -0.90084249025152 ], [ 34.544796517685263, -0.900922986360997 ], [ 34.544694736692861, -0.900993518033882 ], [ 34.544612517613267, -0.901107823041161 ], [ 34.544456892305533, -0.901320330554823 ], [ 34.5443001268765, -0.901533743240174 ], [ 34.544215677145473, -0.901702095791291 ], [ 34.544302078806332, -0.901735376769232 ], [ 34.544455237214748, -0.901694745257437 ], [ 34.544648770028218, -0.901644037428865 ], [ 34.544799865908523, -0.901623757330334 ], [ 34.545094398720671, -0.901590317764223 ], [ 34.545413297729972, -0.901558058254986 ], [ 34.545731976796837, -0.90153462320938 ], [ 34.545895504254517, -0.901522461638231 ], [ 34.546197264853333, -0.90148730779486 ], [ 34.546352226359197, -0.901470569268192 ], [ 34.546514811495811, -0.901476461818015 ], [ 34.546678895216672, -0.901442393862512 ], [ 34.546867208501588, -0.9014021324516 ], [ 34.547002369278978, -0.90137473743038 ], [ 34.54714223380612, -0.901355336115848 ], [ 34.547293734065619, -0.90131935982148 ], [ 34.54740128131013, -0.901282357901993 ], [ 34.547512697367587, -0.901245358832563 ], [ 34.547562926298419, -0.901189117075615 ], [ 34.547461611297969, -0.900959333133917 ], [ 34.547393474211638, -0.90069608878081 ], [ 34.547348169851837, -0.900624808305746 ], [ 34.547133172935943, -0.900692958627307 ], [ 34.547051058358051, -0.900700448934913 ], [ 34.546967038271902, -0.900685495231157 ], [ 34.546907753528068, -0.900646226826647 ], [ 34.546854326760403, -0.900574362270952 ], [ 34.546823812762973, -0.900484138130976 ], [ 34.546780134853719, -0.900268505332224 ], [ 34.546745727241813, -0.900246746229611 ], [ 34.546652060952951, -0.900248069153662 ], [ 34.546490313043577, -0.900277950556776 ], [ 34.546412197954012, -0.900243553704886 ], [ 34.546386583177792, -0.900179294730257 ], [ 34.54627543049785, -0.900211402935995 ], [ 34.546075200621807, -0.900231408531772 ], [ 34.545764202540958, -0.90025874936184 ], [ 34.545638589803552, -0.900234400334413 ], [ 34.545473670123457, -0.900313944199276 ] ] ] } }
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
@ -190,10 +190,10 @@
|
||||||
"\n",
|
"\n",
|
||||||
" function evaluatePixel(sample) {\n",
|
" function evaluatePixel(sample) {\n",
|
||||||
" // Scale the bands\n",
|
" // Scale the bands\n",
|
||||||
" var scaledBlue = [2.5 * sample.Blue / 10000];\n",
|
" var scaledBlue = [2.5 * sample.blue / 10000];\n",
|
||||||
" var scaledGreen = [2.5 * sample.Green / 10000];\n",
|
" var scaledGreen = [2.5 * sample.green / 10000];\n",
|
||||||
" var scaledRed = [2.5 * sample.Red / 10000];\n",
|
" var scaledRed = [2.5 * sample.red / 10000];\n",
|
||||||
" var scaledNIR = [2.5 * sample.NIR / 10000];\n",
|
" var scaledNIR = [2.5 * sample.nir / 10000];\n",
|
||||||
" \n",
|
" \n",
|
||||||
" // Calculate the CI (Chlorophyll Index) using the scaled values\n",
|
" // Calculate the CI (Chlorophyll Index) using the scaled values\n",
|
||||||
" // var CI = [scaledNIR / scaledGreen - 1] ;\n",
|
" // var CI = [scaledNIR / scaledGreen - 1] ;\n",
|
||||||
|
|
@ -274,13 +274,13 @@
|
||||||
"text": [
|
"text": [
|
||||||
"Monthly time windows:\n",
|
"Monthly time windows:\n",
|
||||||
"\n",
|
"\n",
|
||||||
"2024-08-14\n",
|
|
||||||
"2024-08-15\n",
|
|
||||||
"2024-08-16\n",
|
"2024-08-16\n",
|
||||||
"2024-08-17\n",
|
"2024-08-17\n",
|
||||||
"2024-08-18\n",
|
"2024-08-18\n",
|
||||||
"2024-08-19\n",
|
"2024-08-19\n",
|
||||||
"2024-08-20\n"
|
"2024-08-20\n",
|
||||||
|
"2024-08-21\n",
|
||||||
|
"2024-08-22\n"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -503,21 +503,13 @@
|
||||||
"id": "41b7369c-f768-44ba-983e-eb8eae4f3afd",
|
"id": "41b7369c-f768-44ba-983e-eb8eae4f3afd",
|
||||||
"metadata": {},
|
"metadata": {},
|
||||||
"outputs": [
|
"outputs": [
|
||||||
{
|
|
||||||
"name": "stdout",
|
|
||||||
"output_type": "stream",
|
|
||||||
"text": [
|
|
||||||
" Image downloaded for 2024-08-14 and bbox 34.82970726773786,0.502167631314441,34.830536536294375,0.503255785720052\n",
|
|
||||||
" Image downloaded for 2024-08-14 and bbox 34.8334617198946,0.49885648209679895,34.83398097497386,0.499660676826314\n"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "stderr",
|
"name": "stderr",
|
||||||
"output_type": "stream",
|
"output_type": "stream",
|
||||||
"text": [
|
"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",
|
"/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",
|
" return BBox._tuple_from_bbox(bbox)\n",
|
||||||
"/var/folders/qt/jcd_lqsd6nq6_5902w6403_h0000gn/T/ipykernel_46134/4136298839.py:67: SHDeprecationWarning: The string representation of `BBox` will change to match its `repr` representation.\n",
|
"/var/folders/qt/jcd_lqsd6nq6_5902w6403_h0000gn/T/ipykernel_49969/170088608.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",
|
" 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",
|
"/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"
|
" return BBox._tuple_from_bbox(bbox)\n"
|
||||||
|
|
@ -527,12 +519,6 @@
|
||||||
"name": "stdout",
|
"name": "stdout",
|
||||||
"output_type": "stream",
|
"output_type": "stream",
|
||||||
"text": [
|
"text": [
|
||||||
" Image downloaded for 2024-08-14 and bbox 34.83398097497386,0.498759712488145,34.83427174382217,0.4993881837791638\n",
|
|
||||||
" Image downloaded for 2024-08-14 and bbox 34.83990692108071,0.490469085371239,34.84039153582786,0.49136130359895\n",
|
|
||||||
" Image downloaded for 2024-08-15 and bbox 34.82970726773786,0.502167631314441,34.830536536294375,0.503255785720052\n",
|
|
||||||
" Image downloaded for 2024-08-15 and bbox 34.8334617198946,0.49885648209679895,34.83398097497386,0.499660676826314\n",
|
|
||||||
" Image downloaded for 2024-08-15 and bbox 34.83398097497386,0.498759712488145,34.83427174382217,0.4993881837791638\n",
|
|
||||||
" Image downloaded for 2024-08-15 and bbox 34.83990692108071,0.490469085371239,34.84039153582786,0.49136130359895\n",
|
|
||||||
" Image downloaded for 2024-08-16 and bbox 34.82970726773786,0.502167631314441,34.830536536294375,0.503255785720052\n",
|
" Image downloaded for 2024-08-16 and bbox 34.82970726773786,0.502167631314441,34.830536536294375,0.503255785720052\n",
|
||||||
" Image downloaded for 2024-08-16 and bbox 34.8334617198946,0.49885648209679895,34.83398097497386,0.499660676826314\n",
|
" Image downloaded for 2024-08-16 and bbox 34.8334617198946,0.49885648209679895,34.83398097497386,0.499660676826314\n",
|
||||||
" Image downloaded for 2024-08-16 and bbox 34.83398097497386,0.498759712488145,34.83427174382217,0.4993881837791638\n",
|
" Image downloaded for 2024-08-16 and bbox 34.83398097497386,0.498759712488145,34.83427174382217,0.4993881837791638\n",
|
||||||
|
|
@ -552,7 +538,15 @@
|
||||||
" Image downloaded for 2024-08-20 and bbox 34.82970726773786,0.502167631314441,34.830536536294375,0.503255785720052\n",
|
" Image downloaded for 2024-08-20 and bbox 34.82970726773786,0.502167631314441,34.830536536294375,0.503255785720052\n",
|
||||||
" Image downloaded for 2024-08-20 and bbox 34.8334617198946,0.49885648209679895,34.83398097497386,0.499660676826314\n",
|
" Image downloaded for 2024-08-20 and bbox 34.8334617198946,0.49885648209679895,34.83398097497386,0.499660676826314\n",
|
||||||
" Image downloaded for 2024-08-20 and bbox 34.83398097497386,0.498759712488145,34.83427174382217,0.4993881837791638\n",
|
" Image downloaded for 2024-08-20 and bbox 34.83398097497386,0.498759712488145,34.83427174382217,0.4993881837791638\n",
|
||||||
" Image downloaded for 2024-08-20 and bbox 34.83990692108071,0.490469085371239,34.84039153582786,0.49136130359895\n"
|
" Image downloaded for 2024-08-20 and bbox 34.83990692108071,0.490469085371239,34.84039153582786,0.49136130359895\n",
|
||||||
|
" Image downloaded for 2024-08-21 and bbox 34.82970726773786,0.502167631314441,34.830536536294375,0.503255785720052\n",
|
||||||
|
" Image downloaded for 2024-08-21 and bbox 34.8334617198946,0.49885648209679895,34.83398097497386,0.499660676826314\n",
|
||||||
|
" Image downloaded for 2024-08-21 and bbox 34.83398097497386,0.498759712488145,34.83427174382217,0.4993881837791638\n",
|
||||||
|
" Image downloaded for 2024-08-21 and bbox 34.83990692108071,0.490469085371239,34.84039153582786,0.49136130359895\n",
|
||||||
|
" Image downloaded for 2024-08-22 and bbox 34.82970726773786,0.502167631314441,34.830536536294375,0.503255785720052\n",
|
||||||
|
" Image downloaded for 2024-08-22 and bbox 34.8334617198946,0.49885648209679895,34.83398097497386,0.499660676826314\n",
|
||||||
|
" Image downloaded for 2024-08-22 and bbox 34.83398097497386,0.498759712488145,34.83427174382217,0.4993881837791638\n",
|
||||||
|
" Image downloaded for 2024-08-22 and bbox 34.83990692108071,0.490469085371239,34.84039153582786,0.49136130359895\n"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -641,146 +635,566 @@
|
||||||
"name": "stderr",
|
"name": "stderr",
|
||||||
"output_type": "stream",
|
"output_type": "stream",
|
||||||
"text": [
|
"text": [
|
||||||
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-14/ef6d31c5422078af6cb7cd4f081fba55/response.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/Butali/single_images/2024-08-16/36bd12bbd011c2e5035a467fa4310f56/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
"Warning 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/Butali/single_images/2024-08-14/86f5adebbde3cc84ebd1a1c2713eb1b4/response.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/Butali/single_images/2024-08-16/a4c9cb5abf29ec3892eb8050f4c01e61/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
"Warning 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/Butali/single_images/2024-08-14/30ba735efce3cdec1ff0d0aaa5157ee6/response.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/Butali/single_images/2024-08-16/0a06635da5cf935382069d0a0b5bdc71/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
"Warning 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/Butali/single_images/2024-08-14/ed08da38bdd2dce45b239ebd36aaf6cb/response.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/Butali/single_images/2024-08-16/808fd0dfd243ea6e7411d35b7733e19e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
"Warning 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/Butali/single_images/2024-08-14/ef6d31c5422078af6cb7cd4f081fba55/response.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/Butali/single_images/2024-08-16/f49425840160bc879eb0a7539cb90048/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
"Warning 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/Butali/single_images/2024-08-14/86f5adebbde3cc84ebd1a1c2713eb1b4/response.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/Butali/single_images/2024-08-16/070484edb493c7f6c225923b12b215d3/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
"Warning 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/Butali/single_images/2024-08-14/30ba735efce3cdec1ff0d0aaa5157ee6/response.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/Butali/single_images/2024-08-16/03b0c33d61f005a03a0fe85b3228dca0/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
"Warning 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/Butali/single_images/2024-08-14/ed08da38bdd2dce45b239ebd36aaf6cb/response.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/Butali/single_images/2024-08-16/a3bddbe871c58e722bd1a6ae019a4a54/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
"Warning 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/Butali/single_images/2024-08-14/ef6d31c5422078af6cb7cd4f081fba55/response.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/Butali/single_images/2024-08-16/ae6ac369948aef2f0edfda6611eb8a17/response.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/Butali/single_images/2024-08-14/86f5adebbde3cc84ebd1a1c2713eb1b4/response.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/Butali/single_images/2024-08-14/30ba735efce3cdec1ff0d0aaa5157ee6/response.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/Butali/single_images/2024-08-14/ed08da38bdd2dce45b239ebd36aaf6cb/response.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/Butali/single_images/2024-08-15/eb155f61d90258554446c4b0e19e3a1d/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
|
||||||
"Warning 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/Butali/single_images/2024-08-15/27a18decf46bc92dab45207d670de64d/response.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/Butali/single_images/2024-08-16/ed7b2541f4c5850b7479d40da058c22f/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
"Warning 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/Butali/single_images/2024-08-15/c68945780987cf316798e3cfba1d8c1c/response.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/Butali/single_images/2024-08-16/38895dbb50ecdced3d21943117a3c599/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
"Warning 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/Butali/single_images/2024-08-15/495c4ff2ba333860fbd7cb2df6ae6337/response.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/Butali/single_images/2024-08-16/e4be5e8d9698089e3a2ce7516d7ac4a1/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
"Warning 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/Butali/single_images/2024-08-15/eb155f61d90258554446c4b0e19e3a1d/response.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/Butali/single_images/2024-08-16/c82c9381c397faa3871269473f4e57ee/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
"Warning 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/Butali/single_images/2024-08-15/27a18decf46bc92dab45207d670de64d/response.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/Butali/single_images/2024-08-16/7b4742c9afde5771bd401c466e23ddd0/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
"Warning 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/Butali/single_images/2024-08-15/c68945780987cf316798e3cfba1d8c1c/response.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/Butali/single_images/2024-08-16/5ccb0298e8351bbc38326ea54090ada0/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
"Warning 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/Butali/single_images/2024-08-15/495c4ff2ba333860fbd7cb2df6ae6337/response.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/Butali/single_images/2024-08-16/22e9b6c33a093754355f51c8d1a0c70e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
"Warning 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/Butali/single_images/2024-08-15/eb155f61d90258554446c4b0e19e3a1d/response.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/Butali/single_images/2024-08-16/a4a4083b042abbff923cd1f3d5fc51b4/response.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/Butali/single_images/2024-08-15/27a18decf46bc92dab45207d670de64d/response.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/Butali/single_images/2024-08-15/c68945780987cf316798e3cfba1d8c1c/response.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/Butali/single_images/2024-08-15/495c4ff2ba333860fbd7cb2df6ae6337/response.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/Butali/single_images/2024-08-16/457e50bbe535548c2365e486ba9c2aa2/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
|
||||||
"Warning 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/Butali/single_images/2024-08-16/c90a5f036c9116f4953608a61e7cc42b/response.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/Butali/single_images/2024-08-16/39541d529cba9d3a6d8d0a5433ec32f1/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
"Warning 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/Butali/single_images/2024-08-16/b9652f82e47a22769af83d591d68eae3/response.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/Butali/single_images/2024-08-16/36bd12bbd011c2e5035a467fa4310f56/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
"Warning 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/Butali/single_images/2024-08-16/7850ac546430c815d19b497da6b6c7ee/response.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/Butali/single_images/2024-08-16/a4c9cb5abf29ec3892eb8050f4c01e61/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
"Warning 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/Butali/single_images/2024-08-16/457e50bbe535548c2365e486ba9c2aa2/response.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/Butali/single_images/2024-08-16/0a06635da5cf935382069d0a0b5bdc71/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
"Warning 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/Butali/single_images/2024-08-16/c90a5f036c9116f4953608a61e7cc42b/response.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/Butali/single_images/2024-08-16/808fd0dfd243ea6e7411d35b7733e19e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
"Warning 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/Butali/single_images/2024-08-16/b9652f82e47a22769af83d591d68eae3/response.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/Butali/single_images/2024-08-16/f49425840160bc879eb0a7539cb90048/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
"Warning 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/Butali/single_images/2024-08-16/7850ac546430c815d19b497da6b6c7ee/response.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/Butali/single_images/2024-08-16/070484edb493c7f6c225923b12b215d3/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
"Warning 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/Butali/single_images/2024-08-16/457e50bbe535548c2365e486ba9c2aa2/response.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/Butali/single_images/2024-08-16/03b0c33d61f005a03a0fe85b3228dca0/response.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/Butali/single_images/2024-08-16/c90a5f036c9116f4953608a61e7cc42b/response.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/Butali/single_images/2024-08-16/b9652f82e47a22769af83d591d68eae3/response.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/Butali/single_images/2024-08-16/7850ac546430c815d19b497da6b6c7ee/response.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/Butali/single_images/2024-08-17/22a882b61a4bc5fa7df1c26c003d0d58/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
|
||||||
"Warning 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/Butali/single_images/2024-08-17/281a6c4e3583b4f96fd46be0af82edbd/response.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/Butali/single_images/2024-08-16/a3bddbe871c58e722bd1a6ae019a4a54/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
"Warning 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/Butali/single_images/2024-08-17/b6506ef411afcd941a0b776573d4f1ca/response.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/Butali/single_images/2024-08-16/ae6ac369948aef2f0edfda6611eb8a17/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
"Warning 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/Butali/single_images/2024-08-17/46922f95c5409b9213eed0d7294e45ea/response.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/Butali/single_images/2024-08-16/ed7b2541f4c5850b7479d40da058c22f/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
"Warning 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/Butali/single_images/2024-08-17/22a882b61a4bc5fa7df1c26c003d0d58/response.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/Butali/single_images/2024-08-16/38895dbb50ecdced3d21943117a3c599/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
"Warning 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/Butali/single_images/2024-08-17/281a6c4e3583b4f96fd46be0af82edbd/response.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/Butali/single_images/2024-08-16/e4be5e8d9698089e3a2ce7516d7ac4a1/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
"Warning 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/Butali/single_images/2024-08-17/b6506ef411afcd941a0b776573d4f1ca/response.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/Butali/single_images/2024-08-16/c82c9381c397faa3871269473f4e57ee/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
"Warning 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/Butali/single_images/2024-08-17/46922f95c5409b9213eed0d7294e45ea/response.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/Butali/single_images/2024-08-16/7b4742c9afde5771bd401c466e23ddd0/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
"Warning 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/Butali/single_images/2024-08-17/22a882b61a4bc5fa7df1c26c003d0d58/response.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/Butali/single_images/2024-08-16/5ccb0298e8351bbc38326ea54090ada0/response.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/Butali/single_images/2024-08-17/281a6c4e3583b4f96fd46be0af82edbd/response.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/Butali/single_images/2024-08-17/b6506ef411afcd941a0b776573d4f1ca/response.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/Butali/single_images/2024-08-17/46922f95c5409b9213eed0d7294e45ea/response.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/Butali/single_images/2024-08-18/97ff9146fcf97134abfb024813c18a46/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
|
||||||
"Warning 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/Butali/single_images/2024-08-18/f6749a66964c04dee41c4332fa1ba226/response.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/Butali/single_images/2024-08-16/22e9b6c33a093754355f51c8d1a0c70e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
"Warning 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/Butali/single_images/2024-08-18/d97d9736fa409aeee3abaf6584e25691/response.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/Butali/single_images/2024-08-16/a4a4083b042abbff923cd1f3d5fc51b4/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
"Warning 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/Butali/single_images/2024-08-18/4c5943399e742c95c2f4b91cf96f2360/response.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/Butali/single_images/2024-08-16/39541d529cba9d3a6d8d0a5433ec32f1/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
"Warning 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/Butali/single_images/2024-08-18/97ff9146fcf97134abfb024813c18a46/response.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/Butali/single_images/2024-08-16/36bd12bbd011c2e5035a467fa4310f56/response.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/Butali/single_images/2024-08-16/a4c9cb5abf29ec3892eb8050f4c01e61/response.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/Butali/single_images/2024-08-16/0a06635da5cf935382069d0a0b5bdc71/response.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/Butali/single_images/2024-08-16/808fd0dfd243ea6e7411d35b7733e19e/response.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/Butali/single_images/2024-08-16/f49425840160bc879eb0a7539cb90048/response.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/Butali/single_images/2024-08-16/070484edb493c7f6c225923b12b215d3/response.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/Butali/single_images/2024-08-16/03b0c33d61f005a03a0fe85b3228dca0/response.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/Butali/single_images/2024-08-16/a3bddbe871c58e722bd1a6ae019a4a54/response.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/Butali/single_images/2024-08-16/ae6ac369948aef2f0edfda6611eb8a17/response.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/Butali/single_images/2024-08-16/ed7b2541f4c5850b7479d40da058c22f/response.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/Butali/single_images/2024-08-16/38895dbb50ecdced3d21943117a3c599/response.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/Butali/single_images/2024-08-16/e4be5e8d9698089e3a2ce7516d7ac4a1/response.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/Butali/single_images/2024-08-16/7b4742c9afde5771bd401c466e23ddd0/response.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/Butali/single_images/2024-08-16/c82c9381c397faa3871269473f4e57ee/response.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/Butali/single_images/2024-08-16/5ccb0298e8351bbc38326ea54090ada0/response.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/Butali/single_images/2024-08-16/22e9b6c33a093754355f51c8d1a0c70e/response.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/Butali/single_images/2024-08-16/a4a4083b042abbff923cd1f3d5fc51b4/response.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/Butali/single_images/2024-08-16/39541d529cba9d3a6d8d0a5433ec32f1/response.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/Butali/single_images/2024-08-17/d36239eb565774be129de7542d60a649/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
"Warning 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/Butali/single_images/2024-08-18/f6749a66964c04dee41c4332fa1ba226/response.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/Butali/single_images/2024-08-17/db9a74aa20be77d9445e1d8adc7bf474/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
"Warning 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/Butali/single_images/2024-08-18/d97d9736fa409aeee3abaf6584e25691/response.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/Butali/single_images/2024-08-17/08739e26f45c405e9fc6b4350faac197/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
"Warning 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/Butali/single_images/2024-08-18/4c5943399e742c95c2f4b91cf96f2360/response.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/Butali/single_images/2024-08-17/737cf17bd4f66a38a24472f0788eb49e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
"Warning 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/Butali/single_images/2024-08-18/97ff9146fcf97134abfb024813c18a46/response.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/Butali/single_images/2024-08-17/520cb5333907fd9f5a71f937ab2b6247/response.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/Butali/single_images/2024-08-18/f6749a66964c04dee41c4332fa1ba226/response.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/Butali/single_images/2024-08-18/d97d9736fa409aeee3abaf6584e25691/response.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/Butali/single_images/2024-08-18/4c5943399e742c95c2f4b91cf96f2360/response.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/Butali/single_images/2024-08-19/1bcc6b42db152e6dc6f7b2363542c017/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
|
||||||
"Warning 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/Butali/single_images/2024-08-19/96359544e98d143c3579d27f525f2c2b/response.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/Butali/single_images/2024-08-17/ccd86520eda5eb2cb7a5406f4b106b25/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
"Warning 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/Butali/single_images/2024-08-19/21adbda11f4f80e341a2b6638bdb7a38/response.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/Butali/single_images/2024-08-17/c4e81e0a0042a027a201065ee68e305c/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
"Warning 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/Butali/single_images/2024-08-19/d260b63a7020a6d388e1745a3c77be00/response.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/Butali/single_images/2024-08-17/ab13067d1a6ce236278e72fad5a2dc9a/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
"Warning 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/Butali/single_images/2024-08-19/1bcc6b42db152e6dc6f7b2363542c017/response.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/Butali/single_images/2024-08-17/868e87d76c8c5a5a11b0d1c340a03f7e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
"Warning 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/Butali/single_images/2024-08-19/96359544e98d143c3579d27f525f2c2b/response.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/Butali/single_images/2024-08-17/b11b351705d1f0cbb41195404e348016/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
"Warning 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/Butali/single_images/2024-08-19/21adbda11f4f80e341a2b6638bdb7a38/response.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/Butali/single_images/2024-08-17/4b6bcc3a88b1b84c61336371bd193956/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
"Warning 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/Butali/single_images/2024-08-19/d260b63a7020a6d388e1745a3c77be00/response.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/Butali/single_images/2024-08-17/62e8d5795b0c1ed0cfd25bc1a417f06b/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
"Warning 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/Butali/single_images/2024-08-19/1bcc6b42db152e6dc6f7b2363542c017/response.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/Butali/single_images/2024-08-17/8685a11838114f255189d2b926f46530/response.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/Butali/single_images/2024-08-19/96359544e98d143c3579d27f525f2c2b/response.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/Butali/single_images/2024-08-19/21adbda11f4f80e341a2b6638bdb7a38/response.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/Butali/single_images/2024-08-19/d260b63a7020a6d388e1745a3c77be00/response.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/Butali/single_images/2024-08-20/d6d7322e5b2e1ee200c1289f7e3ca584/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
|
||||||
"Warning 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/Butali/single_images/2024-08-20/8743609eaa73d8daccf38173f18cab62/response.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/Butali/single_images/2024-08-17/318405945d62078946b9f91b5fc5aea9/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
"Warning 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/Butali/single_images/2024-08-20/51430ceb565cc95c4bf84fd6d0ba17ab/response.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/Butali/single_images/2024-08-17/88ba97af60d21f4461cc85acaff25388/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
"Warning 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/Butali/single_images/2024-08-20/c8f521df119266886b1d57f10ca39666/response.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/Butali/single_images/2024-08-17/bc8cf8201439dc749ec0ae410944a05b/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
"Warning 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/Butali/single_images/2024-08-20/d6d7322e5b2e1ee200c1289f7e3ca584/response.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/Butali/single_images/2024-08-17/58ef26db1a1604fb8d9e6a72a9d67e94/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
"Warning 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/Butali/single_images/2024-08-20/8743609eaa73d8daccf38173f18cab62/response.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/Butali/single_images/2024-08-17/5127fbec45846220837e3379880580bb/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
"Warning 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/Butali/single_images/2024-08-20/51430ceb565cc95c4bf84fd6d0ba17ab/response.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/Butali/single_images/2024-08-17/d36239eb565774be129de7542d60a649/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
"Warning 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/Butali/single_images/2024-08-20/c8f521df119266886b1d57f10ca39666/response.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/Butali/single_images/2024-08-17/db9a74aa20be77d9445e1d8adc7bf474/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
"Warning 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/Butali/single_images/2024-08-20/d6d7322e5b2e1ee200c1289f7e3ca584/response.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/Butali/single_images/2024-08-17/08739e26f45c405e9fc6b4350faac197/response.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/Butali/single_images/2024-08-20/8743609eaa73d8daccf38173f18cab62/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/51430ceb565cc95c4bf84fd6d0ba17ab/response.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/Butali/single_images/2024-08-17/737cf17bd4f66a38a24472f0788eb49e/response.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/Butali/single_images/2024-08-20/c8f521df119266886b1d57f10ca39666/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n"
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/520cb5333907fd9f5a71f937ab2b6247/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/ccd86520eda5eb2cb7a5406f4b106b25/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/c4e81e0a0042a027a201065ee68e305c/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/ab13067d1a6ce236278e72fad5a2dc9a/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/868e87d76c8c5a5a11b0d1c340a03f7e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/b11b351705d1f0cbb41195404e348016/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/4b6bcc3a88b1b84c61336371bd193956/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/62e8d5795b0c1ed0cfd25bc1a417f06b/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/8685a11838114f255189d2b926f46530/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/318405945d62078946b9f91b5fc5aea9/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/88ba97af60d21f4461cc85acaff25388/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/bc8cf8201439dc749ec0ae410944a05b/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/58ef26db1a1604fb8d9e6a72a9d67e94/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/5127fbec45846220837e3379880580bb/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/d36239eb565774be129de7542d60a649/response.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/Butali/single_images/2024-08-17/db9a74aa20be77d9445e1d8adc7bf474/response.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/Butali/single_images/2024-08-17/08739e26f45c405e9fc6b4350faac197/response.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/Butali/single_images/2024-08-17/737cf17bd4f66a38a24472f0788eb49e/response.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/Butali/single_images/2024-08-17/520cb5333907fd9f5a71f937ab2b6247/response.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/Butali/single_images/2024-08-17/ccd86520eda5eb2cb7a5406f4b106b25/response.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/Butali/single_images/2024-08-17/c4e81e0a0042a027a201065ee68e305c/response.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/Butali/single_images/2024-08-17/ab13067d1a6ce236278e72fad5a2dc9a/response.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/Butali/single_images/2024-08-17/868e87d76c8c5a5a11b0d1c340a03f7e/response.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/Butali/single_images/2024-08-17/b11b351705d1f0cbb41195404e348016/response.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/Butali/single_images/2024-08-17/4b6bcc3a88b1b84c61336371bd193956/response.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/Butali/single_images/2024-08-17/62e8d5795b0c1ed0cfd25bc1a417f06b/response.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/Butali/single_images/2024-08-17/58ef26db1a1604fb8d9e6a72a9d67e94/response.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/Butali/single_images/2024-08-17/8685a11838114f255189d2b926f46530/response.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/Butali/single_images/2024-08-17/318405945d62078946b9f91b5fc5aea9/response.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/Butali/single_images/2024-08-17/88ba97af60d21f4461cc85acaff25388/response.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/Butali/single_images/2024-08-17/bc8cf8201439dc749ec0ae410944a05b/response.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/Butali/single_images/2024-08-17/5127fbec45846220837e3379880580bb/response.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/Butali/single_images/2024-08-18/65cbda15a61788601e455c0ac4935206/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/d21a7b22fd7f207ba3c879d93dc22975/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/86bffc2563bf95501e8fc52b5332be9b/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/94cf8605c29c2c98bcaa52d29d62fd09/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/dd62fbae09eddea99e93fb8749686135/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/35eea044ebdd3838cb1a700cce052c60/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/b76e7ed4fa12130399335c9e9399741b/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/8f34528ddc8ba423124500a6b569923a/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/3390196e741d6eab674c354f17a3968e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/94710389b9b4e54d0cbaa6d12b3cc9cd/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/f4041228c369096083685d0e6c56d73f/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/a6f5ff8416b63d9b8691f27ee87c5b2e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/2cf34b379cfc44beb3f7915a023787ca/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/b93a246efbcf62b33965d5a500d01315/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/75e4c4bd5ca5aa0657d17ead096bc288/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/545442505ea3d124db2cbd27f5f158b2/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/b0b811c8619267b1a22ce27099ed0d6e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/d561abbd5890b9c96ffd763fe4b15460/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/65cbda15a61788601e455c0ac4935206/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/d21a7b22fd7f207ba3c879d93dc22975/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/86bffc2563bf95501e8fc52b5332be9b/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/94cf8605c29c2c98bcaa52d29d62fd09/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/dd62fbae09eddea99e93fb8749686135/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/35eea044ebdd3838cb1a700cce052c60/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/b76e7ed4fa12130399335c9e9399741b/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/8f34528ddc8ba423124500a6b569923a/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/3390196e741d6eab674c354f17a3968e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/94710389b9b4e54d0cbaa6d12b3cc9cd/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/f4041228c369096083685d0e6c56d73f/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/a6f5ff8416b63d9b8691f27ee87c5b2e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/2cf34b379cfc44beb3f7915a023787ca/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/b93a246efbcf62b33965d5a500d01315/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/75e4c4bd5ca5aa0657d17ead096bc288/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/545442505ea3d124db2cbd27f5f158b2/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/b0b811c8619267b1a22ce27099ed0d6e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/d561abbd5890b9c96ffd763fe4b15460/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/65cbda15a61788601e455c0ac4935206/response.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/Butali/single_images/2024-08-18/d21a7b22fd7f207ba3c879d93dc22975/response.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/Butali/single_images/2024-08-18/86bffc2563bf95501e8fc52b5332be9b/response.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/Butali/single_images/2024-08-18/94cf8605c29c2c98bcaa52d29d62fd09/response.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/Butali/single_images/2024-08-18/dd62fbae09eddea99e93fb8749686135/response.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/Butali/single_images/2024-08-18/35eea044ebdd3838cb1a700cce052c60/response.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/Butali/single_images/2024-08-18/b76e7ed4fa12130399335c9e9399741b/response.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/Butali/single_images/2024-08-18/8f34528ddc8ba423124500a6b569923a/response.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/Butali/single_images/2024-08-18/3390196e741d6eab674c354f17a3968e/response.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/Butali/single_images/2024-08-18/94710389b9b4e54d0cbaa6d12b3cc9cd/response.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/Butali/single_images/2024-08-18/f4041228c369096083685d0e6c56d73f/response.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/Butali/single_images/2024-08-18/a6f5ff8416b63d9b8691f27ee87c5b2e/response.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/Butali/single_images/2024-08-18/2cf34b379cfc44beb3f7915a023787ca/response.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/Butali/single_images/2024-08-18/b93a246efbcf62b33965d5a500d01315/response.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/Butali/single_images/2024-08-18/75e4c4bd5ca5aa0657d17ead096bc288/response.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/Butali/single_images/2024-08-18/545442505ea3d124db2cbd27f5f158b2/response.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/Butali/single_images/2024-08-18/b0b811c8619267b1a22ce27099ed0d6e/response.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/Butali/single_images/2024-08-18/d561abbd5890b9c96ffd763fe4b15460/response.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/Butali/single_images/2024-08-19/ab94380bd1370378a6ad4721fa75bcfc/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/1946db811b14a065c787169ff5fa69b4/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/59fbda3c0285bd5b6a3c7eabe6695afa/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/db4b22cb91696c2f743ce06d2338579a/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/470c179781c95e2d7038750d1cd077a7/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/b5e6b54d1a3b03671b43d14d75ffb7a5/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/7d47e6760dc7403cff5c27e141308015/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/70d7fa5d607de97ab33d321a51966e55/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/2416c7cdfcb63e392c043b5b741ca4f0/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/bec736f594a34e1a8ae6c5ee13d869f6/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/6a2f6c804dbd039012d4c18100a72d87/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/476931972143810df56925af68535094/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/e93659883829f537e0b162abaf8f4645/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/03b9e5b71dd7d508fbcfc61741867494/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/27c79247e754dc0f2bbf59f41deb47a8/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/8c8bd0ce2b3c9af17c5d9827a2a668f9/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/221538b1552ebbe0a5c5043d50baf2f1/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/50a3e98242687345ac0dca1f751693b2/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/ab94380bd1370378a6ad4721fa75bcfc/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/1946db811b14a065c787169ff5fa69b4/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/59fbda3c0285bd5b6a3c7eabe6695afa/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/db4b22cb91696c2f743ce06d2338579a/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/470c179781c95e2d7038750d1cd077a7/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/b5e6b54d1a3b03671b43d14d75ffb7a5/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/7d47e6760dc7403cff5c27e141308015/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/70d7fa5d607de97ab33d321a51966e55/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/2416c7cdfcb63e392c043b5b741ca4f0/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/bec736f594a34e1a8ae6c5ee13d869f6/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/6a2f6c804dbd039012d4c18100a72d87/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/476931972143810df56925af68535094/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/e93659883829f537e0b162abaf8f4645/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/03b9e5b71dd7d508fbcfc61741867494/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/27c79247e754dc0f2bbf59f41deb47a8/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/8c8bd0ce2b3c9af17c5d9827a2a668f9/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/221538b1552ebbe0a5c5043d50baf2f1/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/50a3e98242687345ac0dca1f751693b2/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/ab94380bd1370378a6ad4721fa75bcfc/response.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/Butali/single_images/2024-08-19/1946db811b14a065c787169ff5fa69b4/response.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/Butali/single_images/2024-08-19/59fbda3c0285bd5b6a3c7eabe6695afa/response.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/Butali/single_images/2024-08-19/db4b22cb91696c2f743ce06d2338579a/response.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/Butali/single_images/2024-08-19/470c179781c95e2d7038750d1cd077a7/response.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/Butali/single_images/2024-08-19/b5e6b54d1a3b03671b43d14d75ffb7a5/response.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/Butali/single_images/2024-08-19/7d47e6760dc7403cff5c27e141308015/response.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/Butali/single_images/2024-08-19/70d7fa5d607de97ab33d321a51966e55/response.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/Butali/single_images/2024-08-19/2416c7cdfcb63e392c043b5b741ca4f0/response.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/Butali/single_images/2024-08-19/bec736f594a34e1a8ae6c5ee13d869f6/response.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/Butali/single_images/2024-08-19/8c8bd0ce2b3c9af17c5d9827a2a668f9/response.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/Butali/single_images/2024-08-19/6a2f6c804dbd039012d4c18100a72d87/response.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/Butali/single_images/2024-08-19/476931972143810df56925af68535094/response.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/Butali/single_images/2024-08-19/e93659883829f537e0b162abaf8f4645/response.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/Butali/single_images/2024-08-19/03b9e5b71dd7d508fbcfc61741867494/response.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/Butali/single_images/2024-08-19/27c79247e754dc0f2bbf59f41deb47a8/response.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/Butali/single_images/2024-08-19/221538b1552ebbe0a5c5043d50baf2f1/response.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/Butali/single_images/2024-08-19/50a3e98242687345ac0dca1f751693b2/response.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/Butali/single_images/2024-08-20/153eada3c3a0b708a3ffcdb150a761eb/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/0a2136600f0a2bd0e02d0cbd3192ceca/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/b1fad54766349931ea0bf9d1a69b9873/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/6635542f4f14b11ec37aa26d2d817e4c/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/1b6b82b7b076d7a2bfde6ac4aded60b8/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/880ce33c46254e1da0c51369d5e259fb/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/46871616264708ba364200b428c1dbb1/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/44126287cae64f2fbd5816d6a256c5b2/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/39c69091c86191dede6dbe44df3e1bbe/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/2fe0f907f0c568a045c166538b25cdab/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/10e18818be87e113a8826c3dca9a47c7/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/a57f105205a5f4adb5e7e688f828b5ea/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/699329e81392805fd0c3f859b1899406/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/6519985655103e10693afd797aa4b34d/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/45c6877083f79a4b366cc09ff042a56b/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/91775355eef9323a57429384ac7f1981/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/287fb6297d72b208365566101d8b4a38/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/a175e0f7e015346646f6d358d918fdb1/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/153eada3c3a0b708a3ffcdb150a761eb/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/0a2136600f0a2bd0e02d0cbd3192ceca/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/b1fad54766349931ea0bf9d1a69b9873/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/6635542f4f14b11ec37aa26d2d817e4c/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/1b6b82b7b076d7a2bfde6ac4aded60b8/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/880ce33c46254e1da0c51369d5e259fb/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/46871616264708ba364200b428c1dbb1/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/44126287cae64f2fbd5816d6a256c5b2/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/39c69091c86191dede6dbe44df3e1bbe/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/2fe0f907f0c568a045c166538b25cdab/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/10e18818be87e113a8826c3dca9a47c7/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/a57f105205a5f4adb5e7e688f828b5ea/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/699329e81392805fd0c3f859b1899406/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/6519985655103e10693afd797aa4b34d/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/45c6877083f79a4b366cc09ff042a56b/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/91775355eef9323a57429384ac7f1981/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/287fb6297d72b208365566101d8b4a38/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/a175e0f7e015346646f6d358d918fdb1/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/153eada3c3a0b708a3ffcdb150a761eb/response.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/Butali/single_images/2024-08-20/0a2136600f0a2bd0e02d0cbd3192ceca/response.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/Butali/single_images/2024-08-20/b1fad54766349931ea0bf9d1a69b9873/response.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/Butali/single_images/2024-08-20/6635542f4f14b11ec37aa26d2d817e4c/response.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/Butali/single_images/2024-08-20/1b6b82b7b076d7a2bfde6ac4aded60b8/response.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/Butali/single_images/2024-08-20/880ce33c46254e1da0c51369d5e259fb/response.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/Butali/single_images/2024-08-20/46871616264708ba364200b428c1dbb1/response.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/Butali/single_images/2024-08-20/44126287cae64f2fbd5816d6a256c5b2/response.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/Butali/single_images/2024-08-20/39c69091c86191dede6dbe44df3e1bbe/response.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/Butali/single_images/2024-08-20/2fe0f907f0c568a045c166538b25cdab/response.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/Butali/single_images/2024-08-20/10e18818be87e113a8826c3dca9a47c7/response.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/Butali/single_images/2024-08-20/a57f105205a5f4adb5e7e688f828b5ea/response.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/Butali/single_images/2024-08-20/699329e81392805fd0c3f859b1899406/response.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/Butali/single_images/2024-08-20/6519985655103e10693afd797aa4b34d/response.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/Butali/single_images/2024-08-20/45c6877083f79a4b366cc09ff042a56b/response.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/Butali/single_images/2024-08-20/91775355eef9323a57429384ac7f1981/response.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/Butali/single_images/2024-08-20/287fb6297d72b208365566101d8b4a38/response.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/Butali/single_images/2024-08-20/a175e0f7e015346646f6d358d918fdb1/response.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/Butali/single_images/2024-08-21/f6989c7f6f011f9c675e150d9130d661/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/70868171ed3cbb200ec7afee26295bae/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/1a6c5744ffbf6968c755d857d35354df/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/8d3e75ee0aebd8d264fd12d82aa633a4/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/d05854d9715e545def2925998a864024/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/e02df2d23be3d4602e3b2838cb4a5d77/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/9127c066771f3bde7ec7b7cbdaa5e7b5/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/b57c171f9c67ba13f792a60f3cd8b984/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/c919af034b0d6b8aceda9a06766469ae/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/27cf4337f4af60084bd00512e39a9618/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/41752a38edb32c672a0ed673d6ad8343/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/f1cf013222b8d05ce34812562e4c09a5/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/95a593e7b604a5b20505ce1c3688060a/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/bb90771be151e29893f3d3cd6644f3e0/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/d21062207dc80de433fc8cb68175c7de/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/5f064e0fd6760312a9a0cf5ebcc55ead/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/3b22bd61ce9dcc16347761109ea0a7da/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/8f8b963bfcc46350aa980cc8c65ee7ae/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/f6989c7f6f011f9c675e150d9130d661/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/70868171ed3cbb200ec7afee26295bae/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/1a6c5744ffbf6968c755d857d35354df/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/8d3e75ee0aebd8d264fd12d82aa633a4/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/d05854d9715e545def2925998a864024/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/e02df2d23be3d4602e3b2838cb4a5d77/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/9127c066771f3bde7ec7b7cbdaa5e7b5/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/b57c171f9c67ba13f792a60f3cd8b984/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/c919af034b0d6b8aceda9a06766469ae/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/27cf4337f4af60084bd00512e39a9618/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/41752a38edb32c672a0ed673d6ad8343/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/f1cf013222b8d05ce34812562e4c09a5/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/95a593e7b604a5b20505ce1c3688060a/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/bb90771be151e29893f3d3cd6644f3e0/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/d21062207dc80de433fc8cb68175c7de/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/5f064e0fd6760312a9a0cf5ebcc55ead/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/3b22bd61ce9dcc16347761109ea0a7da/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/8f8b963bfcc46350aa980cc8c65ee7ae/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/f6989c7f6f011f9c675e150d9130d661/response.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/Butali/single_images/2024-08-21/70868171ed3cbb200ec7afee26295bae/response.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/Butali/single_images/2024-08-21/1a6c5744ffbf6968c755d857d35354df/response.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/Butali/single_images/2024-08-21/8d3e75ee0aebd8d264fd12d82aa633a4/response.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/Butali/single_images/2024-08-21/d05854d9715e545def2925998a864024/response.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/Butali/single_images/2024-08-21/e02df2d23be3d4602e3b2838cb4a5d77/response.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/Butali/single_images/2024-08-21/9127c066771f3bde7ec7b7cbdaa5e7b5/response.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/Butali/single_images/2024-08-21/b57c171f9c67ba13f792a60f3cd8b984/response.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/Butali/single_images/2024-08-21/c919af034b0d6b8aceda9a06766469ae/response.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/Butali/single_images/2024-08-21/27cf4337f4af60084bd00512e39a9618/response.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/Butali/single_images/2024-08-21/41752a38edb32c672a0ed673d6ad8343/response.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/Butali/single_images/2024-08-21/f1cf013222b8d05ce34812562e4c09a5/response.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/Butali/single_images/2024-08-21/bb90771be151e29893f3d3cd6644f3e0/response.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/Butali/single_images/2024-08-21/95a593e7b604a5b20505ce1c3688060a/response.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/Butali/single_images/2024-08-21/d21062207dc80de433fc8cb68175c7de/response.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/Butali/single_images/2024-08-21/5f064e0fd6760312a9a0cf5ebcc55ead/response.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/Butali/single_images/2024-08-21/3b22bd61ce9dcc16347761109ea0a7da/response.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/Butali/single_images/2024-08-21/8f8b963bfcc46350aa980cc8c65ee7ae/response.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/Butali/single_images/2024-08-22/e5b6001af493c81be2301a326ca924c8/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-22/9c0d8b3302b48f657200baec889d8930/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-22/985e394ed0d9c86a4a4ba7560cdc0854/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-22/74a45db7168a9fbd6b368c99e8878740/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-22/e5b6001af493c81be2301a326ca924c8/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-22/9c0d8b3302b48f657200baec889d8930/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-22/985e394ed0d9c86a4a4ba7560cdc0854/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-22/74a45db7168a9fbd6b368c99e8878740/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n",
|
||||||
|
"Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-22/e5b6001af493c81be2301a326ca924c8/response.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/Butali/single_images/2024-08-22/9c0d8b3302b48f657200baec889d8930/response.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/Butali/single_images/2024-08-22/985e394ed0d9c86a4a4ba7560cdc0854/response.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/Butali/single_images/2024-08-22/74a45db7168a9fbd6b368c99e8878740/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
|
||||||
|
|
@ -48,7 +48,13 @@ library(caret)
|
||||||
library(randomForest)
|
library(randomForest)
|
||||||
library(CAST)
|
library(CAST)
|
||||||
|
|
||||||
|
# Define the log file path
|
||||||
|
log_file <- here("laravel_app/storage/app/rmd_log.txt")
|
||||||
|
|
||||||
|
# Create a logging function
|
||||||
|
log_message <- function(message) {
|
||||||
|
cat(message, "\n", file = log_file, append = TRUE)
|
||||||
|
}
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
@ -78,18 +84,26 @@ mail_day_as_character <- as.character(mail_day)
|
||||||
|
|
||||||
report_date_as_week_day <- weekdays(ymd(today))
|
report_date_as_week_day <- weekdays(ymd(today))
|
||||||
|
|
||||||
days_of_week <- c("Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday")
|
days_of_week <- c("Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday")
|
||||||
#als de index of report_date_as_week_day groter dan de index van de mail_day dan moet de week + 1
|
#als de index of report_date_as_week_day groter dan de index van de mail_day dan moet de week + 1
|
||||||
week <- week(today)
|
week <- week(today)
|
||||||
|
log_message(paste("week", week, "today", today))
|
||||||
today_minus_1 <- as.character(ymd(today) - 7)
|
today_minus_1 <- as.character(ymd(today) - 7)
|
||||||
today_minus_2 <- as.character(ymd(today) - 14)
|
today_minus_2 <- as.character(ymd(today) - 14)
|
||||||
today_minus_3 <- as.character(ymd(today) - 21)
|
today_minus_3 <- as.character(ymd(today) - 21)
|
||||||
|
|
||||||
|
log_message(paste("report_date_as_week_day", report_date_as_week_day))
|
||||||
|
log_message(paste("which(days_of_week == report_date_as_week_day)", which(days_of_week == report_date_as_week_day)))
|
||||||
|
log_message(paste("mail_day_as_character", mail_day_as_character))
|
||||||
|
log_message(paste(" which(days_of_week == mail_day_as_character)", which(days_of_week == mail_day_as_character)))
|
||||||
|
|
||||||
if (which(days_of_week == report_date_as_week_day) > which(days_of_week == mail_day_as_character)){
|
if (which(days_of_week == report_date_as_week_day) > which(days_of_week == mail_day_as_character)){
|
||||||
|
log_message("adjusting weeks because of mail day")
|
||||||
week <- week(today) + 1
|
week <- week(today) + 1
|
||||||
today_minus_1 <- as.character(ymd(today))
|
today_minus_1 <- as.character(ymd(today))
|
||||||
today_minus_2 <- as.character(ymd(today) - 7)
|
today_minus_2 <- as.character(ymd(today) - 7)
|
||||||
today_minus_3 <- as.character(ymd(today) - 14)
|
today_minus_3 <- as.character(ymd(today) - 14)
|
||||||
}
|
}
|
||||||
|
|
||||||
# week <- week(today)
|
# week <- week(today)
|
||||||
|
|
||||||
|
|
@ -142,11 +156,11 @@ path_to_week_minus_1 = here(weekly_CI_mosaic, paste0("week_",week_minus_1, "_",
|
||||||
path_to_week_minus_2 = here(weekly_CI_mosaic, paste0("week_",week_minus_2, "_", year_2, ".tif"))
|
path_to_week_minus_2 = here(weekly_CI_mosaic, paste0("week_",week_minus_2, "_", year_2, ".tif"))
|
||||||
path_to_week_minus_3 = here(weekly_CI_mosaic, paste0("week_",week_minus_3, "_", year_3, ".tif"))
|
path_to_week_minus_3 = here(weekly_CI_mosaic, paste0("week_",week_minus_3, "_", year_3, ".tif"))
|
||||||
|
|
||||||
print("required mosaic paths")
|
log_message("required mosaic paths")
|
||||||
print(path_to_week_current)
|
log_message(paste("path to week current",path_to_week_current))
|
||||||
print(path_to_week_minus_1)
|
log_message(paste("path to week minus 1",path_to_week_minus_1))
|
||||||
print(path_to_week_minus_2)
|
log_message(paste("path to week minus 2",path_to_week_minus_2))
|
||||||
print(path_to_week_minus_3)
|
log_message(paste("path to week minus 3",path_to_week_minus_3))
|
||||||
|
|
||||||
CI <- brick(path_to_week_current) %>% subset("CI")
|
CI <- brick(path_to_week_current) %>% subset("CI")
|
||||||
CI_m1 <- brick(path_to_week_minus_1) %>% subset("CI")
|
CI_m1 <- brick(path_to_week_minus_1) %>% subset("CI")
|
||||||
|
|
|
||||||
BIN
r_app/Rplots.pdf
BIN
r_app/Rplots.pdf
Binary file not shown.
Loading…
Reference in a new issue