Gravity varies due to tidal effects. For any location at the surface of Earth, the distance to the Sun and the Moon change continually with time, changing the gravity field. Below is a perl function that calculates the tidal effects for a point on the surface of Earth. This calculation returns the upward gravity acceleration (in mgal) due to the Sun and the Moon. Note, near coastlines there is an additional effect of ocean loading of the continental margin due to the tide. The effect of this loading on the gravitational acceleration is not considered.
This function in perl calculates the gravity acceleration due to tidal effects of the Sun and the Moon on a point at the surface of Earth. We actually do not know the origin of this code. This version was modified by Dan Sheirer - he may be the original author. The code was translated to perl by Laura Connor.
The code requires an input file which contains details regarding the time and place on Earth's surface for the tidal calculation. An example of the contents of the input file is:
26.0 15.0 -82.0 25.0 10 2020 03 1 10
In this example the calculation is done for a point on Earth's surface at $26^{\circ} 15'$N, $82^{\circ} 25'$W and 10 m above mean sea level. The year=2020 C.E., in this example, month = 3 (Mar), day = 1. The calculation will start at midnight on March 1, 2020 (at the beginning of the 1st) and proceed at 10 minute intervals (fixed in this code) for 10 days (the number in the last column).
perl earth_tide.pl input_data_file_name > output_file_name
#PERL routine based on
#PROGRAM TO PRODUCE MICROGAL TIDE VALUES AT 10 MINUTE INTERVALS
#MODIFIED 14 FEB 1979 TO PROVIDE OPTIONAL PRINTOUT TO .01 MILLIGAL.
#MODIFIED DECEMBER 1983, JAN 1988, March 1998
#Dan Scheirer, Aug 2007: Tweaked to improve portability
# (syntax fixes and preserve double-precision)
#Translated to PERL (2013) by Laura Connor
#
#This program returns the tidal acceleration used to correct gravity measurements.
#That is, it returns the UPWARD component of gravitational
#acceleration due to the sun and moon. To correct gravity
#measurements for tidal acceleration, the returned values are
#ADDED to the observed gravity measurement.
#************************************************************
# Check for data file on command line
# and exit if not data file specified.
my $scriptname = $0;
if (($#ARGV +1) != 1) {
my $Usage = "Usage: perl $scriptname data_filename > output_filename";
print "$Usage\n";
exit;
}
##############################################
#INPUTS:
# Use an input file with the following format
# latitude minutes longitude minutes elevation year month day days
# latitude: degree part, South is negative, North is positive
# minutes; minutes part of latitude, always positive
# longitude: degree part, West is negative, East is positive
# minutes: minute part of longitude, always positive
# elevation: of obsevation point in meters
# year: YYYY, starting year
# month: MM, starting month
# day: DD, starting day
# days: number of days, from starting day, of gravity calculations due to earth tide
########################################################
# OUTPUTS:
# The program will output 2 columns of data
# time mGals
# time format is: YYYY-MM-DD-HH-MM (UTC)
# where YYYY is the year; MM is the month, DD is the day, HH is the hour, MM are the minutes past the hour (UTC)
# Redirect the output to a file instead of the screen using an > the redirect symbol (as shown in the USAGE statement above)
###############################################################################
use Math::Trig;
my @DAYPM = (31.,28.,31.,30.,31.,30.,31.,31.,30.,31.,30.,31.);
my @G;
# Double Precision numbers
my $CDEGTR = 1.7453292519943e-2;
my $CMINTR = 2.90888208666e-4;
my $CSECTR = 4.848136811e-6;
my $C0 = 3.84402e10;
my $C1 =1.495e13;
my $E = 0.05490;
my $RATIO = 0.074804;
my $OMEGA = 23.452 * $CDEGTR;
my $SMALLA = 6.37827e8;
my $AMU = 6.670e-8;
my $AMMOON = 7.3537e25;
my $AMSUN = 1.993e33;
my $PI2 = 6.2831853072;
my $SC1 = 1108411.2;
my $PC1 = 392515.94;
my $HC1 = 129602768.13;
my $ANC1 = 482912.63;
my $E11 = 1.675104e-2;
my $E12 = 4.180e-5;
my $E13 = 1.26e-7;
# Convert to milligals
my $MM = 1;
my $ARG5 = $OMEGA/2.;
my $ARG2 = 5.145 * $CDEGTR;
my $E_temp = $E**2;
my $APRIME = 1. / ($C0 * (1. - $E_temp));
my $SCON = 270. * $CDEGTR + 26. * $CMINTR + 14.72 * $CSECTR;
my $SSCON = 1336. * $PI2 + $SC1 * $CSECTR;
my $PCON = 334. * $CDEGTR + 19. * $CMINTR + 40.87 * $CSECTR;
my $PPCON = 11. * $PI2 + $PC1 * $CSECTR;
my $HCON = 279. * $CDEGTR + 41. * $CMINTR + 48.04 * $CSECTR;
my $ANCON = 259. * $CDEGTR + 10. * $CMINTR + 57.12 * $CSECTR;
my $AANCON = 5. * $PI2 + $ANC1 * $CSECTR;
my $P1CON = 281. * $CDEGTR + 13. * $CMINTR + 15. * $CSECTR;
my $CON1 = sin($OMEGA);
my $CON2 = cos($OMEGA);
my $CON3 = sin($ARG2);
my $CON4 = cos($ARG2);
my $CON5 = $APRIME * $E;
my $CON6 = $CON5 * $E;
my $ARG30 = $CON4 * $CON2;
my $ARG31 = $CON1 * $CON3;
my $CON7 = $CON5 * $RATIO * 15.0/ 8.;
my $Ratio_temp = $RATIO**2;
my $CON8 = $APRIME * $Ratio_temp;
my $CON9 = 5. * $E_temp / 4.;
my $CON10 = 15. * $RATIO * $E / 4.;
my $CON11 = 11. * $Ratio_temp / 8.;
# The elevation of the location in meters
my $SELEV;
#the Latitude in DEGREES and DECIMAL MINUTES (NORTH POSITIVE)
my $SLATD, my $SLATM;
#Longitude in DEGREES and DECIMAL MINUTES (WEST POSITIVE)
my $SLONGD, my $SLONGM;
#Starting date-YEAR MONTH DAY-(Example 2000 02 29)
my $DATEY, my $DATEM, my $DATED;
#TIME ZONE(Hours WEST of Greenwich PST=8,PDT=MST=7)
my $TIMEH = 0.;
#Number of days for which tide is to be calculated
my $DAYS;
my $NTOTAL;
#Generating tide correction values in MILLIGALS', 1' at 10 minute intervals')
while (<>) {
if ($_ =~ m/^#/) {next;}
($SLATD, $SLATM,$long_deg, $SLONGM, $SELEV, $DATEY,$DATEM,$DATED, $DAYS) = split " ";
}
$SLONGD = -$long_deg;
$LATD = int($SLATD);
$LONGD = int($SLONGD);
#print "$LATD,$LONGD ";
if ($DATEY < 100.) {$DATEY += 2e3;}
$IDATEM = int($DATEM);
$IDATED = int($DATED);
$NDATEY = int($DATEY);
#print "$DATEY-$IDATEM-$IDATED ";
$IDATEY = int($DATEY - 1900);
#print "$IDATEY\n";
my $MINUTE = 0.;
# 10 minute intervals
my $FINT = 10;
$NTOTAL = int($DAYS * 1440 / $FINT);
#print "$LATD, $SLATM,$LONGD, $SLONGM, $SELEV, $IDATEY,$IDATEM,$IDATED, $DAYS\n";
#print "TOTAL = $NTOTAL\n";
my $TIMEM = 0.;
my $totaln = $NTOTAL;
my $i = 0;
for ($i = 1; $i <= $totaln; $i++) {
if ($i == 1) { goto L75; }
$MINUTE += $FINT;
$DAYS5 = $MINUTE / 1440.;
# print "[$i]MIN: $MINUTE $DAYS5 ";
goto L350;
L75:$DAYS2 = 0.;
# The sign transfer function SIGN(X,Y)
# takes the sign of the second argument
# and puts it on the first argument,
# return ABS(X) if Y >= 0 and -ABS(X) if Y < 0.
$ALAMBD = $SLATD * $CDEGTR + sign($SLATM, $SLATD) * $CMINTR;
my $sl_temp = $SLONGM / 60.;
$ALONG = $SLONGD + sign($sl_temp, $SLONGD);
$MONTH = int($DATEM);
$IDAY = int($DATED);
$pr_day = $IDAY;
$IYEAR = int($DATEY - 1900);
# This will always be zero ; we are using UTC time
$IHOUR = int($TIMEH);
$pr_hr = 0;
$MINUTE = $TIMEM;
$pr_mm = 0;
# CALCULATE T (NUMBER OF JULIAN CENTURIES)
my $j = 0;
for ($j = 1; $j <= 12; ++$j) {
$JS = $MONTH - $j;
if ($JS == 0) { goto L150; }
$DAYS2 += $DAYPM[$j - 1];
} # END for
L150: $DAYS3 = $IDAY - 1.;
$DAYS4 = $IHOUR / 24.;
$DAYS5 = $MINUTE / 1440.;
$DAYS1 = $IYEAR * 365.;
$NYEAR = int($IYEAR / 4);
$SJ = $IYEAR / 4. - $NYEAR;
if ($SJ > 0) { goto L200; }
# IF(MONTH-2) 300,300,200
if ( ($MONTH - 2 ) <= 0) {goto L300;}
else {goto L200;}
L200: $DAYS6 = $NYEAR;
goto L350;
L300: $DAYS6 = $NYEAR - 1.;
L350:#print "\nDAYS: $DAYS1 $DAYS2 $DAYS3 $DAYS4 $DAYS5 $DAYS6 ";
$STOR = $DAYS1 + $DAYS2 + $DAYS3 + $DAYS4 + $DAYS5 + $DAYS6 + 0.5;
$T = $STOR / 36525.;
$S = $SCON + ((0.0068 * $CSECTR * $T + 9.09 * $CSECTR) * $T + $SSCON) * $T;
$P = $PCON + (((-0.045) * $CSECTR * $T - 37.24 * $CSECTR) * $T + $PPCON) * $T;
$H = $HCON + (1.089 * $CSECTR * $T + $HC1 * $CSECTR) * $T;
$AN = $ANCON + ((0.008 * $CSECTR * $T + 7.58 * $CSECTR) * $T - $AANCON) * $T;
$P1 = $P1CON + ((0.012 * $CSECTR * $T + 1.63 * $CSECTR) * $T + 6189.03 * $CSECTR) * $T;
$E1 = $E11 - ($E12 + $E13 * $T) * $T;
my $AL_temp = (sin($ALAMBD))**2;
$ARG1 = 1. / (1. + 0.006738 * $AL_temp);
$CAPC = sqrt($ARG1);
$RADIUS = $CAPC * $SMALLA + $ELEV;
my $E1_temp = $E1**2;
$APRIM1 = 1. / ($C1 * (1. - $E1_temp));
$SMINP = $S - $P;
$S2HP = $S - 2. * $H + $P;
$SMINH = $S - $H;
$HMINP1 = $H - $P1;
$SMINP2 = 2. * $SMINP;
$SMINH2 = 2. * $SMINH;
$DISTEM = 1. / $C0 + $CON5 * cos($SMINP) + $CON6 * cos($SMINP2) + $CON7 * cos($S2HP) + $CON8 * cos($SMINH2);
$DISTES = 1. / $C1 + $APRIM1 * $E1 * cos($HMINP1);
$TZERO = $IHOUR + $MINUTE / 60.;
$SMALLT = (15. * ($TZERO - 12.) - $ALONG) * $CDEGTR;
$CHI1 = $SMALLT + $H;
$ALSUN = $H + 2. * $E1 * sin($HMINP1);
$ARG3 = $ARG30 - $ARG31 * cos($AN);
$AI = acos($ARG3);
$ARG4 = $CON3 * sin($AN) / sin($AI);
$ANU = asin($ARG4);
$CHI = $SMALLT + $H - $ANU;
$SALPHA = $CON1 * sin($AN) / sin($AI);
$CALPH1 = cos($AN) * cos($ANU) + sin($AN) * sin($ANU) * $CON2 + 1.;
$ALPHA = 2. * atan2($SALPHA, $CALPH1);
$XI = $AN - $ALPHA;
$SIGMA = $S - $XI;
$ALMOON = $SIGMA + 2. * $E * sin($SMINP) + $CON9 * sin($SMINP2) + $CON10 * sin($S2HP) + $CON11 * sin($SMINH2);
$ARG6 = $ALSUN - $CHI1;
$ARG7 = $ALSUN + $CHI1;
my $cARG5_temp = cos($ARG5)**2;
my $sARG5_temp = sin($ARG5)**2;
$CPHI = sin($ALAMBD) * sin($OMEGA) * sin($ALSUN) + cos($ALAMBD) * ($cARG5_temp * cos$ARG6 + $sARG5_temp * cos($ARG7));
$ARG8 = $AI / 2.;
$ARG9 = $ALMOON - $CHI;
$ARG10 = $ALMOON + $CHI;
my $cARG8_temp = cos($ARG8)**2;
my $sARG8_temp = sin($ARG8)**2;
$CTHETA = sin($ALAMBD) * sin($AI) * sin($ALMOON) + cos($ALAMBD) * ($cARG8_temp * cos($ARG9) + $sARG8_temp * cos($ARG10));
$QR = 1e3;
$DISTEM *= $QR;
$DISTES *= $QR;
my $ctheta2_tmp = $CTHETA**2;
my $distem3_tmp = $DISTEM**3;
my $qr3_tmp = $QR**3;
my $qr4_tmp = $QR**4;
my $radius2_tmp = $RADIUS**2;
my $ctheta3_tmp = $CTHETA**3;
my $distem4_tmp = $DISTEM**4;
#GM=AMU*AMMOON*RADIUS*(3.d0*(CTHETA**2)-1.d0)*(DISTEM**3)/(QR**3)+3.d0*(AMU*AMMOON*(RADIUS**2)*(5.d0*(CTHETA**3)-3.d0*CTHETA))*(DISTEM**4)/(2.d0*QR**4)
$GM = $AMU * $AMMOON * $RADIUS * (3. * $ctheta2_tmp - 1.) * $distem3_tmp / $qr3_tmp + 3. * ($AMU * $AMMOON * $radius2_tmp * (5.0 * $ctheta3_tmp - 3. * $CTHETA)) * $distem4_tmp / (2. * $qr4_tmp);
$GM *= 1e3;
my $cphi2_tmp = $CPHI**2;
my $distes3_tmp = $DISTES**3;
$GS = $AMU * $AMSUN * $RADIUS * (3. * $cphi2_tmp - 1.) * $distes3_tmp * 1e3 / $qr3_tmp;
$GZERO = $GM + $GS;
$G[$i - 1] = ($GZERO * 1160.) / 1e3;
if ($pr_mm == 60) {
$pr_mm = 0;
$pr_hr++;
}
if ($pr_hr == 24) {
$pr_hr = 0;
$pr_day++;
}
my $str = "$DATEY"."-"."$DATEM"."-"."$pr_day"."-"."$pr_hr"."-"."$pr_mm";
printf "%s %.4f\n", $str, $G[$i - 1];
$pr_mm += $FINT;
} #END for (my $i = 1; $i <= $totaln; ++$i) {
$NMIN = -143;
--$IDATED;
my $int_days = int($DAYS);
my $k = 0;
for ( $k = 1; $k <= $int_days; ++$k) {
++$IDATED;
if ($IDATED <= int($DAYPM[$IDATEM - 1] ) ) { goto L990; }
# If February
if (($IDATEM == 2)) { goto L910; }
L905: ++$IDATEM;
$IDATED = 1;
if ($IDATEM <= 12) { goto L990; }
$IDATEM = 1;
++$NDATEY;
++$IDATEY;
goto L990;
L910: if ($IDATED >= 30) { goto L905; }
if (($IDATEY / 4) << 2 == $IDATEY) { goto L990; }
goto L905;
L990: #$NMIN += 144;
#$NMAX = $NMIN + 143;
#for (my $z = $NMIN; $z <= $NMAX; ++$z ) {
#printf "%s %.4f\n", $str, $G[$z-1];
#if (($z % 12) == 0) {print "\n";}
#}
} # END for ( my $k = 1; $k <= $int_days); ++$k) {
##############################################
# FUNCTION sign()
# return ABS(X) if Y >= 0 and -ABS(X) if Y < 0
###############################################
sub sign {
my $ans = ($_[1] >= 0) ? abs($_[0]) : -abs($_[0]);
#print "$_[0] $_[1] $ans\n";
return $ans;
}
2020-03-1-0-0 0.0473
2020-03-1-0-10 0.0429
2020-03-1-0-20 0.0385
2020-03-1-0-30 0.0341
2020-03-1-0-40 0.0297
2020-03-1-0-50 0.0254
2020-03-1-1-0 0.0212
2020-03-1-1-10 0.0171
2020-03-1-1-20 0.0132
2020-03-1-1-30 0.0094
2020-03-1-1-40 0.0059
2020-03-1-1-50 0.0025
2020-03-1-2-0 -0.0006
2020-03-1-2-10 -0.0035
2020-03-1-2-20 -0.0061
2020-03-1-2-30 -0.0085
2020-03-1-2-40 -0.0105
2020-03-1-2-50 -0.0123
2020-03-1-3-0 -0.0139
2020-03-1-3-10 -0.0151
2020-03-1-3-20 -0.0161
2020-03-1-3-30 -0.0168
2020-03-1-3-40 -0.0172
2020-03-1-3-50 -0.0173
2020-03-1-4-0 -0.0172
2020-03-1-4-10 -0.0168
2020-03-1-4-20 -0.0163
2020-03-1-4-30 -0.0154
2020-03-1-4-40 -0.0144
2020-03-1-4-50 -0.0132
2020-03-1-5-0 -0.0119
2020-03-1-5-10 -0.0103
2020-03-1-5-20 -0.0087
2020-03-1-5-30 -0.0069
2020-03-1-5-40 -0.0051
2020-03-1-5-50 -0.0031
2020-03-1-6-0 -0.0012
2020-03-1-6-10 0.0008
2020-03-1-6-20 0.0029
2020-03-1-6-30 0.0049
2020-03-1-6-40 0.0069
2020-03-1-6-50 0.0088
2020-03-1-7-0 0.0107
2020-03-1-7-10 0.0125
2020-03-1-7-20 0.0142
2020-03-1-7-30 0.0158
2020-03-1-7-40 0.0172
2020-03-1-7-50 0.0185
2020-03-1-8-0 0.0197
2020-03-1-8-10 0.0206
2020-03-1-8-20 0.0214
2020-03-1-8-30 0.0221
2020-03-1-8-40 0.0225
2020-03-1-8-50 0.0227
2020-03-1-9-0 0.0227
2020-03-1-9-10 0.0225
2020-03-1-9-20 0.0221
2020-03-1-9-30 0.0215
2020-03-1-9-40 0.0207
2020-03-1-9-50 0.0197
2020-03-1-10-0 0.0184
2020-03-1-10-10 0.0170
2020-03-1-10-20 0.0154
2020-03-1-10-30 0.0136
2020-03-1-10-40 0.0116
2020-03-1-10-50 0.0095
2020-03-1-11-0 0.0072
2020-03-1-11-10 0.0048
2020-03-1-11-20 0.0023
2020-03-1-11-30 -0.0003
2020-03-1-11-40 -0.0030
2020-03-1-11-50 -0.0058
2020-03-1-12-0 -0.0087
2020-03-1-12-10 -0.0115
2020-03-1-12-20 -0.0144
2020-03-1-12-30 -0.0173
2020-03-1-12-40 -0.0201
2020-03-1-12-50 -0.0229
2020-03-1-13-0 -0.0256
2020-03-1-13-10 -0.0282
2020-03-1-13-20 -0.0307
2020-03-1-13-30 -0.0330
2020-03-1-13-40 -0.0352
2020-03-1-13-50 -0.0373
2020-03-1-14-0 -0.0391
2020-03-1-14-10 -0.0407
2020-03-1-14-20 -0.0421
2020-03-1-14-30 -0.0433
2020-03-1-14-40 -0.0442
2020-03-1-14-50 -0.0448
2020-03-1-15-0 -0.0451
2020-03-1-15-10 -0.0452
2020-03-1-15-20 -0.0449
2020-03-1-15-30 -0.0444
2020-03-1-15-40 -0.0435
2020-03-1-15-50 -0.0423
2020-03-1-16-0 -0.0408
2020-03-1-16-10 -0.0390
2020-03-1-16-20 -0.0369
2020-03-1-16-30 -0.0345
2020-03-1-16-40 -0.0317
2020-03-1-16-50 -0.0288
2020-03-1-17-0 -0.0255
2020-03-1-17-10 -0.0220
2020-03-1-17-20 -0.0182
2020-03-1-17-30 -0.0143
2020-03-1-17-40 -0.0101
2020-03-1-17-50 -0.0058
2020-03-1-18-0 -0.0013
2020-03-1-18-10 0.0034
2020-03-1-18-20 0.0081
2020-03-1-18-30 0.0129
2020-03-1-18-40 0.0178
2020-03-1-18-50 0.0227
2020-03-1-19-0 0.0276
2020-03-1-19-10 0.0325
2020-03-1-19-20 0.0373
2020-03-1-19-30 0.0420
2020-03-1-19-40 0.0467
2020-03-1-19-50 0.0512
2020-03-1-20-0 0.0555
2020-03-1-20-10 0.0596
2020-03-1-20-20 0.0636
2020-03-1-20-30 0.0673
2020-03-1-20-40 0.0707
2020-03-1-20-50 0.0739
2020-03-1-21-0 0.0768
2020-03-1-21-10 0.0795
2020-03-1-21-20 0.0818
2020-03-1-21-30 0.0837
2020-03-1-21-40 0.0854
2020-03-1-21-50 0.0867
2020-03-1-22-0 0.0877
2020-03-1-22-10 0.0884
2020-03-1-22-20 0.0887
2020-03-1-22-30 0.0887
2020-03-1-22-40 0.0884
2020-03-1-22-50 0.0877
2020-03-1-23-0 0.0867
2020-03-1-23-10 0.0855
2020-03-1-23-20 0.0839
2020-03-1-23-30 0.0821
2020-03-1-23-40 0.0800
2020-03-1-23-50 0.0777
2020-03-2-0-0 0.0751
2020-03-2-0-10 0.0724
2020-03-2-0-20 0.0694
2020-03-2-0-30 0.0663
2020-03-2-0-40 0.0631
2020-03-2-0-50 0.0597
2020-03-2-1-0 0.0563
2020-03-2-1-10 0.0527
2020-03-2-1-20 0.0491
2020-03-2-1-30 0.0455
2020-03-2-1-40 0.0418
2020-03-2-1-50 0.0382
2020-03-2-2-0 0.0345
2020-03-2-2-10 0.0310
2020-03-2-2-20 0.0274
2020-03-2-2-30 0.0240
2020-03-2-2-40 0.0206
2020-03-2-2-50 0.0174
2020-03-2-3-0 0.0142
2020-03-2-3-10 0.0112
2020-03-2-3-20 0.0083
2020-03-2-3-30 0.0056
2020-03-2-3-40 0.0031
2020-03-2-3-50 0.0007
2020-03-2-4-0 -0.0016
2020-03-2-4-10 -0.0036
2020-03-2-4-20 -0.0055
2020-03-2-4-30 -0.0072
2020-03-2-4-40 -0.0087
2020-03-2-4-50 -0.0100
2020-03-2-5-0 -0.0111
2020-03-2-5-10 -0.0121
2020-03-2-5-20 -0.0128
2020-03-2-5-30 -0.0135
2020-03-2-5-40 -0.0139
2020-03-2-5-50 -0.0142
2020-03-2-6-0 -0.0143
2020-03-2-6-10 -0.0143
2020-03-2-6-20 -0.0141
2020-03-2-6-30 -0.0139
2020-03-2-6-40 -0.0135
2020-03-2-6-50 -0.0130
2020-03-2-7-0 -0.0124
2020-03-2-7-10 -0.0117
2020-03-2-7-20 -0.0110
2020-03-2-7-30 -0.0102
2020-03-2-7-40 -0.0093
2020-03-2-7-50 -0.0084
2020-03-2-8-0 -0.0075
2020-03-2-8-10 -0.0066
2020-03-2-8-20 -0.0057
2020-03-2-8-30 -0.0048
2020-03-2-8-40 -0.0039
2020-03-2-8-50 -0.0031
2020-03-2-9-0 -0.0023
2020-03-2-9-10 -0.0015
2020-03-2-9-20 -0.0009
2020-03-2-9-30 -0.0003
2020-03-2-9-40 0.0002
2020-03-2-9-50 0.0005
2020-03-2-10-0 0.0008
2020-03-2-10-10 0.0010
2020-03-2-10-20 0.0010
2020-03-2-10-30 0.0009
2020-03-2-10-40 0.0007
2020-03-2-10-50 0.0004
2020-03-2-11-0 -0.0001
2020-03-2-11-10 -0.0007
2020-03-2-11-20 -0.0014
2020-03-2-11-30 -0.0023
2020-03-2-11-40 -0.0033
2020-03-2-11-50 -0.0044
2020-03-2-12-0 -0.0056
2020-03-2-12-10 -0.0069
2020-03-2-12-20 -0.0083
2020-03-2-12-30 -0.0099
2020-03-2-12-40 -0.0114
2020-03-2-12-50 -0.0131
2020-03-2-13-0 -0.0148
2020-03-2-13-10 -0.0166
2020-03-2-13-20 -0.0184
2020-03-2-13-30 -0.0201
2020-03-2-13-40 -0.0219
2020-03-2-13-50 -0.0237
2020-03-2-14-0 -0.0255
2020-03-2-14-10 -0.0271
2020-03-2-14-20 -0.0288
2020-03-2-14-30 -0.0303
2020-03-2-14-40 -0.0317
2020-03-2-14-50 -0.0331
2020-03-2-15-0 -0.0342
2020-03-2-15-10 -0.0353
2020-03-2-15-20 -0.0362
2020-03-2-15-30 -0.0368
2020-03-2-15-40 -0.0374
2020-03-2-15-50 -0.0377
2020-03-2-16-0 -0.0378
2020-03-2-16-10 -0.0376
2020-03-2-16-20 -0.0373
2020-03-2-16-30 -0.0367
2020-03-2-16-40 -0.0358
2020-03-2-16-50 -0.0347
2020-03-2-17-0 -0.0334
2020-03-2-17-10 -0.0318
2020-03-2-17-20 -0.0300
2020-03-2-17-30 -0.0279
2020-03-2-17-40 -0.0256
2020-03-2-17-50 -0.0230
2020-03-2-18-0 -0.0202
2020-03-2-18-10 -0.0172
2020-03-2-18-20 -0.0140
2020-03-2-18-30 -0.0106
2020-03-2-18-40 -0.0070
2020-03-2-18-50 -0.0032
2020-03-2-19-0 0.0007
2020-03-2-19-10 0.0048
2020-03-2-19-20 0.0089
2020-03-2-19-30 0.0132
2020-03-2-19-40 0.0175
2020-03-2-19-50 0.0220
2020-03-2-20-0 0.0264
2020-03-2-20-10 0.0308
2020-03-2-20-20 0.0353
2020-03-2-20-30 0.0397
2020-03-2-20-40 0.0441
2020-03-2-20-50 0.0484
2020-03-2-21-0 0.0526
2020-03-2-21-10 0.0566
2020-03-2-21-20 0.0606
2020-03-2-21-30 0.0644
2020-03-2-21-40 0.0680
2020-03-2-21-50 0.0715
2020-03-2-22-0 0.0747
2020-03-2-22-10 0.0778
2020-03-2-22-20 0.0805
2020-03-2-22-30 0.0831
2020-03-2-22-40 0.0854
2020-03-2-22-50 0.0874
2020-03-2-23-0 0.0892
2020-03-2-23-10 0.0906
2020-03-2-23-20 0.0918
2020-03-2-23-30 0.0927
2020-03-2-23-40 0.0933
2020-03-2-23-50 0.0936
2020-03-3-0-0 0.0936
2020-03-3-0-10 0.0933
2020-03-3-0-20 0.0928
2020-03-3-0-30 0.0919
2020-03-3-0-40 0.0908
2020-03-3-0-50 0.0893
2020-03-3-1-0 0.0877
2020-03-3-1-10 0.0857
2020-03-3-1-20 0.0835
2020-03-3-1-30 0.0811
2020-03-3-1-40 0.0785
2020-03-3-1-50 0.0756
2020-03-3-2-0 0.0726
2020-03-3-2-10 0.0694
2020-03-3-2-20 0.0660
2020-03-3-2-30 0.0625
2020-03-3-2-40 0.0588
2020-03-3-2-50 0.0550
2020-03-3-3-0 0.0512
2020-03-3-3-10 0.0472
2020-03-3-3-20 0.0432
2020-03-3-3-30 0.0391
2020-03-3-3-40 0.0351
2020-03-3-3-50 0.0310
2020-03-3-4-0 0.0269
2020-03-3-4-10 0.0229
2020-03-3-4-20 0.0189
2020-03-3-4-30 0.0149
2020-03-3-4-40 0.0111
2020-03-3-4-50 0.0073
2020-03-3-5-0 0.0037
2020-03-3-5-10 0.0002
2020-03-3-5-20 -0.0032
2020-03-3-5-30 -0.0064
2020-03-3-5-40 -0.0094
2020-03-3-5-50 -0.0123
2020-03-3-6-0 -0.0150
2020-03-3-6-10 -0.0175
2020-03-3-6-20 -0.0198
2020-03-3-6-30 -0.0219
2020-03-3-6-40 -0.0238
2020-03-3-6-50 -0.0254
2020-03-3-7-0 -0.0269
2020-03-3-7-10 -0.0281
2020-03-3-7-20 -0.0291
2020-03-3-7-30 -0.0299
2020-03-3-7-40 -0.0305
2020-03-3-7-50 -0.0309
2020-03-3-8-0 -0.0311
2020-03-3-8-10 -0.0311
2020-03-3-8-20 -0.0309
2020-03-3-8-30 -0.0305
2020-03-3-8-40 -0.0300
2020-03-3-8-50 -0.0294
2020-03-3-9-0 -0.0286
2020-03-3-9-10 -0.0277
2020-03-3-9-20 -0.0267
2020-03-3-9-30 -0.0256
2020-03-3-9-40 -0.0244
2020-03-3-9-50 -0.0231
2020-03-3-10-0 -0.0219
2020-03-3-10-10 -0.0206
2020-03-3-10-20 -0.0192
2020-03-3-10-30 -0.0179
2020-03-3-10-40 -0.0166
2020-03-3-10-50 -0.0154
2020-03-3-11-0 -0.0142
2020-03-3-11-10 -0.0130
2020-03-3-11-20 -0.0120
2020-03-3-11-30 -0.0110
2020-03-3-11-40 -0.0101
2020-03-3-11-50 -0.0093
2020-03-3-12-0 -0.0087
2020-03-3-12-10 -0.0082
2020-03-3-12-20 -0.0078
2020-03-3-12-30 -0.0075
2020-03-3-12-40 -0.0074
2020-03-3-12-50 -0.0074
2020-03-3-13-0 -0.0076
2020-03-3-13-10 -0.0079
2020-03-3-13-20 -0.0084
2020-03-3-13-30 -0.0090
2020-03-3-13-40 -0.0097
2020-03-3-13-50 -0.0106
2020-03-3-14-0 -0.0115
2020-03-3-14-10 -0.0126
2020-03-3-14-20 -0.0138
2020-03-3-14-30 -0.0150
2020-03-3-14-40 -0.0163
2020-03-3-14-50 -0.0177
2020-03-3-15-0 -0.0191
2020-03-3-15-10 -0.0206
2020-03-3-15-20 -0.0220
2020-03-3-15-30 -0.0235
2020-03-3-15-40 -0.0249
2020-03-3-15-50 -0.0263
2020-03-3-16-0 -0.0276
2020-03-3-16-10 -0.0288
2020-03-3-16-20 -0.0300
2020-03-3-16-30 -0.0310
2020-03-3-16-40 -0.0319
2020-03-3-16-50 -0.0327
2020-03-3-17-0 -0.0333
2020-03-3-17-10 -0.0337
2020-03-3-17-20 -0.0339
2020-03-3-17-30 -0.0340
2020-03-3-17-40 -0.0338
2020-03-3-17-50 -0.0334
2020-03-3-18-0 -0.0328
2020-03-3-18-10 -0.0319
2020-03-3-18-20 -0.0308
2020-03-3-18-30 -0.0295
2020-03-3-18-40 -0.0278
2020-03-3-18-50 -0.0260
2020-03-3-19-0 -0.0239
2020-03-3-19-10 -0.0215
2020-03-3-19-20 -0.0189
2020-03-3-19-30 -0.0160
2020-03-3-19-40 -0.0129
2020-03-3-19-50 -0.0096
2020-03-3-20-0 -0.0060
2020-03-3-20-10 -0.0023
2020-03-3-20-20 0.0017
2020-03-3-20-30 0.0058
2020-03-3-20-40 0.0101
2020-03-3-20-50 0.0145
2020-03-3-21-0 0.0191
2020-03-3-21-10 0.0238
2020-03-3-21-20 0.0285
2020-03-3-21-30 0.0333
2020-03-3-21-40 0.0382
2020-03-3-21-50 0.0431
2020-03-3-22-0 0.0480
2020-03-3-22-10 0.0528
2020-03-3-22-20 0.0577
2020-03-3-22-30 0.0624
2020-03-3-22-40 0.0670
2020-03-3-22-50 0.0716
2020-03-3-23-0 0.0759
2020-03-3-23-10 0.0801
2020-03-3-23-20 0.0841
2020-03-3-23-30 0.0879
2020-03-3-23-40 0.0915
2020-03-3-23-50 0.0948
2020-03-4-0-0 0.0978
2020-03-4-0-10 0.1006
2020-03-4-0-20 0.1030
2020-03-4-0-30 0.1051
2020-03-4-0-40 0.1069
2020-03-4-0-50 0.1083
2020-03-4-1-0 0.1093
2020-03-4-1-10 0.1100
2020-03-4-1-20 0.1103
2020-03-4-1-30 0.1102
2020-03-4-1-40 0.1098
2020-03-4-1-50 0.1089
2020-03-4-2-0 0.1077
2020-03-4-2-10 0.1060
2020-03-4-2-20 0.1040
2020-03-4-2-30 0.1016
2020-03-4-2-40 0.0989
2020-03-4-2-50 0.0958
2020-03-4-3-0 0.0924
2020-03-4-3-10 0.0887
2020-03-4-3-20 0.0847
2020-03-4-3-30 0.0804
2020-03-4-3-40 0.0758
2020-03-4-3-50 0.0710
2020-03-4-4-0 0.0660
2020-03-4-4-10 0.0608
2020-03-4-4-20 0.0554
2020-03-4-4-30 0.0499
2020-03-4-4-40 0.0444
2020-03-4-4-50 0.0387
2020-03-4-5-0 0.0330
2020-03-4-5-10 0.0273
2020-03-4-5-20 0.0216
2020-03-4-5-30 0.0159
2020-03-4-5-40 0.0103
2020-03-4-5-50 0.0048
2020-03-4-6-0 -0.0005
2020-03-4-6-10 -0.0057
2020-03-4-6-20 -0.0107
2020-03-4-6-30 -0.0155
2020-03-4-6-40 -0.0201
2020-03-4-6-50 -0.0244
2020-03-4-7-0 -0.0285
2020-03-4-7-10 -0.0323
2020-03-4-7-20 -0.0357
2020-03-4-7-30 -0.0389
2020-03-4-7-40 -0.0417
2020-03-4-7-50 -0.0442
2020-03-4-8-0 -0.0464
2020-03-4-8-10 -0.0482
2020-03-4-8-20 -0.0497
2020-03-4-8-30 -0.0508
2020-03-4-8-40 -0.0516
2020-03-4-8-50 -0.0521
2020-03-4-9-0 -0.0522
2020-03-4-9-10 -0.0520
2020-03-4-9-20 -0.0516
2020-03-4-9-30 -0.0508
2020-03-4-9-40 -0.0498
2020-03-4-9-50 -0.0485
2020-03-4-10-0 -0.0469
2020-03-4-10-10 -0.0452
2020-03-4-10-20 -0.0433
2020-03-4-10-30 -0.0412
2020-03-4-10-40 -0.0389
2020-03-4-10-50 -0.0366
2020-03-4-11-0 -0.0341
2020-03-4-11-10 -0.0316
2020-03-4-11-20 -0.0290
2020-03-4-11-30 -0.0264
2020-03-4-11-40 -0.0238
2020-03-4-11-50 -0.0212
2020-03-4-12-0 -0.0187
2020-03-4-12-10 -0.0163
2020-03-4-12-20 -0.0139
2020-03-4-12-30 -0.0117
2020-03-4-12-40 -0.0096
2020-03-4-12-50 -0.0077
2020-03-4-13-0 -0.0059
2020-03-4-13-10 -0.0043
2020-03-4-13-20 -0.0029
2020-03-4-13-30 -0.0018
2020-03-4-13-40 -0.0008
2020-03-4-13-50 -0.0001
2020-03-4-14-0 0.0004
2020-03-4-14-10 0.0007
2020-03-4-14-20 0.0008
2020-03-4-14-30 0.0006
2020-03-4-14-40 0.0002
2020-03-4-14-50 -0.0005
2020-03-4-15-0 -0.0013
2020-03-4-15-10 -0.0024
2020-03-4-15-20 -0.0036
2020-03-4-15-30 -0.0050
2020-03-4-15-40 -0.0066
2020-03-4-15-50 -0.0084
2020-03-4-16-0 -0.0103
2020-03-4-16-10 -0.0122
2020-03-4-16-20 -0.0143
2020-03-4-16-30 -0.0165
2020-03-4-16-40 -0.0187
2020-03-4-16-50 -0.0209
2020-03-4-17-0 -0.0231
2020-03-4-17-10 -0.0253
2020-03-4-17-20 -0.0274
2020-03-4-17-30 -0.0295
2020-03-4-17-40 -0.0314
2020-03-4-17-50 -0.0333
2020-03-4-18-0 -0.0350
2020-03-4-18-10 -0.0365
2020-03-4-18-20 -0.0378
2020-03-4-18-30 -0.0389
2020-03-4-18-40 -0.0397
2020-03-4-18-50 -0.0403
2020-03-4-19-0 -0.0407
2020-03-4-19-10 -0.0407
2020-03-4-19-20 -0.0404
2020-03-4-19-30 -0.0398
2020-03-4-19-40 -0.0389
2020-03-4-19-50 -0.0376
2020-03-4-20-0 -0.0360
2020-03-4-20-10 -0.0340
2020-03-4-20-20 -0.0317
2020-03-4-20-30 -0.0290
2020-03-4-20-40 -0.0259
2020-03-4-20-50 -0.0225
2020-03-4-21-0 -0.0188
2020-03-4-21-10 -0.0148
2020-03-4-21-20 -0.0104
2020-03-4-21-30 -0.0057
2020-03-4-21-40 -0.0007
2020-03-4-21-50 0.0045
2020-03-4-22-0 0.0100
2020-03-4-22-10 0.0157
2020-03-4-22-20 0.0215
2020-03-4-22-30 0.0276
2020-03-4-22-40 0.0338
2020-03-4-22-50 0.0400
2020-03-4-23-0 0.0464
2020-03-4-23-10 0.0528
2020-03-4-23-20 0.0592
2020-03-4-23-30 0.0655
2020-03-4-23-40 0.0718
2020-03-4-23-50 0.0779
2020-03-5-0-0 0.0840
2020-03-5-0-10 0.0898
2020-03-5-0-20 0.0954
2020-03-5-0-30 0.1007
2020-03-5-0-40 0.1058
2020-03-5-0-50 0.1105
2020-03-5-1-0 0.1149
2020-03-5-1-10 0.1189
2020-03-5-1-20 0.1225
2020-03-5-1-30 0.1256
2020-03-5-1-40 0.1283
2020-03-5-1-50 0.1304
2020-03-5-2-0 0.1321
2020-03-5-2-10 0.1332
2020-03-5-2-20 0.1338
2020-03-5-2-30 0.1339
2020-03-5-2-40 0.1334
2020-03-5-2-50 0.1324
2020-03-5-3-0 0.1308
2020-03-5-3-10 0.1287
2020-03-5-3-20 0.1260
2020-03-5-3-30 0.1229
2020-03-5-3-40 0.1192
2020-03-5-3-50 0.1150
2020-03-5-4-0 0.1103
2020-03-5-4-10 0.1053
2020-03-5-4-20 0.0998
2020-03-5-4-30 0.0939
2020-03-5-4-40 0.0876
2020-03-5-4-50 0.0811
2020-03-5-5-0 0.0742
2020-03-5-5-10 0.0672
2020-03-5-5-20 0.0599
2020-03-5-5-30 0.0525
2020-03-5-5-40 0.0450
2020-03-5-5-50 0.0374
2020-03-5-6-0 0.0297
2020-03-5-6-10 0.0221
2020-03-5-6-20 0.0146
2020-03-5-6-30 0.0072
2020-03-5-6-40 -0.0001
2020-03-5-6-50 -0.0072
2020-03-5-7-0 -0.0141
2020-03-5-7-10 -0.0207
2020-03-5-7-20 -0.0270
2020-03-5-7-30 -0.0330
2020-03-5-7-40 -0.0386
2020-03-5-7-50 -0.0439
2020-03-5-8-0 -0.0487
2020-03-5-8-10 -0.0531
2020-03-5-8-20 -0.0570
2020-03-5-8-30 -0.0605
2020-03-5-8-40 -0.0635
2020-03-5-8-50 -0.0661
2020-03-5-9-0 -0.0681
2020-03-5-9-10 -0.0697
2020-03-5-9-20 -0.0707
2020-03-5-9-30 -0.0713
2020-03-5-9-40 -0.0714
2020-03-5-9-50 -0.0711
2020-03-5-10-0 -0.0703
2020-03-5-10-10 -0.0691
2020-03-5-10-20 -0.0675
2020-03-5-10-30 -0.0656
2020-03-5-10-40 -0.0632
2020-03-5-10-50 -0.0606
2020-03-5-11-0 -0.0576
2020-03-5-11-10 -0.0544
2020-03-5-11-20 -0.0510
2020-03-5-11-30 -0.0473
2020-03-5-11-40 -0.0435
2020-03-5-11-50 -0.0396
2020-03-5-12-0 -0.0355
2020-03-5-12-10 -0.0314
2020-03-5-12-20 -0.0273
2020-03-5-12-30 -0.0232
2020-03-5-12-40 -0.0192
2020-03-5-12-50 -0.0152
2020-03-5-13-0 -0.0114
2020-03-5-13-10 -0.0077
2020-03-5-13-20 -0.0041
2020-03-5-13-30 -0.0008
2020-03-5-13-40 0.0023
2020-03-5-13-50 0.0051
2020-03-5-14-0 0.0077
2020-03-5-14-10 0.0100
2020-03-5-14-20 0.0119
2020-03-5-14-30 0.0135
2020-03-5-14-40 0.0148
2020-03-5-14-50 0.0158
2020-03-5-15-0 0.0164
2020-03-5-15-10 0.0166
2020-03-5-15-20 0.0165
2020-03-5-15-30 0.0160
2020-03-5-15-40 0.0152
2020-03-5-15-50 0.0140
2020-03-5-16-0 0.0125
2020-03-5-16-10 0.0107
2020-03-5-16-20 0.0086
2020-03-5-16-30 0.0062
2020-03-5-16-40 0.0036
2020-03-5-16-50 0.0007
2020-03-5-17-0 -0.0024
2020-03-5-17-10 -0.0057
2020-03-5-17-20 -0.0091
2020-03-5-17-30 -0.0126
2020-03-5-17-40 -0.0162
2020-03-5-17-50 -0.0199
2020-03-5-18-0 -0.0236
2020-03-5-18-10 -0.0273
2020-03-5-18-20 -0.0309
2020-03-5-18-30 -0.0344
2020-03-5-18-40 -0.0378
2020-03-5-18-50 -0.0410
2020-03-5-19-0 -0.0440
2020-03-5-19-10 -0.0468
2020-03-5-19-20 -0.0493
2020-03-5-19-30 -0.0516
2020-03-5-19-40 -0.0534
2020-03-5-19-50 -0.0550
2020-03-5-20-0 -0.0561
2020-03-5-20-10 -0.0568
2020-03-5-20-20 -0.0571
2020-03-5-20-30 -0.0569
2020-03-5-20-40 -0.0563
2020-03-5-20-50 -0.0551
2020-03-5-21-0 -0.0535
2020-03-5-21-10 -0.0514
2020-03-5-21-20 -0.0487
2020-03-5-21-30 -0.0456
2020-03-5-21-40 -0.0419
2020-03-5-21-50 -0.0377
2020-03-5-22-0 -0.0331
2020-03-5-22-10 -0.0280
2020-03-5-22-20 -0.0224
2020-03-5-22-30 -0.0165
2020-03-5-22-40 -0.0101
2020-03-5-22-50 -0.0033
2020-03-5-23-0 0.0038
2020-03-5-23-10 0.0112
2020-03-5-23-20 0.0188
2020-03-5-23-30 0.0267
2020-03-5-23-40 0.0348
2020-03-5-23-50 0.0429
2020-03-6-0-0 0.0512
2020-03-6-0-10 0.0595
2020-03-6-0-20 0.0678
2020-03-6-0-30 0.0760
2020-03-6-0-40 0.0840
2020-03-6-0-50 0.0919
2020-03-6-1-0 0.0996
2020-03-6-1-10 0.1070
2020-03-6-1-20 0.1141
2020-03-6-1-30 0.1207
2020-03-6-1-40 0.1270
2020-03-6-1-50 0.1328
2020-03-6-2-0 0.1380
2020-03-6-2-10 0.1428
2020-03-6-2-20 0.1469
2020-03-6-2-30 0.1504
2020-03-6-2-40 0.1533
2020-03-6-2-50 0.1555
2020-03-6-3-0 0.1570
2020-03-6-3-10 0.1578
2020-03-6-3-20 0.1579
2020-03-6-3-30 0.1573
2020-03-6-3-40 0.1559
2020-03-6-3-50 0.1539
2020-03-6-4-0 0.1511
2020-03-6-4-10 0.1477
2020-03-6-4-20 0.1436
2020-03-6-4-30 0.1388
2020-03-6-4-40 0.1334
2020-03-6-4-50 0.1274
2020-03-6-5-0 0.1209
2020-03-6-5-10 0.1138
2020-03-6-5-20 0.1063
2020-03-6-5-30 0.0984
2020-03-6-5-40 0.0901
2020-03-6-5-50 0.0815
2020-03-6-6-0 0.0726
2020-03-6-6-10 0.0635
2020-03-6-6-20 0.0542
2020-03-6-6-30 0.0449
2020-03-6-6-40 0.0355
2020-03-6-6-50 0.0261
2020-03-6-7-0 0.0168
2020-03-6-7-10 0.0076
2020-03-6-7-20 -0.0014
2020-03-6-7-30 -0.0102
2020-03-6-7-40 -0.0187
2020-03-6-7-50 -0.0268
2020-03-6-8-0 -0.0346
2020-03-6-8-10 -0.0419
2020-03-6-8-20 -0.0488
2020-03-6-8-30 -0.0552
2020-03-6-8-40 -0.0611
2020-03-6-8-50 -0.0664
2020-03-6-9-0 -0.0712
2020-03-6-9-10 -0.0753
2020-03-6-9-20 -0.0788
2020-03-6-9-30 -0.0818
2020-03-6-9-40 -0.0841
2020-03-6-9-50 -0.0857
2020-03-6-10-0 -0.0868
2020-03-6-10-10 -0.0872
2020-03-6-10-20 -0.0870
2020-03-6-10-30 -0.0863
2020-03-6-10-40 -0.0849
2020-03-6-10-50 -0.0831
2020-03-6-11-0 -0.0807
2020-03-6-11-10 -0.0778
2020-03-6-11-20 -0.0744
2020-03-6-11-30 -0.0707
2020-03-6-11-40 -0.0665
2020-03-6-11-50 -0.0620
2020-03-6-12-0 -0.0572
2020-03-6-12-10 -0.0522
2020-03-6-12-20 -0.0469
2020-03-6-12-30 -0.0415
2020-03-6-12-40 -0.0359
2020-03-6-12-50 -0.0303
2020-03-6-13-0 -0.0246
2020-03-6-13-10 -0.0190
2020-03-6-13-20 -0.0134
2020-03-6-13-30 -0.0079
2020-03-6-13-40 -0.0026
2020-03-6-13-50 0.0026
2020-03-6-14-0 0.0075
2020-03-6-14-10 0.0121
2020-03-6-14-20 0.0164
2020-03-6-14-30 0.0204
2020-03-6-14-40 0.0240
2020-03-6-14-50 0.0272
2020-03-6-15-0 0.0300
2020-03-6-15-10 0.0324
2020-03-6-15-20 0.0343
2020-03-6-15-30 0.0357
2020-03-6-15-40 0.0366
2020-03-6-15-50 0.0371
2020-03-6-16-0 0.0370
2020-03-6-16-10 0.0365
2020-03-6-16-20 0.0355
2020-03-6-16-30 0.0340
2020-03-6-16-40 0.0320
2020-03-6-16-50 0.0296
2020-03-6-17-0 0.0267
2020-03-6-17-10 0.0234
2020-03-6-17-20 0.0198
2020-03-6-17-30 0.0158
2020-03-6-17-40 0.0115
2020-03-6-17-50 0.0069
2020-03-6-18-0 0.0020
2020-03-6-18-10 -0.0030
2020-03-6-18-20 -0.0083
2020-03-6-18-30 -0.0136
2020-03-6-18-40 -0.0190
2020-03-6-18-50 -0.0244
2020-03-6-19-0 -0.0298
2020-03-6-19-10 -0.0352
2020-03-6-19-20 -0.0404
2020-03-6-19-30 -0.0454
2020-03-6-19-40 -0.0503
2020-03-6-19-50 -0.0548
2020-03-6-20-0 -0.0590
2020-03-6-20-10 -0.0629
2020-03-6-20-20 -0.0664
2020-03-6-20-30 -0.0694
2020-03-6-20-40 -0.0720
2020-03-6-20-50 -0.0740
2020-03-6-21-0 -0.0755
2020-03-6-21-10 -0.0764
2020-03-6-21-20 -0.0767
2020-03-6-21-30 -0.0763
2020-03-6-21-40 -0.0753
2020-03-6-21-50 -0.0737
2020-03-6-22-0 -0.0714
2020-03-6-22-10 -0.0684
2020-03-6-22-20 -0.0648
2020-03-6-22-30 -0.0605
2020-03-6-22-40 -0.0556
2020-03-6-22-50 -0.0500
2020-03-6-23-0 -0.0438
2020-03-6-23-10 -0.0371
2020-03-6-23-20 -0.0298
2020-03-6-23-30 -0.0220
2020-03-6-23-40 -0.0137
2020-03-6-23-50 -0.0050
2020-03-7-0-0 0.0040
2020-03-7-0-10 0.0134
2020-03-7-0-20 0.0230
2020-03-7-0-30 0.0329
2020-03-7-0-40 0.0429
2020-03-7-0-50 0.0530
2020-03-7-1-0 0.0630
2020-03-7-1-10 0.0731
2020-03-7-1-20 0.0830
2020-03-7-1-30 0.0927
2020-03-7-1-40 0.1022
2020-03-7-1-50 0.1114
2020-03-7-2-0 0.1202
2020-03-7-2-10 0.1286
2020-03-7-2-20 0.1364
2020-03-7-2-30 0.1437
2020-03-7-2-40 0.1504
2020-03-7-2-50 0.1564
2020-03-7-3-0 0.1618
2020-03-7-3-10 0.1664
2020-03-7-3-20 0.1702
2020-03-7-3-30 0.1732
2020-03-7-3-40 0.1754
2020-03-7-3-50 0.1767
2020-03-7-4-0 0.1772
2020-03-7-4-10 0.1769
2020-03-7-4-20 0.1756
2020-03-7-4-30 0.1735
2020-03-7-4-40 0.1706
2020-03-7-4-50 0.1668
2020-03-7-5-0 0.1622
2020-03-7-5-10 0.1568
2020-03-7-5-20 0.1507
2020-03-7-5-30 0.1439
2020-03-7-5-40 0.1365
2020-03-7-5-50 0.1284
2020-03-7-6-0 0.1198
2020-03-7-6-10 0.1106
2020-03-7-6-20 0.1011
2020-03-7-6-30 0.0911
2020-03-7-6-40 0.0809
2020-03-7-6-50 0.0704
2020-03-7-7-0 0.0597
2020-03-7-7-10 0.0489
2020-03-7-7-20 0.0381
2020-03-7-7-30 0.0273
2020-03-7-7-40 0.0166
2020-03-7-7-50 0.0060
2020-03-7-8-0 -0.0043
2020-03-7-8-10 -0.0143
2020-03-7-8-20 -0.0240
2020-03-7-8-30 -0.0333
2020-03-7-8-40 -0.0421
2020-03-7-8-50 -0.0504
2020-03-7-9-0 -0.0582
2020-03-7-9-10 -0.0654
2020-03-7-9-20 -0.0719
2020-03-7-9-30 -0.0777
2020-03-7-9-40 -0.0829
2020-03-7-9-50 -0.0874
2020-03-7-10-0 -0.0911
2020-03-7-10-10 -0.0941
2020-03-7-10-20 -0.0963
2020-03-7-10-30 -0.0978
2020-03-7-10-40 -0.0986
2020-03-7-10-50 -0.0986
2020-03-7-11-0 -0.0979
2020-03-7-11-10 -0.0965
2020-03-7-11-20 -0.0944
2020-03-7-11-30 -0.0917
2020-03-7-11-40 -0.0883
2020-03-7-11-50 -0.0844
2020-03-7-12-0 -0.0799
2020-03-7-12-10 -0.0750
2020-03-7-12-20 -0.0695
2020-03-7-12-30 -0.0637
2020-03-7-12-40 -0.0575
2020-03-7-12-50 -0.0510
2020-03-7-13-0 -0.0443
2020-03-7-13-10 -0.0374
2020-03-7-13-20 -0.0303
2020-03-7-13-30 -0.0232
2020-03-7-13-40 -0.0160
2020-03-7-13-50 -0.0089
2020-03-7-14-0 -0.0019
2020-03-7-14-10 0.0050
2020-03-7-14-20 0.0117
2020-03-7-14-30 0.0181
2020-03-7-14-40 0.0243
2020-03-7-14-50 0.0301
2020-03-7-15-0 0.0355
2020-03-7-15-10 0.0404
2020-03-7-15-20 0.0450
2020-03-7-15-30 0.0490
2020-03-7-15-40 0.0524
2020-03-7-15-50 0.0554
2020-03-7-16-0 0.0577
2020-03-7-16-10 0.0594
2020-03-7-16-20 0.0606
2020-03-7-16-30 0.0611
2020-03-7-16-40 0.0609
2020-03-7-16-50 0.0602
2020-03-7-17-0 0.0588
2020-03-7-17-10 0.0568
2020-03-7-17-20 0.0543
2020-03-7-17-30 0.0511
2020-03-7-17-40 0.0474
2020-03-7-17-50 0.0432
2020-03-7-18-0 0.0384
2020-03-7-18-10 0.0332
2020-03-7-18-20 0.0276
2020-03-7-18-30 0.0217
2020-03-7-18-40 0.0153
2020-03-7-18-50 0.0088
2020-03-7-19-0 0.0019
2020-03-7-19-10 -0.0050
2020-03-7-19-20 -0.0122
2020-03-7-19-30 -0.0193
2020-03-7-19-40 -0.0265
2020-03-7-19-50 -0.0336
2020-03-7-20-0 -0.0405
2020-03-7-20-10 -0.0473
2020-03-7-20-20 -0.0538
2020-03-7-20-30 -0.0601
2020-03-7-20-40 -0.0659
2020-03-7-20-50 -0.0714
2020-03-7-21-0 -0.0763
2020-03-7-21-10 -0.0808
2020-03-7-21-20 -0.0847
2020-03-7-21-30 -0.0879
2020-03-7-21-40 -0.0905
2020-03-7-21-50 -0.0924
2020-03-7-22-0 -0.0936
2020-03-7-22-10 -0.0940
2020-03-7-22-20 -0.0937
2020-03-7-22-30 -0.0925
2020-03-7-22-40 -0.0906
2020-03-7-22-50 -0.0879
2020-03-7-23-0 -0.0843
2020-03-7-23-10 -0.0800
2020-03-7-23-20 -0.0749
2020-03-7-23-30 -0.0691
2020-03-7-23-40 -0.0625
2020-03-7-23-50 -0.0552
2020-03-8-0-0 -0.0472
2020-03-8-0-10 -0.0387
2020-03-8-0-20 -0.0295
2020-03-8-0-30 -0.0199
2020-03-8-0-40 -0.0098
2020-03-8-0-50 0.0007
2020-03-8-1-0 0.0115
2020-03-8-1-10 0.0226
2020-03-8-1-20 0.0339
2020-03-8-1-30 0.0453
2020-03-8-1-40 0.0567
2020-03-8-1-50 0.0680
2020-03-8-2-0 0.0793
2020-03-8-2-10 0.0903
2020-03-8-2-20 0.1011
2020-03-8-2-30 0.1116
2020-03-8-2-40 0.1216
2020-03-8-2-50 0.1311
2020-03-8-3-0 0.1401
2020-03-8-3-10 0.1484
2020-03-8-3-20 0.1561
2020-03-8-3-30 0.1630
2020-03-8-3-40 0.1691
2020-03-8-3-50 0.1744
2020-03-8-4-0 0.1789
2020-03-8-4-10 0.1824
2020-03-8-4-20 0.1850
2020-03-8-4-30 0.1866
2020-03-8-4-40 0.1873
2020-03-8-4-50 0.1871
2020-03-8-5-0 0.1858
2020-03-8-5-10 0.1836
2020-03-8-5-20 0.1805
2020-03-8-5-30 0.1765
2020-03-8-5-40 0.1715
2020-03-8-5-50 0.1657
2020-03-8-6-0 0.1591
2020-03-8-6-10 0.1517
2020-03-8-6-20 0.1435
2020-03-8-6-30 0.1347
2020-03-8-6-40 0.1253
2020-03-8-6-50 0.1154
2020-03-8-7-0 0.1050
2020-03-8-7-10 0.0942
2020-03-8-7-20 0.0830
2020-03-8-7-30 0.0716
2020-03-8-7-40 0.0600
2020-03-8-7-50 0.0483
2020-03-8-8-0 0.0366
2020-03-8-8-10 0.0249
2020-03-8-8-20 0.0134
2020-03-8-8-30 0.0020
2020-03-8-8-40 -0.0091
2020-03-8-8-50 -0.0198
2020-03-8-9-0 -0.0302
2020-03-8-9-10 -0.0400
2020-03-8-9-20 -0.0494
2020-03-8-9-30 -0.0581
2020-03-8-9-40 -0.0663
2020-03-8-9-50 -0.0737
2020-03-8-10-0 -0.0805
2020-03-8-10-10 -0.0864
2020-03-8-10-20 -0.0916
2020-03-8-10-30 -0.0960
2020-03-8-10-40 -0.0996
2020-03-8-10-50 -0.1023
2020-03-8-11-0 -0.1042
2020-03-8-11-10 -0.1053
2020-03-8-11-20 -0.1055
2020-03-8-11-30 -0.1049
2020-03-8-11-40 -0.1035
2020-03-8-11-50 -0.1013
2020-03-8-12-0 -0.0984
2020-03-8-12-10 -0.0947
2020-03-8-12-20 -0.0903
2020-03-8-12-30 -0.0853
2020-03-8-12-40 -0.0797
2020-03-8-12-50 -0.0735
2020-03-8-13-0 -0.0669
2020-03-8-13-10 -0.0598
2020-03-8-13-20 -0.0523
2020-03-8-13-30 -0.0445
2020-03-8-13-40 -0.0364
2020-03-8-13-50 -0.0282
2020-03-8-14-0 -0.0198
2020-03-8-14-10 -0.0113
2020-03-8-14-20 -0.0028
2020-03-8-14-30 0.0056
2020-03-8-14-40 0.0138
2020-03-8-14-50 0.0219
2020-03-8-15-0 0.0298
2020-03-8-15-10 0.0373
2020-03-8-15-20 0.0445
2020-03-8-15-30 0.0512
2020-03-8-15-40 0.0575
2020-03-8-15-50 0.0633
2020-03-8-16-0 0.0685
2020-03-8-16-10 0.0731
2020-03-8-16-20 0.0771
2020-03-8-16-30 0.0804
2020-03-8-16-40 0.0830
2020-03-8-16-50 0.0850
2020-03-8-17-0 0.0862
2020-03-8-17-10 0.0866
2020-03-8-17-20 0.0863
2020-03-8-17-30 0.0853
2020-03-8-17-40 0.0836
2020-03-8-17-50 0.0811
2020-03-8-18-0 0.0779
2020-03-8-18-10 0.0741
2020-03-8-18-20 0.0696
2020-03-8-18-30 0.0645
2020-03-8-18-40 0.0587
2020-03-8-18-50 0.0525
2020-03-8-19-0 0.0457
2020-03-8-19-10 0.0385
2020-03-8-19-20 0.0310
2020-03-8-19-30 0.0230
2020-03-8-19-40 0.0148
2020-03-8-19-50 0.0064
2020-03-8-20-0 -0.0021
2020-03-8-20-10 -0.0107
2020-03-8-20-20 -0.0194
2020-03-8-20-30 -0.0279
2020-03-8-20-40 -0.0364
2020-03-8-20-50 -0.0446
2020-03-8-21-0 -0.0526
2020-03-8-21-10 -0.0602
2020-03-8-21-20 -0.0675
2020-03-8-21-30 -0.0742
2020-03-8-21-40 -0.0804
2020-03-8-21-50 -0.0861
2020-03-8-22-0 -0.0911
2020-03-8-22-10 -0.0954
2020-03-8-22-20 -0.0990
2020-03-8-22-30 -0.1018
2020-03-8-22-40 -0.1038
2020-03-8-22-50 -0.1049
2020-03-8-23-0 -0.1052
2020-03-8-23-10 -0.1047
2020-03-8-23-20 -0.1032
2020-03-8-23-30 -0.1008
2020-03-8-23-40 -0.0976
2020-03-8-23-50 -0.0934
2020-03-9-0-0 -0.0884
2020-03-9-0-10 -0.0826
2020-03-9-0-20 -0.0760
2020-03-9-0-30 -0.0686
2020-03-9-0-40 -0.0604
2020-03-9-0-50 -0.0516
2020-03-9-1-0 -0.0422
2020-03-9-1-10 -0.0321
2020-03-9-1-20 -0.0216
2020-03-9-1-30 -0.0107
2020-03-9-1-40 0.0006
2020-03-9-1-50 0.0122
2020-03-9-2-0 0.0240
2020-03-9-2-10 0.0359
2020-03-9-2-20 0.0479
2020-03-9-2-30 0.0598
2020-03-9-2-40 0.0717
2020-03-9-2-50 0.0833
2020-03-9-3-0 0.0946
2020-03-9-3-10 0.1055
2020-03-9-3-20 0.1161
2020-03-9-3-30 0.1260
2020-03-9-3-40 0.1355
2020-03-9-3-50 0.1442
2020-03-9-4-0 0.1522
2020-03-9-4-10 0.1595
2020-03-9-4-20 0.1659
2020-03-9-4-30 0.1715
2020-03-9-4-40 0.1761
2020-03-9-4-50 0.1798
2020-03-9-5-0 0.1826
2020-03-9-5-10 0.1843
2020-03-9-5-20 0.1850
2020-03-9-5-30 0.1848
2020-03-9-5-40 0.1835
2020-03-9-5-50 0.1813
2020-03-9-6-0 0.1780
2020-03-9-6-10 0.1738
2020-03-9-6-20 0.1687
2020-03-9-6-30 0.1627
2020-03-9-6-40 0.1558
2020-03-9-6-50 0.1482
2020-03-9-7-0 0.1398
2020-03-9-7-10 0.1308
2020-03-9-7-20 0.1211
2020-03-9-7-30 0.1109
2020-03-9-7-40 0.1002
2020-03-9-7-50 0.0891
2020-03-9-8-0 0.0776
2020-03-9-8-10 0.0660
2020-03-9-8-20 0.0541
2020-03-9-8-30 0.0422
2020-03-9-8-40 0.0303
2020-03-9-8-50 0.0184
2020-03-9-9-0 0.0067
2020-03-9-9-10 -0.0048
2020-03-9-9-20 -0.0160
2020-03-9-9-30 -0.0268
2020-03-9-9-40 -0.0371
2020-03-9-9-50 -0.0470
2020-03-9-10-0 -0.0562
2020-03-9-10-10 -0.0649
2020-03-9-10-20 -0.0728
2020-03-9-10-30 -0.0800
2020-03-9-10-40 -0.0865
2020-03-9-10-50 -0.0921
2020-03-9-11-0 -0.0969
2020-03-9-11-10 -0.1009
2020-03-9-11-20 -0.1040
2020-03-9-11-30 -0.1061
2020-03-9-11-40 -0.1074
2020-03-9-11-50 -0.1078
2020-03-9-12-0 -0.1073
2020-03-9-12-10 -0.1060
2020-03-9-12-20 -0.1038
2020-03-9-12-30 -0.1007
2020-03-9-12-40 -0.0969
2020-03-9-12-50 -0.0923
2020-03-9-13-0 -0.0870
2020-03-9-13-10 -0.0810
2020-03-9-13-20 -0.0743
2020-03-9-13-30 -0.0672
2020-03-9-13-40 -0.0594
2020-03-9-13-50 -0.0513
2020-03-9-14-0 -0.0427
2020-03-9-14-10 -0.0339
2020-03-9-14-20 -0.0247
2020-03-9-14-30 -0.0154
2020-03-9-14-40 -0.0060
2020-03-9-14-50 0.0035
2020-03-9-15-0 0.0129
2020-03-9-15-10 0.0223
2020-03-9-15-20 0.0315
2020-03-9-15-30 0.0405
2020-03-9-15-40 0.0491
2020-03-9-15-50 0.0574
2020-03-9-16-0 0.0653
2020-03-9-16-10 0.0727
2020-03-9-16-20 0.0796
2020-03-9-16-30 0.0859
2020-03-9-16-40 0.0916
2020-03-9-16-50 0.0966
2020-03-9-17-0 0.1008
2020-03-9-17-10 0.1044
2020-03-9-17-20 0.1072
2020-03-9-17-30 0.1091
2020-03-9-17-40 0.1103
2020-03-9-17-50 0.1107
2020-03-9-18-0 0.1102
2020-03-9-18-10 0.1090
2020-03-9-18-20 0.1069
2020-03-9-18-30 0.1041
2020-03-9-18-40 0.1004
2020-03-9-18-50 0.0960
2020-03-9-19-0 0.0909
2020-03-9-19-10 0.0852
2020-03-9-19-20 0.0787
2020-03-9-19-30 0.0717
2020-03-9-19-40 0.0642
2020-03-9-19-50 0.0561
2020-03-9-20-0 0.0477
2020-03-9-20-10 0.0388
2020-03-9-20-20 0.0297
2020-03-9-20-30 0.0203
2020-03-9-20-40 0.0108
2020-03-9-20-50 0.0012
2020-03-9-21-0 -0.0084
2020-03-9-21-10 -0.0180
2020-03-9-21-20 -0.0274
2020-03-9-21-30 -0.0366
2020-03-9-21-40 -0.0455
2020-03-9-21-50 -0.0541
2020-03-9-22-0 -0.0623
2020-03-9-22-10 -0.0699
2020-03-9-22-20 -0.0770
2020-03-9-22-30 -0.0835
2020-03-9-22-40 -0.0893
2020-03-9-22-50 -0.0944
2020-03-9-23-0 -0.0988
2020-03-9-23-10 -0.1023
2020-03-9-23-20 -0.1050
2020-03-9-23-30 -0.1068
2020-03-9-23-40 -0.1077
2020-03-9-23-50 -0.1078
2020-03-10-0-0 -0.1069
2020-03-10-0-10 -0.1050
2020-03-10-0-20 -0.1023
2020-03-10-0-30 -0.0987
2020-03-10-0-40 -0.0942
2020-03-10-0-50 -0.0888
2020-03-10-1-0 -0.0826
2020-03-10-1-10 -0.0756
2020-03-10-1-20 -0.0679
2020-03-10-1-30 -0.0595
2020-03-10-1-40 -0.0504
2020-03-10-1-50 -0.0408
2020-03-10-2-0 -0.0306
2020-03-10-2-10 -0.0200
2020-03-10-2-20 -0.0091
2020-03-10-2-30 0.0021
2020-03-10-2-40 0.0136
2020-03-10-2-50 0.0251
2020-03-10-3-0 0.0368
2020-03-10-3-10 0.0483
2020-03-10-3-20 0.0598
2020-03-10-3-30 0.0711
2020-03-10-3-40 0.0821
2020-03-10-3-50 0.0927
2020-03-10-4-0 0.1029
2020-03-10-4-10 0.1126
2020-03-10-4-20 0.1217
2020-03-10-4-30 0.1301
2020-03-10-4-40 0.1379
2020-03-10-4-50 0.1449
2020-03-10-5-0 0.1511
2020-03-10-5-10 0.1564
2020-03-10-5-20 0.1609
2020-03-10-5-30 0.1644
2020-03-10-5-40 0.1670
2020-03-10-5-50 0.1686
2020-03-10-6-0 0.1692
2020-03-10-6-10 0.1689
2020-03-10-6-20 0.1676
2020-03-10-6-30 0.1653
2020-03-10-6-40 0.1621
2020-03-10-6-50 0.1580
2020-03-10-7-0 0.1530
2020-03-10-7-10 0.1471
2020-03-10-7-20 0.1404
2020-03-10-7-30 0.1330
2020-03-10-7-40 0.1248
2020-03-10-7-50 0.1160
2020-03-10-8-0 0.1066
2020-03-10-8-10 0.0968
2020-03-10-8-20 0.0864
2020-03-10-8-30 0.0757
2020-03-10-8-40 0.0647
2020-03-10-8-50 0.0535
2020-03-10-9-0 0.0421
2020-03-10-9-10 0.0307
2020-03-10-9-20 0.0193
2020-03-10-9-30 0.0080
2020-03-10-9-40 -0.0032
2020-03-10-9-50 -0.0140
2020-03-10-10-0 -0.0246
2020-03-10-10-10 -0.0348
2020-03-10-10-20 -0.0445
2020-03-10-10-30 -0.0536
2020-03-10-10-40 -0.0622
2020-03-10-10-50 -0.0701
2020-03-10-11-0 -0.0774
2020-03-10-11-10 -0.0839
2020-03-10-11-20 -0.0896
2020-03-10-11-30 -0.0945
2020-03-10-11-40 -0.0985
2020-03-10-11-50 -0.1017
2020-03-10-12-0 -0.1040
2020-03-10-12-10 -0.1054
2020-03-10-12-20 -0.1059
2020-03-10-12-30 -0.1055
2020-03-10-12-40 -0.1042
2020-03-10-12-50 -0.1021
2020-03-10-13-0 -0.0991
2020-03-10-13-10 -0.0953
2020-03-10-13-20 -0.0906
2020-03-10-13-30 -0.0853
2020-03-10-13-40 -0.0792
2020-03-10-13-50 -0.0724
2020-03-10-14-0 -0.0651
2020-03-10-14-10 -0.0572
2020-03-10-14-20 -0.0487
2020-03-10-14-30 -0.0399
2020-03-10-14-40 -0.0307
2020-03-10-14-50 -0.0211
2020-03-10-15-0 -0.0114
2020-03-10-15-10 -0.0015
2020-03-10-15-20 0.0085
2020-03-10-15-30 0.0186
2020-03-10-15-40 0.0285
2020-03-10-15-50 0.0384
2020-03-10-16-0 0.0480
2020-03-10-16-10 0.0574
2020-03-10-16-20 0.0665
2020-03-10-16-30 0.0751
2020-03-10-16-40 0.0833
2020-03-10-16-50 0.0910
2020-03-10-17-0 0.0981
2020-03-10-17-10 0.1045
2020-03-10-17-20 0.1104
2020-03-10-17-30 0.1155
2020-03-10-17-40 0.1198
2020-03-10-17-50 0.1234
2020-03-10-18-0 0.1262
2020-03-10-18-10 0.1281
2020-03-10-18-20 0.1292
2020-03-10-18-30 0.1295
2020-03-10-18-40 0.1289
2020-03-10-18-50 0.1275
2020-03-10-19-0 0.1253
2020-03-10-19-10 0.1222
2020-03-10-19-20 0.1184
2020-03-10-19-30 0.1137
2020-03-10-19-40 0.1084
2020-03-10-19-50 0.1023
2020-03-10-20-0 0.0956
2020-03-10-20-10 0.0883
2020-03-10-20-20 0.0805
2020-03-10-20-30 0.0721
2020-03-10-20-40 0.0633
2020-03-10-20-50 0.0542
2020-03-10-21-0 0.0447
2020-03-10-21-10 0.0351
2020-03-10-21-20 0.0252
2020-03-10-21-30 0.0153
2020-03-10-21-40 0.0054
2020-03-10-21-50 -0.0045
2020-03-10-22-0 -0.0143
2020-03-10-22-10 -0.0238
2020-03-10-22-20 -0.0331
2020-03-10-22-30 -0.0420
2020-03-10-22-40 -0.0505
2020-03-10-22-50 -0.0585
2020-03-10-23-0 -0.0660
2020-03-10-23-10 -0.0728
2020-03-10-23-20 -0.0791
2020-03-10-23-30 -0.0846
2020-03-10-23-40 -0.0894
2020-03-10-23-50 -0.0934
The format of the output is year-month-day-hour-minute upward-acceleration (mgal). A tidal correction for gravity data, would involve adding this number to gravity observations to correct for tidal effects due to the Sun and the Moon.
set terminal png size 600,600
set xdata time
set timefmt "%Y-%m-%d-%H-%M"
set output "tide.png"
# xrange must specify the same format and range
# as in the data file, tidetable.out
set xrange ["2020-03-1-0-0":"2020-03-10-23-50"]
set xtics("2020-03-1-0-0","2020-03-3-0-0", "2020-03-5-0-0", "2020-03-7-0-0" , "2020-03-9-0-0" )
set yrange [-0.2:0.2]
set grid
set xlabel " "
set ylabel "change in gravity (mGal)"
set title "Earth Tide"
plot "tidetable.out" using 1:2 index 0 notitle with lines