import offsets into database
authorDobrica Pavlinusic <dpavlin@rot13.org>
Sat, 19 Feb 2022 14:48:15 +0000 (15:48 +0100)
committerDobrica Pavlinusic <dpavlin@rot13.org>
Sat, 19 Feb 2022 14:48:15 +0000 (15:48 +0100)
gnuplot/offset.sql [new file with mode: 0644]

diff --git a/gnuplot/offset.sql b/gnuplot/offset.sql
new file mode 100644 (file)
index 0000000..32fbb1b
--- /dev/null
@@ -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 ' ' );