-
Notifications
You must be signed in to change notification settings - Fork 375
/
Copy pathgmt_shore.c
1770 lines (1535 loc) · 79.4 KB
/
gmt_shore.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
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
/*--------------------------------------------------------------------
*
* 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
*--------------------------------------------------------------------*/
/* NOTE: This is a new version for dual Antarctica polygons.
* The general idea of GSHHG 2.3.x is that there are two sets of Antarctica continents and
* island polygons, and only one can be active at any given time. The two candidates are
* Source ID = 2: Antarctica ice-line [this is similar to old GSHHG 2.2.x lines but more accurate].
* Source ID = 3: Antarctica shelf ice grounding line.
* By default we use GSHHS_ANTARCTICA_ICE but users may select -A..+ag to pick the grounding line
* [GSHHS_ANTARCTICA_GROUND] or even -A..+as to skip Antarctica entirely (to make it easier to plot
* custom shorelines via psxy).
* Because the grounding line polygons are always entirely inside an ice-shelf polygon, we have
* given the grounding-line polygons a level of 6. Of course, when these are used their levels are
* reset to 1 and all the ice-shelf polygons are skipped. The node corners of the underlying grid
* are suitable for the ice-shelf line but if grounding line is selected a different array of node
* corner values is used. This means the GSHHG file is backwards compatible with earlier GMT versions
* since the grounding-line related information is stored in a separate array.
*/
#include "gmt_dev.h"
#include "gmt_internals.h"
#include "gshhg_version.h"
/*
* These functions simplifies the access to the GMT shoreline, border, and river
* databases.
*
* A) List of exported gmt_* functions available to modules and libraries via gmt_dev.h:
*
* gmt_assemble_br : Creates lines from border or river segments
* gmt_assemble_shore : Creates polygons or lines from shoreline segments
* gmt_br_cleanup : Frees up main river/border structure memory
* gmt_free_shore : Frees up memory used by shorelines for this bin
* gmt_free_br : Frees up memory used by shorelines for this bin
* gmt_free_shore_polygons : Frees list of polygon coordinates
* gmt_get_br_bin : Returns all selected border/river data for this bin
* gmt_get_shore_bin : Returns all selected shore data for this bin
* gmt_get_gshhg_lines : Returns a GMT_DATASET with lines
* gmt_init_shore : Opens selected shoreline database and initializes structures
* gmt_init_br : Opens selected border/river database and initializes structures
* gmt_prep_shore_polygons : Wraps polygons if necessary and prepares them for use
* gmt_set_levels : Modifies what items to extract from GSHHG database
* gmt_set_resolution : Converts resolutions f,h,i,l,c to integers 0-4
* gmt_shore_adjust_res : Return highest available resolution
* gmt_shore_cleanup : Frees up main shoreline structure memory
* gmt_shore_level_at_point : Return hierarchical level at specified point
* gmt_shore_version : Return the GSHHS version string
*
* Author: Paul Wessel
* Date: 1-JAN-2010
* Version: 5.2.x
*
*/
#define GSHHG_SITE "ftp://ftp.soest.hawaii.edu/gshhg/"
#define RIVERLAKE 5 /* Fill array id for riverlakes */
#define ANT_LEVEL_ICE 5
#define ANT_LEVEL_GROUND 6
#define get_exit(arg) ((arg) & 7) /* Extract exit (0-4) from bits 1-3 */
#define get_entry(arg) (((arg) >> 3) & 7) /* Extract entry (0-4) from bits 4-6 */
#define get_level(arg) (((arg) >> 6) & 7) /* Extract level (0-4) from bits 7-9 */
#define get_source(arg) (((arg) >> 9) & 7) /* Extract source (0-7) from bits 10-12 */
#define get_np(arg) ((arg) >> 9) /* Extract number of points from bits 10-64 */
/* ---------- LOCAL FUNCTIONS CALLED BY THE PUBLIC FUNCTIONS ------------ */
GMT_LOCAL void gmtshore_to_degree (struct GMT_SHORE *c, short int dx, short int dy, double *lon, double *lat) {
/* Converts relative (0-65535) coordinates to actual lon, lat values */
*lon = c->lon_sw + ((unsigned short)dx) * c->scale;
*lat = c->lat_sw + ((unsigned short)dy) * c->scale;
}
GMT_LOCAL void gmtshore_br_to_degree (struct GMT_BR *c, short int dx, short int dy, double *lon, double *lat) {
/* Converts relative (0-65535) coordinates to actual lon, lat values */
*lon = c->lon_sw + ((unsigned short)dx) * c->scale;
*lat = c->lat_sw + ((unsigned short)dy) * c->scale;
}
GMT_LOCAL int gmtshore_copy_to_shore_path (double *lon, double *lat, struct GMT_SHORE *s, int id) {
/* Convert a shore segment to degrees and add to array */
int i;
for (i = 0; i < (int)s->seg[id].n; i++)
gmtshore_to_degree (s, s->seg[id].dx[i], s->seg[id].dy[i], &lon[i], &lat[i]);
return (s->seg[id].n);
}
GMT_LOCAL int gmtshore_copy_to_br_path (double *lon, double *lat, struct GMT_BR *s, int id) {
/* Convert a line segment to degrees and add to array */
int i;
for (i = 0; i < (int)s->seg[id].n; i++)
gmtshore_br_to_degree (s, s->seg[id].dx[i], s->seg[id].dy[i], &lon[i], &lat[i]);
return (s->seg[id].n);
}
GMT_LOCAL int gmtshore_get_position (int side, short int x, short int y) {
/* Returns the position along the given side, measured from start of side */
return ((side%2) ? ((side == 1) ? (unsigned short)y : GSHHS_MAX_DELTA - (unsigned short)y) : ((side == 0) ? (unsigned short)x : GSHHS_MAX_DELTA - (unsigned short)x));
}
GMT_LOCAL int gmtshore_get_next_entry (struct GMT_SHORE *c, int dir, int side, int id) {
/* Finds the next entry point on the given side that is further away
* in the <dir> direction than previous point. It then removes the info
* regarding the new entry from the GSHHS_SIDE structure so it won't be
* used twice. Because we have added the 4 corners with pos = 65535 we
* know that if there are no segments on a side the procedure will find
* the corner as the last item, always. This is for CCW; when dir = -1
* then we have added the corners with pos = 0 and search in the other
* direction so we will find the corner point last. */
int k, pos, n;
if (id < 0) /* A corner, return start or end of this side */
pos = (dir == 1) ? 0 : GSHHS_MAX_DELTA;
else { /* A real segment, get number of points and its starting position */
n = c->seg[id].n - 1;
pos = gmtshore_get_position (side, c->seg[id].dx[n], c->seg[id].dy[n]);
}
if (dir == 1) { /* CCW: find the next segment (or corner if no segments) whose entry position exceeds this pos */
for (k = 0; k < (int)c->nside[side] && (int)c->side[side][k].pos < pos; k++);
id = c->side[side][k].id; /* The ID of the next segment (or corner) */
for (k++; k < c->nside[side]; k++) c->side[side][k-1] = c->side[side][k]; /* Remove the item we found */
c->nside[side]--; /* Remove the item we found */
}
else { /* CW: find the next segment (or corner if no segments) whose entry position is less than this pos */
for (k = 0; k < (int)c->nside[side] && (int)c->side[side][k].pos > pos; k++);
id = c->side[side][k].id; /* The ID of the next segment (or corner) */
for (k++; k < c->nside[side]; k++) c->side[side][k-1] = c->side[side][k]; /* Remove the item we found */
c->nside[side]--; /* Remove the item we found */
}
if (id >= 0) c->n_entries--; /* Reduce number of remaining segments (not counting corners) */
return (id);
}
GMT_LOCAL int gmtshore_get_first_entry (struct GMT_SHORE *c, int dir, int *side) {
/* Loop over all sides and find the first available entry, starting at *side and moving around counter-clockwise.
* We only return IDs of segments and do not consider any corner points here - that is handled separately */
int try = 0; /* We have max 4 tries, i.e., all 4 sides */
while (try < 4 && (c->nside[*side] == 0 || (c->nside[*side] == 1 && c->side[*side][0].id < 0))) { /* No entries or only a corner left on this side */
try++; /* Try again */
*side = (*side + dir + 4) % 4; /* This is the next side going CCW */
}
if (try == 4) return (-5); /* No luck finding any side with a segment */
return (c->side[*side][0].id); /* Return the ID of the segment; its side is returned via *side */
}
GMT_LOCAL int gmtshore_asc_sort (const void *a, const void *b) {
/* Sort segment into ascending order based on entry positions for going CCW */
if (((struct GSHHS_SIDE *)a)->pos < ((struct GSHHS_SIDE *)b)->pos) return (-1);
if (((struct GSHHS_SIDE *)a)->pos > ((struct GSHHS_SIDE *)b)->pos) return (1);
return (0);
}
GMT_LOCAL int gmtshore_desc_sort (const void *a, const void *b) {
/* Sort segment into descending order based on entry positions for going CW */
if (((struct GSHHS_SIDE *)a)->pos < ((struct GSHHS_SIDE *)b)->pos) return (1);
if (((struct GSHHS_SIDE *)a)->pos > ((struct GSHHS_SIDE *)b)->pos) return (-1);
return (0);
}
GMT_LOCAL void gmtshore_done_sides (struct GMT_CTRL *GMT, struct GMT_SHORE *c) {
/* Free the now empty list of side structures */
unsigned int i;
for (i = 0; i < 4; i++) gmt_M_free (GMT, c->side[i]);
}
GMT_LOCAL void gmtshore_path_shift (double *lon, unsigned int n, double edge) {
/* Shift all longitudes >= edge by 360 westwards */
unsigned int i;
for (i = 0; i < n; i++) if (lon[i] >= edge) lon[i] -= 360.0;
}
GMT_LOCAL void gmtshore_path_shift2 (double *lon, unsigned int n, double west, double east, int leftmost) {
/* Adjust longitudes so there are no jumps with respect to current bin boundaries */
unsigned int i;
if (leftmost) { /* Must check this bin differently */
for (i = 0; i < n; i++) if (lon[i] >= east && (lon[i]-360.0) >= west) lon[i] -= 360.0;
}
else {
for (i = 0; i < n; i++) if (lon[i] > east && (lon[i]-360.0) >= west) lon[i] -= 360.0;
}
}
GMT_LOCAL void gmtshore_prepare_sides (struct GMT_CTRL *GMT, struct GMT_SHORE *c, int dir) {
/* Initializes the GSHHS_SIDE structures for each side, then adds corners and all entering segments */
int s, i, n[4];
/* Set corner coordinates */
c->lon_corner[0] = c->lon_sw + ((dir == 1) ? c->bsize : 0.0);
c->lon_corner[1] = c->lon_sw + c->bsize;
c->lon_corner[2] = c->lon_sw + ((dir == 1) ? 0.0 : c->bsize);
c->lon_corner[3] = c->lon_sw;
c->lat_corner[0] = c->lat_sw;
c->lat_corner[1] = c->lat_sw + ((dir == 1) ? c->bsize : 0.0);
c->lat_corner[2] = c->lat_sw + c->bsize;
c->lat_corner[3] = c->lat_sw + ((dir == 1) ? 0.0 : c->bsize);
for (i = 0; i < 4; i++) c->nside[i] = n[i] = 1; /* Each side has at least one "segment", the corner point */
/* for (s = 0; s < c->ns; s++) if (c->seg[s].level < 3 && c->seg[s].entry < 4) c->nside[c->seg[s].entry]++; */
for (s = 0; s < c->ns; s++) if (c->seg[s].entry < 4) c->nside[c->seg[s].entry]++; /* Add up additional segments entering each side */
for (i = c->n_entries = 0; i < 4; i++) { /* Allocate memory and add corners; they are given max pos so they are the last in the sorted list per side */
if ((c->side[i] = gmt_M_memory (GMT, NULL, c->nside[i], struct GSHHS_SIDE)) == NULL) return;
c->side[i][0].pos = (dir == 1) ? GSHHS_MAX_DELTA : 0; /* position at end of side depends if going CCW (65535) or CW (0) */
c->side[i][0].id = (short int)(i - 4); /* Corners have negative IDs; add 4 to get real ID */
c->n_entries += c->nside[i] - 1; /* Total number of entries so far */
}
for (s = 0; s < c->ns; s++) { /* Now add entry points for each segment */
/* if (c->seg[s].level > 2 || (i = c->seg[s].entry) == 4) continue; */
if ((i = c->seg[s].entry) == 4) continue;
c->side[i][n[i]].pos = (unsigned short)gmtshore_get_position (i, c->seg[s].dx[0], c->seg[s].dy[0]);
c->side[i][n[i]].id = (short)s;
n[i]++;
}
/* We then sort the array of GSHHS_SIDE structs on their distance from the start of the side */
for (i = 0; i < 4; i++) { /* sort on position */
if (dir == 1)
qsort (c->side[i], (size_t)c->nside[i], sizeof (struct GSHHS_SIDE), gmtshore_asc_sort);
else
qsort (c->side[i], (size_t)c->nside[i], sizeof (struct GSHHS_SIDE), gmtshore_desc_sort);
}
}
GMT_LOCAL char *gmtshore_getpathname (struct GMT_CTRL *GMT, char *stem, char *path, bool reset, bool download) {
/* Prepends the appropriate directory to the file name
* and returns path if file is readable, NULL otherwise */
FILE *fp = NULL;
char dir[PATH_MAX];
static struct GSHHG_VERSION version = GSHHG_MIN_REQUIRED_VERSION;
static bool warn_once = true;
bool found = false;
/* This is the order of checking:
* 1. Check in GMT->session.GSHHGDIR
* 2. Is there a file coastline.conf in current directory,
* GMT->session.USERDIR or GMT->session.SHAREDIR[/coast]?
* If so, use its information
* 3. Look in current directory, GMT->session.USERDIR or
* GMT->session.SHAREDIR[/coast] for file "name".
*/
/* 1. Check in GMT->session.GSHHGDIR */
if (GMT->session.GSHHGDIR) {
sprintf (path, "%s/%s%s", GMT->session.GSHHGDIR, stem, ".nc");
GMT_Report (GMT->parent, GMT_MSG_DEBUG, "1. GSHHG: GSHHGDIR set, trying %s\n", path);
if (access (path, F_OK) == 0) { /* File exists here */
if (access (path, R_OK) == 0 && gshhg_require_min_version (path, version) ) {
GMT_Report (GMT->parent, GMT_MSG_DEBUG, "1. GSHHG: OK, could access %s\n", path);
return (path);
}
else
GMT_Report (GMT->parent, GMT_MSG_ERROR, "1. GSHHG: Found %s but cannot read it due to wrong permissions\n", path);
}
else {
/* remove reference to invalid GMT->session.GSHHGDIR but don't free
* the pointer. this is no leak because the reference still exists
* in the previous copy of the current GMT_CTRL struct. */
if (reset) GMT->session.GSHHGDIR = NULL;
GMT_Report (GMT->parent, GMT_MSG_DEBUG, "1. GSHHG: Failure, could not access %s\n", path);
}
}
/* 2. Next, check for coastline.conf */
if (gmt_getsharepath (GMT, "conf", "coastline", ".conf", path, F_OK) || gmt_getsharepath (GMT, "coast", "coastline", ".conf", path, F_OK)) {
/* We get here if coastline.conf exists - search among its directories for the named file */
GMT_Report (GMT->parent, GMT_MSG_DEBUG, "2. GSHHG: coastline.conf found at %s\n", path);
if (access (path, R_OK) == 0) { /* coastline.conf can be read */
if ((fp = fopen (path, "r")) == NULL) { /* but Coverity still complains if we don't test if it's NULL */
GMT_Report (GMT->parent, GMT_MSG_ERROR, "2. GSHHG: Failed to open %s\n", path);
return (NULL);
}
while (fgets (dir, PATH_MAX, fp)) { /* Loop over all input lines until found or done */
if (dir[0] == '#' || dir[0] == '\n') continue; /* Comment or blank */
gmt_chop (dir); /* Chop off LF or CR/LF */
sprintf (path, "%s/%s%s", dir, stem, ".nc");
GMT_Report (GMT->parent, GMT_MSG_DEBUG, "2. GSHHG: Trying %s\n", path);
found = (access (path, F_OK) == 0); /* File was found */
if (access (path, R_OK) == 0) { /* File can be read */
L1:
if (gshhg_require_min_version (path, version)) {
fclose (fp);
/* update invalid GMT->session.GSHHGDIR */
gmt_M_str_free (GMT->session.GSHHGDIR);
GMT->session.GSHHGDIR = strdup (dir);
GMT_Report (GMT->parent, GMT_MSG_DEBUG, "2. GSHHG: OK, could access %s\n", path);
return (path);
}
else
GMT_Report (GMT->parent, GMT_MSG_ERROR, "2. GSHHG: Failure, could not access %s\n", path);
}
else {
if (found)
GMT_Report(GMT->parent, GMT_MSG_DEBUG, "2. GSHHG: Found %s but cannot read it due to wrong permissions\n", path);
else { /* Before giving up, try the old .cdf file names */
sprintf(path, "%s/%s%s", dir, stem, ".cdf");
if (access(path, R_OK) == 0) /* Yes, old .cdf version found */
goto L1;
GMT_Report (GMT->parent, GMT_MSG_ERROR, "2. GSHHG: Did not find %s nor the older *.cdf version\n", path);
}
}
}
fclose (fp);
}
else
GMT_Report (GMT->parent, GMT_MSG_ERROR, "2. GSHHG: Found %s but cannot read it due to wrong permissions\n", path);
}
/* 3. Then check for the named file itself */
GMT_Report (GMT->parent, GMT_MSG_DEBUG, "3. GSHHG: Trying via sharepath\n");
if (gmt_getsharepath (GMT, "coast", stem, ".nc", path, F_OK)) {
GMT_Report (GMT->parent, GMT_MSG_DEBUG, "3. GSHHG: Trying %s\n", path);
if ( access (path, R_OK) == 0) { /* File can be read */
if ( gshhg_require_min_version (path, version) ) {
/* update invalid GMT->session.GSHHGDIR */
snprintf (dir, PATH_MAX, "%s/%s", GMT->session.SHAREDIR, "coast");
gmt_M_str_free (GMT->session.GSHHGDIR);
GMT->session.GSHHGDIR = strdup (dir);
GMT_Report (GMT->parent, GMT_MSG_DEBUG, "3. GSHHG: OK, could access %s\n", path);
return (path);
}
else
GMT_Report (GMT->parent, GMT_MSG_DEBUG, "3. GSHHG: Failure, could not access %s\n", path);
}
else
GMT_Report (GMT->parent, GMT_MSG_ERROR, "3. GSHHG: Found %s but cannot read it due to wrong permissions\n", path);
}
/* 4. Try the just-in-time download option from the server */
if (download && GMT->session.USERDIR) { /* Check user dir via remote download */
char remote_path[PATH_MAX] = {""};
GMT_Report (GMT->parent, GMT_MSG_DEBUG, "4. GSHHG: Trying via remote download\n");
sprintf (path, "%s/geography/gshhg/%s.nc", GMT->session.USERDIR, stem);
if (access (path, R_OK) == 0) { /* Found it here */
if ( gshhg_require_min_version (path, version) ) {
GMT_Report (GMT->parent, GMT_MSG_DEBUG, "4. GSHHG: OK, could access %s\n", path);
return (path);
}
}
/* Must download it the first time */
if (GMT->current.setting.auto_download == GMT_NO_DOWNLOAD) {
GMT_Report (GMT->parent, GMT_MSG_ERROR, "Unable to download the GSHHG for GMT since GMT_DATA_UPDATE_INTERVAL is off\n");
return NULL;
}
sprintf (path, "%s/geography/gshhg", GMT->session.USERDIR); /* Local directory destination */
if (access (path, R_OK) && gmt_mkdir (path)) { /* Must first create the directory */
GMT_Report (GMT->parent, GMT_MSG_ERROR, "Unable to create GMT directory : %s\n", path);
return NULL;
}
sprintf (path, "%s/geography/gshhg/%s.nc", GMT->session.USERDIR, stem); /* Final local path */
snprintf (remote_path, PATH_MAX, "%s/geography/gshhg/%s.nc", gmt_dataserver_url (GMT->parent), stem); /* Unique remote path */
GMT_Report (GMT->parent, GMT_MSG_NOTICE, "Downloading %s.nc for the first time - be patient\n", stem);
if (gmt_download_file (GMT, stem, remote_path, path, true)) {
GMT_Report (GMT->parent, GMT_MSG_ERROR, "Unable to obtain remote file %s.nc\n", stem);
}
else if ( gshhg_require_min_version (path, version) ) {
GMT_Report (GMT->parent, GMT_MSG_DEBUG, "4. GSHHG: OK, could access %s\n", path);
return (path);
}
}
/* 4. No success, just break down and cry */
GMT_Report (GMT->parent, GMT_MSG_DEBUG, "5. GSHHG: Failure, could not access any GSHHG files\n");
if (warn_once && reset) {
warn_once = false;
GMT_Report (GMT->parent, GMT_MSG_WARNING, "GSHHG version %d.%d.%d or newer is "
"needed to use coastlines with GMT.\n\tGet and install GSHHG from "
GSHHG_SITE ".\n", version.major, version.minor, version.patch);
}
return (NULL); /* never reached */
}
GMT_LOCAL void gmtshore_check (struct GMT_CTRL *GMT, bool ok[5], bool download) {
/* Sets ok to true for those resolutions available in share for
* resolution (f, h, i, l, c) */
int i, j, n_found;
char stem[GMT_LEN64] = {""}, path[PATH_MAX] = {""}, *res = "clihf", *kind[3] = {"GSHHS", "river", "border"};
for (i = 0; i < 5; i++) {
/* For each resolution... */
ok[i] = false;
for (j = n_found = 0; j < 3; j++) {
/* For each data type... */
snprintf (stem, GMT_LEN64, "binned_%s_%c", kind[j], res[i]);
if (!gmtshore_getpathname (GMT, stem, path, false, download))
/* Failed to find file */
continue;
n_found++; /* Increment how many found so far for this resolution */
}
ok[i] = (n_found == 3); /* Need all three sets to say this resolution is covered */
}
}
GMT_LOCAL int gmtshore_res_to_int (char res) {
/* Turns a resolution letter into a 0-4 integer */
int i, j;
char *type = "clihf";
for (i = -1, j = 0; i == -1 && j < 5; j++) if (res == type[j]) i = j;
return (i);
}
/* Main Public GMT shore functions */
int gmt_shore_version (struct GMTAPI_CTRL *API, char *version) {
/* Write GSHHG version into version which must have at least 8 positions */
int cdfid, err;
char path[PATH_MAX] = {""};
struct GMT_CTRL *GMT = API->GMT;
if (version == NULL)
return (GMT_PTR_IS_NULL);
if (!gmtshore_getpathname (GMT, "binned_GSHHS_c", path, true, true))
return (GMT_FILE_NOT_FOUND); /* Failed to find file */
/* Open shoreline file */
gmt_M_err_trap (gmt_nc_open (GMT, path, NC_NOWRITE, &cdfid));
/* Get global attributes */
gmt_M_memset (version, strlen (version), char);
gmt_M_err_trap (nc_get_att_text (cdfid, NC_GLOBAL, "version", version));
gmt_nc_close (GMT, cdfid);
return (GMT_NOERROR);
}
int gmt_set_levels (struct GMT_CTRL *GMT, char *info, struct GMT_SHORE_SELECT *I) {
/* Decode GMT's -A option for coastline levels */
int n;
char *p = NULL;
if ((p = strstr (info, "+a"))) { /* On or more modifiers under +a */
p += 2; /* Skip to first letter */
while (p[0] && p[0] != '+') { /* Processes all codes until next modifier or we are done */
switch (p[0]) {
case 'g': I->antarctica_mode |= GSHHS_ANTARCTICA_GROUND; break; /* Use Antarctica shelf ice grounding line as coastline */
case 'i': I->antarctica_mode |= GSHHS_ANTARCTICA_ICE; break; /* Use Antarctica ice boundary as coastline */
case 's': I->antarctica_mode |= GSHHS_ANTARCTICA_SKIP; break; /* Skip Antarctica data south of 60S */
case 'S': I->antarctica_mode |= GSHHS_ANTARCTICA_SKIP_INV; break; /* Skip everything BUT Antarctica data south of 60S */
default:
GMT_Report (GMT->parent, GMT_MSG_ERROR, "Option -A modifier +a: Invalid code %c\n", p[0]);
return GMT_PARSE_ERROR;
break;
}
p++; /* Go to next code */
}
if ((I->antarctica_mode & GSHHS_ANTARCTICA_GROUND) && (I->antarctica_mode & GSHHS_ANTARCTICA_ICE)) {
GMT_Report (GMT->parent, GMT_MSG_ERROR, "Option -A modifier +a: Cannot select both g and i\n");
return GMT_PARSE_ERROR;
}
if ((I->antarctica_mode & GSHHS_ANTARCTICA_SKIP) && (I->antarctica_mode & GSHHS_ANTARCTICA_SKIP_INV)) {
GMT_Report (GMT->parent, GMT_MSG_ERROR, "Option -A modifier +a: Cannot select both s and S\n");
return GMT_PARSE_ERROR;
}
}
if (strstr (info, "+l")) I->flag = GSHHS_NO_RIVERLAKES;
if (strstr (info, "+r")) I->flag = GSHHS_NO_LAKES;
if ((p = strstr (info, "+p")) != NULL) { /* Requested percentage limit on small features */
I->fraction = irint (1e6 * 0.01 * atoi (&p[2])); /* Convert percent to integer microfraction */
}
if (info[0] == '+') return (GMT_OK); /* No area, etc, just modifiers that we just processed */
n = sscanf (info, "%lf/%d/%d", &I->area, &I->low, &I->high);
if (n == 0) {
GMT_Report (GMT->parent, GMT_MSG_ERROR, "Option -A: No area given\n");
return GMT_PARSE_ERROR;
}
if (n == 1) I->low = 0, I->high = GSHHS_MAX_LEVEL;
return (GMT_OK);
}
#define GMT_CRUDE_THRESHOLD 1e8
#define GMT_LOW_THRESHOLD 5e7
#define GMT_INT_THRESHOLD 1e7
#define GMT_HIGH_THRESHOLD 5e6
#define GMT_FULL_THRESHOLD 1e6 /* Not used */
int gmt_set_resolution (struct GMT_CTRL *GMT, char *res, char opt) {
/* Decodes the -D<res> option and returns the base integer value */
int base;
char *choice = "fhilc";
switch (*res) {
case 'a': /* Automatic selection via -J or -R, if possible */
if (GMT->common.J.active && !gmt_M_is_linear (GMT)) { /* Use map scale xxxx as in 1:xxxx */
double i_scale = 1.0 / (0.0254 * fabs(GMT->current.proj.scale[GMT_X]));
if (i_scale > GMT_CRUDE_THRESHOLD)
base = 4; /* crude */
else if (i_scale > GMT_LOW_THRESHOLD)
base = 3; /* low */
else if (i_scale > GMT_INT_THRESHOLD)
base = 2; /* intermediate */
else if (i_scale > GMT_HIGH_THRESHOLD)
base = 1; /* high */
else
base = 0; /* full */
}
else if (GMT->common.R.active[RSET]) { /* No scale, based on region only */
double area, earth_area = 360 * 180; /* Flat Earth squared degrees */
area = (GMT->common.R.wesn[GMT_XHI] - GMT->common.R.wesn[GMT_XLO]) * (GMT->common.R.wesn[GMT_YHI] - GMT->common.R.wesn[GMT_YLO]); /* Squared degrees */
if (area > (pow (0.6, 2.0) * earth_area))
base = 4; /* crude */
else if (area > (pow (0.6, 4.0) * earth_area))
base = 3; /* low */
else if (area > (pow (0.6, 6.0) * earth_area))
base = 2; /* intermediate */
else if (area > (pow (0.6, 8.0) * earth_area))
base = 1; /* high */
else
base = 0; /* full */
}
else { /* No basis - select low */
GMT_Report (GMT->parent, GMT_MSG_WARNING, "-%c option: Cannot select automatic resolution without -R or -J [Default to low]\n");
base = 3; /* low */
}
*res = choice[base];
GMT_Report (GMT->parent, GMT_MSG_INFORMATION, "-%c option: Selected resolution -%c%c\n", opt, opt, *res);
break;
case 'f': /* Full */
base = 0;
break;
case 'h': /* High */
base = 1;
break;
case 'i': /* Intermediate */
base = 2;
break;
case 'l': /* Low */
base = 3;
break;
case 'c': /* Crude */
base = 4;
break;
default:
GMT_Report (GMT->parent, GMT_MSG_WARNING, "Option -%c: Unknown modifier %c [Defaults to -%cl]\n", opt, *res, opt);
base = 3;
*res = 'l';
break;
}
return (base);
}
char gmt_shore_adjust_res (struct GMT_CTRL *GMT, char res, bool download) {
/* Returns the highest available resolution <= to specified resolution */
int k, orig;
bool ok[5];
char *type = "clihf";
(void)gmtshore_check (GMT, ok, download); /* See which resolutions we have */
k = orig = gmtshore_res_to_int (res); /* Get integer value of requested resolution */
while (k >= 0 && !ok[k]) --k; /* Drop down one level to see if we have a lower resolution available */
if (k >= 0 && k != orig) GMT_Report (GMT->parent, GMT_MSG_WARNING, "Resolution %c not available, substituting resolution %c\n", res, type[k]);
return ((k == -1) ? res : type[k]); /* Return the chosen resolution */
}
int gmt_init_shore (struct GMT_CTRL *GMT, char res, struct GMT_SHORE *c, double wesn[], struct GMT_SHORE_SELECT *info) {
/* res: Resolution (f, h, i, l, c */
/* Opens the netcdf file and reads in all top-level attributes, IDs, and variables for all bins overlapping with wesn */
int i, nb, idiv, iw, ie, is, in, i_ant, this_south, this_west, this_north, err;
bool int_areas = false, two_Antarcticas = false;
short *stmp = NULL;
int *itmp = NULL;
size_t start[1], count[1];
char stem[GMT_LEN64] = {""}, path[PATH_MAX] = {""};
snprintf (stem, GMT_LEN64, "binned_GSHHS_%c", res);
if (!gmtshore_getpathname (GMT, stem, path, true, true))
return (GMT_GRDIO_FILE_NOT_FOUND); /* Failed to find file */
/* zap structure (nc_get_att_text does not null-terminate strings!) */
gmt_M_memset(c, 1, struct GMT_SHORE);
/* Open shoreline file */
gmt_M_err_trap (gmt_nc_open (GMT, path, NC_NOWRITE, &c->cdfid));
GMT_Report (GMT->parent, GMT_MSG_DEBUG, "NetCDF Library Version: %s\n", nc_inq_libvers());
/* Get global attributes */
gmt_M_err_trap (nc_get_att_text (c->cdfid, NC_GLOBAL, "version", c->version));
gmt_M_err_trap (nc_get_att_text (c->cdfid, NC_GLOBAL, "title", c->title));
gmt_M_err_trap (nc_get_att_text (c->cdfid, NC_GLOBAL, "source", c->source));
/* Get all id tags */
gmt_M_err_trap (nc_inq_varid (c->cdfid, "Bin_size_in_minutes", &c->bin_size_id));
gmt_M_err_trap (nc_inq_varid (c->cdfid, "N_bins_in_360_longitude_range", &c->bin_nx_id));
gmt_M_err_trap (nc_inq_varid (c->cdfid, "N_bins_in_180_degree_latitude_range", &c->bin_ny_id));
gmt_M_err_trap (nc_inq_varid (c->cdfid, "N_bins_in_file", &c->n_bin_id));
gmt_M_err_trap (nc_inq_varid (c->cdfid, "N_segments_in_file", &c->n_seg_id));
gmt_M_err_trap (nc_inq_varid (c->cdfid, "N_points_in_file", &c->n_pt_id));
gmt_M_err_trap (nc_inq_varid (c->cdfid, "Id_of_first_segment_in_a_bin", &c->bin_firstseg_id));
gmt_M_err_trap (nc_inq_varid (c->cdfid, "Embedded_node_levels_in_a_bin", &c->bin_info_id));
gmt_M_err_trap (nc_inq_varid (c->cdfid, "Embedded_npts_levels_exit_entry_for_a_segment", &c->seg_info_id));
gmt_M_err_trap (nc_inq_varid (c->cdfid, "N_segments_in_a_bin", &c->bin_nseg_id));
gmt_M_err_trap (nc_inq_varid (c->cdfid, "Id_of_first_point_in_a_segment", &c->seg_start_id));
gmt_M_err_trap (nc_inq_varid (c->cdfid, "Relative_longitude_from_SW_corner_of_bin", &c->pt_dx_id));
gmt_M_err_trap (nc_inq_varid (c->cdfid, "Relative_latitude_from_SW_corner_of_bin", &c->pt_dy_id));
gmt_M_err_trap (nc_inq_varid (c->cdfid, "Micro_fraction_of_full_resolution_area", &c->GSHHS_areafrac_id));
gmt_M_err_trap (nc_inq_varid (c->cdfid, "N_polygons_in_file", &c->n_poly_id));
gmt_M_err_trap (nc_inq_varid (c->cdfid, "N_nodes_in_file", &c->n_node_id));
gmt_M_err_trap (nc_inq_varid (c->cdfid, "Id_of_parent_polygons", &c->GSHHS_parent_id));
gmt_M_err_trap (nc_inq_varid (c->cdfid, "Id_of_node_polygons", &c->GSHHS_node_id));
gmt_M_err_trap (nc_inq_varid (c->cdfid, "Id_of_GSHHS_ID", &c->seg_GSHHS_ID_id));
if (nc_inq_varid (c->cdfid, "Ten_times_the_km_squared_area_of_polygons", &c->GSHHS_area_id) == NC_NOERR) { /* Old file with 1/10 km^2 areas in int format*/
GMT_Report (GMT->parent, GMT_MSG_INFORMATION, "GSHHS: Areas not accurate for small lakes and islands. Consider updating GSHHG.\n");
int_areas = true;
}
else if (nc_inq_varid (c->cdfid, "The_km_squared_area_of_polygons", &c->GSHHS_area_id) != NC_NOERR) { /* New file with km^2 areas as doubles */
GMT_Report (GMT->parent, GMT_MSG_WARNING, "GSHHS: Unable to determine how polygon areas were stored.\n");
}
if (nc_inq_varid (c->cdfid, "Embedded_node_levels_in_a_bin_ANT", &c->bin_info_id_ANT) == NC_NOERR) { /* New file with two Antarcticas */
gmt_M_err_trap (nc_inq_varid (c->cdfid, "Embedded_ANT_flag", &c->seg_info_id_ANT));
two_Antarcticas = true;
GMT_Report (GMT->parent, GMT_MSG_DEBUG, "GSHHG with two Antarcticas, read in extra ANT flgs.\n");
}
/* Get attributes */
gmt_M_err_trap (nc_get_att_text (c->cdfid, c->pt_dx_id, "units", c->units));
/* Get global variables */
start[0] = 0;
gmt_M_err_trap (nc_get_var1_int (c->cdfid, c->bin_size_id, start, &c->bin_size));
gmt_M_err_trap (nc_get_var1_int (c->cdfid, c->bin_nx_id, start, &c->bin_nx));
gmt_M_err_trap (nc_get_var1_int (c->cdfid, c->bin_ny_id, start, &c->bin_ny));
gmt_M_err_trap (nc_get_var1_int (c->cdfid, c->n_bin_id, start, &c->n_bin));
gmt_M_err_trap (nc_get_var1_int (c->cdfid, c->n_seg_id, start, &c->n_seg));
gmt_M_err_trap (nc_get_var1_int (c->cdfid, c->n_pt_id, start, &c->n_pt));
c->fraction = info->fraction;
c->skip_feature = info->flag;
c->min_area = info->area; /* Limit the features */
c->min_level = info->low;
c->max_level = (info->low == info->high && info->high == 0) ? GSHHS_MAX_LEVEL : info->high; /* Default to all if not set */
c->flag = info->flag;
c->two_Antarcticas = (two_Antarcticas) ? 1 : 0;
c->ant_mode = info->antarctica_mode;
if ((c->ant_mode & GSHHS_ANTARCTICA_GROUND) == 0) /* Groundline not set, default to ice front */
c->ant_mode |= GSHHS_ANTARCTICA_ICE;
if (two_Antarcticas && gmt_M_is_verbose (GMT, GMT_MSG_INFORMATION)) { /* Report information regarding Antarctica */
if (c->ant_mode & GSHHS_ANTARCTICA_GROUND)
GMT_Report (GMT->parent, GMT_MSG_INFORMATION, "Selected ice grounding line as Antarctica coastline\n");
else
GMT_Report (GMT->parent, GMT_MSG_INFORMATION, "Selected ice front line as Antarctica coastline\n");
if (c->ant_mode & GSHHS_ANTARCTICA_SKIP)
GMT_Report (GMT->parent, GMT_MSG_INFORMATION, "Skipping Antarctica coastline entirely\n");
else if (c->ant_mode & GSHHS_ANTARCTICA_SKIP_INV)
GMT_Report (GMT->parent, GMT_MSG_INFORMATION, "Skipping all coastlines except Antarctica\n");
}
c->res = res;
c->scale = (c->bin_size / 60.0) / 65535.0;
c->bsize = c->bin_size / 60.0;
info->bin_size = c->bsize; /* To make bin size in degrees accessible elsewhere */
if ((c->bins = gmt_M_memory (GMT, NULL, c->n_bin, int)) == NULL) return 0;
/* Round off area to nearest multiple of block-dimension */
iw = irint (floor (wesn[XLO] / c->bsize) * c->bsize);
ie = irint (ceil (wesn[XHI] / c->bsize) * c->bsize);
is = 90 - irint (ceil ((90.0 - wesn[YLO]) / c->bsize) * c->bsize);
in = 90 - irint (floor ((90.0 - wesn[YHI]) / c->bsize) * c->bsize);
i_ant = 90 - irint (floor ((90.0 - GSHHS_ANTARCTICA_LIMIT) / c->bsize) * c->bsize);
idiv = irint (360.0 / c->bsize); /* Number of blocks per latitude band */
for (i = nb = 0; i < c->n_bin; i++) { /* Find which bins are needed */
this_south = 90 - irint (c->bsize * ((i / idiv) + 1)); /* South limit of this bin */
if (this_south < is || this_south >= in) continue;
this_north = this_south + irint (c->bsize);
if (c->ant_mode & GSHHS_ANTARCTICA_SKIP && this_north <= GSHHS_ANTARCTICA_LIMIT) continue; /* Does not want Antarctica in output */
else if (c->ant_mode & GSHHS_ANTARCTICA_SKIP_INV && this_south > i_ant) continue; /* Does not want anything but Antarctica in output */
this_west = irint (c->bsize * (i % idiv)) - 360;
while (this_west < iw) this_west += 360;
if (this_west >= ie) continue;
c->bins[nb] = i;
nb++;
}
c->bins = gmt_M_memory (GMT, c->bins, nb, int);
c->nb = nb;
/* Get polygon variables if they are needed */
if ((err = nc_get_var1_int (c->cdfid, c->n_poly_id, start, &c->n_poly))) {
gmt_shore_cleanup (GMT, c); /* Free what we have so far and bail */
return (err);
}
count[0] = c->n_poly;
if ((c->GSHHS_parent = gmt_M_memory (GMT, NULL, c->n_poly, int)) == NULL) return GMT_MEMORY_ERROR;
if ((err = nc_get_vara_int (c->cdfid, c->GSHHS_parent_id, start, count, c->GSHHS_parent))) {
gmt_shore_cleanup (GMT, c); /* Free what we have so far and bail */
return (err);
}
if ((c->GSHHS_area = gmt_M_memory (GMT, NULL, c->n_poly, double)) == NULL) return GMT_MEMORY_ERROR;
if ((err = nc_get_vara_double (c->cdfid, c->GSHHS_area_id, start, count, c->GSHHS_area))) {
gmt_shore_cleanup (GMT, c); /* Free what we have so far and bail */
return (err);
}
if (int_areas) for (i = 0; i < c->n_poly; i++) c->GSHHS_area[i] *= 0.1; /* Since they were stored as 10 * km^2 using integers */
if ((c->GSHHS_area_fraction = gmt_M_memory (GMT, NULL, c->n_poly, int)) == NULL) return GMT_MEMORY_ERROR;
if ((err = nc_get_vara_int (c->cdfid, c->GSHHS_areafrac_id, start, count, c->GSHHS_area_fraction))) {
gmt_shore_cleanup (GMT, c); /* Free what we have so far and bail */
return (err);
}
if (c->min_area > 0.0 || (info->flag & GSHHS_NO_RIVERLAKES) || (info->flag & GSHHS_NO_LAKES)) { /* Want to exclude small polygons so we need info about the node polygons, or need info about lakes */
if ((err = nc_get_var1_int (c->cdfid, c->n_node_id, start, &c->n_nodes))) {
gmt_shore_cleanup (GMT, c); /* Free what we have so far and bail */
return (err);
}
if ((c->GSHHS_node = gmt_M_memory (GMT, NULL, c->n_nodes, int)) == NULL) return GMT_MEMORY_ERROR;
count[0] = c->n_nodes;
if ((err = nc_get_vara_int (c->cdfid, c->GSHHS_node_id, start, count, c->GSHHS_node))) {
gmt_shore_cleanup (GMT, c); /* Free what we have so far and bail */
return (err);
}
}
/* Get bin variables, then extract only those corresponding to the bins to use */
/* Allocate space for arrays of bin information */
c->bin_info_g = gmt_M_memory (GMT, NULL, nb, short);
c->bin_info = gmt_M_memory (GMT, NULL, nb, short);
c->bin_nseg = gmt_M_memory (GMT, NULL, nb, short);
c->bin_firstseg = gmt_M_memory (GMT, NULL, nb, int);
count[0] = c->n_bin;
stmp = gmt_M_memory (GMT, NULL, c->n_bin, short);
/* Keep the node levels for when the grounding line polygon is in effect */
err = nc_get_vara_short (c->cdfid, c->bin_info_id_ANT, start, count, stmp);
for (i = 0; i < c->nb; i++) c->bin_info_g[i] = stmp[c->bins[i]];
if (c->ant_mode & GSHHS_ANTARCTICA_ICE) { /* Get node levels relevant for ice-shelf */
err = nc_get_vara_short (c->cdfid, c->bin_info_id, start, count, stmp);
}
else { /* Get node levels relevant for grounding line */
err = nc_get_vara_short (c->cdfid, c->bin_info_id_ANT, start, count, stmp);
}
if (err) {
gmt_shore_cleanup (GMT, c); /* Free what we have so far and bail */
gmt_M_free (GMT, stmp);
return (err);
}
for (i = 0; i < c->nb; i++) c->bin_info[i] = stmp[c->bins[i]];
if ((err = nc_get_vara_short (c->cdfid, c->bin_nseg_id, start, count, stmp))) {
gmt_shore_cleanup (GMT, c); /* Free what we have so far and bail */
gmt_M_free (GMT, stmp);
return (err);
}
for (i = 0; i < c->nb; i++) c->bin_nseg[i] = stmp[c->bins[i]];
gmt_M_free (GMT, stmp);
itmp = gmt_M_memory (GMT, NULL, c->n_bin, int);
if ((err = nc_get_vara_int (c->cdfid, c->bin_firstseg_id, start, count, itmp))) {
gmt_shore_cleanup (GMT, c); /* Free what we have so far and bail */
gmt_M_free (GMT, itmp);
return (err);
}
for (i = 0; i < c->nb; i++) c->bin_firstseg[i] = itmp[c->bins[i]];
gmt_M_free (GMT, itmp);
return (GMT_NOERROR);
}
int gmt_get_shore_bin (struct GMT_CTRL *GMT, unsigned int b, struct GMT_SHORE *c) {
/* b: index number into c->bins */
/* min_area: Polygons with area less than this are ignored */
/* min_level: Polygons with lower levels are ignored */
/* max_level: Polygons with higher levels are ignored */
size_t start[1], count[1];
int *seg_info = NULL, *seg_start = NULL, *seg_ID = NULL;
int s, i, k, ny, err, level, inc[4], ll_node, node, ID, *seg_skip = NULL;
bool may_shrink = false;
unsigned short corner[4], bitshift[4] = {9, 6, 3, 0};
signed char *seg_info_ANT = NULL;
double w, e, dx;
for (k = 0; k < 4; k++) { /* Extract node corner levels */
corner[k] = ((unsigned short)c->bin_info[b] >> bitshift[k]) & 7;
c->node_level[k] = (unsigned char)MIN (corner[k], c->max_level);
corner[k] = ((unsigned short)c->bin_info_g[b] >> bitshift[k]) & 7;
c->node_level_g[k] = (unsigned char)MIN (corner[k], c->max_level);
}
dx = c->bin_size / 60.0;
c->lon_sw = (c->bins[b] % c->bin_nx) * dx;
ny = (c->bins[b] / c->bin_nx) + 1;
c->lat_sw = 90.0 - ny * dx;
c->ns = 0;
c->ant_special = (c->ant_mode && c->res == 'c' && ny == 8); /* For crude we must split the 50-70S bin at 60S */
/* Determine if this bin is one of the bins at the left side of the map */
w = c->lon_sw;
while (w > GMT->common.R.wesn[XLO] && GMT->current.map.is_world) w -= 360.0;
e = w + dx;
c->leftmost_bin = ((w <= GMT->common.R.wesn[XLO]) && (e > GMT->common.R.wesn[XLO]));
if (c->bin_nseg[b] == 0) return (GMT_NOERROR);
ll_node = ((c->bins[b] / c->bin_nx) + 1) * (c->bin_nx + 1) + (c->bins[b] % c->bin_nx); /* lower-left node in current bin */
inc[0] = 0; inc[1] = 1; inc[2] = 1 - (c->bin_nx + 1); inc[3] = -(c->bin_nx + 1); /* Relative incs to other nodes */
/* Trying to address issue https://github.com/GenericMappingTools/gmt/issues/1295.
* It only happens for very large -A values, such as -A8000. I am trying a fix where
* we check if Antarctica with no polygons (i.e., just a tile) and large -A.
* It may have side effects to we keep that issue open for now.
*/
if (c->min_area > 0.0) { /* May have to revise the node_level array if the polygon that determined the level is to be skipped */
may_shrink = true; /* Most likely, but check for Antarctica */
for (k = 0; k < 4; k++) { /* Visit all four nodes defining this bin, going counter-clockwise from lower-left bin */
node = ll_node + inc[k]; /* Current node index */
ID = c->GSHHS_node[node]; /* GSHHS Id of the polygon that determined the level of the current node */
if ((ID == GSHHS_ANTARCTICA_ICE_ID || ID == GSHHS_ANTARCTICA_GROUND_ID) && c->ns == 0 && c->min_area > 5000.0) may_shrink = false;
}
}
if (c->min_area > 0.0 && may_shrink) { /* May have to revise the node_level array if the polygon that determined the level is to be skipped */
for (k = 0; k < 4; k++) { /* Visit all four nodes defining this bin, going counter-clockwise from lower-left bin */
node = ll_node + inc[k]; /* Current node index */
ID = c->GSHHS_node[node]; /* GSHHS Id of the polygon that determined the level of the current node */
while (ID >= 0 && c->node_level[k] && c->GSHHS_area[ID] < c->min_area) { /* Polygon must be skipped and node level reset */
ID = c->GSHHS_parent[ID]; /* Pick the parent polygon since that is the next polygon up */
if (c->lat_sw < -60.0) { /* Special check for Antarctica due to the two versions of the continent */
if (c->node_level[k] != c->node_level_g[k])
c->node_level[k]--; /* ...and drop down one level to that of the parent polygon */
}
else /* Not in Antarctica and we need to drop the level as we lost that polygon that covered this node */
c->node_level[k]--; /* ...and drop down one level to that of the parent polygon */
} /* Keep doing this until the polygon containing the node is "too big to fail" or we are in the ocean */
}
}
/* Here the node_level has been properly set but any polygons to be skipped have not been skipped yet; this happens below */
start[0] = c->bin_firstseg[b];
count[0] = c->bin_nseg[b];
seg_info = gmt_M_memory (GMT, NULL, c->bin_nseg[b], int);
if ((err = nc_get_vara_int (c->cdfid, c->seg_info_id, start, count, seg_info))) {
gmt_M_free (GMT, seg_info);
return (err);
}
seg_start = gmt_M_memory (GMT, NULL, c->bin_nseg[b], int);
if ((err = nc_get_vara_int (c->cdfid, c->seg_start_id, start, count, seg_start))) {
gmt_M_free (GMT, seg_info);
gmt_M_free (GMT, seg_start);
return (err);
}
seg_ID = gmt_M_memory (GMT, NULL, c->bin_nseg[b], int);
if ((err = nc_get_vara_int (c->cdfid, c->seg_GSHHS_ID_id, start, count, seg_ID))) {
gmt_M_free (GMT, seg_info);
gmt_M_free (GMT, seg_start);
gmt_M_free (GMT, seg_ID);
return (err);
}
if (c->two_Antarcticas) { /* Read the flag that identifies Antarctica polygons */
seg_info_ANT = gmt_M_memory (GMT, NULL, c->bin_nseg[b], signed char);
if ((err = nc_get_vara_schar (c->cdfid, c->seg_info_id_ANT, start, count, seg_info_ANT))) {
gmt_M_free (GMT, seg_info);
gmt_M_free (GMT, seg_start);
gmt_M_free (GMT, seg_ID);
gmt_M_free (GMT, seg_info_ANT);
return (err);
}
}
/* First tally how many useful segments */
seg_skip = gmt_M_memory (GMT, NULL, c->bin_nseg[b], int);
for (i = 0; i < c->bin_nseg[b]; i++) {
seg_skip[i] = true; /* Reset later to false if we pass all the tests to follow next */
if (c->GSHHS_area_fraction[seg_ID[i]] < c->fraction) continue; /* Area of this feature is too small relative to its original size */
if (may_shrink && fabs (c->GSHHS_area[seg_ID[i]]) < c->min_area) continue; /* Too small. NOTE: Use fabs() since double-lined-river lakes have negative area */
level = get_level (seg_info[i]);
if (c->two_Antarcticas) { /* Can apply any -A+ag|i check based on Antarctica source. Note if -A+as was used we may have already skipped this bin but it depends on resolution chosen */
if (seg_info_ANT[i]) level = ANT_LEVEL_ICE; /* Replace the 1 with 5 so Ant polygons now have levels 5 (ice) or 6 (ground) */
if (level == ANT_LEVEL_ICE || level == ANT_LEVEL_GROUND) { /* Need more specific checking */
if (c->ant_mode & GSHHS_ANTARCTICA_SKIP) continue; /* Don't want anything to do with Antarctica */
else if (level == ANT_LEVEL_GROUND && c->ant_mode & GSHHS_ANTARCTICA_ICE) continue; /* Don't use the Grounding line */
else if (level == ANT_LEVEL_ICE && c->ant_mode & GSHHS_ANTARCTICA_GROUND && seg_ID[i] == GSHHS_ANTARCTICA_ICE_ID) continue; /* Use grounding line so skip ice-shelf Antractica continent */
level = 1; /* Reset either shelf-ice or grounding line polygon level to land */
}
else if (c->ant_mode & GSHHS_ANTARCTICA_SKIP_INV) continue; /* Wants nothing but Antarctica */
}
if (level < c->min_level) continue; /* Test if level range was set */
if (level > c->max_level) continue;
if (level == 2 && c->GSHHS_area[seg_ID[i]] < 0 && c->flag == GSHHS_NO_RIVERLAKES) continue;
if (level == 2 && c->GSHHS_area[seg_ID[i]] > 0 && c->flag == GSHHS_NO_LAKES) continue;
seg_skip[i] = false; /* OK, so this was needed after all */
}
if (c->skip_feature) { /* Must ensure that we skip all features contained by a skipped riverlake/lake */
int j, feature;
if (c->flag == GSHHS_NO_LAKES && c->node_level[0] == c->node_level[1] && c->node_level[2] == c->node_level[3] && c->node_level[0] == c->node_level[3] && c->node_level[0] == 2) { /* Bin is entirely inside a lake */
for (i = 0; i < c->bin_nseg[b]; i++) seg_skip[i] = true; /* Must skip all segments in the lake */
c->node_level[0] = c->node_level[1] = c->node_level[2] = c->node_level[3] = 1; /* Bin is now entirely inside land */
}
else { /* Must find all level 3 and 4 features whose parent is level 2 and has been skipped. Then these level 3/4 features must be skipped too */
for (feature = 3; feature <= 4; feature++) { /* Must check twice; first for islands-in-lakes (3), then ponds in such islands (4) */
for (i = 0; i < c->bin_nseg[b]; i++) { /* Go through entire segment list */
if (get_level (seg_info[i]) != feature) continue; /* We are only looking for levels 3 or 4 here, so does not matter if level is 5,6 */
/* Here segment i is a level 3 (or 4) feature */
for (j = 0; j < c->bin_nseg[b]; j++) { /* Go through entire segment list again */
if (get_level (seg_info[j]) != (feature-1)) continue; /* We are looking for the containing polygon here which is one level up */
/* Here segment j is of level 1 higher than segment i (2 or 3) */
if (c->GSHHS_parent[seg_ID[i]] == seg_ID[j] && seg_skip[j]) { /* j is parent of i but j is to be skipped */
seg_skip[i] = true; /* We must therefore skip feature i as well */
/* Complication: Check if this feature happened to be a node-level-determining polygon... */
for (k = 0; k < 4; k++) { /* Visit all four nodes defining this bin, going counter-clockwise from lower-left bin */
node = ll_node + inc[k]; /* Current node index */
ID = c->GSHHS_node[node]; /* GSHHS Id of the polygon that determined the level of the current node */
if (seg_ID[i] == ID) c->node_level[k] = 1; /* Polygon must be skipped and node level reset to land (1) */
}
}
}
}
}
}
}
/* Here, seg_skip indicates all segments that will be skipped */
for (s = i = 0; i < c->bin_nseg[b]; i++) {
if (seg_skip[i]) continue; /* Marked to be skipped */
seg_info[s] = seg_info[i];
seg_start[s] = seg_start[i];
s++;
}
c->ns = s;
if (c->ns == 0) { /* No useful segments in this bin */
gmt_M_free (GMT, seg_skip);
gmt_M_free (GMT, seg_info);
gmt_M_free (GMT, seg_start);
gmt_M_free (GMT, seg_ID);
if (c->two_Antarcticas) gmt_M_free (GMT, seg_info_ANT);
return (GMT_NOERROR);
}
c->seg = gmt_M_memory (GMT, NULL, c->ns, struct GMT_SHORE_SEGMENT);
for (s = 0; s < c->ns; s++) {
c->seg[s].level = get_level (seg_info[s]);
if (c->seg[s].level > 4) c->seg[s].level = 1; /* Reset Antarctica segments to level 1 */
c->seg[s].n = (short)get_np (seg_info[s]);
c->seg[s].entry = get_entry (seg_info[s]);
c->seg[s].exit = get_exit (seg_info[s]);
c->seg[s].fid = (c->GSHHS_area[seg_ID[s]] < 0) ? RIVERLAKE : c->seg[s].level;
c->seg[s].dx = gmt_M_memory (GMT, NULL, c->seg[s].n, short);
c->seg[s].dy = gmt_M_memory (GMT, NULL, c->seg[s].n, short);
start[0] = seg_start[s];
count[0] = c->seg[s].n;
if ((err = nc_get_vara_short (c->cdfid, c->pt_dx_id, start, count, c->seg[s].dx)) ||
(err = nc_get_vara_short (c->cdfid, c->pt_dy_id, start, count, c->seg[s].dy))) {
gmt_free_shore (GMT, c);
gmt_M_free (GMT, seg_skip);
gmt_M_free (GMT, seg_info);
gmt_M_free (GMT, seg_start);
gmt_M_free (GMT, seg_ID);
if (c->two_Antarcticas) gmt_M_free (GMT, seg_info_ANT);
return (err);
}