From: Dobrica Pavlinusic Date: Sat, 19 Feb 2022 14:48:15 +0000 (+0100) Subject: import offsets into database X-Git-Url: http://git.rot13.org/?p=zc;a=commitdiff_plain;h=f9624196582fe823c455592feb4210cb67dafe07;hp=3f2f70199b40a0e265d7fc3de4e2fce008200afa import offsets into database --- diff --git a/gnuplot/offset.sql b/gnuplot/offset.sql new file mode 100644 index 0000000..32fbb1b --- /dev/null +++ b/gnuplot/offset.sql @@ -0,0 +1,8 @@ +drop table if exists axis_offset; +create table axis_offset ( + pn integer primary key, + x float not null, + y float not null +); + +copy axis_offset from '/home/dpavlin/zc/gnuplot/offset.txt' with ( format text, delimiter ' ' );