-
Notifications
You must be signed in to change notification settings - Fork 375
/
Copy pathgmt_calclock.c
1035 lines (923 loc) · 37.2 KB
/
gmt_calclock.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
*--------------------------------------------------------------------*/
/* Routines for Generic Mapping Tools conversions
* between [calendar, clock] and time.
*
* Calendar conversions are inspired partly by
* Dershowitz and Reingold. We use "rata die"
* integer day numbers with day 1 set at
* proleptic Gregorian Mon Jan 1 00:00:00 0001.
* Proleptic means we assume that modern calendar
* can be extrapolated forward and backward; a
* year zero is used, and Gregory's reforms after
* Oct 1582 are extrapolated backward. Note
* that this is not historical.
*
* W H F Smith, April 2000
*
* A) List of exported gmt_* functions available to modules and libraries via gmt_dev.h:
*
* gmt_dt2rdc
* gmt_format_calendar
* gmt_gcal_from_dt
* gmt_gcal_from_rd
* gmt_rd_from_gymd
* gmt_rdc2dt
*
* B) List of exported gmtlib_* functions available to libraries via gmt_internals.h:
*
* gmtlib_g_ymd_is_bad
* gmtlib_get_time_label
* gmtlib_gmonth_length
* gmtlib_is_gleap
* gmtlib_iso_ywd_is_bad
* gmtlib_moment_interval
* gmtlib_rd_from_iywd
* gmtlib_splitinteger
* gmtlib_verify_time_step
* gmtlib_y2_to_y4_yearfix
*/
#include "gmt_dev.h"
#include "gmt_internals.h"
/* Private functions to this file:
int gmtcalclock_kday_on_or_before (int date, int kday);
int gmtcalclock_kday_after (int date, int kday);
int gmtcalclock_kday_before (int date, int kday);
int gmtcalclock_nth_kday (int n, int kday, int date);
int gmtcalclock_cal_imod (int x, int y);
int gmtcalclock_gyear_from_rd (int date);
void gmtcalclock_small_moment_interval (struct GMT_CTRL *GMT, struct GMT_MOMENT_INTERVAL *p, int step_secs, int init); Aux to gmtlib_moment_interval
*/
/* Modulo functions. The C operation "x%y" and the POSIX
fmod(x,y) will return a negative result when x < 0
and y > 0. The routines here below will always
return a positive value when y > 0, a necessary
feature in the calendar calculations.
It is not clear what to do when y == 0. Clearly,
the result is not defined. We should probably
print a domain error and return something anyway.
*/
GMT_LOCAL int gmtcalclock_cal_imod (int64_t x, int y) {
assert (y != 0);
return ((int)(x - y * lrint (floor ((double)x / (double)y))));
}
/* kday functions:
Let kday be the day of the week, defined with 0 = Sun,
1 = Mon, etc. through 6 = Sat. (Note that ISO day of
the week is the same for all of these except ISO Sunday
is 7.) Since rata die 1 is a Monday, we have kday from
rd is simply gmtcalclock_cal_imod(rd, 7). The various functions
below take an rd and find another rd related to the first
through the fact that the related day falls on a given
kday of the week. */
GMT_LOCAL int64_t gmtcalclock_kday_on_or_before (int64_t date, int kday) {
/* Given date and kday, return the date of the nearest kday
on or before the given date. */
return (date - gmtcalclock_cal_imod (date-kday, 7));
}
GMT_LOCAL int64_t gmtcalclock_kday_after (int64_t date, int kday) {
/* Given date and kday, return the date of the nearest kday
after the given date. */
return (gmtcalclock_kday_on_or_before (date+7, kday));
}
GMT_LOCAL int64_t gmtcalclock_kday_before (int64_t date, int kday) {
/* Given date and kday, return the date of the nearest kday
before the given date. */
return (gmtcalclock_kday_on_or_before (date-1, kday));
}
GMT_LOCAL int64_t gmtcalclock_nth_kday (int n, int kday, int64_t date) {
/* Given date, kday, and n, return the date of the n'th
kday before or after the given date, according to the
sign of n. */
if (n > 0)
return (7*n + gmtcalclock_kday_before (date, kday));
else
return (7*n + gmtcalclock_kday_after (date, kday));
}
GMT_LOCAL int gmtcalclock_gyear_from_rd (int64_t date) {
/* Given rata die integer day number, return proleptic Gregorian year */
int64_t d0, d1, d2, d3;
int year, n400, n100, n4, n1;
d0 = date - 1;
n400 = irint (floor (d0 / 146097.0));
d1 = gmtcalclock_cal_imod (d0, 146097);
n100 = irint (floor (d1 / 36524.0));
d2 = gmtcalclock_cal_imod (d1, 36524);
n4 = irint (floor (d2 / 1461.0));
d3 = gmtcalclock_cal_imod (d2, 1461);
n1 = irint (floor (d3 / 365.0));
/* d4 = gmtcalclock_cal_imod (d3, 365) + 1; NOT USED (removed) */
year = 400*n400 + 100*n100 + 4*n4 + n1;
if (n100 != 4 && n1 != 4) year++;
return (year);
}
GMT_LOCAL void gmtcalclock_small_moment_interval (struct GMT_CTRL *GMT, struct GMT_MOMENT_INTERVAL *p, int step_secs, bool init) {
/* Called by gmtlib_moment_interval (). Get here when p->stuff[0] is initialized and
0 < step_secs <= GMT_DAY2SEC_I. If init, stuff[0] may need to be truncated. */
double x;
if (step_secs == GMT_DAY2SEC_I) {
/* Special case of a 1-day step. */
if (p->sd[0] != 0.0) { /* Floor it to start of day. */
p->dt[0] -= (p->sd[0] * GMT->current.setting.time_system.i_scale);
p->sd[0] = 0.0;
}
/* Now we step to next day in rd first, and set dt from there.
This will work even when leap seconds are implemented. */
p->rd[1] = p->rd[0] + 1;
gmt_gcal_from_rd (GMT, p->rd[1], &(p->cc[1]) );
p->sd[1] = 0.0;
p->dt[1] = gmt_rdc2dt (GMT, p->rd[1], p->sd[1]);
}
else {
if (init) {
x = step_secs * floor (p->sd[0] / step_secs);
if (x != p->sd[0]) {
p->dt[0] -= ((p->sd[0] - x) * GMT->current.setting.time_system.i_scale);
}
}
/* Step to next interval time. If this would put GMT_DAY2SEC_I secs
in today, go to next day at zero. This will work even when
leap seconds are implemented and today is a leap second say,
unless also step_secs == 1. That special action will have to
be taken and will be coded later when leap seconds are put in.
*/
x = p->sd[0] + step_secs;
if (x >= GMT_DAY2SEC_F) { /* Should not be greater than */
p->sd[1] = 0.0;
p->rd[1] = p->rd[0] + 1;
gmt_gcal_from_rd (GMT, p->rd[1], &(p->cc[1]) );
p->dt[1] = gmt_rdc2dt (GMT, p->rd[1], p->sd[1]);
}
else {
p->sd[1] = x;
p->dt[1] = p->dt[0] + step_secs * GMT->current.setting.time_system.i_scale;
/* No call here to reset cc[1] struct, as rd hasn't changed.
Later, if it is desired to reset struct for clock
changes on same day, add a call here. */
}
}
}
/* Functions to assemble/disassemble a continuous
variable (double) and a calendar day (int)
and time of day (double secs)
*/
double gmt_rdc2dt (struct GMT_CTRL *GMT, int64_t rd, double secs) {
/* Given rata die rd and double seconds, return
time in TIME_UNIT relative to chosen TIME_EPOCH */
double f_days;
f_days = (rd - GMT->current.setting.time_system.rata_die - GMT->current.setting.time_system.epoch_t0);
return ((f_days * GMT_DAY2SEC_F + secs) * GMT->current.setting.time_system.i_scale);
}
int64_t gmtlib_splitinteger (double value, int epsilon, double *doublepart) {
/* Split value into integer and and floating part for date usage.
While the integer can be negative, doublepart is always >= 0
When doublepart is close to 0 or close to epsilon, doublepart is set
to zero and in the latter case, gmtlib_splitinteger is raised by one.
This makes value "snap" to multiples of epsilon.
*/
double x = floor (value / epsilon);
int64_t i = lrint (x);
*doublepart = value - x * epsilon;
if ((*doublepart) < GMT_CONV4_LIMIT)
*doublepart = 0.0; /* Snap to the lower integer */
else if ((double)epsilon - (*doublepart) < GMT_CONV4_LIMIT) {
i++; /* Snap to the higher integer */
*doublepart = 0.0;
}
return i;
}
void gmt_dt2rdc (struct GMT_CTRL *GMT, double t, int64_t *rd, double *s) {
/* Given time in TIME_UNIT relative to TIME_EPOCH, load rata die of this day
in rd and the seconds since the start of that day in s. */
double t_sec;
t_sec = (t * GMT->current.setting.time_system.scale + GMT->current.setting.time_system.epoch_t0 * GMT_DAY2SEC_F);
*rd = gmtlib_splitinteger (t_sec, GMT_DAY2SEC_I, s) + GMT->current.setting.time_system.rata_die;
}
int gmtlib_gmonth_length (int year, int month) {
/* Return the number of days in a month,
using the gregorian leap year rule.
Months are numbered from 1 to 12. */
int k;
if (month < 1 || month > 12) return 0;
if (month != 2) {
k = month % 2;
return ((month < 8) ? 30 + k : 31 - k);
}
k = (gmtlib_is_gleap (year)) ? 29 : 28;
return (k);
}
/* Proleptic Gregorian Calendar operations */
bool gmtlib_is_gleap (int gyear) {
/* Given integer proleptic gregorian calendar year,
return true if it is a Gregorian leap year;
else return false. */
int y400;
if (gmtcalclock_cal_imod (gyear, 4) != 0) return (false);
y400 = gmtcalclock_cal_imod (gyear, 400);
if (y400 == 0) return (true);
if (gmtcalclock_cal_imod (y400, 100) == 0) return (false);
return (true);
}
int64_t gmt_rd_from_gymd (struct GMT_CTRL *GMT, int gy, int gm, int gd) {
/* Given gregorian calendar year, month, day of month,
return the rata die integer day number. */
double s;
int64_t rd;
int day_offset, yearm1;
if (gm < 1 || gm > 12 || gd < 1 || gd > 31) {
GMT_Report (GMT->parent, GMT_MSG_ERROR, "gmt_rd_from_gymd given bad month (%d) or day (%d).\n", gm, gd);
return 0;
}
if (gm <= 2)
day_offset = 0;
else
day_offset = (gmtlib_is_gleap (gy)) ? -1 : -2;
yearm1 = gy - 1;
rd = day_offset + gd + 365 * (int64_t) yearm1;
s = floor (yearm1/4.0) - floor (yearm1/100.0) + floor (yearm1/400.0);
s += floor ((367 * gm - 362)/12.0);
rd += lrint (s);
return (rd);
}
/* ISO calendar routine */
int64_t gmtlib_rd_from_iywd (struct GMT_CTRL *GMT, int iy, int iw, int id) {
/* Given ISO calendar year, week, day of week,
return the rata die integer day number. */
int64_t rdtemp;
/* Add id to the iw'th Sunday after Dec 28 iy-1: */
rdtemp = gmt_rd_from_gymd (GMT, iy-1, 12, 28);
return (id + gmtcalclock_nth_kday (iw, 0, rdtemp));
}
/* Set calendar struct data from fixed date: */
void gmt_gcal_from_rd (struct GMT_CTRL *GMT, int64_t date, struct GMT_GCAL *gcal) {
/* Given rata die integer day number, load calendar structure
with proleptic Gregorian and ISO calendar values. */
int64_t prior_days, tempdate;
int corexn, tempyear;
/* Day of the week in 0 through 6: */
gcal->day_w = gmtcalclock_cal_imod (date, 7);
/* proleptic Gregorian operations: */
gcal->year = gmtcalclock_gyear_from_rd (date);
prior_days = date - gmt_rd_from_gymd (GMT, gcal->year, 1, 1);
gcal->day_y = (unsigned int)prior_days + 1;
tempdate = gmt_rd_from_gymd (GMT, gcal->year, 3, 1);
if (date < tempdate)
corexn = 0;
else
corexn = (gmtlib_is_gleap (gcal->year)) ? 1 : 2;
gcal->month = urint (floor ((12*(prior_days + corexn) + 373)/367.0));
tempdate = gmt_rd_from_gymd (GMT, gcal->year, gcal->month, 1);
gcal->day_m = (unsigned int)(date - tempdate + 1);
/* ISO operations: */
tempyear = (prior_days >= 3) ? gcal->year : gcal->year - 1;
tempdate = gmtlib_rd_from_iywd (GMT, tempyear+1, 1, 1);
gcal->iso_y = (date >= tempdate) ? tempyear + 1 : tempyear;
gcal->iso_w = 1U + urint (floor((date - gmtlib_rd_from_iywd (GMT, gcal->iso_y, 1, 1))/7.0));
gcal->iso_d = (gcal->day_w) ? gcal->day_w : 7U;
}
int gmtlib_y2_to_y4_yearfix (struct GMT_CTRL *GMT, unsigned int y2) {
/* Convert 2-digit year to 4-digit year, using
GMT->current.setting.time_Y2K_offset_year.
The sense of time_Y2K_offset_year is that it
is the first year representable in the
2-digit set. For example, if the set
runs from 1950 to 2049, then time_Y2K_offset_year
should be given as 1950, and then if a
two-digit year is from 50 to 99 it will
return 1900 plus that amount. If it is
from 00 to 49, it will return 2000 plus
that amount.
Below, we do a modulo operation and some
add/subtract to compute y100, y200, fraction
from GMT->current.setting.time_Y2K_offset_year. Because these
are constants during any run of a GMT program,
they could be computed once in gmt_init, but
we do them over and over again here, to make
this routine deliberately slow. I am writing
the time code in August 2001, and people who
haven't fixed their Y2K bug data by now will
be punished.
*/
/* The GMT->current.time.Y2K_fix structure is initialized in GMT->current.io.info_init once */
return (y2 + ((y2 >= GMT->current.time.Y2K_fix.y2_cutoff) ? GMT->current.time.Y2K_fix.y100 : GMT->current.time.Y2K_fix.y200));
}
bool gmtlib_g_ymd_is_bad (int y, int m, int d) {
/* Check year, month, day values to see if they
are an appropriate date in the proleptic
Gregorian calendar. Returns true if it
thinks the month and/or day have bad
values. Returns false if this looks like
a valid calendar date. */
int k;
if (m < 1 || m > 12 || d < 1) return (true);
k = gmtlib_gmonth_length (y, m); /* Number of day in the specified month */
if (d > k) return (true); /* More days than we've got in this month */
return (false);
}
bool gmtlib_iso_ywd_is_bad (int y, int w, int d) {
/* Check ISO_year, ISO_week_of_year, ISO_day_of_week
values to see if they form a probably
appropriate date in the ISO calendar based
on weeks. This is only a gross error check;
I don't verify that a particular date actually
exists on the ISO calendar.
Returns true if it appears something is out
of range, including negative year.
Returns false if it looks like things are OK.
*/
if (y < 0 || w < 1 || w > 53 || d < 1 || d > 7) return (true);
/* Later, insert something smarter here. */
return (false);
}
void gmt_gcal_from_dt (struct GMT_CTRL *GMT, double t, struct GMT_GCAL *cal) {
/* Given time in internal units, load cal and clock info in cal.
Note: uses 0 through 23 for hours (no am/pm inside here).
Note: does not yet deal w/ leap seconds; modulo math here.
*/
int64_t rd, i;
double x;
gmt_dt2rdc (GMT, t, &rd, &x);
gmt_gcal_from_rd (GMT, rd, cal);
/* split double seconds and integer time */
i = gmtlib_splitinteger (x, 60, &cal->sec);
cal->hour = (unsigned int)(i / GMT_MIN2SEC_I);
cal->min = (unsigned int)(i % GMT_MIN2SEC_I);
}
int gmtlib_verify_time_step (struct GMT_CTRL *GMT, int step, char unit) {
/* Return -1 if time step and/or unit look bad, 0 if OK. */
int retval = 0;
if (step < 0) {
GMT_Report (GMT->parent, GMT_MSG_ERROR, "Time steps must be positive.\n");
return (GMT_NOTSET);
}
switch (unit) {
case 'c':
case 'C':
if (gmt_M_compat_check (GMT, 4)) {
GMT_Report (GMT->parent, GMT_MSG_COMPAT, "Unit c for seconds is deprecated; use s.\n");
if (step > 60) {
GMT_Report (GMT->parent, GMT_MSG_ERROR, "Time steps in seconds must be <= 60\n");
retval = GMT_NOTSET;
}
}
else {
GMT_Report (GMT->parent, GMT_MSG_ERROR, "Unrecognized time axis unit.\n");
retval = GMT_NOTSET;
}
break;
case 's':
case 'S':
if (step > 60) {
GMT_Report (GMT->parent, GMT_MSG_ERROR, "Time steps in seconds must be <= 60\n");
retval = GMT_NOTSET;
}
break;
case 'm':
case 'M':
if (step > 60) {
GMT_Report (GMT->parent, GMT_MSG_ERROR, "Time steps in minutes must be <= 60\n");
retval = GMT_NOTSET;
}
break;
case 'h':
case 'H':
if (step > 24) {
GMT_Report (GMT->parent, GMT_MSG_ERROR, "Time steps in hours must be <= 24\n");
retval = GMT_NOTSET;
}
break;
case 'R': /* Special Gregorian days: Annotate from start of each week and not first day of month */
/* We are leveraging the machinery for 'K' and 'k' to step along but reset to start of week */
case 'd':
case 'D':
/* The letter d is used for both days of the month and days of the (Gregorian) year */
if (GMT->current.plot.calclock.date.day_of_year) {
if (step > 365) { /* This is probably an error. */
GMT_Report (GMT->parent, GMT_MSG_ERROR, "Time steps in year days must be <= 365\n");
retval = GMT_NOTSET;
}
}
else {
/* If step is longer than 31 it is probably an error. */
if (step > 31) {
GMT_Report (GMT->parent, GMT_MSG_ERROR, "Time steps in days of the month must be <= 31\n");
retval = GMT_NOTSET;
}
}
break;
case 'k':
case 'K':
if (step > 7) {
GMT_Report (GMT->parent, GMT_MSG_ERROR, "Time steps in weekdays must be <= 7\n");
retval = GMT_NOTSET;
}
break;
case 'r': /* Gregorian week. Special case: since weeks aren't numbered on Gregorian
calendar, we only allow step size = 1 here, for ticking each week start. */
if (step != 1) {
GMT_Report (GMT->parent, GMT_MSG_ERROR, "Time step must be 1 for Gregorian weeks\n");
retval = GMT_NOTSET;
}
break;
case 'u': /* ISO week */
case 'U':
if (step > 52) {
GMT_Report (GMT->parent, GMT_MSG_ERROR, "Time steps in weeks must be <= 52\n");
retval = GMT_NOTSET;
}
break;
case 'o':
case 'O':
if (step > 12) {
GMT_Report (GMT->parent, GMT_MSG_ERROR, "Time steps in months must be <= 12\n");
retval = GMT_NOTSET;
}
break;
case 'y': /* No check on years */
case 'Y':
break;
case 'l': /* Pass-through for log10 and pow flags (they are not units) */
case 'p':
break;
default:
GMT_Report (GMT->parent, GMT_MSG_ERROR, "Unrecognized time axis unit.\n");
retval = GMT_NOTSET;
break;
}
return (retval);
}
void gmtlib_moment_interval (struct GMT_CTRL *GMT, struct GMT_MOMENT_INTERVAL *p, double dt_in, bool init) {
/* Unchanged by this routine:
p->step is a positive interval width;
p->unit is set to a time axis unit;
These must be in valid ranges tested by gmtlib_verify_time_step().
p->init sets action to take; see below.
Let a and b be points in time, both exactly on the start of intervals
defined by p->step and p->unit (e.g. 6 hours, 3 months), and
such that b > a and b is the start of the next interval after a.
Let cc[0], dt[0], sd[0], rd[0] contain representations of time a.
Let cc[1], dt[1], sd[1], rd[1] contain representations of time b.
if (init) {
dt_in must contain a GMT interval time;
a and b will be found and set such that a <= dt_in < b;
}
else {
dt_in is not used;
b is copied to a;
the next b is found;
}
Warning: Current operation of gmt_gcal_from_rd() only sets the
calendar components of struct GMT_GCAL. That's OK for this
routine, as clock components are not used here. However, before
plotting the clock corresponding to a particular time, one should
call a routine to break dt or sd down into a clock string, or call
a routine to set the clock components of struct GMT_GCAL.
*/
int k, kws, kyd;
unsigned int kml;
if (init) {
/* Temporarily store a breakdown of dt_in in p->stuff[0].
Below we will take floor of this to get time a,
and reload stuff[0] with time a. */
gmt_dt2rdc (GMT, dt_in, &(p->rd[0]), &(p->sd[0]) );
gmt_gcal_from_rd (GMT, p->rd[0], &(p->cc[0]) );
p->dt[0] = dt_in;
p->sd[1] = p->sd[0];
p->rd[1] = p->rd[0];
gmt_M_memcpy (&(p->cc[1]), &(p->cc[0]), 1, struct GMT_GCAL); /* Set to same as first calendar */
}
else {
gmt_M_memcpy (&(p->cc[0]), &(p->cc[1]), 1, struct GMT_GCAL);
p->dt[0] = p->dt[1];
p->sd[0] = p->sd[1];
p->rd[0] = p->rd[1];
}
switch (p->unit) {
case 'c':
case 'C':
if (gmt_M_compat_check (GMT, 4)) {
GMT_Report (GMT->parent, GMT_MSG_COMPAT, "Unit c for seconds is deprecated; use s.\n");
k = p->step;
gmtcalclock_small_moment_interval (GMT, p, k, init);
}
else {
GMT_Report (GMT->parent, GMT_MSG_ERROR, "GMT_LOGIC_BUG: Bad unit in GMT_init_moment_interval()\n");
}
break;
case 's':
case 'S':
k = p->step;
gmtcalclock_small_moment_interval (GMT, p, k, init);
break;
case 'm':
case 'M':
k = GMT_MIN2SEC_I * p->step;
gmtcalclock_small_moment_interval (GMT, p, k, init);
break;
case 'h':
case 'H':
k = GMT_HR2SEC_I * p->step;
gmtcalclock_small_moment_interval (GMT, p, k, init);
break;
case 'd':
case 'D':
if (p->step == 1) {
/* Here we want every day (of the Gregorian month or year)
so the stepping is easy. */
k = GMT_DAY2SEC_I;
gmtcalclock_small_moment_interval (GMT, p, k, init);
}
else if (GMT->current.plot.calclock.date.day_of_year) {
/* Select every n'th day of the Gregorian year */
if (init) {
/* Simple mod works on positive ints */
/* k = (p->cc[0].day_y - 1)%(p->step); */
k = (p->cc[0].day_y)%(p->step); /* Want to start on a multiple of step */
if (k) {
p->rd[0] -= k; /* Floor to n'th day */
gmt_gcal_from_rd (GMT, p->rd[0], &(p->cc[0]) );
gmt_M_memcpy (&(p->cc[1]), &(p->cc[0]), 1, struct GMT_GCAL); /* Set to same as first calendar */
}
p->sd[0] = 0.0;
p->dt[0] = gmt_rdc2dt (GMT, p->rd[0], p->sd[0]);
}
kyd = (gmtlib_is_gleap (p->cc[0].year)) ? 366 : 365;
k = p->cc[0].day_y + p->step;
if (k > kyd) {
/* Go to 1st day of next year: */
p->rd[1] = gmt_rd_from_gymd (GMT, p->cc[0].year+1, 1, 1) - 1 + p->step; /* So jjj will be multiples of step */
}
else {
p->rd[1] = p->rd[0] + p->step;
}
gmt_gcal_from_rd (GMT, p->rd[1], &(p->cc[1]) );
p->sd[1] = 0.0;
p->dt[1] = gmt_rdc2dt (GMT, p->rd[1], p->sd[1]);
}
else {
/* Select every n'th day of the Gregorian month */
if (init) {
/* Simple mod works on positive ints */
k = (p->cc[0].day_m - 1)%(p->step);
if (k) {
p->rd[0] -= k; /* Floor to n'th day */
gmt_gcal_from_rd (GMT, p->rd[0], &(p->cc[0]) );
gmt_M_memcpy (&(p->cc[1]), &(p->cc[0]), 1, struct GMT_GCAL); /* Set to same as first calendar */
}
p->sd[0] = 0.0;
p->dt[0] = gmt_rdc2dt (GMT, p->rd[0], p->sd[0]);
}
kml = gmtlib_gmonth_length (p->cc[0].year, p->cc[0].month);
if (p->cc[0].day_m + p->step > kml) {
/* Truncate to 1st of next month */
if (p->cc[0].month == 12) {
p->cc[1].year = p->cc[0].year + 1;
p->cc[1].month = 1;
}
else
p->cc[1].month = p->cc[0].month + 1;
p->rd[1] = gmt_rd_from_gymd (GMT, p->cc[1].year, p->cc[1].month, 1);
}
else /* Adding step days will stay in current month. */
p->rd[1] = p->rd[0] + p->step;
p->sd[1] = 0.0;
gmt_gcal_from_rd (GMT, p->rd[1], &(p->cc[1]) );
p->dt[1] = gmt_rdc2dt (GMT, p->rd[1], p->sd[1]);
}
break;
case 'k':
case 'K':
case 'R': /* Special Gregorian Days of the Month: Annotations start at start of week, not start of month */
/* Here we need to know: how do you define the n'th day
of the week? I answered this question (for now) numbering
days as 0=Sun through 6=Sat, (this matches kday routines)
assuming this numbering applies to GMT->current.setting.time_week_start,
and placing the base day at either 1=Monday for ISO calendar,
or time_week_start for Gregorian calendar. User can then have
base, base+n, base+2n, etc. until base+kn would equal day 7
or more. When that happens, we truncate to start of next week.
*/
kws = (GMT->current.plot.calclock.date.iso_calendar) ? 1 : GMT->current.setting.time_week_start;
if (init) {
/* Floor to the n'th day of the week from the week start: */
/* a simple mod will work here since both are positive ints */
k = (p->cc[0].day_w - kws)%(p->step);
if (k) {
p->rd[0] -= k; /* Floor to n'th day of the week. */
gmt_gcal_from_rd (GMT, p->rd[0], &(p->cc[0]) );
gmt_M_memcpy (&(p->cc[1]), &(p->cc[0]), 1, struct GMT_GCAL); /* Set to same as first calendar */
}
p->sd[0] = 0.0;
p->dt[0] = gmt_rdc2dt (GMT, p->rd[0], p->sd[0]);
}
k = (p->cc[0].day_w - kws + 7) % 7; /* k will be in the 0- 6 range where 0 is the kws day (could be Wednesday or whatever) */
k += p->step; /* Step forward the required number of days */
if (k > 6) { /* Stepped into next week, must reset stride to start at week start */
int n_weeks;
n_weeks = p->step / 7; /* Because the k % 7 would not count weeks */
k -= p->step;
k = (7 - k) % 7; /* Number of days left in the week */
if (k == 0 && n_weeks == 0) k = 1; /* Must go at least 1 day forward */
p->rd[1] = p->rd[0] + k + n_weeks * 7; /* Next rd */
}
else /* It is OK to add p->step days to rd[0] to get rd[1] */
p->rd[1] = p->rd[0] + p->step;
p->sd[1] = 0.0;
gmt_gcal_from_rd (GMT, p->rd[1], &(p->cc[1]) );
p->dt[1] = gmt_rdc2dt (GMT, p->rd[1], p->sd[1]);
break;
case 'r': /* Gregorian weeks. Step size is 1. */
if (init) {
/* Floor to the first day of the week start. */
k = p->cc[0].day_w - GMT->current.setting.time_week_start;
if (k) {
p->rd[0] -= gmtcalclock_cal_imod(k, 7);
gmt_gcal_from_rd (GMT, p->rd[0], &(p->cc[0]) );
}
p->sd[0] = 0.0;
p->dt[0] = gmt_rdc2dt (GMT, p->rd[0], p->sd[0]);
}
p->rd[1] = p->rd[0] + 7; /* We know step size is 1; other wise, use 7 * step */
p->sd[1] = 0.0;
gmt_gcal_from_rd (GMT, p->rd[1], &(p->cc[1]) );
p->dt[1] = gmt_rdc2dt (GMT, p->rd[1], p->sd[1]);
break;
case 'u':
case 'U':
if (init) {
/* Floor to the n'th iso week of the year: */
p->sd[0] = 0.0;
k = (p->cc[0].iso_w - 1)/p->step;
p->cc[0].iso_w = k * p->step + 1;
p->rd[0] = gmtlib_rd_from_iywd (GMT, p->cc[0].iso_y, p->cc[0].iso_w, 1);
gmt_gcal_from_rd (GMT, p->rd[0], &(p->cc[0]) );
gmt_M_memcpy (&(p->cc[1]), &(p->cc[0]), 1, struct GMT_GCAL); /* Set to same as first calendar */
p->dt[0] = gmt_rdc2dt (GMT, p->rd[0], p->sd[0]);
if (gmtlib_iso_ywd_is_bad (p->cc[0].iso_y, p->cc[0].iso_w, 1) ) {
GMT_Report (GMT->parent, GMT_MSG_ERROR, "GMT_LOGIC_BUG: bad ywd on floor (month) in GMT_init_moment_interval()\n");
return;
}
}
/* I'm not sure how to move <step> weeks ahead.
I have implemented it this way:
add 7*step days. If this puts you in
a new ISO year, then truncate back to
the start of the new ISO year. But just
in case that somehow returns you to where
you were (I think it can't), then go ahead
step weeks from where you were. */
p->rd[1] = p->rd[0] + p->step * 7;
gmt_gcal_from_rd (GMT, p->rd[1], &(p->cc[1]) );
if (p->cc[1].iso_y != p->cc[0].iso_y) {
k = p->cc[1].iso_y;
p->rd[1] = gmtlib_rd_from_iywd (GMT, k, 1, 1);
if (p->rd[1] == p->rd[0]) p->rd[1] += p->step * 7; /* Just in case */
gmt_gcal_from_rd (GMT, p->rd[1], &(p->cc[1]) );
}
p->sd[1] = 0.0;
p->dt[1] = gmt_rdc2dt (GMT, p->rd[1], p->sd[1]);
break;
case 'o':
case 'O':
/* Get the n'th month of the Gregorian year */
if (init) {
/* floor to the step'th month: */
p->sd[0] = 0.0;
p->cc[0].day_m = 1;
k = (p->cc[0].month-1)/p->step;
p->cc[0].month = k * p->step + 1;
if (gmtlib_g_ymd_is_bad (p->cc[0].year, p->cc[0].month, p->cc[0].day_m) ) {
GMT_Report (GMT->parent, GMT_MSG_ERROR, "GMT_LOGIC_BUG: bad ymd on floor (month) in GMT_init_moment_interval()\n");
return;
}
p->rd[0] = gmt_rd_from_gymd (GMT, p->cc[0].year, p->cc[0].month, p->cc[0].day_m);
gmt_gcal_from_rd (GMT, p->rd[0], &(p->cc[0]) );
gmt_M_memcpy (&(p->cc[1]), &(p->cc[0]), 1, struct GMT_GCAL); /* Set to same as first calendar */
p->dt[0] = gmt_rdc2dt (GMT, p->rd[0], p->sd[0]);
}
/* Now get next n'th month */
p->cc[1].month = p->cc[0].month + p->step;
if (p->cc[1].month > 12) {
p->cc[1].month = 1;
p->cc[1].year++;
}
p->rd[1] = gmt_rd_from_gymd (GMT, p->cc[1].year, p->cc[1].month, p->cc[1].day_m);
gmt_gcal_from_rd (GMT, p->rd[1], &(p->cc[1]) );
p->sd[1] = 0.0;
p->dt[1] = gmt_rdc2dt (GMT, p->rd[1], p->sd[1]);
break;
case 'y':
case 'Y':
if (init) {
/* Floor to the step'th year, either ISO or Gregorian, depending on... */
if (GMT->current.plot.calclock.date.iso_calendar) {
p->sd[0] = 0.0;
if (p->step > 1) p->cc[0].iso_y -= gmtcalclock_cal_imod (p->cc[0].iso_y, p->step);
p->rd[0] = gmtlib_rd_from_iywd (GMT, p->cc[0].iso_y, 1, 1);
}
else {
p->sd[0] = 0.0;
if (p->step > 1) p->cc[0].year -= gmtcalclock_cal_imod (p->cc[0].year, p->step);
p->rd[0] = gmt_rd_from_gymd (GMT, p->cc[0].year, 1, 1);
}
gmt_gcal_from_rd (GMT, p->rd[0], &(p->cc[0]) );
gmt_M_memcpy (&(p->cc[1]), &(p->cc[0]), 1, struct GMT_GCAL); /* Set to same as first calendar */
p->dt[0] = gmt_rdc2dt (GMT, p->rd[0], p->sd[0]);
}
/* Now step ahead step years, depending on calendar type: */
if (GMT->current.plot.calclock.date.iso_calendar) {
p->cc[1].iso_y = p->cc[0].iso_y + p->step;
p->rd[1] = gmtlib_rd_from_iywd (GMT, p->cc[1].iso_y, 1, 1);
}
else {
p->cc[1].year = p->cc[0].year + p->step;
p->rd[1] = gmt_rd_from_gymd (GMT, p->cc[1].year, 1, 1);
}
p->sd[1] = 0.0;
p->dt[1] = gmt_rdc2dt (GMT, p->rd[1], p->sd[1]);
gmt_gcal_from_rd (GMT, p->rd[1], &(p->cc[1]) );
break;
default:
/* Should never get here because unit should already have been verified. */
GMT_Report (GMT->parent, GMT_MSG_ERROR, "GMT_LOGIC_BUG: Bad unit in GMT_init_moment_interval()\n");
break;
}
}
void gmt_format_calendar (struct GMT_CTRL *GMT, char *date, char *clock, struct GMT_DATE_IO *D, struct GMT_CLOCK_IO *W, bool upper, unsigned int kind, double dt) {
/* Given the internal time representation dt and the formatting information
* in the D and C structure, write the calendar representation to strings date and clock,
* but skip either string if it is a NULL pointer */
int i_sec, m_sec, ap, ival[3] = {0, 0, 0};
char text[GMT_LEN16+1] = {""};
double step;
struct GMT_GCAL calendar;
/* Ensure we get the right seconds by adding a small set if ~ an whole second */
i_sec = irint (floor (dt)); /* Whole integer seconds */
step = dt - i_sec; /* Any fractional second */
if (step > 0.0) /* Yes so no need to add any step to ensure we are between two whole seconds */
step = 0.0;
else /* OK to add < 1 second for ensuring correct calendar second */
step = 0.5 / W->f_sec_to_int / GMT->current.setting.time_system.scale; /* Precision desired in time units */
gmt_gcal_from_dt (GMT, dt + step, &calendar); /* Convert dt [+ step] to a complete calendar structure */
if (date) date[0] = 0;
if (date && !D->skip) { /* Not NULL, want to format this string */
/* Now undo Y2K fix to make a 2-digit year here if necessary */
if (D->day_of_year) { /* Using the year and day-of-year as date entries */
if (D->item_pos[0] != GMT_NOTSET) ival[D->item_pos[0]] = (D->Y2K_year) ? abs (calendar.year) % 100 : calendar.year;
if (D->item_pos[3] != GMT_NOTSET) ival[D->item_pos[3]] = calendar.day_y;
}
else if (D->iso_calendar) { /* Using ISO year, week and day-of-week entries. Order is fixed to be y-m-d */
ival[0] = (D->Y2K_year) ? abs (calendar.iso_y) % 100 : calendar.iso_y;
ival[1] = calendar.iso_w;
ival[2] = calendar.iso_d;
}
else { /* Gregorian calendar entries */
if (D->item_pos[0] != GMT_NOTSET) ival[D->item_pos[0]] = (D->Y2K_year) ? abs (calendar.year) % 100 : calendar.year;
if (D->item_pos[1] != GMT_NOTSET) ival[D->item_pos[1]] = calendar.month;
if (D->item_pos[2] != GMT_NOTSET) ival[D->item_pos[2]] = calendar.day_m;
}
gmt_M_memset (date, GMT_LEN16, char); /* To set all to zero */
if (D->mw_text) { /* Must write month or week name */
if (D->iso_calendar)
strncpy (text, GMT->current.language.week_name[kind], GMT_LEN16);
else
strncpy (text, GMT->current.language.month_name[kind][ival[D->item_pos[1]]-1], GMT_LEN16);
if (upper) gmt_str_toupper (text);
if (D->item_pos[1] == 0) /* Month/week first */
sprintf (date, D->format, text, ival[1], ival[2]);
else if (D->item_pos[1] == 1) /* Month/week second */
sprintf (date, D->format, ival[0], text, ival[2]);
else /* Month/week third */
sprintf (date, D->format, ival[0], ival[1], text);
}
else /* Plain numerical filler-upper */
sprintf (date, D->format, ival[0], ival[1], ival[2]); /* Write date in correct order for this format */
}
if (clock) clock[0] = 0;
if (!clock || W->skip) return; /* Do not want a formatted clock string - return here */
gmt_M_memset (clock, GMT_LEN16, char); /* To set all to zero */
i_sec = irint (floor (calendar.sec));
m_sec = irint (floor (W->f_sec_to_int * (calendar.sec - i_sec)));
if (W->twelve_hr_clock) { /* Must deal with am/pm formatting */
if (calendar.hour < 12)
ap = 0;
else {
ap = 1;
calendar.hour -= 12;
}
if (calendar.hour == 0) calendar.hour = 12;
if (W->n_sec_decimals) { /* Have fractional seconds has smallest item */
sprintf (clock, W->format, calendar.hour, calendar.min, i_sec, m_sec, W->ampm_suffix[ap]);
}
else if (W->order[2] > 0) { /* Have integer seconds as smallest item */
sprintf (clock, W->format, calendar.hour, calendar.min, i_sec, W->ampm_suffix[ap]);
}
else if (W->order[1] > 0) { /* Have integer minutes as smallest item */
sprintf (clock, W->format, calendar.hour, calendar.min, W->ampm_suffix[ap]);
}
else { /* Have integer hours as smallest item */
sprintf (clock, W->format, calendar.hour, W->ampm_suffix[ap]);
}
}
else /* 24-hour clock formatting */
sprintf (clock, W->format, calendar.hour, calendar.min, i_sec, m_sec);
}
void gmtlib_get_time_label (struct GMT_CTRL *GMT, char *string, struct GMT_PLOT_CALCLOCK *P, struct GMT_PLOT_AXIS_ITEM *T, double t) {
/* Assemble the annotation label given the formatting options presented */
struct GMT_GCAL calendar;
gmt_gcal_from_dt (GMT, t, &calendar); /* Convert t to a complete calendar structure */
switch (T->unit) {
case 'Y': /* 4-digit integer year */
(P->date.compact) ? sprintf (string, "%d", calendar.year) : sprintf (string, "%04d", calendar.year);
break;
case 'y': /* 2-digit integer year */
/* (P->date.compact) ? sprintf (string, "%d", calendar.year % 100) : sprintf (string, "%02d", calendar.year % 100); */
sprintf (string, "%02d", calendar.year % 100);
break;
case 'O': /* Plot via date format */
gmt_format_calendar (GMT, string, NULL, &P->date, &P->clock, T->upper_case, T->flavor, t);
break;
case 'o': /* 2-digit month */
(P->date.compact) ? sprintf (string, "%d", calendar.month) : sprintf (string, "%02d", calendar.month);
break;
case 'U': /* ISO year, week, day via date format */
gmt_format_calendar (GMT, string, NULL, &P->date, &P->clock, T->upper_case, T->flavor, t);
break;
case 'u': /* 2-digit ISO week */
(P->date.compact) ? sprintf (string, "%d", calendar.iso_w) : sprintf (string, "%02d", calendar.iso_w);
break;
case 'K': /* ISO Weekday name */
if (T->upper_case) gmt_str_toupper (GMT->current.language.day_name[T->flavor][calendar.iso_d%7]);
sprintf (string, "%s", GMT->current.language.day_name[T->flavor][calendar.iso_d%7]);
break;
case 'k': /* Day of the week 1-7 */
sprintf (string, "%d", (calendar.day_w - GMT->current.setting.time_week_start + 7) % 7 + 1);
break;
case 'D': /* Day, via date format */
gmt_format_calendar (GMT, string, NULL, &P->date, &P->clock, T->upper_case, T->flavor, t);
break;
case 'd': /* 2-digit day or 3-digit day of year */
case 'R': /* Gregorian month-days are the same thing - only they start at beginning of weeks and not months */
if (P->date.day_of_year)
(P->date.compact) ? sprintf (string, "%d", calendar.day_y) : sprintf (string, "%03d", calendar.day_y);
else
(P->date.compact) ? sprintf (string, "%d", calendar.day_m) : sprintf (string, "%02d", calendar.day_m);
break;
case 'H': /* Hours via clock format */
gmt_format_calendar (GMT, NULL, string, &P->date, &P->clock, T->upper_case, T->flavor, t);
break;
case 'h': /* 2-digit hour */
(P->date.compact) ? sprintf (string, "%d", calendar.hour) : sprintf (string, "%02d", calendar.hour);
break;
case 'M': /* Minutes via clock format */
gmt_format_calendar (GMT, NULL, string, &P->date, &P->clock, T->upper_case, T->flavor, t);
break;