-
Notifications
You must be signed in to change notification settings - Fork 375
/
Copy pathgmt_gdalwrite.c
632 lines (581 loc) · 26 KB
/
gmt_gdalwrite.c
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
/*--------------------------------------------------------------------
*
* Copyright (c) 1991-2025 by the GMT Team (https://www.generic-mapping-tools.org/team.html)
* See LICENSE.TXT file for copying and redistribution conditions.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; version 3 or any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* Contact info: www.generic-mapping-tools.org *
*--------------------------------------------------------------------*/
/* Program: GMT_gdalwrite.c
* Purpose: routine to write files supported by gdal
*
* Note: this is a quite crude version tested only with RGB images.
* I also had to make a trick in order to be able to use the more general
* GDALCreateCopy method. Otherwise one could not create images in the more
* common formats such as JPEG or PNG.
* The trick is to create an intermediary MEM diver, write the data to it
* and finally use it as a dataset argument to GDALCreateCopy. One could not
* do this from the beginning because this method needs a Dataset and we didn't
* have any to start with. Only the pointer to 'data'.
* This all story needs bo checked for potential memory leaks.
*
* Author: Joaquim Luis
* Date: 26-April-2011
*
* A) List of exported gmt_* functions available to modules and libraries via gmt_dev.h:
*
* gmt_export_image : Write an image to disk stored in an GMT_IMAGE struct
* gmt_gdalwrite : Write a GDAL grid
*/
#define GDAL_TILE_SIZE 256 /* default tile size when creating tiled GTiff */
#define N_GDAL_EXTENSIONS 5
static char *gdal_drv[N_GDAL_EXTENSIONS] = {"GTiff", "GIF", "PNG", "JPEG", "BMP"};
/*----------------------------------------------------------|
* Public functions that are part of the GMT Devel library |
*----------------------------------------------------------|
*/
int gmt_export_image(struct GMT_CTRL *GMT, char *fname, struct GMT_IMAGE *I) {
/* Take the image stored in the I structure and write to file by calling gmt_gdalwrite()
The image format is inferred from the image name (in *fname) file extension,
or optionally by appending =<driver> to the file name, where <driver> is a
known GDAL driver. */
uint32_t row, col, band;
uint64_t k, ijk, b;
bool free_data = false;
char *ext = NULL, *c = NULL, *pch = NULL;
unsigned char *data = NULL;
struct GMT_GRID_HEADER_HIDDEN *HH = NULL;
struct GMT_GDALWRITE_CTRL *to_GDALW = NULL;
/* NOTE: in grdimage we have done this so may have to deal with this here.
if (grid_registration == GMT_GRID_NODE_REG) { Adjust domain by 1/2 pixel since they are outside the domain
img_wesn[XLO] -= 0.5 * img_inc[0]; img_wesn[XHI] += 0.5 * img_inc[0];
img_wesn[YLO] -= 0.5 * img_inc[1]; img_wesn[YHI] += 0.5 * img_inc[1];
}
*/
if ((to_GDALW = gmt_M_memory(GMT, NULL, 1, struct GMT_GDALWRITE_CTRL)) == NULL) return GMT_NOTSET;
if (I->header->ProjRefWKT != NULL) {
to_GDALW->P.ProjRefWKT = I->header->ProjRefWKT;
to_GDALW->P.active = true;
}
else if (I->header->ProjRefPROJ4 != NULL) {
if (I->header->ProjRefPROJ4[1] == 'x' && I->header->ProjRefPROJ4[2] == 'y') /* -JX. Forget conversion */
to_GDALW->P.active = false;
else {
to_GDALW->P.ProjRefPROJ4 = I->header->ProjRefPROJ4;
to_GDALW->P.active = true;
}
}
to_GDALW->flipud = 0;
to_GDALW->geog = 0;
to_GDALW->n_columns = (int)I->header->n_columns;
to_GDALW->n_rows = (int)I->header->n_rows;
to_GDALW->n_bands = I->header->n_bands;
to_GDALW->registration = I->header->registration;
to_GDALW->alpha = NULL;
to_GDALW->x_inc = I->header->inc[0];
to_GDALW->y_inc = I->header->inc[1];
if (to_GDALW->P.active) { /* A referenced image */
to_GDALW->ULx = I->header->wesn[XLO];
to_GDALW->ULy = I->header->wesn[YHI];
}
else if (I->header->wesn[XHI] > I->header->wesn[XLO] && I->header->wesn[YHI] > I->header->wesn[YLO]) { /* Header has valid -R */
to_GDALW->ULx = I->header->wesn[XLO];
to_GDALW->ULy = I->header->wesn[YHI];
}
else { /* Stuck with dimensions */
to_GDALW->ULx = 0;
to_GDALW->ULy = I->header->n_rows;
}
ext = gmt_get_ext(fname);
if (ext == NULL) {
GMT_Report(GMT->parent, GMT_MSG_ERROR, "MUST provide a file extension for the saving file (-G option). We need it to determine the output format.\n");
return GMT_NOTSET;
}
/* See if the extension if one of the well known image formats */
for (k = 0; to_GDALW->driver == NULL && k < N_GDAL_EXTENSIONS; k++) {
if (k == 0 && (!strcasecmp(ext, "tif") || !strcasecmp(ext, "tiff"))) /* Tiffs happen to have a different extension<->driver naming */
to_GDALW->driver = strdup(gdal_drv[k]);
else if (!strcasecmp(ext, "jpg"))
to_GDALW->driver = strdup("JPEG"); /* Jpegs too */
else if (!strcasecmp(ext, gdal_drv[k]))
to_GDALW->driver = strdup(gdal_drv[k]);
}
if (to_GDALW->driver == NULL) { /* None of those; need to give a driver */
if ((c = strchr(fname, ':'))) { /* Found an ':<driver>' part */
to_GDALW->driver = strdup(&c[1]);
c[0] = '\0'; /* Remove the driver code from the name */
if ((c = strstr(fname, "=gd"))) /* Check if we have not a stray =gd in name*/
c[0] = '\0'; /* Yes, remove it too */
}
else if ((c = strchr(fname, '='))) { /* Gave file=<format> so pass that along */
to_GDALW->driver = strdup(&c[1]);
c[0] = '\0';
}
else {
GMT_Report(GMT->parent, GMT_MSG_ERROR, "\".%s\" is an unsupported image format. Supported formats are:\n\tBMP,GIF,JPG,PNG & TIF\n", ext);
GMT_Report(GMT->parent, GMT_MSG_ERROR, "Alternatively, append :<driver> for a valid GDAL driver\n");
return GMT_NOTSET;
}
}
if (!strncmp(I->header->mem_layout, "TCB", 3)) {
/* Convert TCB to TRP as well as removing the pad */
to_GDALW->type = strdup("uint8");
if ((data = gmt_M_memory (GMT, NULL, I->header->nm * I->header->n_bands, char)) == NULL) return GMT_NOTSET;
for (k = band = 0; band < I->header->n_bands; band++) {
b = (uint64_t)band * I->header->size;
for (row = 0; row < I->header->n_rows; row++) {
for (col = 0; col < I->header->n_columns; col++) {
ijk = (uint64_t)col * I->header->my + row + I->header->pad[GMT_YHI] + b;
data[k++] = I->data[ijk];
}
}
}
if (I->alpha) { /* We have a transparency layer */
if ((to_GDALW->alpha = gmt_M_memory(GMT, NULL, I->header->nm, char)) == NULL) return GMT_NOTSET;
for (k = row = 0; row < I->header->n_rows; row++)
for (col = 0; col < I->header->n_columns; col++)
to_GDALW->alpha[k++] = I->alpha[(uint64_t)col * I->header->my + row + I->header->pad[GMT_YHI]];
}
free_data = true;
}
else if (!strncmp(I->header->mem_layout, "TRP", 3) || !strncmp(I->header->mem_layout, "BRP", 3)) {
bool is_padded = gmt_grd_pad_status(GMT, I->header, NULL); /* Do we have a pad */
to_GDALW->type = strdup("byte");
if (is_padded) { /* Must remove the pad by */
if ((data = gmt_M_memory(GMT, NULL, I->header->nm * I->header->n_bands, char)) == NULL) return GMT_NOTSET;
for (row = 0; row < I->header->n_rows; row++) {
ijk = (uint64_t)(((row + I->header->pad[GMT_YHI]) * I->header->mx + I->header->pad[GMT_XLO]) * I->header->n_bands);
gmt_M_memcpy(&data[row*I->header->n_columns*I->header->n_bands], &(I->data[ijk]), I->header->n_columns*I->header->n_bands, char);
}
if (I->alpha) { /* We have a transparency layer */
if ((to_GDALW->alpha = gmt_M_memory(GMT, NULL, I->header->nm, char)) == NULL) return GMT_NOTSET;
for (row = 0; row < I->header->n_rows; row++) {
ijk = (uint64_t)((row + I->header->pad[GMT_YHI]) * I->header->mx + I->header->pad[GMT_XLO]);
gmt_M_memcpy(&to_GDALW->alpha[row*I->header->n_columns], &(I->alpha[ijk]), I->header->n_columns, char);
}
}
if (to_GDALW->P.ProjRefPROJ4) {
to_GDALW->ULx = I->header->wesn[XLO];
to_GDALW->ULy = I->header->wesn[YHI];
to_GDALW->x_inc = I->header->inc[0];
to_GDALW->y_inc = I->header->inc[1];
}
free_data = true;
}
else { /* Use as is */
data = I->data;
if (I->alpha) to_GDALW->alpha = I->alpha;
}
}
else {
GMT_Report(GMT->parent, GMT_MSG_ERROR, "%s memory layout is not supported, for now only: T(op)C(ol)B(and) or TRP & BRP\n",
I->header->mem_layout);
gmt_M_free(GMT, to_GDALW);
return GMT_NOTSET;
}
if (I->n_indexed_colors > 0 && I->colormap) {
uint64_t n_colors = I->n_indexed_colors;
if (n_colors > 2000) /* If colormap is Mx4 or has encoded the alpha color */
n_colors = (uint64_t)(floor(n_colors / 1000.0));
to_GDALW->C.active = true;
to_GDALW->C.n_colors = I->n_indexed_colors;
to_GDALW->C.cpt = (float *)calloc(n_colors*4, sizeof(float));
/* Convert the colormap to floats 0-1, still in column vector format */
for (k = 0; k < 3 * n_colors; k++)
to_GDALW->C.cpt[k] = gmt_M_is255(I->colormap[k]);
if (I->n_indexed_colors > 2000) { /* Then we either have a Mx4 or a single alpha color */
float nc = I->n_indexed_colors / 1000.0;
if (nc - urint(nc) == 0) { /* An Mx4 */
while (k < (4 * n_colors)) {
to_GDALW->C.cpt[k] = gmt_M_is255(I->colormap[k]);
k++;
}
}
}
}
HH = gmt_get_H_hidden(I->header);
if (HH->pocket && (pch = strstr(HH->pocket, "+c")) != NULL) /* If we have a list of +c<options> */
to_GDALW->co_options = strdup(pch); /* This memory is freed in gmt_gdalwrite */
strncpy(to_GDALW->layout, I->header->mem_layout, 4);
to_GDALW->data = data;
gmt_gdalwrite(GMT, fname, to_GDALW);
if (free_data) gmt_M_free(GMT, data);
free (to_GDALW->driver);
free (to_GDALW->type);
if (free_data && to_GDALW->alpha) gmt_M_free(GMT, to_GDALW->alpha);
if (to_GDALW->C.active) free(to_GDALW->C.cpt);
gmt_M_free(GMT, to_GDALW);
return GMT_NOERROR;
}
GMT_LOCAL int gmtgdalwrite_write_jp2(struct GMT_CTRL *GMT, struct GMT_GDALWRITE_CTRL *prhs, GDALRasterBandH hBand, void *data, int n_rows, int n_cols) {
int error = 0, i, j;
float *t = (float *)data;
uint64_t k, n, nm = gmt_M_get_nm(GMT, n_rows, n_cols);
/* In gmt_gdal_write_grd we made the pointer to point to the beginning of the non-padded zone, so to make it
coherent we retrieve pad[XLO]. However, nothing of this is taking into account a -R subregion so all of this
(and not only this case) will probably fail for that case.
*/
t -= prhs->pad[XLO];
if (prhs->orig_type == GMT_UCHAR) {
char *dataT = gmt_M_memory(GMT, NULL, nm, char);
if (dataT == NULL) return GMT_MEMORY_ERROR;
for (i = 0, k = 0; i < n_rows; i++) {
n = (uint64_t)i*prhs->nXSizeFull + prhs->pad[XLO];
for (j = 0; j < n_cols; j++)
dataT[k++] = (char)t[n + j];
}
error = GDALRasterIO(hBand, GF_Write, 0, 0, n_cols, n_rows, dataT, n_cols, n_rows, GDT_Byte, 0, 0);
gmt_M_free(GMT, dataT);
}
else if (prhs->orig_type == GMT_USHORT) {
short int *dataT = gmt_M_memory(GMT, NULL, nm, unsigned short int);
if (dataT == NULL) return GMT_MEMORY_ERROR;
for (i = 0, k = 0; i < n_rows; i++) {
n = (uint64_t)i*prhs->nXSizeFull + prhs->pad[XLO];
for (j = 0; j < n_cols; j++)
dataT[k++] = (unsigned short int)t[n + j];
}
error = GDALRasterIO(hBand, GF_Write, 0, 0, n_cols, n_rows, dataT, n_cols, n_rows, GDT_UInt16, 0, 0);
gmt_M_free(GMT, dataT);
}
else if (prhs->orig_type == GMT_SHORT) {
short int *dataT = gmt_M_memory(GMT, NULL, nm, short int);
if (dataT == NULL) return GMT_MEMORY_ERROR;
for (i = 0, k = 0; i < n_rows; i++) {
n = (uint64_t)i*prhs->nXSizeFull + prhs->pad[XLO];
for (j = 0; j < n_cols; j++)
dataT[k++] = (short int)t[n + j];
}
error = GDALRasterIO(hBand, GF_Write, 0, 0, n_cols, n_rows, dataT, n_cols, n_rows, GDT_Int16, 0, 0);
gmt_M_free(GMT, dataT);
}
else if (prhs->orig_type == GMT_UINT) {
unsigned int *dataT = gmt_M_memory(GMT, NULL, nm, unsigned int);
if (dataT == NULL) return GMT_MEMORY_ERROR;
for (i = 0, k = 0; i < n_rows; i++) {
n = (uint64_t)i*prhs->nXSizeFull + prhs->pad[XLO];
for (j = 0; j < n_cols; j++)
dataT[k++] = (unsigned int)t[n + j];
}
error = GDALRasterIO(hBand, GF_Write, 0, 0, n_cols, n_rows, dataT, n_cols, n_rows, GDT_UInt32, 0, 0);
gmt_M_free(GMT, dataT);
}
else if (prhs->orig_type == GMT_INT) {
int *dataT = gmt_M_memory(GMT, NULL, nm, int);
if (dataT == NULL) return GMT_MEMORY_ERROR;
for (i = 0, k = 0; i < n_rows; i++) {
n = (uint64_t)i*prhs->nXSizeFull + prhs->pad[XLO];
for (j = 0; j < n_cols; j++)
dataT[k++] = (int)t[n + j];
}
error = GDALRasterIO(hBand, GF_Write, 0, 0, n_cols, n_rows, dataT, n_cols, n_rows, GDT_Int32, 0, 0);
gmt_M_free(GMT, dataT);
}
return error;
}
int gmt_gdalwrite(struct GMT_CTRL *GMT, char *fname, struct GMT_GDALWRITE_CTRL *prhs) {
int bStrict = false;
char **papszOptions = NULL, *projWKT = NULL;
char *pszFormat = "GTiff";
double adfGeoTransform[6] = {0,1,0,0,0,1};
char *pszSRS_WKT = NULL;
OGRSpatialReferenceH hSRS;
GDALDatasetH hDstDS, hOutDS;
GDALDriverH hDriver, hDriverOut;
GDALRasterBandH hBand;
GDALColorTableH hColorTable = NULL;
GDALColorEntry sEntry;
GDALProgressFunc pfnProgress = GDALTermProgress;
int n_cols, n_rows, i, error = GMT_NOERROR;
int typeCLASS, typeCLASS_f, nColors, n_byteOffset, n_bands, registration;
int is_geog = 0, gdal_err = 0;
uint64_t nn, ijk = 0;
void *data = NULL;
unsigned char *outByte = NULL, *img = NULL, *tmpByte = NULL;
float *ptr = NULL;
if (prhs->driver) pszFormat = prhs->driver; /* Otherwise use the default GTiff format */
adfGeoTransform[0] = prhs->ULx;
adfGeoTransform[3] = prhs->ULy;
adfGeoTransform[1] = prhs->x_inc;
adfGeoTransform[5] = -prhs->y_inc;
registration = prhs->registration;
is_geog = prhs->geog;
n_cols = prhs->n_columns;
n_rows = prhs->n_rows;
n_bands = prhs->n_bands;
data = prhs->data;
/* Find out in which data type was given the input array */
/* The two first cases below are messy. Decision should be made by a mem layout code stored in prhs */
if (!strcmp(prhs->type,"byte")) { /* This case arrives here via grdimage */
uint64_t imsize = gmt_M_get_nm(GMT, n_cols, n_rows);
typeCLASS = GDT_Byte;
n_byteOffset = 1;
if ((outByte = gmt_M_memory(GMT, NULL, imsize, unsigned char)) == NULL) return GMT_NOTSET;
}
else if (!strcmp(prhs->type,"uint8")) {
typeCLASS = GDT_Byte;
img = (unsigned char *)data;
n_byteOffset = 1;
}
else if (!strcmp(prhs->type,"uint16")) {
typeCLASS = GDT_UInt16;
n_byteOffset = 2;
}
else if (!strcmp(prhs->type,"int16")) {
typeCLASS = GDT_Int16;
n_byteOffset = 2;
}
else if (!strcmp(prhs->type,"uint32")) {
typeCLASS = GDT_UInt32;
n_byteOffset = 4;
}
else if (!strcmp(prhs->type,"int32")) {
typeCLASS = GDT_Int32;
n_byteOffset = 4;
}
else if (!strcmp(prhs->type,"float32")) {
typeCLASS = GDT_Float32;
n_byteOffset = 4;
}
else {
GMT_Report(GMT->parent, GMT_MSG_ERROR, "gmt_gdalwrite: Unsupported input data class!\n");
return GMT_NOTSET;
}
/* Jpeg2000 driver doesn't accept float arrays so we'll have to copy it into an int16 */
if (!strcasecmp(pszFormat,"JP2OpenJPEG")) {
if (prhs->orig_type == GMT_UCHAR) typeCLASS_f = GDT_Byte;
else if (prhs->orig_type == GMT_USHORT) typeCLASS_f = GDT_UInt16;
else if (prhs->orig_type == GMT_SHORT) typeCLASS_f = GDT_Int16;
else if (prhs->orig_type == GMT_UINT) typeCLASS_f = GDT_Int32;
else if (prhs->orig_type == GMT_INT) typeCLASS_f = GDT_UInt32;
else {
GMT_Report(GMT->parent, GMT_MSG_ERROR, "gmt_gdalwrite: The Jpeg2000 driver does not support floats.\n");
gmt_M_free(GMT, outByte);
return -1;
}
}
else
typeCLASS_f = typeCLASS;
if (prhs->C.active) {
/* Here we deal with contents of the prhs->C.cpt pointer. But there is the issue of the existence,
or not, of transparency. Because it's a pointer we cannot know if it holds a Mx3 or Mx4 array.
To know that the trick is to 'overload' the n_colors info. If it's > 2000 we interpret it as
an indication that we are in the Mx4 case. If, after divided by 1000, we have a decimal part, then
we assume that the decimal * 1000 is the number on the color matrix of the transparent color. And
then we use it to set prhs->nan_value. In gmt_gdalwrite it will be used by GDALSetRasterNoDataValue.
*/
float dc = 0.0, nc = 0.0;
nColors = prhs->C.n_colors;
if (nColors > 2000) { /* If colormap is Mx4 or has encoded the alpha color */
nColors = (int)(floor(nColors / 1000.0));
nc = prhs->C.n_colors / 1000.0;
dc = nc - rint(nc);
}
ptr = prhs->C.cpt;
hColorTable = GDALCreateColorTable(GPI_RGB);
if (prhs->C.n_colors < 2000 || dc > 0) { /* Simple case. Not overloaded meaning */
for (i = 0; i < nColors; i++) {
sEntry.c1 = gmt_M_s255(gmt_M_get_rgba(ptr, i, 0, nColors));
sEntry.c2 = gmt_M_s255(gmt_M_get_rgba(ptr, i, 1, nColors));
sEntry.c3 = gmt_M_s255(gmt_M_get_rgba(ptr, i, 2, nColors));
sEntry.c4 = (short)255;
GDALSetColorEntry (hColorTable, i, &sEntry);
}
}
else { /* Means the pointer points into a 4 columns array: RGB+alpha */
for (i = 0; i < (int)nc; i++) {
sEntry.c1 = gmt_M_s255(gmt_M_get_rgba(ptr, i, 0, nColors));
sEntry.c2 = gmt_M_s255(gmt_M_get_rgba(ptr, i, 1, nColors));
sEntry.c3 = gmt_M_s255(gmt_M_get_rgba(ptr, i, 2, nColors));
sEntry.c4 = gmt_M_s255(gmt_M_get_rgba(ptr, i, 3, nColors));
GDALSetColorEntry (hColorTable, i, &sEntry);
}
}
if (dc == 0.0)
prhs->nan_value = 0.5; /* Just a non-integer to prevent setting a transp color in gmt_gdalwrite(). */
else
prhs->nan_value = rint(dc * 1000) - 1; /* This will be the alpha color as set in gmt_gdalwrite() */
}
/* If grid limits were in grid registration, convert them to pixel reg */
if (registration == 0) {
adfGeoTransform[0] -= adfGeoTransform[1]/2.;
adfGeoTransform[3] -= adfGeoTransform[5]/2.;
}
/* If we have a PROJ4 string, convert (try) it to WKT */
if (prhs->P.active) {
OGRSpatialReferenceH hSRS_2 = NULL;
hSRS_2 = OSRNewSpatialReference(NULL);
if (prhs->P.ProjRefWKT != NULL && prhs->P.ProjRefWKT[0]) {
projWKT = prhs->P.ProjRefWKT;
}
else if (OSRImportFromProj4(hSRS_2, prhs->P.ProjRefPROJ4) == CE_None) {
char *pszPrettyWkt = NULL;
OSRExportToPrettyWkt(hSRS_2, &pszPrettyWkt, false);
projWKT = pszPrettyWkt;
}
else {
GMT_Report(GMT->parent, GMT_MSG_ERROR, "gmt_gdalwrite failed to convert the proj4 string\n%s\n to WKT\n",
prhs->P.ProjRefPROJ4);
}
OSRDestroySpatialReference(hSRS_2);
}
pfnProgress = GDALDummyProgress;
GDALAllRegister();
hDriver = GDALGetDriverByName("MEM"); /* Intrmediary MEM diver to use as arg to GDALCreateCopy method */
hDriverOut = GDALGetDriverByName(pszFormat); /* The true output format driver */
if (hDriverOut == NULL) {
GMT_Report(GMT->parent, GMT_MSG_ERROR, "gmt_gdalwrite: Output driver %s not recognized\n", pszFormat);
if (gmt_M_is_verbose(GMT, GMT_MSG_WARNING)) {
GMT_Report(GMT->parent, GMT_MSG_WARNING, "The following format drivers are configured and support output:\n");
for (i = 0; i < GDALGetDriverCount(); i++) {
hDriver = GDALGetDriver(i);
if (GDALGetMetadataItem(hDriver, GDAL_DCAP_CREATE, NULL) != NULL ||
GDALGetMetadataItem(hDriver, GDAL_DCAP_CREATECOPY, NULL) != NULL)
GMT_Report(GMT->parent, GMT_MSG_WARNING, " %s: %s\n",
GDALGetDriverShortName(hDriver), GDALGetDriverLongName(hDriver));
}
}
gmtlib_GDALDestroyDriverManager(GMT->parent);
gmt_M_free(GMT, outByte);
return(-1);
}
if (prhs->alpha) /* If transparency, number of requested bands must increment by one */
hDstDS = GDALCreate(hDriver, "mem", n_cols, n_rows, n_bands+1, typeCLASS, NULL);
else
hDstDS = GDALCreate(hDriver, "mem", n_cols, n_rows, n_bands, typeCLASS_f, NULL);
if (hDstDS == NULL) {
GMT_Report(GMT->parent, GMT_MSG_ERROR, "GDALOpen failed - %d\n%s\n", CPLGetLastErrorNo(), CPLGetLastErrorMsg());
gmtlib_GDALDestroyDriverManager(GMT->parent);
gmt_M_free(GMT, outByte);
return (-1);
}
GDALSetGeoTransform(hDstDS, adfGeoTransform);
if (prhs->co_options) {
unsigned int pos = 0;
char token[64];
while (gmt_strtok(prhs->co_options, "+", &pos, token)) {
if (token[0] == 'c')
papszOptions = CSLAddString(papszOptions, &token[1]); /* Jump the 'c' */
}
}
/* Use default compression with GeoTiff driver, unless co_options were passed. Than the above should have taken care of it. */
if (!strcasecmp(pszFormat,"GTiff") && !prhs->co_options) {
papszOptions = CSLAddString(papszOptions, "COMPRESS=DEFLATE");
/* tiles are less efficient in small grids (padding) and are not
* supported everywhere, when n_cols < tile_width || n_rows < tile_height */
if (n_cols > 3 * GDAL_TILE_SIZE && n_rows > 3 * GDAL_TILE_SIZE)
papszOptions = CSLAddString(papszOptions, "TILED=YES");
if (is_geog || projWKT) {
/* Be respectful to data type registration */
if (registration == 0)
GDALSetMetadataItem(hDstDS, "AREA_OR_POINT", "Point", NULL);
else
GDALSetMetadataItem(hDstDS, "AREA_OR_POINT", "Area", NULL);
}
}
if (prhs->co_options)
free (prhs->co_options); /* Was allocated with an strdup() in gmt_gdal_write_grd() */
/* This was the only trick I found to set a "projection". */
if (is_geog || projWKT || !strcasecmp(pszFormat,"GTiff")) {
hSRS = OSRNewSpatialReference(NULL);
if (is_geog && !projWKT) /* Only thing we know is that it is Geog */
OSRSetFromUserInput(hSRS, "+proj=latlong +datum=WGS84");
else if (projWKT) /* Even if is_geog == true, use the WKT string */
OSRSetFromUserInput(hSRS, projWKT);
OSRExportToWkt(hSRS, &pszSRS_WKT);
OSRDestroySpatialReference(hSRS);
GDALSetProjection(hDstDS, pszSRS_WKT);
}
for (i = 0; i < n_bands; i++) {
/* A problem with writing to the MEM driver is that it tests that we don't overflow
but the issue is that the test is done on the MEM declared size, whilst we are
actually using a larger array, and the dimensions passed to GDALRasterIO refer
to it. The trick was to offset the initial position of the 'data' array in
gmt_gdal_write_grd and adapt the line stride here (last GDALRasterIO argument).
Thanks to Even Roualt, see:
osgeo-org.1560.n6.nabble.com/gdal-dev-writing-a-subregion-with-GDALRasterIO-td4960500.html */
hBand = GDALGetRasterBand(hDstDS, i+1);
if (i == 0 && hColorTable != NULL) {
if (GDALSetRasterColorTable(hBand, hColorTable) == CE_Failure)
GMT_Report(GMT->parent, GMT_MSG_ERROR, "\tERROR creating Color Table");
GDALDestroyColorTable(hColorTable);
}
switch (typeCLASS) {
case GDT_Byte:
if (rint(prhs->nan_value) == prhs->nan_value) /* Only set NoData if nan_value contains an integer value */
GDALSetRasterNoDataValue(hBand, prhs->nan_value);
if (!strcmp(prhs->type, "byte")) {
/* This case arrives here from a separate path. It started in grdimage and an originally
data was in uchar but padded and possibly 3D (RGB) */
uint64_t imsize = gmt_M_get_nm(GMT, n_cols, n_rows);
tmpByte = (unsigned char *)data;
for (nn = 0; nn < imsize; nn++)
outByte[nn] = tmpByte[nn*n_bands + i];
if ((gdal_err = GDALRasterIO(hBand, GF_Write, 0, 0, n_cols, n_rows, outByte, n_cols, n_rows, typeCLASS, 0, 0)) != CE_None)
GMT_Report(GMT->parent, GMT_MSG_ERROR, "GDALRasterIO failed to write band %d [err = %d]\n", i, gdal_err);
}
else {
/* Here 'data' was converted to uchar in gmt_customio.c/gmt_gdal_write_grd */
ijk = i * gmt_M_get_nm(GMT, n_cols, n_rows);
if ((gdal_err = GDALRasterIO(hBand, GF_Write, 0, 0, n_cols, n_rows, &img[ijk], n_cols, n_rows, typeCLASS, 0, 0)) != CE_None)
GMT_Report(GMT->parent, GMT_MSG_ERROR, "GDALRasterIO failed to write band %d [err = %d]\n", i, gdal_err);
}
if (i == n_bands - 1 && prhs->alpha && prhs->layout[3] != 'A') { /* Time to write the alpha layer. */
hBand = GDALGetRasterBand(hDstDS, i + 2);
if ((gdal_err = GDALRasterIO(hBand, GF_Write, 0, 0, n_cols, n_rows, prhs->alpha, n_cols, n_rows, typeCLASS, 0, 0)) != CE_None)
GMT_Report(GMT->parent, GMT_MSG_ERROR, "GDALRasterIO failed to write alpha band [err = %d]\n", gdal_err);
}
break;
case GDT_UInt16:
case GDT_Int16:
case GDT_UInt32:
case GDT_Int32:
if (rint(prhs->nan_value) == prhs->nan_value) /* Only set NoData if nan_value contains an integer value */
GDALSetRasterNoDataValue(hBand, prhs->nan_value);
if ((gdal_err = GDALRasterIO(hBand, GF_Write, 0, 0, n_cols, n_rows, data, n_cols, n_rows, typeCLASS, 0, 0)) != CE_None)
GMT_Report(GMT->parent, GMT_MSG_ERROR, "GDALRasterIO failed to write band %d [err = %d]\n", i, gdal_err);
break;
case GDT_Float32:
GDALSetRasterNoDataValue(hBand, prhs->nan_value);
if (!strcasecmp(pszFormat,"JP2OpenJPEG")) { /* JP2 driver doesn't accept floats, so we must make a copy */
if ((gdal_err = gmtgdalwrite_write_jp2(GMT, prhs, hBand, data, n_rows, n_cols)) != CE_None)
GMT_Report(GMT->parent, GMT_MSG_ERROR, "GDALRasterIO failed to write band %d [err = %d]\n", i, gdal_err);
}
else {
if ((gdal_err = GDALRasterIO(hBand, GF_Write, 0, 0, n_cols, n_rows, data, n_cols, n_rows, typeCLASS, 0,
prhs->nXSizeFull * n_byteOffset)) != CE_None)
GMT_Report(GMT->parent, GMT_MSG_ERROR, "GDALRasterIO failed to write band %d [err = %d]\n", i, gdal_err);
}
break;
}
/* Compute and set image statistics (if possible) */
GDALComputeRasterStatistics(hBand, 0, NULL, NULL, NULL, NULL, NULL, NULL);
}
if (prhs->H.active) /* Then save the GDAL dataset pointer to be used by caller */
prhs->H.hSrcDS = hDstDS;
else {
hOutDS = GDALCreateCopy(hDriverOut, fname, hDstDS, bStrict, papszOptions, pfnProgress, NULL);
if (hOutDS != NULL) GDALClose(hOutDS);
GDALClose(hDstDS);
}
if (!prhs->H.active && gmt_strlcmp(pszFormat,"netCDF")) { /* Change some attributes written by GDAL (not finished) */
int ncid;
error = gmt_nc_open(GMT, fname, NC_WRITE, &ncid);
error += nc_put_att_text(ncid, NC_GLOBAL, "history", strlen(prhs->command), prhs->command);
error += gmt_nc_close(GMT, ncid);
if (error) GMT_Report(GMT->parent,GMT_MSG_ERROR,"Error adding history: %d\n", error);
}
gmt_M_free(GMT, outByte);
if (pszSRS_WKT != NULL) CPLFree(pszSRS_WKT);
if (papszOptions != NULL) CSLDestroy(papszOptions);
gmtlib_GDALDestroyDriverManager(GMT->parent);
return error;
}