forked from aashish24/gdal-svn
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgdalbuildvrt.cpp
1567 lines (1408 loc) · 56.8 KB
/
gdalbuildvrt.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/******************************************************************************
* $Id$
*
* Project: GDAL Utilities
* Purpose: Commandline application to build VRT datasets from raster products or content of SHP tile index
* Author: Even Rouault, even.rouault at mines-paris.org
*
******************************************************************************
* Copyright (c) 2007-2014, Even Rouault <even dot rouault at mines-paris dot org>
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
****************************************************************************/
#include "gdal_proxy.h"
#include "cpl_string.h"
#include "gdal_vrt.h"
#include "vrtdataset.h"
#ifdef OGR_ENABLED
#include "ogr_api.h"
#endif
#include "ogr_srs_api.h"
CPL_CVSID("$Id$");
#define GEOTRSFRM_TOPLEFT_X 0
#define GEOTRSFRM_WE_RES 1
#define GEOTRSFRM_ROTATION_PARAM1 2
#define GEOTRSFRM_TOPLEFT_Y 3
#define GEOTRSFRM_ROTATION_PARAM2 4
#define GEOTRSFRM_NS_RES 5
typedef enum
{
LOWEST_RESOLUTION,
HIGHEST_RESOLUTION,
AVERAGE_RESOLUTION,
USER_RESOLUTION
} ResolutionStrategy;
typedef struct
{
int isFileOK;
int nRasterXSize;
int nRasterYSize;
double adfGeoTransform[6];
int nBlockXSize;
int nBlockYSize;
GDALDataType firstBandType;
int* panHasNoData;
double* padfNoDataValues;
int bHasDatasetMask;
int nMaskBlockXSize;
int nMaskBlockYSize;
} DatasetProperty;
typedef struct
{
GDALColorInterp colorInterpretation;
GDALDataType dataType;
GDALColorTableH colorTable;
int bHasNoData;
double noDataValue;
} BandProperty;
/************************************************************************/
/* ArgIsNumeric() */
/************************************************************************/
static int ArgIsNumeric( const char *pszArg )
{
return CPLGetValueType(pszArg) != CPL_VALUE_STRING;
}
/************************************************************************/
/* Usage() */
/************************************************************************/
static void Usage(const char* pszErrorMsg = NULL)
{
fprintf(stdout, "%s",
"Usage: gdalbuildvrt [-tileindex field_name]\n"
" [-resolution {highest|lowest|average|user}]\n"
" [-te xmin ymin xmax ymax] [-tr xres yres] [-tap]\n"
" [-separate] [-b band] [-sd subdataset]\n"
" [-allow_projection_difference] [-q]\n"
" [-addalpha] [-hidenodata]\n"
" [-srcnodata \"value [value...]\"] [-vrtnodata \"value [value...]\"] \n"
" [-a_srs srs_def]\n"
" [-input_file_list my_liste.txt] [-overwrite] output.vrt [gdalfile]*\n"
"\n"
"eg.\n"
" % gdalbuildvrt doq_index.vrt doq/*.tif\n"
" % gdalbuildvrt -input_file_list my_liste.txt doq_index.vrt\n"
"\n"
"NOTES:\n"
" o With -separate, each files goes into a separate band in the VRT band.\n"
" Otherwise, the files are considered as tiles of a larger mosaic.\n"
" o -b option selects a band to add into vrt. Multiple bands can be listed.\n"
" By default all bands are queried.\n"
" o The default tile index field is 'location' unless otherwise specified by\n"
" -tileindex.\n"
" o In case the resolution of all input files is not the same, the -resolution\n"
" flag enable the user to control the way the output resolution is computed.\n"
" Average is the default.\n"
" o Input files may be any valid GDAL dataset or a GDAL raster tile index.\n"
" o For a GDAL raster tile index, all entries will be added to the VRT.\n"
" o If one GDAL dataset is made of several subdatasets and has 0 raster bands,\n"
" its datasets will be added to the VRT rather than the dataset itself.\n"
" Single subdataset could be selected by its number using the -sd option.\n"
" o By default, only datasets of same projection and band characteristics\n"
" may be added to the VRT.\n"
);
if( pszErrorMsg != NULL )
fprintf(stderr, "\nFAILURE: %s\n", pszErrorMsg);
exit( 1 );
}
/************************************************************************/
/* GetSrcDstWin() */
/************************************************************************/
int GetSrcDstWin(DatasetProperty* psDP,
double we_res, double ns_res,
double minX, double minY, double maxX, double maxY,
int* pnSrcXOff, int* pnSrcYOff, int* pnSrcXSize, int* pnSrcYSize,
int* pnDstXOff, int* pnDstYOff, int* pnDstXSize, int* pnDstYSize)
{
/* Check that the destination bounding box intersects the source bounding box */
if ( psDP->adfGeoTransform[GEOTRSFRM_TOPLEFT_X] +
psDP->nRasterXSize *
psDP->adfGeoTransform[GEOTRSFRM_WE_RES] < minX )
return FALSE;
if ( psDP->adfGeoTransform[GEOTRSFRM_TOPLEFT_X] > maxX )
return FALSE;
if ( psDP->adfGeoTransform[GEOTRSFRM_TOPLEFT_Y] +
psDP->nRasterYSize *
psDP->adfGeoTransform[GEOTRSFRM_NS_RES] > maxY )
return FALSE;
if ( psDP->adfGeoTransform[GEOTRSFRM_TOPLEFT_Y] < minY )
return FALSE;
*pnSrcXSize = psDP->nRasterXSize;
*pnSrcYSize = psDP->nRasterYSize;
if ( psDP->adfGeoTransform[GEOTRSFRM_TOPLEFT_X] < minX )
{
*pnSrcXOff = (int)((minX - psDP->adfGeoTransform[GEOTRSFRM_TOPLEFT_X]) /
psDP->adfGeoTransform[GEOTRSFRM_WE_RES] + 0.5);
*pnDstXOff = 0;
}
else
{
*pnSrcXOff = 0;
*pnDstXOff = (int)
(0.5 + (psDP->adfGeoTransform[GEOTRSFRM_TOPLEFT_X] - minX) / we_res);
}
if ( maxY < psDP->adfGeoTransform[GEOTRSFRM_TOPLEFT_Y])
{
*pnSrcYOff = (int)((psDP->adfGeoTransform[GEOTRSFRM_TOPLEFT_Y] - maxY) /
-psDP->adfGeoTransform[GEOTRSFRM_NS_RES] + 0.5);
*pnDstYOff = 0;
}
else
{
*pnSrcYOff = 0;
*pnDstYOff = (int)
(0.5 + (maxY - psDP->adfGeoTransform[GEOTRSFRM_TOPLEFT_Y]) / -ns_res);
}
*pnDstXSize = (int)
(0.5 + psDP->nRasterXSize *
psDP->adfGeoTransform[GEOTRSFRM_WE_RES] / we_res);
*pnDstYSize = (int)
(0.5 + psDP->nRasterYSize *
psDP->adfGeoTransform[GEOTRSFRM_NS_RES] / ns_res);
return TRUE;
}
/************************************************************************/
/* VRTBuilder */
/************************************************************************/
class VRTBuilder
{
/* Input parameters */
char *pszOutputFilename;
int nInputFiles;
char **ppszInputFilenames;
int nBands;
int *panBandList;
int nMaxBandNo;
ResolutionStrategy resolutionStrategy;
double we_res;
double ns_res;
int bTargetAlignedPixels;
double minX;
double minY;
double maxX;
double maxY;
int bSeparate;
int bAllowProjectionDifference;
int bAddAlpha;
int bHideNoData;
int nSubdataset;
char *pszSrcNoData;
char *pszVRTNoData;
char *pszOutputSRS;
/* Internal variables */
char *pszProjectionRef;
BandProperty *pasBandProperties;
int bFirst;
int bHasGeoTransform;
int nRasterXSize;
int nRasterYSize;
DatasetProperty *pasDatasetProperties;
int bUserExtent;
int bAllowSrcNoData;
double *padfSrcNoData;
int nSrcNoDataCount;
int bAllowVRTNoData;
double *padfVRTNoData;
int nVRTNoDataCount;
int bHasRunBuild;
int bHasDatasetMask;
int AnalyseRaster(GDALDatasetH hDS, const char* dsFileName,
DatasetProperty* psDatasetProperties);
void CreateVRTSeparate(VRTDatasetH hVRTDS);
void CreateVRTNonSeparate(VRTDatasetH hVRTDS);
public:
VRTBuilder(const char* pszOutputFilename,
int nInputFiles, const char* const * ppszInputFilenames,
int *panBandList, int nBandCount, int nMaxBandNo,
ResolutionStrategy resolutionStrategy,
double we_res, double ns_res,
int bTargetAlignedPixels,
double minX, double minY, double maxX, double maxY,
int bSeparate, int bAllowProjectionDifference,
int bAddAlpha, int bHideNoData, int nSubdataset,
const char* pszSrcNoData, const char* pszVRTNoData,
const char* pszOutputSRS);
~VRTBuilder();
int Build(GDALProgressFunc pfnProgress, void * pProgressData);
};
/************************************************************************/
/* VRTBuilder() */
/************************************************************************/
VRTBuilder::VRTBuilder(const char* pszOutputFilename,
int nInputFiles, const char* const * ppszInputFilenames,
int *panBandList, int nBandCount, int nMaxBandNo,
ResolutionStrategy resolutionStrategy,
double we_res, double ns_res,
int bTargetAlignedPixels,
double minX, double minY, double maxX, double maxY,
int bSeparate, int bAllowProjectionDifference,
int bAddAlpha, int bHideNoData, int nSubdataset,
const char* pszSrcNoData, const char* pszVRTNoData,
const char* pszOutputSRS)
{
this->pszOutputFilename = CPLStrdup(pszOutputFilename);
this->nInputFiles = nInputFiles;
this->ppszInputFilenames = (char**) CPLMalloc(nInputFiles * sizeof(char*));
int i;
for(i=0;i<nInputFiles;i++)
{
this->ppszInputFilenames[i] = CPLStrdup(ppszInputFilenames[i]);
}
this->nBands = nBandCount;
this->panBandList = panBandList;
this->nMaxBandNo = nMaxBandNo;
this->resolutionStrategy = resolutionStrategy;
this->we_res = we_res;
this->ns_res = ns_res;
this->bTargetAlignedPixels = bTargetAlignedPixels;
this->minX = minX;
this->minY = minY;
this->maxX = maxX;
this->maxY = maxY;
this->bSeparate = bSeparate;
this->bAllowProjectionDifference = bAllowProjectionDifference;
this->bAddAlpha = bAddAlpha;
this->bHideNoData = bHideNoData;
this->nSubdataset = nSubdataset;
this->pszSrcNoData = (pszSrcNoData) ? CPLStrdup(pszSrcNoData) : NULL;
this->pszVRTNoData = (pszVRTNoData) ? CPLStrdup(pszVRTNoData) : NULL;
this->pszOutputSRS = (pszOutputSRS) ? CPLStrdup(pszOutputSRS) : NULL;
bUserExtent = FALSE;
pszProjectionRef = NULL;
pasBandProperties = NULL;
bFirst = TRUE;
bHasGeoTransform = FALSE;
nRasterXSize = 0;
nRasterYSize = 0;
pasDatasetProperties = NULL;
bAllowSrcNoData = TRUE;
padfSrcNoData = NULL;
nSrcNoDataCount = 0;
bAllowVRTNoData = TRUE;
padfVRTNoData = NULL;
nVRTNoDataCount = 0;
bHasRunBuild = FALSE;
bHasDatasetMask = FALSE;
}
/************************************************************************/
/* ~VRTBuilder() */
/************************************************************************/
VRTBuilder::~VRTBuilder()
{
CPLFree(pszOutputFilename);
CPLFree(pszSrcNoData);
CPLFree(pszVRTNoData);
if (panBandList)
delete[] panBandList;
int i;
for(i=0;i<nInputFiles;i++)
{
CPLFree(ppszInputFilenames[i]);
}
CPLFree(ppszInputFilenames);
if (pasDatasetProperties != NULL)
{
for(i=0;i<nInputFiles;i++)
{
CPLFree(pasDatasetProperties[i].padfNoDataValues);
CPLFree(pasDatasetProperties[i].panHasNoData);
}
}
CPLFree(pasDatasetProperties);
if (!bSeparate && pasBandProperties != NULL)
{
int j;
for(j=0;j<nBands;j++)
{
GDALDestroyColorTable(pasBandProperties[j].colorTable);
}
}
CPLFree(pasBandProperties);
CPLFree(pszProjectionRef);
CPLFree(padfSrcNoData);
CPLFree(padfVRTNoData);
CPLFree(pszOutputSRS);
}
/************************************************************************/
/* ProjAreEqual() */
/************************************************************************/
static int ProjAreEqual(const char* pszWKT1, const char* pszWKT2)
{
int bRet;
OGRSpatialReferenceH hSRS1, hSRS2;
if (EQUAL(pszWKT1, pszWKT2))
return TRUE;
hSRS1 = OSRNewSpatialReference(pszWKT1);
hSRS2 = OSRNewSpatialReference(pszWKT2);
bRet = hSRS1 != NULL && hSRS2 != NULL && OSRIsSame(hSRS1,hSRS2);
if (hSRS1)
OSRDestroySpatialReference(hSRS1);
if (hSRS2)
OSRDestroySpatialReference(hSRS2);
return bRet;
}
/************************************************************************/
/* AnalyseRaster() */
/************************************************************************/
int VRTBuilder::AnalyseRaster( GDALDatasetH hDS, const char* dsFileName,
DatasetProperty* psDatasetProperties)
{
char** papszMetadata = GDALGetMetadata( hDS, "SUBDATASETS" );
if( CSLCount(papszMetadata) > 0 && GDALGetRasterCount(hDS) == 0 )
{
pasDatasetProperties =
(DatasetProperty*) CPLRealloc(pasDatasetProperties,
(nInputFiles+CSLCount(papszMetadata))*sizeof(DatasetProperty));
ppszInputFilenames = (char**)CPLRealloc(ppszInputFilenames,
sizeof(char*) * (nInputFiles+CSLCount(papszMetadata)));
if ( nSubdataset < 0 )
{
int count = 1;
char subdatasetNameKey[256];
sprintf(subdatasetNameKey, "SUBDATASET_%d_NAME", count);
while(*papszMetadata != NULL)
{
if (EQUALN(*papszMetadata, subdatasetNameKey, strlen(subdatasetNameKey)))
{
memset(&pasDatasetProperties[nInputFiles], 0, sizeof(DatasetProperty));
ppszInputFilenames[nInputFiles++] =
CPLStrdup(*papszMetadata+strlen(subdatasetNameKey)+1);
count++;
sprintf(subdatasetNameKey, "SUBDATASET_%d_NAME", count);
}
papszMetadata++;
}
}
else
{
char subdatasetNameKey[256];
const char *pszSubdatasetName;
snprintf( subdatasetNameKey, sizeof(subdatasetNameKey),
"SUBDATASET_%d_NAME", nSubdataset );
pszSubdatasetName = CSLFetchNameValue( papszMetadata, subdatasetNameKey );
if ( pszSubdatasetName )
{
memset( &pasDatasetProperties[nInputFiles], 0, sizeof(DatasetProperty) );
ppszInputFilenames[nInputFiles++] = CPLStrdup( pszSubdatasetName );
}
}
return FALSE;
}
const char* proj = GDALGetProjectionRef(hDS);
double* padfGeoTransform = psDatasetProperties->adfGeoTransform;
int bGotGeoTransform = GDALGetGeoTransform(hDS, padfGeoTransform) == CE_None;
if (bSeparate)
{
if (bFirst)
{
bHasGeoTransform = bGotGeoTransform;
if (!bHasGeoTransform)
{
if (bUserExtent)
{
CPLError(CE_Warning, CPLE_NotSupported,
"User extent ignored by gdalbuildvrt -separate with ungeoreferenced images.");
}
if (resolutionStrategy == USER_RESOLUTION)
{
CPLError(CE_Warning, CPLE_NotSupported,
"User resolution ignored by gdalbuildvrt -separate with ungeoreferenced images.");
}
}
}
else if (bHasGeoTransform != bGotGeoTransform)
{
CPLError(CE_Warning, CPLE_NotSupported,
"gdalbuildvrt -separate cannot stack ungeoreferenced and georeferenced images. Skipping %s",
dsFileName);
return FALSE;
}
else if (!bHasGeoTransform &&
(nRasterXSize != GDALGetRasterXSize(hDS) ||
nRasterYSize != GDALGetRasterYSize(hDS)))
{
CPLError(CE_Warning, CPLE_NotSupported,
"gdalbuildvrt -separate cannot stack ungeoreferenced images that have not the same dimensions. Skipping %s",
dsFileName);
return FALSE;
}
}
else
{
if (!bGotGeoTransform)
{
CPLError(CE_Warning, CPLE_NotSupported,
"gdalbuildvrt does not support ungeoreferenced image. Skipping %s",
dsFileName);
return FALSE;
}
bHasGeoTransform = TRUE;
}
if (bGotGeoTransform)
{
if (padfGeoTransform[GEOTRSFRM_ROTATION_PARAM1] != 0 ||
padfGeoTransform[GEOTRSFRM_ROTATION_PARAM2] != 0)
{
CPLError(CE_Warning, CPLE_NotSupported,
"gdalbuildvrt does not support rotated geo transforms. Skipping %s",
dsFileName);
return FALSE;
}
if (padfGeoTransform[GEOTRSFRM_NS_RES] >= 0)
{
CPLError(CE_Warning, CPLE_NotSupported,
"gdalbuildvrt does not support positive NS resolution. Skipping %s",
dsFileName);
return FALSE;
}
}
psDatasetProperties->nRasterXSize = GDALGetRasterXSize(hDS);
psDatasetProperties->nRasterYSize = GDALGetRasterYSize(hDS);
if (bFirst && bSeparate && !bGotGeoTransform)
{
nRasterXSize = GDALGetRasterXSize(hDS);
nRasterYSize = GDALGetRasterYSize(hDS);
}
double ds_minX = padfGeoTransform[GEOTRSFRM_TOPLEFT_X];
double ds_maxY = padfGeoTransform[GEOTRSFRM_TOPLEFT_Y];
double ds_maxX = ds_minX +
GDALGetRasterXSize(hDS) *
padfGeoTransform[GEOTRSFRM_WE_RES];
double ds_minY = ds_maxY +
GDALGetRasterYSize(hDS) *
padfGeoTransform[GEOTRSFRM_NS_RES];
GDALGetBlockSize(GDALGetRasterBand( hDS, 1 ),
&psDatasetProperties->nBlockXSize,
&psDatasetProperties->nBlockYSize);
int _nBands = GDALGetRasterCount(hDS);
//if provided band list
if(nBands != 0 && _nBands != 0 && nMaxBandNo != 0 && _nBands >= nMaxBandNo)
{
if(_nBands < nMaxBandNo)
{
CPLError(CE_Warning, CPLE_AppDefined,
"Skipping %s as it has no sush bands", dsFileName);
return FALSE;
}
else
{
_nBands = nMaxBandNo;
}
}
if (_nBands == 0)
{
CPLError(CE_Warning, CPLE_AppDefined,
"Skipping %s as it has no bands", dsFileName);
return FALSE;
}
else if (_nBands > 1 && bSeparate)
{
CPLError(CE_Warning, CPLE_AppDefined, "%s has %d bands. Only the first one will "
"be taken into account in the -separate case",
dsFileName, _nBands);
_nBands = 1;
}
/* For the -separate case */
psDatasetProperties->firstBandType = GDALGetRasterDataType(GDALGetRasterBand(hDS, 1));
psDatasetProperties->padfNoDataValues = (double*)CPLCalloc(sizeof(double), _nBands);
psDatasetProperties->panHasNoData = (int*)CPLCalloc(sizeof(int), _nBands);
psDatasetProperties->bHasDatasetMask = GDALGetMaskFlags(GDALGetRasterBand(hDS, 1)) == GMF_PER_DATASET;
if (psDatasetProperties->bHasDatasetMask)
bHasDatasetMask = TRUE;
GDALGetBlockSize(GDALGetMaskBand(GDALGetRasterBand( hDS, 1 )),
&psDatasetProperties->nMaskBlockXSize,
&psDatasetProperties->nMaskBlockYSize);
int j;
for(j=0;j<_nBands;j++)
{
if (nSrcNoDataCount > 0)
{
psDatasetProperties->panHasNoData[j] = TRUE;
if (j < nSrcNoDataCount)
psDatasetProperties->padfNoDataValues[j] = padfSrcNoData[j];
else
psDatasetProperties->padfNoDataValues[j] = padfSrcNoData[nSrcNoDataCount - 1];
}
else
{
psDatasetProperties->padfNoDataValues[j] =
GDALGetRasterNoDataValue(GDALGetRasterBand(hDS, j+1),
&psDatasetProperties->panHasNoData[j]);
}
}
if (bFirst)
{
if (proj)
pszProjectionRef = CPLStrdup(proj);
if (!bUserExtent)
{
minX = ds_minX;
minY = ds_minY;
maxX = ds_maxX;
maxY = ds_maxY;
}
//if provided band list
if(nBands == 0)
{
nBands = _nBands;
if(panBandList != NULL)
CPLFree(panBandList);
panBandList = new int[nBands];
for(j=0;j<nBands;j++)
{
panBandList[j] = j + 1;
if(nMaxBandNo < j + 1)
nMaxBandNo = j + 1;
}
}
if (!bSeparate)
{
pasBandProperties = (BandProperty*)CPLMalloc(nMaxBandNo*sizeof(BandProperty));
for(j=0;j<nMaxBandNo;j++)
{
GDALRasterBandH hRasterBand = GDALGetRasterBand( hDS, j+1 );
pasBandProperties[j].colorInterpretation =
GDALGetRasterColorInterpretation(hRasterBand);
pasBandProperties[j].dataType = GDALGetRasterDataType(hRasterBand);
if (pasBandProperties[j].colorInterpretation == GCI_PaletteIndex)
{
pasBandProperties[j].colorTable =
GDALGetRasterColorTable( hRasterBand );
if (pasBandProperties[j].colorTable)
{
pasBandProperties[j].colorTable =
GDALCloneColorTable(pasBandProperties[j].colorTable);
}
}
else
pasBandProperties[j].colorTable = 0;
if (nVRTNoDataCount > 0)
{
pasBandProperties[j].bHasNoData = TRUE;
if (j < nVRTNoDataCount)
pasBandProperties[j].noDataValue = padfVRTNoData[j];
else
pasBandProperties[j].noDataValue = padfVRTNoData[nVRTNoDataCount - 1];
}
else
{
pasBandProperties[j].noDataValue =
GDALGetRasterNoDataValue(hRasterBand, &pasBandProperties[j].bHasNoData);
}
}
}
}
else
{
if ((proj != NULL && pszProjectionRef == NULL) ||
(proj == NULL && pszProjectionRef != NULL) ||
(proj != NULL && pszProjectionRef != NULL && ProjAreEqual(proj, pszProjectionRef) == FALSE))
{
if (!bAllowProjectionDifference)
{
CPLError(CE_Warning, CPLE_NotSupported,
"gdalbuildvrt does not support heterogenous projection. Skipping %s",
dsFileName);
return FALSE;
}
}
if (!bSeparate)
{
if (nMaxBandNo > _nBands)
{
CPLError(CE_Warning, CPLE_NotSupported,
"gdalbuildvrt does not support heterogenous band numbers. Skipping %s",
dsFileName);
return FALSE;
}
for(j=0;j<nMaxBandNo;j++)
{
GDALRasterBandH hRasterBand = GDALGetRasterBand( hDS, j+1 );
if (pasBandProperties[j].colorInterpretation != GDALGetRasterColorInterpretation(hRasterBand) ||
pasBandProperties[j].dataType != GDALGetRasterDataType(hRasterBand))
{
CPLError(CE_Warning, CPLE_NotSupported,
"gdalbuildvrt does not support heterogenous band characteristics. Skipping %s",
dsFileName);
return FALSE;
}
if (pasBandProperties[j].colorTable)
{
GDALColorTableH colorTable = GDALGetRasterColorTable( hRasterBand );
int nRefColorEntryCount = GDALGetColorEntryCount(pasBandProperties[j].colorTable);
int i;
if (colorTable == NULL ||
GDALGetColorEntryCount(colorTable) != nRefColorEntryCount)
{
CPLError(CE_Warning, CPLE_NotSupported,
"gdalbuildvrt does not support rasters with different color tables (different number of color table entries). Skipping %s",
dsFileName);
return FALSE;
}
/* Check that the palette are the same too */
/* We just warn and still process the file. It is not a technical no-go, but the user */
/* should check that the end result is OK for him. */
for(i=0;i<nRefColorEntryCount;i++)
{
const GDALColorEntry* psEntry = GDALGetColorEntry(colorTable, i);
const GDALColorEntry* psEntryRef = GDALGetColorEntry(pasBandProperties[j].colorTable, i);
if (psEntry->c1 != psEntryRef->c1 || psEntry->c2 != psEntryRef->c2 ||
psEntry->c3 != psEntryRef->c3 || psEntry->c4 != psEntryRef->c4)
{
static int bFirstWarningPCT = TRUE;
if (bFirstWarningPCT)
CPLError(CE_Warning, CPLE_NotSupported,
"%s has different values than the first raster for some entries in the color table.\n"
"The end result might produce weird colors.\n"
"You're advised to preprocess your rasters with other tools, such as pct2rgb.py or gdal_translate -expand RGB\n"
"to operate gdalbuildvrt on RGB rasters instead", dsFileName);
else
CPLError(CE_Warning, CPLE_NotSupported,
"%s has different values than the first raster for some entries in the color table.",
dsFileName);
bFirstWarningPCT = FALSE;
break;
}
}
}
}
}
if (!bUserExtent)
{
if (ds_minX < minX) minX = ds_minX;
if (ds_minY < minY) minY = ds_minY;
if (ds_maxX > maxX) maxX = ds_maxX;
if (ds_maxY > maxY) maxY = ds_maxY;
}
}
if (resolutionStrategy == AVERAGE_RESOLUTION)
{
we_res += padfGeoTransform[GEOTRSFRM_WE_RES];
ns_res += padfGeoTransform[GEOTRSFRM_NS_RES];
}
else if (resolutionStrategy != USER_RESOLUTION)
{
if (bFirst)
{
we_res = padfGeoTransform[GEOTRSFRM_WE_RES];
ns_res = padfGeoTransform[GEOTRSFRM_NS_RES];
}
else if (resolutionStrategy == HIGHEST_RESOLUTION)
{
we_res = MIN(we_res, padfGeoTransform[GEOTRSFRM_WE_RES]);
/* Yes : as ns_res is negative, the highest resolution is the max value */
ns_res = MAX(ns_res, padfGeoTransform[GEOTRSFRM_NS_RES]);
}
else
{
we_res = MAX(we_res, padfGeoTransform[GEOTRSFRM_WE_RES]);
/* Yes : as ns_res is negative, the lowest resolution is the min value */
ns_res = MIN(ns_res, padfGeoTransform[GEOTRSFRM_NS_RES]);
}
}
return TRUE;
}
/************************************************************************/
/* CreateVRTSeparate() */
/************************************************************************/
void VRTBuilder::CreateVRTSeparate(VRTDatasetH hVRTDS)
{
int i;
int iBand = 1;
for(i=0;i<nInputFiles;i++)
{
DatasetProperty* psDatasetProperties = &pasDatasetProperties[i];
if (psDatasetProperties->isFileOK == FALSE)
continue;
int nSrcXOff, nSrcYOff, nSrcXSize, nSrcYSize,
nDstXOff, nDstYOff, nDstXSize, nDstYSize;
if (bHasGeoTransform)
{
if ( ! GetSrcDstWin(psDatasetProperties,
we_res, ns_res, minX, minY, maxX, maxY,
&nSrcXOff, &nSrcYOff, &nSrcXSize, &nSrcYSize,
&nDstXOff, &nDstYOff, &nDstXSize, &nDstYSize) )
continue;
}
else
{
nSrcXOff = nSrcYOff = nDstXOff = nDstYOff = 0;
nSrcXSize = nDstXSize = nRasterXSize;
nSrcYSize = nDstYSize = nRasterYSize;
}
const char* dsFileName = ppszInputFilenames[i];
GDALAddBand(hVRTDS, psDatasetProperties->firstBandType, NULL);
GDALProxyPoolDatasetH hProxyDS =
GDALProxyPoolDatasetCreate(dsFileName,
psDatasetProperties->nRasterXSize,
psDatasetProperties->nRasterYSize,
GA_ReadOnly, TRUE, pszProjectionRef,
psDatasetProperties->adfGeoTransform);
GDALProxyPoolDatasetAddSrcBandDescription(hProxyDS,
psDatasetProperties->firstBandType,
psDatasetProperties->nBlockXSize,
psDatasetProperties->nBlockYSize);
VRTSourcedRasterBandH hVRTBand =
(VRTSourcedRasterBandH)GDALGetRasterBand(hVRTDS, iBand);
if (bHideNoData)
GDALSetMetadataItem(hVRTBand,"HideNoDataValue","1",NULL);
if (bAllowSrcNoData && psDatasetProperties->panHasNoData[0])
{
GDALSetRasterNoDataValue(hVRTBand, psDatasetProperties->padfNoDataValues[0]);
VRTAddComplexSource(hVRTBand, GDALGetRasterBand((GDALDatasetH)hProxyDS, 1),
nSrcXOff, nSrcYOff, nSrcXSize, nSrcYSize,
nDstXOff, nDstYOff, nDstXSize, nDstYSize,
0, 1, psDatasetProperties->padfNoDataValues[0]);
}
else
/* Place the raster band at the right position in the VRT */
VRTAddSimpleSource(hVRTBand, GDALGetRasterBand((GDALDatasetH)hProxyDS, 1),
nSrcXOff, nSrcYOff, nSrcXSize, nSrcYSize,
nDstXOff, nDstYOff, nDstXSize, nDstYSize,
"near", VRT_NODATA_UNSET);
GDALDereferenceDataset(hProxyDS);
iBand ++;
}
}
/************************************************************************/
/* CreateVRTNonSeparate() */
/************************************************************************/
void VRTBuilder::CreateVRTNonSeparate(VRTDatasetH hVRTDS)
{
int i, j;
for(j=0;j<nBands;j++)
{
GDALRasterBandH hBand;
int nSelBand = panBandList[j]-1;
GDALAddBand(hVRTDS, pasBandProperties[nSelBand].dataType, NULL);
hBand = GDALGetRasterBand(hVRTDS, j+1);
GDALSetRasterColorInterpretation(hBand, pasBandProperties[nSelBand].colorInterpretation);
if (pasBandProperties[nSelBand].colorInterpretation == GCI_PaletteIndex)
{
GDALSetRasterColorTable(hBand, pasBandProperties[nSelBand].colorTable);
}
if (bAllowVRTNoData && pasBandProperties[nSelBand].bHasNoData)
GDALSetRasterNoDataValue(hBand, pasBandProperties[nSelBand].noDataValue);
if ( bHideNoData )
GDALSetMetadataItem(hBand,"HideNoDataValue","1",NULL);
}
VRTSourcedRasterBand* hMaskVRTBand = NULL;
if (bAddAlpha)
{
GDALRasterBandH hBand;
GDALAddBand(hVRTDS, GDT_Byte, NULL);
hBand = GDALGetRasterBand(hVRTDS, nBands + 1);
GDALSetRasterColorInterpretation(hBand, GCI_AlphaBand);
}
else if (bHasDatasetMask)
{
GDALCreateDatasetMaskBand(hVRTDS, GMF_PER_DATASET);
hMaskVRTBand = (VRTSourcedRasterBand*)GDALGetMaskBand(GDALGetRasterBand(hVRTDS, 1));
}
for(i=0;i<nInputFiles;i++)
{
DatasetProperty* psDatasetProperties = &pasDatasetProperties[i];
if (psDatasetProperties->isFileOK == FALSE)
continue;
int nSrcXOff, nSrcYOff, nSrcXSize, nSrcYSize,
nDstXOff, nDstYOff, nDstXSize, nDstYSize;
if ( ! GetSrcDstWin(psDatasetProperties,
we_res, ns_res, minX, minY, maxX, maxY,
&nSrcXOff, &nSrcYOff, &nSrcXSize, &nSrcYSize,
&nDstXOff, &nDstYOff, &nDstXSize, &nDstYSize) )
continue;
const char* dsFileName = ppszInputFilenames[i];
GDALProxyPoolDatasetH hProxyDS =
GDALProxyPoolDatasetCreate(dsFileName,
psDatasetProperties->nRasterXSize,
psDatasetProperties->nRasterYSize,
GA_ReadOnly, TRUE, pszProjectionRef,
psDatasetProperties->adfGeoTransform);
for(j=0;j<nMaxBandNo;j++)
{
GDALProxyPoolDatasetAddSrcBandDescription(hProxyDS,
pasBandProperties[j].dataType,
psDatasetProperties->nBlockXSize,
psDatasetProperties->nBlockYSize);
}
if (bHasDatasetMask && !bAddAlpha)
{
((GDALProxyPoolRasterBand*)((GDALProxyPoolDataset*)hProxyDS)->GetRasterBand(1))->
AddSrcMaskBandDescription (GDT_Byte,
psDatasetProperties->nMaskBlockXSize,
psDatasetProperties->nMaskBlockYSize);
}
for(j=0;j<nBands;j++)
{
VRTSourcedRasterBandH hVRTBand =
(VRTSourcedRasterBandH)GDALGetRasterBand(hVRTDS, j + 1);
/* Place the raster band at the right position in the VRT */
int nSelBand = panBandList[j] - 1;
if (bAllowSrcNoData && psDatasetProperties->panHasNoData[nSelBand])
VRTAddComplexSource(hVRTBand, GDALGetRasterBand((GDALDatasetH)hProxyDS, nSelBand + 1),
nSrcXOff, nSrcYOff, nSrcXSize, nSrcYSize,
nDstXOff, nDstYOff, nDstXSize, nDstYSize,
0, 1, psDatasetProperties->padfNoDataValues[nSelBand]);
else
VRTAddSimpleSource(hVRTBand, GDALGetRasterBand((GDALDatasetH)hProxyDS, nSelBand + 1),
nSrcXOff, nSrcYOff, nSrcXSize, nSrcYSize,
nDstXOff, nDstYOff, nDstXSize, nDstYSize,
"near", VRT_NODATA_UNSET);
}
if (bAddAlpha)
{
VRTSourcedRasterBandH hVRTBand =
(VRTSourcedRasterBandH)GDALGetRasterBand(hVRTDS, nBands + 1);
/* Little trick : we use an offset of 255 and a scaling of 0, so that in areas covered */
/* by the source, the value of the alpha band will be 255, otherwise it will be 0 */
VRTAddComplexSource(hVRTBand, GDALGetRasterBand((GDALDatasetH)hProxyDS, 1),
nSrcXOff, nSrcYOff, nSrcXSize, nSrcYSize,
nDstXOff, nDstYOff, nDstXSize, nDstYSize,
255, 0, VRT_NODATA_UNSET);
}
else if (bHasDatasetMask)
{
hMaskVRTBand->AddMaskBandSource((GDALRasterBand*)GDALGetRasterBand((GDALDatasetH)hProxyDS, 1),
nSrcXOff, nSrcYOff, nSrcXSize, nSrcYSize,
nDstXOff, nDstYOff, nDstXSize, nDstYSize);
}
GDALDereferenceDataset(hProxyDS);
}
}
/************************************************************************/
/* Build() */
/************************************************************************/
int VRTBuilder::Build(GDALProgressFunc pfnProgress, void * pProgressData)
{
int i;
if (bHasRunBuild)
return CE_Failure;
bHasRunBuild = TRUE;
if( pfnProgress == NULL )
pfnProgress = GDALDummyProgress;
bUserExtent = (minX != 0 || minY != 0 || maxX != 0 || maxY != 0);
if (bUserExtent)
{