forked from MapWindow/MapWinGIS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtkGridRaster.cpp
More file actions
1830 lines (1585 loc) · 48.8 KB
/
tkGridRaster.cpp
File metadata and controls
1830 lines (1585 loc) · 48.8 KB
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
//********************************************************************************************************
//File name: tkGridRaster.cpp
//Description: Generic grid wrapper class to allow MapWinGIs to utilize formats supported by GDAL
//********************************************************************************************************
//The contents of this file are subject to the Mozilla Public License Version 1.1 (the "License");
//you may not use this file except in compliance with the License. You may obtain a copy of the License at
//http://www.mozilla.org/MPL/
//Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF
//ANY KIND, either express or implied. See the License for the specific language governing rights and
//limitations under the License.
//
//The Original Code is MapWindow Open Source.
//
//The Initial Developer of this version of the Original Code is Christopher Michaelis.
//
//Contributor(s): (Open source contributors should list themselves and their modifications here).
//1-10-2006 - 1-18-2006 - cdm -- Initial Revision
//1-26-2006 - 1-18-2006 - cdm -- Double scanline buffering
//********************************************************************************************************
#include "stdafx.h"
#include <cassert>
#include <exception>
#include "grdTypes.h"
#include "tkGridRaster.h"
#include "cpl_string.h"
#include "projections.h"
using namespace std;
#define SWAP(a, b) { \
(a) ^= (b); \
(b) ^= (a); \
(a) ^= (b); \
}
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
const int MASKTABLE[] = { 0x0000, 0x0001, 0x0003, 0x0007,
0x000f, 0x001f, 0x003f, 0x007f,
0x00ff, 0x01ff, 0x03ff, 0x07ff,
0x0fff, 0x1fff, 0x3fff, 0x7fff };
const int SHIFTINC[] = { 0, 1, 2, 3, 4, 5, 6, 7, 0, 1, 2, 3, 4, 5 };
const int BITSLEFT[] = { 8, 7, 6, 5, 4, 3, 2, 1, 0 };
const int NUMREADINC[] = { 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1 };
void tkGridRaster::ProjToCell( double x, double y, long & column, long & row )
{
if( _dX != 0.0 && _dY != 0.0 )
{ column = round( ( x - _xllCenter )/_dX );
row = _height - round( ( y - _yllCenter )/_dY ) - 1;
}
}
void tkGridRaster::CellToProj( long column, long row, double & x, double & y )
{
x = _xllCenter + column*_dX;
y = _yllCenter + ( ( _height - row - 1)*_dY );
}
inline int tkGridRaster::round( double d )
{ if( ceil(d) - d <= .5 )
return (int)ceil(d);
else
return (int)floor(d);
}
void tkGridRaster::SaveHeaderInfo()
{
if (_rasterDataset == NULL)
return;
if (_poBand == NULL)
return;
_poBand->SetNoDataValue(_noDataValue);
double adfGeoTransform[6];
adfGeoTransform[0] = _xllCenter - (_dX / 2);
adfGeoTransform[1] = _dX;
adfGeoTransform[2] = 0;
adfGeoTransform[3] = (_height * _dY) + _yllCenter + ((_dY * -1) / 2);
adfGeoTransform[4] = 0;
adfGeoTransform[5] = _dY * -1;
_rasterDataset->SetGeoTransform( adfGeoTransform );
if (_projection.GetLength() != 0)
{
// SetProjection expects WKT
if (startsWith(_projection.GetBuffer(), "+proj"))
{
char * wkt = NULL;
ProjectionTools * p = new ProjectionTools();
p->ToESRIWKTFromProj4(&wkt, _projection.GetBuffer());
if (wkt != NULL && strcmp(wkt, "") != 0)
{
_rasterDataset->SetProjection(wkt);
}
delete p; //added by Lailin Chen 12/30/2005, don't delete wkt
}
else
{
// Reasonably good indicator it's WKT
if (contains(_projection.GetBuffer(), '[') && contains(_projection.GetBuffer(), ']'))
{
_rasterDataset->SetProjection( _projection.GetBuffer() );
}
}
}
// Force reopen to update the nodata value
_poBand->FlushCache();
_rasterDataset->FlushCache();
delete _rasterDataset;
_poBand = NULL;
_rasterDataset = GdalHelper::OpenRasterDatasetW(_filename);
if( _rasterDataset != NULL )
{
_poBand = _rasterDataset->GetRasterBand(1);
}
}
// *****************************************************
// LoadRaster()
// *****************************************************
bool tkGridRaster::LoadRaster(CStringW filename, bool InRam, GridFileType fileType)
{
_filename = filename;
CStringA filenameA = Utility::ConvertToUtf8(filename);
return LoadRasterCore(filenameA.GetBuffer(), InRam, fileType);
}
bool tkGridRaster::LoadRasterCore(char* filenameA, bool InRam, GridFileType fileType)
{
__try
{
_canScanlineBuffer = false;
_currentFileType = fileType;
GDALAllRegister();
_rasterDataset = GdalHelper::OpenRasterDatasetA(filenameA);
if (!_rasterDataset) {
return false;
}
_nBands = _rasterDataset->GetRasterCount();
_width = _rasterDataset->GetRasterXSize();
_height = _rasterDataset->GetRasterYSize();
double adfGeoTransform[6];
if( _rasterDataset->GetGeoTransform( adfGeoTransform ) == CE_None )
{
// CDM March 18 for bug #100
// GetGeoTransform will always return the corner cell whether it's
// PixelIsArea or PixelIsPoint. So, add a half-cell offset to make
// it PixelIsPoint for MapWinGIS compatibility. Saving out won't hurt
// anything, since the tiepoints won't change. CreateNew will default
// to PixelIsArea by applying the reverse of this adjustment.
const char * pszCellRegistration = _rasterDataset->GetMetadataItem("AREA_OR_POINT", NULL);
// PixelIsArea. Use half-cell offset fix. (Shift Inward)
_dX = adfGeoTransform[1];
_dY = -1 * adfGeoTransform[5];
_xllCenter = adfGeoTransform[0];
_xllCenter += (_dX / 2);
_yllCenter = adfGeoTransform[3] - _height*_dY;
_yllCenter += (_dY / 2);
}
else
{
//Try to display images without headers
_xllCenter = 0;
_yllCenter = 0;
_dX = 1;
_dY = -1;
}
if (!this->OpenBand(_activeBandIndex))
{
return false;
}
this->ReadProjection();
_inRam = InRam;
if (_inRam)
{
LoadFullBuffer();
}
// Determine if scanline buffer can be done in case
// of inram==false, whether passed or forced by LoadFullBuffer
if (_genericType == GDT_Int32 || _genericType == GDT_Byte)
{
// Chris M 1/28/2007 -- multiply this by two, since we use two buffers
if (MemoryAvailable(2 * _width * sizeof(_int32)))
_canScanlineBuffer = true;
}
else
{
if (MemoryAvailable(2 * _width * sizeof(float)))
_canScanlineBuffer = true;
}
}
__except(1)
{
// Meh - doesn't particularly matter if the dataset loaded.
}
return (_rasterDataset != NULL);
}
int tkGridRaster::getNumBands()
{
return this->_nBands;
}
// *****************************************************
// OpenBand()
// *****************************************************
bool tkGridRaster::OpenBand(int bandIndex)
{
int count = _rasterDataset->GetRasterCount();
_poBand = _rasterDataset->GetRasterBand(bandIndex);
if (!_poBand) {
return false;
}
_cachedMax = -9999.0;
_cachedMin = 9999.0;
_activeBandIndex = bandIndex;
_dataType = _poBand->GetRasterDataType();
if(!( (_dataType == GDT_Byte)||(_dataType == GDT_UInt16)||
(_dataType == GDT_Int16)||(_dataType == GDT_UInt32)||
(_dataType == GDT_Int32)||(_dataType == GDT_Float32)||
(_dataType == GDT_Float64)||(_dataType == GDT_CInt16)||
(_dataType == GDT_CInt32)||(_dataType == GDT_CFloat32)||
(_dataType == GDT_CFloat64) ) )
{
return false;
}
// Assuming one band -- "grid" is only used for one band.
// 3 band and other colorized rasters are used through tkRaster
_dataType = _poBand->GetRasterDataType();
_cIntp = _poBand->GetColorInterpretation();
_poColorT = _poBand->GetColorTable();
if (_poColorT != NULL)
{
_hasColorTable = true;
}
//Route the image to the right reader
//Note: we are assuming here that the data type does not change across bands.
//However in some complex formats this is not necessarily the case
switch (_dataType)
{
case GDT_Float32:
case GDT_Float64:
_genericType=GDT_Float32;
break;
case GDT_Byte:
_genericType = GDT_Byte;
break;
case GDT_Int16:
case GDT_UInt16:
_genericType = GDT_Int32;
break;
default:
_genericType = GDT_Int32;
break;
}
// Update width and height
long nWidth = _poBand->GetXSize();
long nHeight = _poBand->GetYSize();
if (nWidth != _width)
{
_width = nWidth;
}
if (nHeight != _height)
{
_height = nHeight;
}
int success = -1;
double candidateNoDataValue = _poBand->GetNoDataValue(&success);
if (success)
{
_noDataValue = candidateNoDataValue;
}
else
{
// Write the assumed nodata value (ArCMapView) so that it doesn't die on GetMin.
_poBand->SetNoDataValue(_noDataValue);
}
return true;
}
// *****************************************************
// ReadProjection()
// *****************************************************
void tkGridRaster::ReadProjection()
{
_projection = "";
const char * wkt = _rasterDataset->GetProjectionRef();
if (wkt)
{
IGeoProjection* proj = NULL;
ComHelper::CreateInstance(idGeoProjection, (IDispatch**)&proj);
if (proj)
{
USES_CONVERSION;
VARIANT_BOOL vb;
CComBSTR bstrWkt(wkt);
proj->ImportFromAutoDetect(bstrWkt, &vb);
if (vb)
{
CComBSTR bstr;
proj->ExportToProj4(&bstr);
_projection = OLE2A(bstr);
}
proj->Release();
}
}
}
GridDataType tkGridRaster::GetDataType()
{
if (_genericType == GDT_Int32)
return LongDataType;
else if (_genericType == GDT_Byte)
return ByteDataType;
else
return FloatDataType;
}
bool tkGridRaster::CreateNew(CStringW filename, GridFileType newFileType, double dx, double dy,
double xllcenter, double yllcenter, double nodataval, char * projection,
long ncols, long nrows, GridDataType DataType, bool CreateInRam, double initialValue, bool applyInitialValue)
{
GDALAllRegister();
if (DataType == ShortDataType || DataType == LongDataType)
_genericType = GDT_Int32;
if (DataType == FloatDataType || DataType == DoubleDataType || DataType == InvalidDataType || DataType == UnknownDataType)
_genericType = GDT_Float32;
if (DataType == ByteDataType)
_genericType = GDT_Byte;
char **papszOptions = NULL;
char *pszFormat;
if (newFileType == Ecw)
pszFormat = T2A("ECW");
if (newFileType == Bil)
pszFormat = T2A("EHdr");
if (newFileType == MrSid)
return false; // License restrictions forbid this
if (newFileType == Ascii)
pszFormat = T2A("AAIGrid");
if (newFileType == PAux)
pszFormat = T2A("PAux");
if (newFileType == PCIDsk)
pszFormat = T2A("PCIDSK");
if (newFileType == DTed)
pszFormat = T2A("DTED");
if (newFileType == GeoTiff)
pszFormat = T2A("GTiff");
GDALDriver *poDriver;
poDriver = GetGDALDriverManager()->GetDriverByName(pszFormat);
if( poDriver == NULL )
return false;
if (filename.GetLength() == 0)
return false;
//if (filename == NULL) return false;
try
{
_wunlink(filename);
}
catch(...)
{}
m_globalSettings.SetGdalUtf8(true);
_rasterDataset = poDriver->Create( Utility::ConvertToUtf8(filename), ncols, nrows, 1, _genericType, papszOptions );
m_globalSettings.SetGdalUtf8(false);
_currentFileType = newFileType;
_width = ncols;
_height = nrows;
_xllCenter = xllcenter;
_yllCenter = yllcenter;
_dX = dx;
_dY = dy;
_projection = projection;
// Adjust by one half-cell offset to make this PixelIsArea.
// (Shift Outward)
// Don't bother trying to write this tag out -- GDAL doesn't
// seem to write that tag no matter how we try. It can read it
// fine, and it defaults to PixelIsArea if missing... so no problem.
double adfGeoTransform[6];
adfGeoTransform[0] = _xllCenter - (_dX / 2);
adfGeoTransform[1] = _dX;
adfGeoTransform[2] = 0;
adfGeoTransform[3] = (_height * dy) + _yllCenter + ((_dY * -1) / 2);
adfGeoTransform[4] = 0;
adfGeoTransform[5] = _dY * -1;
_rasterDataset->SetGeoTransform( adfGeoTransform );
if (_rasterDataset == NULL)
return false;
_poBand = _rasterDataset->GetRasterBand(1); // to open the first band is ok here;
if (_hasColorTable)
{
_poBand->SetColorTable(_poColorT);
}
_poBand->SetNoDataValue(nodataval);
_noDataValue = nodataval;
_filename = filename;
_inRam = CreateInRam;
if (_inRam)
{
// Make a buffer
if (_genericType == GDT_Int32 || _genericType == GDT_Byte)
{
_int32buffer = (_int32 *) CPLMalloc( sizeof(_int32)*_width*_height );
if (!_int32buffer)
{
_inRam = false; // Force the user to use disk-based;
// not enough memory likely to load into memory.
}
}
else
{
_floatbuffer = (float *) CPLMalloc( sizeof(float)*_width*_height );
if (!_floatbuffer)
{
_inRam = false; // Force the user to use disk-based;
// not enough memory likely to load into memory.
}
}
}
// Write the initial value
if (applyInitialValue)
clear(initialValue);
if (projection && strcmp(projection, "") != 0)
{
// SetProjection expects WKT
if (startsWith(projection, "+proj"))
{
char * wkt = NULL;
ProjectionTools * p = new ProjectionTools();
p->ToESRIWKTFromProj4(&wkt, projection);
if (wkt != NULL && strcmp(wkt, "") != 0)
{
_rasterDataset->SetProjection(wkt);
}
delete p; //added by Lailin Chen 12/30/2005, don't delete wkt
}
else
{
// Reasonably good indicator it's WKT
if (contains(projection, '[') && contains(projection, ']'))
{
_rasterDataset->SetProjection( projection );
}
}
}
return true;
}
bool tkGridRaster::startsWith(const char* compare, const char* starts) const
{
bool cc = false;
if(!starts && !compare)
{
return true;
}
if(!*starts)
{
return (::_tcslen(compare) == 0);
}
size_t arglen = ::_tcslen(starts);
if(arglen <= ::_tcslen(compare))
{
cc = (_strnicmp(compare, starts, arglen) == 0);
}
return cc;
}
bool tkGridRaster::CanCreate(GridFileType newFileType)
{
GDALAllRegister();
char *pszFormat;
if (newFileType == Ecw)
pszFormat = T2A("ECW");
if (newFileType == Bil)
pszFormat = T2A("EHdr");
if (newFileType == MrSid)
return false; // License restrictions forbid this
if (newFileType == Ascii)
pszFormat = T2A("AAIGrid");
if (newFileType == PAux)
pszFormat = T2A("PAux");
if (newFileType == PCIDsk)
pszFormat = T2A("PCIDSK");
if (newFileType == DTed)
pszFormat = T2A("DTED");
if (newFileType == GeoTiff)
pszFormat = T2A("GTiff");
GDALDriver *poDriver;
char **papszMetadata;
poDriver = GetGDALDriverManager()->GetDriverByName(pszFormat);
// Don't delete poDriver - metadata will be reference counted -- don't free it.
// reference counted.
if( poDriver == NULL )
return false;
papszMetadata = poDriver->GetMetadata();
if( CSLFetchBoolean( papszMetadata, GDAL_DCAP_CREATE, FALSE ) )
return true;
else
return false;
}
bool tkGridRaster::CanCreate()
{
static bool haveDetermined = false;
static bool priorDecision = false;
if (haveDetermined) return priorDecision;
GDALAllRegister();
GDALDriver *poDriver;
char **papszMetadata;
poDriver = _rasterDataset->GetDriver();
// Don't delete poDriver - metadata will be reference counted -- don't free it.
if( poDriver == NULL )
return false; // No driver == no dataset == no write.
papszMetadata = poDriver->GetMetadata();
haveDetermined = true;
if( CSLFetchBoolean( papszMetadata, GDAL_DCAP_CREATE, FALSE ) )
{
priorDecision = true;
return true;
}
else
{
priorDecision = false;
return false;
}
}
bool tkGridRaster::Close()
{
try
{
if (_rasterDataset != NULL)
{
delete _rasterDataset;
_rasterDataset=NULL;
}
if( _int32buffer != NULL )
{
CPLFree( _int32buffer );
_int32buffer = NULL;
}
if( _floatbuffer != NULL )
{
CPLFree( _floatbuffer );
_floatbuffer = NULL;
}
if( _int32ScanlineBufferA != NULL )
{
CPLFree( _int32ScanlineBufferA );
_int32ScanlineBufferA = NULL;
}
if( _floatScanlineBufferA != NULL )
{
CPLFree( _floatScanlineBufferA );
_floatScanlineBufferA = NULL;
}
if( _int32ScanlineBufferB != NULL )
{
CPLFree( _int32ScanlineBufferB );
_int32ScanlineBufferB = NULL;
}
if( _floatScanlineBufferB != NULL )
{
CPLFree( _floatScanlineBufferB );
_floatScanlineBufferB = NULL;
}
_cachedMax = -9999;
_cachedMin = 9999;
_genericType = GDT_Unknown;
_hasColorTable = false;
_activeBandIndex = 1;
}
catch(...)
{
return false;
}
return true;
}
double tkGridRaster::GetMaximum()
{
if (_cachedMax != -9999) return _cachedMax;
int bGotMin, bGotMax;
double adfMinMax[2];
adfMinMax[0] = _poBand->GetMinimum( &bGotMin );
adfMinMax[1] = _poBand->GetMaximum( &bGotMax );
if( ! (bGotMin && bGotMax) )
{
GDALComputeRasterMinMax((GDALRasterBandH)_poBand, false, adfMinMax);
}
_cachedMax = adfMinMax[1];
_cachedMin = adfMinMax[0];
return adfMinMax[1];
}
double tkGridRaster::GetMinimum()
{
if (_cachedMin != 9999) return _cachedMin;
int bGotMin, bGotMax;
double adfMinMax[2];
adfMinMax[0] = _poBand->GetMinimum( &bGotMin );
adfMinMax[1] = _poBand->GetMaximum( &bGotMax );
if( ! (bGotMin && bGotMax) )
{
GDALComputeRasterMinMax((GDALRasterBandH)_poBand, false, adfMinMax);
}
_cachedMax = adfMinMax[1];
_cachedMin = adfMinMax[0];
return adfMinMax[0];
}
void tkGridRaster::LoadFullBuffer()
{
try
{
if (_genericType == GDT_Int32 || _genericType == GDT_Byte)
{
// Is there enough memory available?
// CDM 1/6/2007: On one really extreme case, the amount
// of memory required would have caused the size of the largest
// datatype to overflow repeatedly. So check in a stepwise
// fashion "up to" the size we really want
if (!MemoryAvailable(_width*_height))
{
_inRam = false;
return;
}
if (!MemoryAvailable(_width*_height*2))
{
_inRam = false;
return;
}
if (!MemoryAvailable(_width*_height*sizeof(_int32)*2))
{
_inRam = false;
return;
}
_int32buffer = (_int32 *) CPLMalloc( sizeof(_int32)*_width*_height );
if (!_int32buffer)
{
_inRam = false; // Force the user to use disk-based;
// not enough memory likely to load into memory.
return;
}
_poBand->AdviseRead ( 0, 0, _width, _height, _width, _height, GDT_Int32, NULL);
_poBand->RasterIO( GF_Read, 0, 0, _width, _height,
_int32buffer, _width, _height, GDT_Int32,0, 0 );
}
else
{
// Is there enough memory available?
// CDM 1/6/2007: On one really extreme case, the amount
// of memory required would have caused the size of the largest
// datatype to overflow repeatedly. So check in a stepwise
// fashion "up to" the size we really want
if (!MemoryAvailable(_width*_height))
{
_inRam = false;
return;
}
if (!MemoryAvailable(_width*_height*2))
{
_inRam = false;
return;
}
if (!MemoryAvailable(_width*_height*sizeof(float)*2))
{
_inRam = false;
return;
}
_floatbuffer = (float *) CPLMalloc( sizeof(float)*_width*_height );
if (!_floatbuffer)
{
_inRam = false; // Force the user to use disk-based;
// not enough memory likely to load into memory.
return;
}
_poBand->AdviseRead ( 0, 0, _width, _height, _width, _height, GDT_Float32, NULL);
_poBand->RasterIO( GF_Read, 0, 0, _width, _height,
_floatbuffer, _width, _height, GDT_Float32,0, 0 );
}
}
catch(...)
{
_inRam = false;
}
}
bool tkGridRaster::GetFloatWindow(void *Vals, long StartRow, long EndRow, long StartCol, long EndCol, bool useDouble)
{
if (_poBand == NULL) return false;
// Load from buffer if it exists, otherwise use RasterIO.
// Since there are lots of potential buffers, just call getValue
if (_int32buffer != NULL || _floatbuffer != NULL || _int32ScanlineBufferB != NULL || _floatScanlineBufferB != NULL || _int32ScanlineBufferA != NULL || _floatScanlineBufferA != NULL)
{
long position = 0;
double* ValsDouble = reinterpret_cast<double*>(Vals);
float* ValsFloat = reinterpret_cast<float*>(Vals);
for (long j = StartRow; j <= EndRow; j++)
{
for (long i = StartCol; i <= EndCol; i++)
{
// Just use getvalue -- it will be memory-based,
// and will account for the correct buffer.
if (useDouble)
{
ValsDouble[position++] = getValue(j, i);
}
else
{
ValsFloat[position++] = static_cast<float>(getValue(j, i));
}
}
}
}
else
{
// Use Rasterio Directly from disk -- faster for large grids,
// which is likely when this function will be called anyway.
try
{
GDALDataType type = useDouble ? GDT_Float64 : GDT_Float32;
_poBand->AdviseRead ( StartCol, StartRow, (EndCol - StartCol)+1, (EndRow - StartRow)+1, (EndCol - StartCol)+1, (EndRow - StartRow)+1, type, NULL);
_poBand->RasterIO( GF_Read, StartCol, StartRow, (EndCol - StartCol)+1, (EndRow - StartRow)+1, Vals, (EndCol - StartCol)+1, (EndRow - StartRow)+1, type, 0, 0 );
}
catch(...)
{
return false;
}
}
return true;
}
bool tkGridRaster::PutFloatWindow(void *Vals, long StartRow, long EndRow, long StartCol, long EndCol, bool useDouble)
{
if (_poBand == NULL) return false;
// Reset our cached max/min values to our "unset" flags
_cachedMin = 9999;
_cachedMax = -9999;
// Save to buffer if it exists, otherwise use RasterIO.
if (_int32buffer != NULL || _floatbuffer != NULL || _int32ScanlineBufferB != NULL ||
_floatScanlineBufferB != NULL || _int32ScanlineBufferA != NULL || _floatScanlineBufferA != NULL)
{
double* ValsDouble = reinterpret_cast<double*>(Vals);
float* ValsFloat = reinterpret_cast<float*>(Vals);
long position = 0;
for (long j = StartRow; j <= EndRow; j++)
{
for (long i = StartCol; i <= EndCol; i++)
{
// Just use putvalue -- it will be memory-based,
// and will account for the correct buffer.
if (useDouble)
{
putValue(j, i, ValsDouble[position++]);
}
else
{
putValue(j, i, static_cast<float>(ValsFloat[position++]));
}
}
}
}
else
{
// Use Rasterio Directly to disk -- faster for large grids,
// which is likely when this function will be called anyway.
try
{
GDALDataType type = useDouble ? GDT_Float64 : GDT_Float32;
_poBand->RasterIO( GF_Write, StartCol, StartRow, (EndCol - StartCol)+1, (EndRow - StartRow)+1,
Vals, (EndCol - StartCol)+1, (EndRow - StartRow)+1, type, 0, 0 );
}
catch(...)
{
return false;
}
}
return true;
}
void tkGridRaster::clear(double value)
{
if (_inRam && _int32buffer != NULL)
{
for (int i = 0; i < _width * _height; i++)
_int32buffer[i] = static_cast<_int32>(value);
}
else if (_inRam && _floatbuffer != NULL)
{
for (int i = 0; i < _width * _height; i++)
_floatbuffer[i] = static_cast<float>(value);
}
else if (!_inRam)
{
if (_poBand != NULL)
_poBand->Fill(value);
}
}
bool tkGridRaster::SaveFullBuffer()
{
// First, check to see if scanline buffering has been used. This will likely be the most common.
// If not, drop down to "buffer save"
bool retVal = false;
// Chris Michaelis 1/28/2007
// Do not use ELSE's here -- otherwise only every other line will be saved
if (_genericType != GDT_Int32 && _scanlineADataChanged && _floatScanlineBufferA != NULL)
{
_poBand->RasterIO( GF_Write, 0, _scanlineBufferNumberA, _width, 1,
_floatScanlineBufferA, _width, 1, GDT_Float32,0, 0 );
retVal = true;
_scanlineADataChanged = false;
}
if ((_genericType == GDT_Int32 || _genericType == GDT_Byte) && _scanlineADataChanged && _int32ScanlineBufferA != NULL)
{
_poBand->RasterIO( GF_Write, 0, _scanlineBufferNumberA, _width, 1,
_int32ScanlineBufferA, _width, 1, GDT_Int32,0, 0 );
retVal = true;
_scanlineADataChanged = false;
}
if (_genericType != GDT_Int32 && _scanlineBDataChanged && _floatScanlineBufferB != NULL)
{
_poBand->RasterIO( GF_Write, 0, _scanlineBufferNumberB, _width, 1,
_floatScanlineBufferB, _width, 1, GDT_Float32,0, 0 );
retVal = true;
_scanlineBDataChanged = false;
}
if ((_genericType == GDT_Int32 || _genericType == GDT_Byte) && _scanlineBDataChanged && _int32ScanlineBufferB != NULL)
{
_poBand->RasterIO( GF_Write, 0, _scanlineBufferNumberB, _width, 1,
_int32ScanlineBufferB, _width, 1, GDT_Int32,0, 0 );
retVal = true;
_scanlineBDataChanged = false;
}
// Buffer save -- if not scanlining.
if ((_genericType == GDT_Int32 || _genericType == GDT_Byte) && _int32buffer != NULL)
{
_poBand->RasterIO( GF_Write, 0, 0, _width, _height,
_int32buffer, _width, _height, GDT_Int32,0, 0 );
retVal = true;
}
if (_genericType == GDT_Float32 && _floatbuffer != NULL)
{
_poBand->RasterIO( GF_Write, 0, 0, _width, _height,
_floatbuffer, _width, _height, GDT_Float32,0, 0 );
retVal = true;
}
////08-Aug-09 Rob Cairns if using clip grid with polygon then genericType is not set here
////if (genericType != GDT_Float32 && genericType != GDT_Int32)
//if (genericType == GDT_Unknown)
//{
// if (_int32buffer != NULL)
// {
// poBand->RasterIO( GF_Write, 0, 0, width, height,
// _int32buffer, width, height, GDT_Int32,0, 0 );
// retVal = true;
// }
// if (floatbuffer != NULL)
// {
// poBand->RasterIO( GF_Write, 0, 0, width, height,
// floatbuffer, width, height, GDT_Float32,0, 0 );
// retVal = true;
// }
//}
retVal = true;// not in ram
_rasterDataset->FlushCache();
return retVal;
}
bool tkGridRaster::Save(CStringW saveToFilename, GridFileType newFileFormat)
{
// Write the .prj file
if (_projection.GetLength() > 0)
{
CStringW prjFilename = saveToFilename;
prjFilename = prjFilename.Left(prjFilename.GetLength() - 3) + L"prj";
FILE * prjFile = NULL;
prjFile = _wfopen(prjFilename, L"wb");
if (prjFile)
{