summaryrefslogtreecommitdiff
path: root/tools/mmd/create
diff options
context:
space:
mode:
authorJogi Hofmüller <jogi@mur.at>2011-08-10 19:27:26 +0000
committerJogi Hofmüller <jogi@mur.at>2011-08-10 19:27:26 +0000
commit35374a45348edf1db9fee0b269bc4cb862c5a1a4 (patch)
tree6beb3c05f1ec22b7c674c4eb9dab4cfba46728f3 /tools/mmd/create
parent- changed groundtrack resolution from 5 to 1 minutes (diff)
- changed ground track color to page background color
- started working on class Satellite - creating SSPs works - database contains table ssps (SubSatellitePoint) now git-svn-id: https://svn.spreadspace.org/mur.sat@118 7de4ea59-55d0-425e-a1af-a3118ea81d4c
Diffstat (limited to 'tools/mmd/create')
-rw-r--r--tools/mmd/create7
1 files changed, 7 insertions, 0 deletions
diff --git a/tools/mmd/create b/tools/mmd/create
index ebabe66..d13f1c7 100644
--- a/tools/mmd/create
+++ b/tools/mmd/create
@@ -48,6 +48,13 @@ CREATE TABLE report (
FOREIGN KEY (location_id) REFERENCES location (id)
);
+DROP TABLE IF EXISTS ssps;
+CREATE TABLE ssps (
+ timestamp INTEGER PRIMARY KEY NOT NULL,
+ longitude REAL,
+ latitude REAL
+);
+
--
-- EOF
--