Original file (SVG file, nominally 640 × 480 pixels, file size: 36 KB)
Summary
This
W3C-unspecified plot was created with
Gnu plot .
Source
#!/bin/sh
tail -n +3 historic_deltat.data |
awk '{ print $1 "\t" $2; } /1973/ { exit; }' > hist.data
awk '
{
# use gdate on osx after brew install coreutils. On linux, use date.
doy = "gdate +%j --date=" $1 "-" $2 "-" $3; doy |getline dayOfYear; close(doy)
diy = "gdate +%j --date=" $1 "-12-31"; diy |getline daysInYear; close(diy)
printf("%0.3f\t%s\n", $1 + ((dayOfYear - 1)/daysInYear), $4);
}' < deltat.data >> hist.data
#!/usr/bin/env gnuplot
set terminal svg size 640 , 480 name "Delta_t"
set output 'Delta_t.svg'
set title "∆T = TT − UT"
set xlabel "year"
set ylabel "∆T (s)"
set grid linetype 1 linecolor rgb "#cccccc"
unset key
set style data lines
set style line 1 linetype 1 linewidth 2
set style increment user
set xzeroaxis linetype 2 linecolor rgb "black"
plot 'hist.data' linetype rgb "#FF0000"
Licensing
I, the copyright holder of this work, hereby publish it under the following license:
You are free:
to share – to copy, distribute and transmit the work
to remix – to adapt the work
Under the following conditions:
attribution – You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
share alike – If you remix, transform, or build upon the material, you must distribute your contributions under the same or compatible license as the original. https://creativecommons.org/licenses/by-sa/4.0 CC BY-SA 4.0 Creative Commons Attribution-Share Alike 4.0 true true English Add a one-line explanation of what this file represents
File history
File usage
The following page uses this file:
Global file usage
The following other wikis use this file:
Usage on el.wikipedia.org
Usage on ja.wikipedia.org
Usage on ms.wikipedia.org
Usage on ru.wikipedia.org
Usage on zh.wikipedia.org
This file contains additional information, probably added from the digital camera or scanner used to create or digitize it.
If the file has been modified from its original state, some details may not fully reflect the modified file.