-
Notifications
You must be signed in to change notification settings - Fork 375
/
Copy pathgrd2xyz.c
876 lines (801 loc) · 40 KB
/
grd2xyz.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
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
/*--------------------------------------------------------------------
*
* 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
*--------------------------------------------------------------------*/
/*
* Brief synopsis: grd2xyz.c reads a grid file and prints out the x,y,z values to
* standard output.
*
* Author: Paul Wessel
* Date: 1-JAN-2010
* Version: 6 API
*/
#include "gmt_dev.h"
#include "longopt/grd2xyz_inc.h"
#define THIS_MODULE_CLASSIC_NAME "grd2xyz"
#define THIS_MODULE_MODERN_NAME "grd2xyz"
#define THIS_MODULE_LIB "core"
#define THIS_MODULE_PURPOSE "Convert grid to data table"
#define THIS_MODULE_KEYS "<G{+,>D}"
#define THIS_MODULE_NEEDS ""
#define THIS_MODULE_OPTIONS "-:>RVbdfhoqs" GMT_OPT("H")
enum grd2xyz_mode {
GRD2XYZ_COL = 0,
GRD2XYZ_ROW = 1,
GRD2XYZ_X = 2,
GRD2XYZ_Y = 3
};
struct GRD2XYZ_CTRL {
struct GRD2XYZ_C { /* -C<cpt> or -C<color1>,<color2>[,<color3>,...][+i<dz>] */
bool active;
double dz; /* Rounding for min/max determined from data */
char *file;
char *savecpt; /* For when we want to save the automatically generated CPT */
} C;
struct GRD2XYZ_E { /* -E[f][<nodata>] */
bool active;
bool floating;
double nodata;
} E;
struct GRD2XYZ_F { /* -F[f|i] */
bool active;
unsigned int mode;
} F;
struct GRD2XYZ_L { /* -Lc|r|x|y<value> */
bool active;
unsigned int mode;
int item;
double value;
} L;
struct GRD2XYZ_T { /* -T[a|b][<base>] */
bool active;
bool binary;
gmt_grdfloat base;
} T;
struct GRD2XYZ_W { /* -W[a|<weight>][+u<unit>] */
bool active;
bool area;
char unit;
double weight;
} W;
struct GMT_PARSE_Z_IO Z;
};
static void *New_Ctrl (struct GMT_CTRL *GMT) { /* Allocate and initialize a new control structure */
struct GRD2XYZ_CTRL *C;
C = gmt_M_memory (GMT, NULL, 1, struct GRD2XYZ_CTRL);
/* Initialize values whose defaults are not 0/false/NULL */
C->E.nodata = -9999.0;
C->T.base = (gmt_grdfloat)GMT->session.d_NaN; /* Not set */
C->W.weight = 1.0;
C->W.unit = 'k'; /* km^2 for geo if not set */
C->Z.type = 'a';
C->Z.format[0] = 'T'; C->Z.format[1] = 'L';
return (C);
}
static void Free_Ctrl (struct GMT_CTRL *GMT, struct GRD2XYZ_CTRL *C) { /* Deallocate control structure */
if (!C) return;
gmt_M_str_free (C->C.file);
gmt_M_str_free (C->C.savecpt);
gmt_M_free (GMT, C);
}
static int usage (struct GMTAPI_CTRL *API, int level) {
const char *name = gmt_show_name_and_purpose (API, THIS_MODULE_LIB, THIS_MODULE_CLASSIC_NAME, THIS_MODULE_PURPOSE);
if (level == GMT_MODULE_PURPOSE) return (GMT_NOERROR);
GMT_Usage (API, 0, "usage: %s %s [-C%s] [-F[f|i]] [-Lc|r|x|y<value>] [%s] [-T[a|b][<base>]] [%s] [-W[a[+u<unit>]|<weight>]] "
"[-Z[<flags>]] [%s] [%s] [%s] [%s] [%s] [%s] [%s] [%s] [%s]\n",
name, GMT_INGRID, CPT_OPT_ARGS, GMT_Rgeo_OPT, GMT_V_OPT, GMT_bo_OPT, GMT_d_OPT, GMT_f_OPT, GMT_ho_OPT,
GMT_o_OPT, GMT_qo_OPT, GMT_s_OPT, GMT_colon_OPT, GMT_PAR_OPT);
if (level == GMT_SYNOPSIS) return (GMT_MODULE_SYNOPSIS);
GMT_Message (API, GMT_TIME_NONE, " REQUIRED ARGUMENTS:\n");
gmt_ingrid_syntax (API, 0, "Name of one or more grid files");
GMT_Message (API, GMT_TIME_NONE, "\n OPTIONAL ARGUMENTS:\n");
gmt_explain_cpt_input (API, 'C');
GMT_Usage (API, 1, "\n-F[f|i]");
GMT_Usage (API, -2, "Write row,col instead of x,y. Append f to start at 1, else 0 [Default]. "
"Use -Ci to write grid index instead of (x,y).");
GMT_Usage (API, 1, "\n-Lc|r|x|y<value>");
GMT_Usage (API, -2, "Limit output to a single vector. Specify which one:");
GMT_Usage (API, 3, "c: Append a column number (0 to nx-1)");
GMT_Usage (API, 3, "r: Append a row number (0 to ny-1)");
GMT_Usage (API, 3, "x: Append a column coordinate (xmin to xmax)");
GMT_Usage (API, 3, "y: Append a row coordinate (ymin to ymax)");
GMT_Usage (API, -2, "Note: Selections outside the grid will result in no output.");
GMT_Option (API, "R,V");
GMT_Usage (API, 1, "\n-T[a|b][<base>]");
GMT_Usage (API, -2, "Write STL triangulation output for 3-D printing. Append a for ASCII [Default] or b for binary STL format (little-endian). "
"Optionally append <base> for the base level [grid minimum value].");
GMT_Usage (API, 1, "\n-W[a[+u<unit>]|<weight>]");
GMT_Usage (API, -2, "Write xyzw using supplied <weight> (or 1 if not given) [Default is xyz]. "
"Select -Wa to compute weights equal to the node areas. If a geographic grid "
"you may append +u<unit> from %s to set area unit [k].", GMT_LEN_UNITS_DISPLAY);
GMT_Usage (API, 1, "\n-Z[<flags>]");
GMT_Usage (API, -2, "Set exact specification of resulting 1-column output z-table. "
"If data should be in row format, state if first row is at T(op) or B(ottom). "
"Then, append L or R to indicate left or right starting point in row. "
"If data should be in column format, state if first columns is L(left) or R(ight). "
"Then, append T or B to indicate starting point in column. "
"Now, append any of these three modes if they apply:");
GMT_Usage (API, 3, "w: Swap the byte-order of each word");
GMT_Usage (API, 3, "x: Gridline-registered, periodic data in x without repeating column at xmax.");
GMT_Usage (API, 3, "y: Gridline-registered, periodic data in y without repeating row at ymax.");
GMT_Usage (API, -2, "Finally, specify one of the following data types (all binary except a):");
GMT_Usage (API, 3, "a: ASCII (one value per record).");
GMT_Usage (API, 3, "c: int8_t, signed 1-byte character.");
GMT_Usage (API, 3, "u: uint8_t, unsigned 1-byte character.");
GMT_Usage (API, 3, "h: int16_t, signed short 2-byte integer.");
GMT_Usage (API, 3, "H: uint16_t, unsigned short 2-byte integer.");
GMT_Usage (API, 3, "i: int32_t, signed 4-byte integer.");
GMT_Usage (API, 3, "I: uint32_t, unsigned 4-byte integer.");
GMT_Usage (API, 3, "l: int64_t, signed long (8-byte) integer.");
GMT_Usage (API, 3, "L: uint64_t, unsigned long (8-byte) integer.");
GMT_Usage (API, 3, "f: 4-byte floating point single precision.");
GMT_Usage (API, 3, "d: 8-byte floating point double precision.");
GMT_Usage (API, -2, "[Default format is scanline orientation in ASCII representation: -ZTLa].");
GMT_Option (API, "bo,d,f,h,o,qo,s,:,.");
return (GMT_MODULE_USAGE);
}
static int parse (struct GMT_CTRL *GMT, struct GRD2XYZ_CTRL *Ctrl, struct GMT_Z_IO *io, struct GMT_OPTION *options) {
/* This parses the options provided to grdcut and sets parameters in CTRL.
* Any GMT common options will override values set previously by other commands.
* It also replaces any file names specified as input or output with the data ID
* returned when registering these sources/destinations with the API.
*/
unsigned int n_errors = 0, n_files = 0, k = 0;
char *f = NULL;
struct GMT_OPTION *opt = NULL;
struct GMTAPI_CTRL *API = GMT->parent;
gmt_M_memset (io, 1, struct GMT_Z_IO);
for (opt = options; opt; opt = opt->next) { /* Process all the options given */
switch (opt->option) {
case '<': /* Input files */
n_files++;
break;
/* Processes program-specific parameters */
case 'C': /* CPT */
if (opt->arg[0] && strchr ("if", opt->arg[0])) goto the_F; /* Backwars compatibility for -Ci|f */
n_errors += gmt_M_repeated_module_option (API, Ctrl->C.active);
gmt_M_str_free (Ctrl->C.file);
if (opt->arg[0]) Ctrl->C.file = strdup (opt->arg);
if (opt->arg[0] && (f = gmt_strrstr (Ctrl->C.file, "+s")) != NULL) { /* Filename has a +s<outname>, extract that part */
Ctrl->C.savecpt = &f[2];
f[0] = '\0'; /* Remove the +s<outname> from Ctrl->C.file */
}
gmt_cpt_interval_modifier (GMT, &(Ctrl->C.file), &(Ctrl->C.dz));
break;
the_F: case 'F': /* Write row,col or index instead of x,y */
n_errors += gmt_M_repeated_module_option (API, Ctrl->F.active);
if (opt->arg[0] == 'c') Ctrl->F.mode = 0;
else if (opt->arg[0] == 'f') Ctrl->F.mode = 1;
else if (opt->arg[0] == 'i') Ctrl->F.mode = 2;
break;
case 'E': /* Old ESRI option */
if (gmt_M_compat_check (GMT, 4)) {
n_errors += gmt_M_repeated_module_option (API, Ctrl->E.active);
GMT_Report (API, GMT_MSG_COMPAT, "Option -E is deprecated; use grdconvert instead.\n");
if (opt->arg[0] == 'f') Ctrl->E.floating = true;
if (opt->arg[Ctrl->E.floating]) Ctrl->E.nodata = atof (&opt->arg[Ctrl->E.floating]);
}
else
n_errors += gmt_default_option_error (GMT, opt);
break;
case 'L': /* Select single row or column for output */
n_errors += gmt_M_repeated_module_option (API, Ctrl->L.active);
switch (opt->arg[0]) {
case 'c': Ctrl->L.mode = GRD2XYZ_COL; Ctrl->L.item = atoi (&opt->arg[1]); break;
case 'r': Ctrl->L.mode = GRD2XYZ_ROW; Ctrl->L.item = atoi (&opt->arg[1]); break;
case 'x':
Ctrl->L.mode = GRD2XYZ_X;
n_errors += gmt_verify_expectations (GMT, gmt_M_type (GMT, GMT_IN, GMT_X),
gmt_scanf_arg (GMT, &opt->arg[1], gmt_M_type (GMT, GMT_IN, GMT_X), false,
&Ctrl->L.value), &opt->arg[1]);
break;
case 'y':
Ctrl->L.mode = GRD2XYZ_Y;
n_errors += gmt_verify_expectations (GMT, gmt_M_type (GMT, GMT_IN, GMT_Y),
gmt_scanf_arg (GMT, &opt->arg[1], gmt_M_type (GMT, GMT_IN, GMT_Y), false,
&Ctrl->L.value), &opt->arg[1]);
break;
default:
GMT_Report (API, GMT_MSG_ERROR, "Option -L: Append c|r|x|y<value>\n");
n_errors++;
break;
}
break;
case 'S': /* Suppress/no-suppress NaNs on output */
if (gmt_M_compat_check (GMT, 4)) {
GMT_Report (API, GMT_MSG_COMPAT, "Option -S is deprecated; use -s common option instead.\n");
if (gmt_parse_s_option (GMT, opt->arg))
n_errors++;
GMT->common.s.active = true;
}
else
n_errors += gmt_default_option_error (GMT, opt);
break;
case 'N': /* Nan-value */
if (gmt_M_compat_check (GMT, 4)) { /* Honor old -N[i]<value> option */
GMT_Report (API, GMT_MSG_COMPAT, "Option -N is deprecated; use GMT common option -d[i|o]<nodata> instead.\n");
if (opt->arg[0]) {
if (opt->arg[0] == 'i') /* Simulate -di<nodata> */
n_errors += gmt_parse_d_option (GMT, opt->arg);
else { /* Simulate -do<nodata> */
char arg[GMT_LEN64] = {""};
sprintf (arg, "o%s", opt->arg);
n_errors += gmt_parse_d_option (GMT, arg);
}
}
else {
GMT_Report (API, GMT_MSG_ERROR, "Option -N: Must specify value or NaN\n");
n_errors++;
}
}
else
n_errors += gmt_default_option_error (GMT, opt);
break;
case 'T': /* Triangulation STL */
n_errors += gmt_M_repeated_module_option (API, Ctrl->T.active);
switch (opt->arg[0]) {
case 'b': Ctrl->T.binary = true; k = 1; break;
case 'a':
k = 1; /* Deliberately fall through */
case '\0':
Ctrl->T.binary = false;
break;
default:
GMT_Report (API, GMT_MSG_ERROR, "Option -T: Append a for ASCII [Default] or b (for binary format\n");
n_errors++;
}
if (n_errors == 0 && opt->arg[k]) /* Got base value */
Ctrl->T.base = (gmt_grdfloat)atof (&opt->arg[k]);
break;
case 'W': /* Add weight on output */
n_errors += gmt_M_repeated_module_option (API, Ctrl->W.active);
if (opt->arg[0] == 'a') {
char *c = NULL;
Ctrl->W.area = true;
if ((c = strstr (opt->arg, "+u"))) {
Ctrl->W.unit = c[2];
}
}
else if (opt->arg[0])
Ctrl->W.weight = atof (opt->arg);
break;
case 'Z': /* Control format */
n_errors += gmt_M_repeated_module_option (API, Ctrl->Z.active);
n_errors += gmt_parse_z_io (GMT, opt->arg, &Ctrl->Z);
break;
default: /* Report bad options */
n_errors += gmt_default_option_error (GMT, opt);
break;
}
}
if (Ctrl->Z.active) n_errors += gmt_init_z_io (GMT, Ctrl->Z.format, Ctrl->Z.repeat, Ctrl->Z.swab, Ctrl->Z.skip, Ctrl->Z.type, io);
n_errors += gmt_M_check_condition (GMT, Ctrl->L.active && Ctrl->L.mode == GRD2XYZ_ROW && Ctrl->L.item < 0, "Option -Lr: Row cannot be negative\n");
n_errors += gmt_M_check_condition (GMT, Ctrl->L.active && Ctrl->L.mode == GRD2XYZ_COL && Ctrl->L.item < 0, "Option -Lc: Column cannot be negative\n");
n_errors += gmt_M_check_condition (GMT, n_files == 0, "Must specify at least one input file\n");
n_errors += gmt_M_check_condition (GMT, n_files > 1 && Ctrl->E.active, "Option -E can only handle one input file\n");
n_errors += gmt_M_check_condition (GMT, n_files > 1 && Ctrl->T.active, "Option -T can only handle one input file\n");
n_errors += gmt_M_check_condition (GMT, Ctrl->Z.active && Ctrl->E.active, "Option -E is not compatible with -Z\n");
return (n_errors ? GMT_PARSE_ERROR : GMT_NOERROR);
}
GMT_LOCAL void grd2xyz_dump_triangle (FILE *fp, float N[], float P[3][3], bool binary) {
/* Write the 3 facets of a single triangle and its normal vector to STL file */
short unsigned int dummy = 0;
unsigned int k;
if (binary) { /* Use the binary STL format */
#ifdef WORDS_BIGENDIAN /* Need to ensure little-endian output */
/* Must swab all things except dummy which is all 0000 anyway */
for (k = 0; k < 3; k++) {
N[k] = bswap32 (N[k]);
for (unsigned int p = 0; p < 3; p++)
P[p][k] = bswap32 (P[p][k]);
}
#endif
fwrite (N, sizeof (float), 3U, fp); /* Write unit outwards normal vector */
for (k = 0; k < 3; k++) /* Write the three vertices */
fwrite (P[k], sizeof (float), 3U, fp);
fwrite (&dummy, sizeof (short unsigned int), 1U, fp); /* Write dummy filler 2 bytes */
}
else { /* Write the ASCII STL format */
fprintf (fp, "facet normal %e %e %e\n", N[GMT_X], N[GMT_Y], N[GMT_Z]);
fprintf (fp, "\touter loop\n");
for (k = 0; k < 3; k++)
fprintf (fp, "\t\tvertex %e %e %e\n", P[k][GMT_X], P[k][GMT_Y], P[k][GMT_Z]);
fprintf (fp, "\tendloop\nendfacet\n");
}
}
void grd2xyz_out_triangle (struct GMT_CTRL *GMT, FILE *fp, struct GMT_GRID *G, unsigned int row, unsigned int col, uint64_t ij, unsigned int kase, bool binary) {
/* Prepare one triangle in STL format using 3 of the 4 corners (we skip corner number <kase>) */
/* Get the three point coordinates to use */
int64_t p, k, col_off[4] = {0, 1, 1, 0}, row_off[4] = {0, 0, -1, -1}, node_off[4] = {0, 1, 1-(int64_t)G->header->mx, -(int64_t)G->header->mx};
float P[3][3], N[3], A[3], B[3], L;
gmt_M_unused (GMT);
for (p = k = 0; p < 4; p++) { /* Build a CCW-oriented triangle */
if (p == kase) continue;
P[k][GMT_X] = G->x[col+col_off[p]];
P[k][GMT_Y] = G->y[row+row_off[p]];
P[k][GMT_Z] = G->data[ij+node_off[p]];
k++;
}
/* Get unit normal vector to triangle via cross-product */
for (k = 0; k < 3; k++) { A[k] = P[1][k] - P[0][k]; B[k] = P[2][k] - P[1][k]; }
N[GMT_X] = A[GMT_Y] * B[GMT_Z] - A[GMT_Z] * B[GMT_Y];
N[GMT_Y] = A[GMT_Z] * B[GMT_X] - A[GMT_X] * B[GMT_Z];
N[GMT_Z] = A[GMT_X] * B[GMT_Y] - A[GMT_Y] * B[GMT_X];
L = d_sqrt (N[GMT_X] * N[GMT_X] + N[GMT_Y] * N[GMT_Y] + N[GMT_Z] * N[GMT_Z]);
if (L > 0.0) { /* OK to normalize the normal vector by L */
for (k = 0; k < 3; k++) N[k] /= L;
}
grd2xyz_dump_triangle (fp, N, P, binary);
}
void place_SN_triangles (struct GMT_CTRL *GMT, FILE *fp, struct GMT_GRID *G, unsigned int row, unsigned int col, bool binary) {
/* Prepare two triangles along the S or N row from the base (0) up */
int64_t ij, d_ij;
unsigned int col_L, col_R;
float P[3][3], N[3];
gmt_M_unused (GMT);
/* The two triangles shares the same normal vector in +/- y-direction */
N[GMT_X] = N[GMT_Z] = 0.0; N[GMT_Z] = (row == 0) ? 1.0 : -1.0; /* Points either north or south */
if (row == 0) col_L = col + 1, col_R = col, d_ij = -1; else col_L = col, col_R = col + 1, d_ij = 1; /* Set left and right column of triangles */
ij = gmt_M_ijp (G->header, row, col_L); /* The "left" z index */
/* BL-BR-TL triangle */
P[0][GMT_X] = G->x[col_L]; P[0][GMT_Y] = G->y[row]; P[0][GMT_Z] = 0.0;
P[1][GMT_X] = G->x[col_R]; P[1][GMT_Y] = G->y[row]; P[1][GMT_Z] = 0.0;
P[2][GMT_X] = G->x[col_L]; P[2][GMT_Y] = G->y[row]; P[2][GMT_Z] = G->data[ij];
grd2xyz_dump_triangle (fp, N, P, binary);
/* BR-TR-TL triangle */
P[0][GMT_X] = G->x[col_R]; P[0][GMT_Y] = G->y[row]; P[0][GMT_Z] = 0.0;
P[1][GMT_X] = G->x[col_R]; P[1][GMT_Y] = G->y[row]; P[1][GMT_Z] = G->data[ij+d_ij];
P[2][GMT_X] = G->x[col_L]; P[2][GMT_Y] = G->y[row]; P[2][GMT_Z] = G->data[ij];
grd2xyz_dump_triangle (fp, N, P, binary);
}
void place_WE_triangles (struct GMT_CTRL *GMT, FILE *fp, struct GMT_GRID *G, unsigned int row, unsigned int col, bool binary) {
/* Prepare two triangles along the W or E column from the base up */
int64_t ij, d_ij;
unsigned int row_L, row_R;
float P[3][3], N[3];
gmt_M_unused (GMT);
/* The two triangles shares the same normal vector in +/- x-direction */
N[GMT_Y] = N[GMT_Z] = 0.0; N[GMT_X] = (col == 0) ? -1.0 : 1.0; /* Points either west or east */
gmt_M_unused (GMT);
if (col == 0) row_L = row, row_R = row + 1, d_ij = G->header->mx; else row_L = row + 1, row_R = row, d_ij = -(int64_t)G->header->mx; /* Set left and right row of triangles */
ij = gmt_M_ijp (G->header, row_L, col); /* The "left" z index */
/* BL-BR-TL triangle */
P[0][GMT_Y] = G->y[row_L]; P[0][GMT_X] = G->x[col]; P[0][GMT_Z] = 0.0;
P[1][GMT_Y] = G->y[row_R]; P[1][GMT_X] = G->x[col]; P[1][GMT_Z] = 0.0;
P[2][GMT_Y] = G->y[row_L]; P[2][GMT_X] = G->x[col]; P[2][GMT_Z] = G->data[ij];
grd2xyz_dump_triangle (fp, N, P, binary);
/* BR-TR-TL triangle */
P[0][GMT_Y] = G->y[row_R]; P[0][GMT_X] = G->x[col]; P[0][GMT_Z] = 0.0;
P[1][GMT_Y] = G->y[row_R]; P[1][GMT_X] = G->x[col]; P[1][GMT_Z] = G->data[ij+d_ij];
P[2][GMT_Y] = G->y[row_L]; P[2][GMT_X] = G->x[col]; P[2][GMT_Z] = G->data[ij];
grd2xyz_dump_triangle (fp, N, P, binary);
}
void place_base_triangles (struct GMT_CTRL *GMT, FILE *fp, struct GMT_GRID *G, bool binary) {
/* The two base triangles shares the same -z_hat normal vector */
float P[3][3], N[3] = {0.0, 0.0, -1.0}; /* Normal points down in negative z-direction */
struct GMT_GRID_HEADER *h = G->header;
gmt_M_unused (GMT);
/* NE-SW-NW triangle */
P[0][GMT_X] = G->x[h->n_columns-1]; P[1][GMT_X] = P[2][GMT_X] = G->x[0];
P[0][GMT_Y] = P[2][GMT_Y] = G->y[0]; P[1][GMT_Y] = G->y[h->n_rows-1];
P[0][GMT_Z] = P[1][GMT_Z] = P[2][GMT_Z] = 0.0; /* Base is zero after shift in main */
grd2xyz_dump_triangle (fp, N, P, binary);
/* NE-SE-SW triangle */
P[1][GMT_X] = P[0][GMT_X];
P[2][GMT_Y] = P[1][GMT_Y];
grd2xyz_dump_triangle (fp, N, P, binary);
}
#define bailout(code) {gmt_M_free_options (mode); return (code);}
#define Return(code) {Free_Ctrl (GMT, Ctrl); gmt_end_module (GMT, GMT_cpy); bailout (code);}
EXTERN_MSC int GMT_grd2xyz (void *V_API, int mode, void *args) {
bool first = true, first_geo = true, first_grd = true;
openmp_int row, col;
unsigned int n_output, w_col = 3, orig_mode;
int error = 0, write_error = 0;
uint64_t ij, ij_gmt, n_total = 0, n_suppressed = 0;
char header[GMT_BUFSIZ];
double wesn[4], d_value, A_scale = 1.0, A_geo = 0.0, out[7], *x = NULL, *y = NULL;
double rgb[4] = {0.0, 0.0, 0.0, 0.0};
struct GMT_GRID *G = NULL, *W = NULL;
struct GMT_GRID_HEADER_HIDDEN *H = NULL;
struct GMT_RECORD *Out = NULL;
struct GMT_Z_IO io;
struct GMT_OPTION *opt = NULL;
struct GMT_PALETTE *P = NULL;
struct GRD2XYZ_CTRL *Ctrl = NULL;
struct GMT_CTRL *GMT = NULL, *GMT_cpy = NULL;
struct GMT_OPTION *options = NULL;
struct GMTAPI_CTRL *API = gmt_get_api_ptr (V_API); /* Cast from void to GMTAPI_CTRL pointer */
/*----------------------- Standard module initialization and parsing ----------------------*/
if (API == NULL) return (GMT_NOT_A_SESSION);
if (mode == GMT_MODULE_PURPOSE) return (usage (API, GMT_MODULE_PURPOSE)); /* Return the purpose of program */
options = GMT_Create_Options (API, mode, args); if (API->error) return (API->error); /* Set or get option list */
if ((error = gmt_report_usage (API, options, 0, usage)) != GMT_NOERROR) bailout (error); /* Give usage if requested */
/* Parse the command-line arguments */
if ((GMT = gmt_init_module (API, THIS_MODULE_LIB, THIS_MODULE_CLASSIC_NAME, THIS_MODULE_KEYS, THIS_MODULE_NEEDS, module_kw, &options, &GMT_cpy)) == NULL) bailout (API->error); /* Save current state */
if (GMT_Parse_Common (API, THIS_MODULE_OPTIONS, options)) Return (API->error);
Ctrl = New_Ctrl (GMT); /* Allocate and initialize a new control structure */
if ((error = parse (GMT, Ctrl, &io, options)) != 0) Return (error);
/*---------------------------- This is the grd2xyz main code ----------------------------*/
GMT_Report (API, GMT_MSG_INFORMATION, "Processing input grid(s)\n");
gmt_M_memcpy (wesn, GMT->common.R.wesn, 4, double); /* Current -R setting, if any */
if (GMT->common.b.active[GMT_OUT]) {
if (Ctrl->Z.active && !io.binary) {
GMT_Report (API, GMT_MSG_ERROR, "-Z overrides -bo\n");
GMT->common.b.active[GMT_OUT] = false;
}
if (Ctrl->E.active && gmt_M_compat_check (GMT, 4)) {
GMT_Report (API, GMT_MSG_ERROR, "-E overrides -bo\n");
GMT->common.b.active[GMT_OUT] = false;
}
}
else if (io.binary) GMT->common.b.active[GMT_OUT] = true;
if (Ctrl->C.active) { /* Just sample the CPT for the grid z values and append three columns r g b a to the x y z */
if ((P = gmt_get_palette (GMT, Ctrl->C.file, GMT_CPT_OPTIONAL, 0.0, 255.0, Ctrl->C.dz)) == NULL) {
GMT_Report (API, GMT_MSG_ERROR, "Failed to read CPT %s.\n", Ctrl->C.file);
Return (API->error); /* Well, that did not go so well... */
}
Out = gmt_new_record (GMT, out, NULL); /* Since we only need to worry about numerics in this module */
}
n_output = (Ctrl->Z.active) ? 1 : ((Ctrl->W.active) ? 4 : ((Ctrl->F.mode == 2) ? 2 : 3));
if (Ctrl->Z.active)
n_output = 1;
else if (Ctrl->C.active) /* x, y, z, r[, g, b], a */
n_output = (P->is_gray) ? 5 : 7;
else {
n_output = (Ctrl->F.mode == 2) ? 2 : 3;
if (Ctrl->W.active) n_output++;
if (Ctrl->F.mode == 2) w_col = 2;
}
if ((error = GMT_Set_Columns (API, GMT_OUT, n_output, GMT_COL_FIX_NO_TEXT)) != GMT_NOERROR) Return (error);
if (GMT_Init_IO (API, GMT_IS_DATASET, GMT_IS_POINT, GMT_OUT, GMT_ADD_DEFAULT, 0, options) != GMT_NOERROR) { /* Registers stdout, unless already set */
Return (API->error);
}
if (GMT_Begin_IO (API, GMT_IS_DATASET, GMT_OUT, GMT_HEADER_ON) != GMT_NOERROR) { /* Enables data output and sets access mode */
Return (API->error);
}
if (GMT_Set_Geometry (API, GMT_OUT, GMT_IS_POINT) != GMT_NOERROR) { /* Sets output geometry */
Return (API->error);
}
out[w_col] = Ctrl->W.weight;
for (opt = options; opt; opt = opt->next) { /* Loop over arguments, skip options */
if (opt->option != '<') continue; /* We are only processing input files here */
if ((G = GMT_Read_Data (API, GMT_IS_GRID, GMT_IS_FILE, GMT_IS_SURFACE, GMT_CONTAINER_ONLY, NULL, opt->arg, NULL)) == NULL) {
Return (API->error);
}
if (gmt_M_is_subset (GMT, G->header, wesn)) { /* Subset requested; make sure wesn matches header spacing */
if ((error = gmt_M_err_fail (GMT, gmt_adjust_loose_wesn (GMT, wesn, G->header), "")))
Return (error);
}
if (GMT_Read_Data (API, GMT_IS_GRID, GMT_IS_FILE, GMT_IS_SURFACE, GMT_DATA_ONLY, wesn, opt->arg, G) == NULL) {
Return (API->error); /* Get subset */
}
if (Ctrl->C.active) { /* Just sample the CPT for the z value and append four columns r g b a */
unsigned int k, kol, geo = gmt_M_is_geographic (GMT, GMT_IN), nc = (P->is_gray) ? 1 : 3;
static char *rgbcoord[2] = {"x\ty\tz\tred\tgreen\tblue\ttransparency", "lon\tlat\tz\tred\tgreen\tblue\ttransparency"};
static char *graycoord[2] = {"x\ty\tz\tgray\ttransparency", "lon\tlat\tz\tgray\ttransparency"};
char *this = (nc == 3) ? rgbcoord[geo] : graycoord[geo];
if (first_grd) GMT_Put_Record (API, GMT_WRITE_TABLE_HEADER, this);
first_grd = false;
x = (G->x) ? G->x : gmt_grd_coord (GMT, G->header, GMT_X);
y = (G->y) ? G->y : gmt_grd_coord (GMT, G->header, GMT_Y);
gmt_M_grd_loop (GMT, G, row, col, ij) {
out[GMT_X] = x[col]; out[GMT_Y] = y[row]; out[GMT_Z] = G->data[ij];
gmt_get_rgb_from_z (GMT, P, G->data[ij], rgb);
for (k = 0, kol = GMT_Z + 1; k < nc; k++) out[kol++] = irint (255.0 * rgb[k]); /* r/g/b in 0-255 range */
out[kol] = irint (100.0 * rgb[k]); /* Transparency in 0-100% range */
write_error = GMT_Put_Record (API, GMT_WRITE_DATA, Out);
if (write_error == GMT_NOTSET) n_suppressed++; /* Bad value caught by -s[r] */
}
if (GMT_Destroy_Data (API, &G) != GMT_NOERROR) { /* Free the grid since there may be more of them */
Return (API->error);
}
continue; /* Back to next grid */
}
if (Ctrl->L.active) { /* Check that limits are within range and warn otherwise */
orig_mode = Ctrl->L.mode; /* In case we have many grids */
if (Ctrl->L.mode == GRD2XYZ_Y) { /* Convert y coordinate to nearest row */
Ctrl->L.item = gmt_M_grd_y_to_row (GMT, Ctrl->L.value, G->header);
Ctrl->L.mode = GRD2XYZ_ROW;
}
else if (Ctrl->L.mode == GRD2XYZ_X) { /* Convert x coordinate to nearest column */
Ctrl->L.item = gmt_M_grd_x_to_col (GMT, Ctrl->L.value, G->header);
Ctrl->L.mode = GRD2XYZ_COL;
}
if (Ctrl->L.mode == GRD2XYZ_COL && (Ctrl->L.item < 0 || Ctrl->L.item >= (int)G->header->n_columns))
GMT_Report (API, GMT_MSG_WARNING, "Option -L: Your column selection is outside the range of this grid's columns - no output will result\n");
else if (Ctrl->L.mode == GRD2XYZ_ROW && (Ctrl->L.item < 0 || Ctrl->L.item >= (int)G->header->n_rows))
GMT_Report (API, GMT_MSG_WARNING, "Option -L: Your column x-value selection is outside the range of this grid's rows - no output will result\n");
else if (Ctrl->L.mode == GRD2XYZ_ROW)
n_total += G->header->n_columns;
else
n_total += G->header->n_rows;
}
else
n_total += G->header->nm;
H = gmt_get_H_hidden (G->header);
if ((error = gmt_M_err_fail (GMT, gmt_set_z_io (GMT, &io, G), opt->arg)))
Return (error);
if (Ctrl->Z.active) { /* Write z-values only to stdout */
bool previous = GMT->common.b.active[GMT_OUT], rst = false;
unsigned int was;
int (*save) (struct GMT_CTRL *, FILE *, uint64_t, double *, char *);
save = GMT->current.io.output;
Out = gmt_new_record (GMT, &d_value, NULL); /* Since we only need to worry about numerics in this module */
was = GMT->common.d.first_col[GMT_IN];
if (GMT->common.d.active[GMT_IN]) /* Change the default to the only column available */
GMT->common.d.first_col[GMT_IN] = GMT_X;
if (Ctrl->Z.swab) GMT_Report (API, GMT_MSG_INFORMATION, "Binary output data will be byte swapped\n");
GMT->current.io.output = gmt_z_output; /* Override and use chosen output mode */
GMT->common.b.active[GMT_OUT] = io.binary; /* May have to set binary as well */
GMT->current.setting.io_lonlat_toggle[GMT_OUT] = false; /* Since no x,y involved here */
if (GMT->current.setting.io_nan_mode && GMT->current.io.io_nan_col[0] == GMT_Z)
{rst = true; GMT->current.io.io_nan_col[0] = GMT_X;} /* Since we don't do xy here, only z */
for (ij = 0; ij < io.n_expected; ij++) {
ij_gmt = io.get_gmt_ij (&io, G, ij); /* Get the corresponding grid node */
d_value = G->data[ij_gmt];
if ((io.x_missing && io.gmt_i == io.x_period) || (io.y_missing && io.gmt_j == 0)) continue;
if (GMT->common.d.active[GMT_OUT] && gmt_M_is_dnan (d_value)) /* Grid node is NaN and -d was set, so change to nan-proxy */
d_value = GMT->common.d.nan_proxy[GMT_OUT];
else if (gmt_input_col_is_nan_proxy (GMT, d_value, GMT_X)) /* The inverse: Grid node is nan-proxy and -di was set, so change to NaN */
d_value = GMT->session.d_NaN;
write_error = GMT_Put_Record (API, GMT_WRITE_DATA, Out);
if (write_error == GMT_NOTSET) n_suppressed++; /* Bad value caught by -s[r] */
}
gmt_M_free (GMT, Out);
GMT->current.io.output = save; /* Reset pointer */
GMT->common.b.active[GMT_OUT] = previous; /* Reset binary */
if (rst) GMT->current.io.io_nan_col[0] = GMT_Z; /* Reset to what it was */
if (GMT->common.d.active[GMT_IN]) GMT->common.d.first_col[GMT_IN] = was; /* Reset to what it was */
}
else if (Ctrl->E.active) { /* ESRI format */
double slop;
char *record = NULL, item[GMT_BUFSIZ];
size_t n_alloc, len, rec_len;
struct GMT_RECORD *Out = NULL;
slop = 1.0 - (G->header->inc[GMT_X] / G->header->inc[GMT_Y]);
if (!gmt_M_is_zero (slop)) {
GMT_Report (API, GMT_MSG_ERROR, "x_inc must equal y_inc when writing to ESRI format\n");
Return (GMT_RUNTIME_ERROR);
}
n_alloc = G->header->n_columns * 8; /* Assume we only need 8 bytes per item (but we will allocate more if needed) */
record = gmt_M_memory (GMT, NULL, G->header->n_columns, char);
Out = gmt_new_record (GMT, NULL, record);
sprintf (record, "ncols %d\nnrows %d", G->header->n_columns, G->header->n_rows);
GMT_Put_Record (API, GMT_WRITE_DATA, Out); /* Write a text record */
if (G->header->registration == GMT_GRID_PIXEL_REG) { /* Pixel format */
sprintf (record, "xllcorner ");
sprintf (item, GMT->current.setting.format_float_out, G->header->wesn[XLO]);
strcat (record, item);
GMT_Put_Record (API, GMT_WRITE_DATA, Out); /* Write a text record */
sprintf (record, "yllcorner ");
sprintf (item, GMT->current.setting.format_float_out, G->header->wesn[YLO]);
strcat (record, item);
GMT_Put_Record (API, GMT_WRITE_DATA, Out); /* Write a text record */
}
else { /* Gridline format */
sprintf (record, "xllcenter ");
sprintf (item, GMT->current.setting.format_float_out, G->header->wesn[XLO]);
strcat (record, item);
GMT_Put_Record (API, GMT_WRITE_DATA, Out); /* Write a text record */
sprintf (record, "yllcenter ");
sprintf (item, GMT->current.setting.format_float_out, G->header->wesn[YLO]);
strcat (record, item);
GMT_Put_Record (API, GMT_WRITE_DATA, Out); /* Write a text record */
}
sprintf (record, "cellsize ");
sprintf (item, GMT->current.setting.format_float_out, G->header->inc[GMT_X]);
strcat (record, item);
GMT_Put_Record (API, GMT_WRITE_DATA, Out); /* Write a text record */
sprintf (record, "nodata_value %ld", lrint (Ctrl->E.nodata));
GMT_Put_Record (API, GMT_WRITE_DATA, Out); /* Write a text record */
gmt_M_row_loop (GMT, G, row) { /* Scanlines, starting in the north (ymax) */
rec_len = 0;
gmt_M_col_loop (GMT, G, row, col, ij) {
if (gmt_M_is_fnan (G->data[ij]))
sprintf (item, "%ld", lrint (Ctrl->E.nodata));
else if (Ctrl->E.floating)
sprintf (item, GMT->current.setting.format_float_out, G->data[ij]);
else
sprintf (item, "%ld", lrint ((double)G->data[ij]));
len = strlen (item);
if ((rec_len + len + 1) >= n_alloc) { /* Must get more memory */
n_alloc <<= 1;
record = gmt_M_memory (GMT, record, G->header->n_columns, char);
}
strcat (record, item);
rec_len += len;
if (col < (openmp_int)(G->header->n_columns-1)) { strcat (record, " "); rec_len++;}
}
GMT_Put_Record (API, GMT_WRITE_DATA, Out); /* Write a whole y line */
}
gmt_M_free (GMT, record);
gmt_M_free (GMT, Out);
}
else if (Ctrl->T.active) { /* STL format */
char header[80] = {""};
unsigned int n_tri = 0, n_tri_write;
FILE *fp = GMT->session.std[GMT_OUT];
if (gmt_M_is_dnan (Ctrl->T.base)) /* Set default base to grid minimum */
Ctrl->T.base = (gmt_grdfloat)G->header->z_min;
else if (Ctrl->T.base > G->header->z_min) { /* Must override base and set to grid minimum */
GMT_Report (API, GMT_MSG_WARNING, "Option -T: Base cannot exceed grid zmin - reset to zmin\n");
Ctrl->T.base = (gmt_grdfloat)G->header->z_min;
}
/* Basic rule enforcement: Positive vertices only */
GMT_Report (API, GMT_MSG_INFORMATION, "Option -T: Translating coordinates to ensure x_min = y_min = z_min = 0\n");
if (!gmt_M_is_zero (G->x[0])) { /* Shift x coordinates */
double origin = G->x[0];
for (col = 0; col < (openmp_int)G->header->n_columns; col++) G->x[col] -= origin;
}
if (!gmt_M_is_zero (G->y[0])) { /* Shift y coordinates */
double origin = G->y[G->header->n_rows-1];
for (row = 0; row < (openmp_int)G->header->n_rows; row++) G->y[row] -= origin;
}
gmt_M_grd_loop (GMT, G, row, col, ij) { /* Change data range from z_min/z_max to <base>/(z_max-<bas>) */
if (gmt_M_is_dnan (G->data[ij])) G->data[ij] = (gmt_grdfloat)G->header->z_min; /* Replace NaN's with zmin */
G->data[ij] -= Ctrl->T.base; /* Then take out the base */
}
if (Ctrl->T.binary) { /* Write binary header record */
#ifdef WIN32
gmt_setmode (GMT, GMT_OUT);
#endif
snprintf (header, 80U, "GMT-to-STL conversion of file %s", opt->arg);
fwrite (header, sizeof (char), 80U, fp);
}
else { /* Write ASCII header record */
snprintf (header, 80U, "solid STL of %s generated by GMT %s", opt->arg, GMT_version());
fprintf (fp, "%s\n", header);
}
/* Compute the number of triangles needed for the surface, the 4 sides plus the base */
n_tri = 2 * (G->header->n_columns * G->header->n_rows + G->header->n_columns + G->header->n_rows - 2);
if (Ctrl->T.binary) { /* Must write a header record with triangle count */
#ifdef WORDS_BIGENDIAN /* Need to ensure little-endian output */
n_tri_write = bswap32 (n_tri);
#else
n_tri_write = n_tri;
#endif
fwrite (&n_tri_write, sizeof (unsigned int), 1U, fp);
}
for (row = 1; row < (openmp_int)G->header->n_rows; row++) { /* Deal with triangles made up of nodes at row and row-1 */
for (col = 0; col < (openmp_int)(G->header->n_columns-1); col++) { /* Deal with triangles for col and col+1 */
ij = gmt_M_ijp (G->header, row, col); /* LL node of this grid cell */
/* Do UL and LR triangles */
grd2xyz_out_triangle (GMT, fp, G, row, col, ij, 1, Ctrl->T.binary);
grd2xyz_out_triangle (GMT, fp, G, row, col, ij, 3, Ctrl->T.binary);
}
}
/* Time to write the four sides and base */
for (col = 0; col < (openmp_int)(G->header->n_columns-1); col++) { /* Deal with triangles for S and N facade */
place_SN_triangles (GMT, fp, G, 0, col, Ctrl->T.binary);
place_SN_triangles (GMT, fp, G, G->header->n_rows-1, col, Ctrl->T.binary);
}
for (row = 0; row < (openmp_int)(G->header->n_rows-1); row++) { /* Deal with triangles for E and W facade */
place_WE_triangles (GMT, fp, G, row, 0, Ctrl->T.binary);
place_WE_triangles (GMT, fp, G, row, G->header->n_columns-1, Ctrl->T.binary);
}
place_base_triangles (GMT, fp, G, Ctrl->T.binary); /* Two large base triangles */
if (!Ctrl->T.binary)
fprintf (fp, "endsolid %s\n", opt->arg);
GMT_Report (API, GMT_MSG_INFORMATION, "%u STL triangles written to standard output\n", n_tri);
}
else { /* Regular x,y,z[,w], col,row,z[,w] or index,z[,w] output */
if (first && GMT_Init_IO (API, GMT_IS_DATASET, GMT_IS_POINT, GMT_OUT, GMT_ADD_STDIO_IF_NONE, 0, options) != GMT_NOERROR) { /* Establishes data output */
Return (API->error);
}
if (Ctrl->W.area) { /* calculate area per node */
W = gmt_duplicate_grid (GMT, G, GMT_DUPLICATE_ALLOC);
gmt_get_cellarea (GMT, W);
if (gmt_M_is_geographic (GMT, GMT_IN)) { /* Need geographic area scaling */
if (first_geo) { /* Initialize the distance unit machinery once */
if (gmt_init_distaz (GMT, Ctrl->W.unit, gmt_M_sph_mode (GMT), GMT_MAP_DIST) == GMT_NOT_A_VALID_TYPE) {
gmt_free_grid (GMT, &W, true);
Return (GMT_NOT_A_VALID_TYPE);
}
first_geo = false;
if (GMT->current.map.dist[GMT_MAP_DIST].arc) /* Wants a squared steradian-type area measure, so undo km^2 first by dividing by r^2, then scale to new arc unit^2 */
A_geo = pow (1000.0 * GMT->current.map.dist[GMT_MAP_DIST].scale / GMT->current.proj.mean_radius, 2.0);
else
A_geo = pow (1000.0 * GMT->current.map.dist[GMT_MAP_DIST].scale, 2.0); /* Get final measure unit for area after converting back to m^2 first */
}
A_scale = A_geo;
}
else /* Back to Cartesian grids */
A_scale = 1.0;
}
/* Compute grid node positions once only */
if (H->var_spacing[GMT_X]) GMT_Report (API, GMT_MSG_WARNING, "Grid %s has non-equidistant x-coordinates (see grd2xyz docs for discussion)\n", opt->arg);
if (H->var_spacing[GMT_Y]) GMT_Report (API, GMT_MSG_WARNING, "Grid %s has non-equidistant y-coordinates (see grd2xyz docs for discussion)\n", opt->arg);
x = (G->x) ? G->x : gmt_grd_coord (GMT, G->header, GMT_X);
y = (G->y) ? G->y : gmt_grd_coord (GMT, G->header, GMT_Y);
Out = gmt_new_record (GMT, out, NULL); /* Since we only need to worry about numerics in this module */
if (Ctrl->F.active) { /* Replace x,y with col,row */
if (Ctrl->F.mode < 2) {
gmt_M_row_loop (GMT, G, row) y[row] = row + Ctrl->F.mode;
gmt_M_col_loop2 (GMT, G, col) x[col] = col + Ctrl->F.mode;
}
else
GMT->current.io.io_nan_col[0] = GMT_Y; /* Since that is where z will go now */
gmt_set_cartesian (GMT, GMT_OUT);
}
if (GMT->current.setting.io_header[GMT_OUT] && first) {
if (!G->header->x_units[0]) strcpy (G->header->x_units, "x");
if (!G->header->y_units[0]) strcpy (G->header->y_units, "y");
if (Ctrl->F.active) {
strcpy (G->header->x_units, "col");
strcpy (G->header->y_units, "row");
}
if (!G->header->z_units[0]) strcpy (G->header->z_units, "z");
if (GMT->current.setting.io_lonlat_toggle[GMT_IN])
sprintf (header, "%s%s%s%s%s", G->header->y_units, GMT->current.setting.io_col_separator, G->header->x_units, GMT->current.setting.io_col_separator, G->header->z_units);
else
sprintf (header, "%s%s%s%s%s", G->header->x_units, GMT->current.setting.io_col_separator, G->header->y_units, GMT->current.setting.io_col_separator, G->header->z_units);
if (Ctrl->W.active) {
strcat (header, GMT->current.setting.io_col_separator);
strcat (header, "weight");
}
GMT_Put_Record (API, GMT_WRITE_TABLE_HEADER, header); /* Write a header record */
first = false;
}
gmt_M_grd_loop (GMT, G, row, col, ij) {
if (Ctrl->L.active) { /* Limit output to one row or column */
if (Ctrl->L.mode == GRD2XYZ_ROW && (int)row != Ctrl->L.item) continue; /* Skip these rows */
if (Ctrl->L.mode == GRD2XYZ_COL && (int)col != Ctrl->L.item) continue; /* Skip these columns */
if (Ctrl->L.mode == GRD2XYZ_Y && !doubleAlmostEqualZero (y[row], Ctrl->L.value)) continue; /* Skip these rows */
if (Ctrl->L.mode == GRD2XYZ_X && !doubleAlmostEqualZero (x[col], Ctrl->L.value)) continue; /* Skip these columns */
}
if (Ctrl->F.mode == 2) { /* Write index, z */
out[GMT_X] = (double)gmt_M_ij0 (G->header, row, col);
out[GMT_Y] = G->data[ij];
if (GMT->common.d.active[GMT_OUT] && gmt_M_is_dnan (out[GMT_Y])) /* Input matched no-data setting, so change to NaN */
out[GMT_Y] = GMT->common.d.nan_proxy[GMT_OUT];
else if (gmt_input_col_is_nan_proxy (GMT, out[GMT_Y], GMT_Y))
out[GMT_Y] = GMT->session.d_NaN;
}
else {
out[GMT_X] = x[col]; out[GMT_Y] = y[row]; out[GMT_Z] = G->data[ij];
if (GMT->common.d.active[GMT_OUT] && gmt_M_is_dnan (out[GMT_Z])) /* Input matched no-data setting, so change to NaN */
out[GMT_Z] = GMT->common.d.nan_proxy[GMT_OUT];
else if (gmt_input_col_is_nan_proxy (GMT, out[GMT_Z], GMT_Z))
out[GMT_Z] = GMT->session.d_NaN;
}
if (Ctrl->W.area) out[w_col] = W->data[ij] * A_scale; /* Converts area from km^2 to user-selected unit (if active) */
write_error = GMT_Put_Record (API, GMT_WRITE_DATA, Out); /* Write this to output */
if (write_error == GMT_NOTSET) n_suppressed++; /* Bad value caught by -s[r] */
}
if (G->x == NULL) gmt_M_free (GMT, x);
if (G->y == NULL) gmt_M_free (GMT, y);
gmt_M_free (GMT, Out);
if (W) gmt_free_grid (GMT, &W, true);
}
if (Ctrl->L.active) /* Reset */
Ctrl->L.mode = orig_mode;
if (GMT_Destroy_Data (API, &G) != GMT_NOERROR) { /* Free the grid since there may be more of them */
Return (API->error);
}
}
if (GMT_End_IO (API, GMT_OUT, 0) != GMT_NOERROR) { /* Disables further data output */
Return (API->error);
}
if (Ctrl->C.active) gmt_M_free (GMT, Out);
if (!Ctrl->T.active) GMT_Report (API, GMT_MSG_INFORMATION, "%" PRIu64 " values extracted\n", n_total - n_suppressed);
if (n_suppressed) {
if (GMT->current.setting.io_nan_mode & GMT_IO_NAN_KEEP)
GMT_Report (API, GMT_MSG_INFORMATION, "%" PRIu64 " finite values suppressed\n", n_suppressed);
else
GMT_Report (API, GMT_MSG_INFORMATION, "%" PRIu64" NaN values suppressed\n", n_suppressed);
}
Return (GMT_NOERROR);
}