forked from UCSD-AUVSI/Skynet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathschema.backup
More file actions
2619 lines (2405 loc) · 92 KB
/
Copy pathschema.backup
File metadata and controls
2619 lines (2405 loc) · 92 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
--
-- PostgreSQL database dump
--
-- Dumped from database version 9.1.3
-- Dumped by pg_dump version 9.1.3
-- Started on 2013-03-05 20:36:31
SET statement_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SET check_function_bodies = false;
SET client_min_messages = warning;
--
-- TOC entry 175 (class 3079 OID 11639)
-- Name: plpgsql; Type: EXTENSION; Schema: -; Owner:
--
CREATE EXTENSION IF NOT EXISTS plpgsql WITH SCHEMA pg_catalog;
--
-- TOC entry 1929 (class 0 OID 0)
-- Dependencies: 175
-- Name: EXTENSION plpgsql; Type: COMMENT; Schema: -; Owner:
--
COMMENT ON EXTENSION plpgsql IS 'PL/pgSQL procedural language';
SET search_path = public, pg_catalog;
SET default_tablespace = '';
SET default_with_oids = false;
--
-- TOC entry 170 (class 1259 OID 16717)
-- Dependencies: 5
-- Name: candidates; Type: TABLE; Schema: public; Owner: postgres; Tablespace:
--
CREATE TABLE candidates (
candidateid integer NOT NULL,
image_name character varying(200) NOT NULL,
telemetryid integer NOT NULL,
processed boolean
);
ALTER TABLE public.candidates OWNER TO postgres;
--
-- TOC entry 169 (class 1259 OID 16715)
-- Dependencies: 170 5
-- Name: candidates_candidateid_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
CREATE SEQUENCE candidates_candidateid_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.candidates_candidateid_seq OWNER TO postgres;
--
-- TOC entry 1930 (class 0 OID 0)
-- Dependencies: 169
-- Name: candidates_candidateid_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--
ALTER SEQUENCE candidates_candidateid_seq OWNED BY candidates.candidateid;
--
-- TOC entry 1931 (class 0 OID 0)
-- Dependencies: 169
-- Name: candidates_candidateid_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('candidates_candidateid_seq', 631, true);
--
-- TOC entry 162 (class 1259 OID 16660)
-- Dependencies: 5
-- Name: description; Type: TABLE; Schema: public; Owner: postgres; Tablespace:
--
CREATE TABLE description (
description_id integer NOT NULL,
shape character varying(50),
shapecolor character varying(50),
letter character varying(50),
lettercolor character varying(50),
target_x integer,
target_y integer,
top_x integer,
top_y integer,
heading character varying(50),
"timestamp" double precision
);
ALTER TABLE public.description OWNER TO postgres;
--
-- TOC entry 161 (class 1259 OID 16658)
-- Dependencies: 162 5
-- Name: description_description_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
CREATE SEQUENCE description_description_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.description_description_id_seq OWNER TO postgres;
--
-- TOC entry 1932 (class 0 OID 0)
-- Dependencies: 161
-- Name: description_description_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--
ALTER SEQUENCE description_description_id_seq OWNED BY description.description_id;
--
-- TOC entry 1933 (class 0 OID 0)
-- Dependencies: 161
-- Name: description_description_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('description_description_id_seq', 550, true);
--
-- TOC entry 164 (class 1259 OID 16668)
-- Dependencies: 5
-- Name: gps_position; Type: TABLE; Schema: public; Owner: postgres; Tablespace:
--
CREATE TABLE gps_position (
gps_id integer NOT NULL,
lat double precision,
lon double precision,
alt double precision
);
ALTER TABLE public.gps_position OWNER TO postgres;
--
-- TOC entry 163 (class 1259 OID 16666)
-- Dependencies: 164 5
-- Name: gps_position_gps_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
CREATE SEQUENCE gps_position_gps_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.gps_position_gps_id_seq OWNER TO postgres;
--
-- TOC entry 1934 (class 0 OID 0)
-- Dependencies: 163
-- Name: gps_position_gps_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--
ALTER SEQUENCE gps_position_gps_id_seq OWNED BY gps_position.gps_id;
--
-- TOC entry 1935 (class 0 OID 0)
-- Dependencies: 163
-- Name: gps_position_gps_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('gps_position_gps_id_seq', 2873, true);
--
-- TOC entry 166 (class 1259 OID 16676)
-- Dependencies: 5
-- Name: location; Type: TABLE; Schema: public; Owner: postgres; Tablespace:
--
CREATE TABLE location (
loc_id integer NOT NULL,
lower_left_gps integer,
lower_right_gps integer,
upper_left_gps integer,
upper_right_gps integer
);
ALTER TABLE public.location OWNER TO postgres;
--
-- TOC entry 165 (class 1259 OID 16674)
-- Dependencies: 166 5
-- Name: location_loc_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
CREATE SEQUENCE location_loc_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.location_loc_id_seq OWNER TO postgres;
--
-- TOC entry 1936 (class 0 OID 0)
-- Dependencies: 165
-- Name: location_loc_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--
ALTER SEQUENCE location_loc_id_seq OWNED BY location.loc_id;
--
-- TOC entry 1937 (class 0 OID 0)
-- Dependencies: 165
-- Name: location_loc_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('location_loc_id_seq', 550, true);
--
-- TOC entry 168 (class 1259 OID 16704)
-- Dependencies: 5
-- Name: telemetry; Type: TABLE; Schema: public; Owner: postgres; Tablespace:
--
CREATE TABLE telemetry (
telemetry_id integer NOT NULL,
gimbal_roll double precision,
gimbal_pitch double precision,
gimbal_yaw double precision,
origin_x integer,
origin_y integer,
gimbal_zoom integer,
plane_roll double precision,
plane_pitch double precision,
plane_heading double precision,
planelocation_id integer,
blurfactor double precision,
width_pixels integer,
height_pixels integer
);
ALTER TABLE public.telemetry OWNER TO postgres;
--
-- TOC entry 167 (class 1259 OID 16702)
-- Dependencies: 5 168
-- Name: telemetry_telemetry_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
CREATE SEQUENCE telemetry_telemetry_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.telemetry_telemetry_id_seq OWNER TO postgres;
--
-- TOC entry 1938 (class 0 OID 0)
-- Dependencies: 167
-- Name: telemetry_telemetry_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--
ALTER SEQUENCE telemetry_telemetry_id_seq OWNED BY telemetry.telemetry_id;
--
-- TOC entry 1939 (class 0 OID 0)
-- Dependencies: 167
-- Name: telemetry_telemetry_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('telemetry_telemetry_id_seq', 621, true);
--
-- TOC entry 172 (class 1259 OID 16731)
-- Dependencies: 5
-- Name: unverified_targets; Type: TABLE; Schema: public; Owner: postgres; Tablespace:
--
CREATE TABLE unverified_targets (
targetid integer NOT NULL,
candidateid integer NOT NULL,
revision integer NOT NULL,
location integer,
description_id integer,
processed boolean
);
ALTER TABLE public.unverified_targets OWNER TO postgres;
--
-- TOC entry 171 (class 1259 OID 16729)
-- Dependencies: 172 5
-- Name: unverified_targets_targetid_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
CREATE SEQUENCE unverified_targets_targetid_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.unverified_targets_targetid_seq OWNER TO postgres;
--
-- TOC entry 1940 (class 0 OID 0)
-- Dependencies: 171
-- Name: unverified_targets_targetid_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--
ALTER SEQUENCE unverified_targets_targetid_seq OWNED BY unverified_targets.targetid;
--
-- TOC entry 1941 (class 0 OID 0)
-- Dependencies: 171
-- Name: unverified_targets_targetid_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('unverified_targets_targetid_seq', 562, true);
--
-- TOC entry 174 (class 1259 OID 16754)
-- Dependencies: 5
-- Name: verified_targets; Type: TABLE; Schema: public; Owner: postgres; Tablespace:
--
CREATE TABLE verified_targets (
targetid integer NOT NULL,
submitid integer NOT NULL,
center_gps_id integer NOT NULL
);
ALTER TABLE public.verified_targets OWNER TO postgres;
--
-- TOC entry 173 (class 1259 OID 16752)
-- Dependencies: 5 174
-- Name: verified_targets_submitid_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
CREATE SEQUENCE verified_targets_submitid_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.verified_targets_submitid_seq OWNER TO postgres;
--
-- TOC entry 1942 (class 0 OID 0)
-- Dependencies: 173
-- Name: verified_targets_submitid_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--
ALTER SEQUENCE verified_targets_submitid_seq OWNED BY verified_targets.submitid;
--
-- TOC entry 1943 (class 0 OID 0)
-- Dependencies: 173
-- Name: verified_targets_submitid_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('verified_targets_submitid_seq', 54, true);
--
-- TOC entry 1888 (class 2604 OID 16720)
-- Dependencies: 169 170 170
-- Name: candidateid; Type: DEFAULT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY candidates ALTER COLUMN candidateid SET DEFAULT nextval('candidates_candidateid_seq'::regclass);
--
-- TOC entry 1884 (class 2604 OID 16663)
-- Dependencies: 161 162 162
-- Name: description_id; Type: DEFAULT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY description ALTER COLUMN description_id SET DEFAULT nextval('description_description_id_seq'::regclass);
--
-- TOC entry 1885 (class 2604 OID 16671)
-- Dependencies: 163 164 164
-- Name: gps_id; Type: DEFAULT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY gps_position ALTER COLUMN gps_id SET DEFAULT nextval('gps_position_gps_id_seq'::regclass);
--
-- TOC entry 1886 (class 2604 OID 16679)
-- Dependencies: 165 166 166
-- Name: loc_id; Type: DEFAULT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY location ALTER COLUMN loc_id SET DEFAULT nextval('location_loc_id_seq'::regclass);
--
-- TOC entry 1887 (class 2604 OID 16707)
-- Dependencies: 167 168 168
-- Name: telemetry_id; Type: DEFAULT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY telemetry ALTER COLUMN telemetry_id SET DEFAULT nextval('telemetry_telemetry_id_seq'::regclass);
--
-- TOC entry 1889 (class 2604 OID 16734)
-- Dependencies: 172 171 172
-- Name: targetid; Type: DEFAULT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY unverified_targets ALTER COLUMN targetid SET DEFAULT nextval('unverified_targets_targetid_seq'::regclass);
--
-- TOC entry 1890 (class 2604 OID 16757)
-- Dependencies: 173 174 174
-- Name: submitid; Type: DEFAULT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY verified_targets ALTER COLUMN submitid SET DEFAULT nextval('verified_targets_submitid_seq'::regclass);
--
-- TOC entry 1921 (class 0 OID 16717)
-- Dependencies: 170
-- Data for Name: candidates; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY candidates (candidateid, image_name, telemetryid, processed) FROM stdin;
\.
--
-- TOC entry 1917 (class 0 OID 16660)
-- Dependencies: 162
-- Data for Name: description; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY description (description_id, shape, shapecolor, letter, lettercolor, target_x, target_y, top_x, top_y, heading, "timestamp") FROM stdin;
112 - - - - 0 0 \N \N - \N
113 - - - - 0 0 \N \N - \N
114 - - - - 0 0 \N \N - \N
115 - - - - 0 0 \N \N - \N
116 - - - - 0 0 \N \N - \N
117 - - - - 0 0 \N \N - \N
118 - - - - 0 0 \N \N - \N
119 - - - - 0 0 \N \N - \N
120 - - - - 0 0 \N \N - \N
121 - - - - 0 0 \N \N - \N
122 - - - - 0 0 \N \N - \N
123 - - - - 0 0 \N \N - \N
124 - - - - 0 0 \N \N - \N
125 - - - - 0 0 \N \N - \N
126 - - - - 0 0 \N \N - \N
127 - - - - 0 0 \N \N - \N
128 - - - - 0 0 \N \N - \N
129 - - - - 0 0 \N \N - \N
130 - - - - 0 0 \N \N - \N
131 - - - - 0 0 \N \N - \N
132 - - - - 0 0 \N \N - \N
133 - - - - 0 0 \N \N - \N
134 - - - - 0 0 \N \N - \N
135 - - - - 0 0 \N \N - \N
136 - - - - 0 0 \N \N - \N
137 - - - - 0 0 \N \N - \N
138 - - - - 0 0 \N \N - \N
139 - - - - 0 0 \N \N - \N
140 - - - - 0 0 \N \N - \N
141 - - - - 0 0 \N \N - \N
142 - - - - 0 0 \N \N - \N
143 - - - - 0 0 \N \N - \N
144 - - - - 0 0 \N \N - \N
145 - - - - 0 0 \N \N - \N
146 - - - - 0 0 \N \N - \N
147 - - - - 0 0 \N \N - \N
148 - - - - 0 0 \N \N - \N
149 - - - - 0 0 \N \N - \N
150 - - - - 0 0 \N \N - \N
151 - - - - 0 0 \N \N - \N
152 - - - - 0 0 \N \N - \N
153 - - - - 0 0 \N \N - \N
154 - - - - 0 0 \N \N - \N
155 - - - - 0 0 \N \N - \N
156 - - - - 0 0 \N \N - \N
157 - - - - 0 0 \N \N - \N
158 - - - - 0 0 \N \N - \N
159 - - - - 0 0 \N \N - \N
160 - - - - 0 0 \N \N - \N
161 - - - - 0 0 \N \N - \N
162 - - - - 0 0 \N \N - \N
163 - - - - 0 0 \N \N - \N
164 - - - - 0 0 \N \N - \N
165 - - - - 0 0 \N \N - \N
166 - - - - 0 0 \N \N - \N
167 - - - - 0 0 \N \N - \N
168 - - - - 0 0 \N \N - \N
169 - - - - 0 0 \N \N - \N
170 - - - - 0 0 \N \N - \N
171 - - - - 0 0 \N \N - \N
172 - - - - 0 0 \N \N - \N
173 - - - - 0 0 \N \N - \N
174 - - - - 0 0 \N \N - \N
175 - - - - 0 0 \N \N - \N
176 - - - - 0 0 \N \N - \N
177 - - - - 0 0 \N \N - \N
178 - - - - 0 0 \N \N - \N
179 - - - - 0 0 \N \N - \N
180 - - - - 0 0 \N \N - \N
181 - - - - 0 0 \N \N - \N
182 - - - - 0 0 \N \N - \N
183 - - - - 0 0 \N \N - \N
184 - - - - 0 0 \N \N - \N
185 - - - - 0 0 \N \N - \N
186 - - - - 0 0 \N \N - \N
187 - - - - 0 0 \N \N - \N
188 - - - - 0 0 \N \N - \N
189 - - - - 0 0 \N \N - \N
190 - - - - 0 0 \N \N - \N
191 - - - - 0 0 \N \N - \N
192 - - - - 0 0 \N \N - \N
193 - - - - 0 0 \N \N - \N
194 - - - - 0 0 \N \N - \N
195 - - - - 0 0 \N \N - \N
196 - - - - 0 0 \N \N - \N
197 - - - - 0 0 \N \N - \N
198 - - - - 0 0 \N \N - \N
199 - - - - 0 0 \N \N - \N
200 - - - - 0 0 \N \N - \N
201 - - - - 0 0 \N \N - \N
202 - - - - 0 0 \N \N - \N
203 - - - - 0 0 \N \N - \N
204 - - - - 0 0 \N \N - \N
205 - - - - 0 0 \N \N - \N
206 - - - - 0 0 \N \N - \N
207 - - - - 0 0 \N \N - \N
208 - - - - 0 0 \N \N - \N
209 - - - - 0 0 \N \N - \N
210 - - - - 0 0 \N \N - \N
211 - - - - 0 0 \N \N - \N
212 - - - - 0 0 \N \N - \N
213 - - - - 0 0 \N \N - \N
214 - - - - 0 0 \N \N - \N
215 - - - - 0 0 \N \N - \N
216 - - - - 0 0 \N \N - \N
217 - - - - 0 0 \N \N - \N
218 - - - - 0 0 \N \N - \N
219 - - - - 0 0 \N \N - \N
220 - - - - 0 0 \N \N - \N
221 - - - - 0 0 \N \N - \N
222 - - - - 0 0 \N \N - \N
223 - - - - 0 0 \N \N - \N
224 - - - - 0 0 \N \N - \N
225 - - - - 0 0 \N \N - \N
226 - - - - 0 0 \N \N - \N
227 - - - - 0 0 \N \N - \N
228 - - - - 0 0 \N \N - \N
229 - - - - 0 0 \N \N - \N
230 - - - - 0 0 \N \N - \N
231 - - - - 0 0 \N \N - \N
232 - - - - 0 0 \N \N - \N
233 - - - - 0 0 \N \N - \N
234 - - - - 0 0 \N \N - \N
235 - - - - 0 0 \N \N - \N
236 - - - - 0 0 \N \N - \N
237 - - - - 0 0 \N \N - \N
238 - - - - 0 0 \N \N - \N
239 - - - - 0 0 \N \N - \N
240 - - - - 0 0 \N \N - \N
241 - - - - 0 0 \N \N - \N
242 - - - - 0 0 \N \N - \N
243 - - - - 0 0 \N \N - \N
244 - - - - 0 0 \N \N - \N
245 - - - - 0 0 \N \N - \N
246 - - - - 0 0 \N \N - \N
247 - - - - 0 0 \N \N - \N
248 - - - - 0 0 \N \N - \N
249 - - - - 0 0 \N \N - \N
250 - - - - 0 0 \N \N - \N
251 - - - - 0 0 \N \N - \N
252 - - - - 0 0 \N \N - \N
253 - - - - 0 0 \N \N - \N
254 - - - - 0 0 \N \N - \N
255 - - - - 0 0 \N \N - \N
256 - - - - 0 0 \N \N - \N
257 - - - - 0 0 \N \N - \N
258 - - - - 0 0 \N \N - \N
259 - - - - 0 0 \N \N - \N
260 - - - - 0 0 \N \N - \N
261 - - - - 0 0 \N \N - \N
262 - - - - 0 0 \N \N - \N
263 - - - - 0 0 \N \N - \N
264 - - - - 0 0 \N \N - \N
265 - - - - 0 0 \N \N - \N
266 - - - - 0 0 \N \N - \N
267 - - - - 0 0 \N \N - \N
268 - - - - 0 0 \N \N - \N
269 - - - - 0 0 \N \N - \N
270 - - - - 0 0 \N \N - \N
271 - - - - 0 0 \N \N - \N
272 - - - - 0 0 \N \N - \N
273 - - - - 0 0 \N \N - \N
274 - - - - 0 0 \N \N - \N
275 - - - - 0 0 \N \N - \N
276 - - - - 0 0 \N \N - \N
277 - - - - 0 0 \N \N - \N
278 - - - - 0 0 \N \N - \N
279 - - - - 0 0 \N \N - \N
280 - - - - 0 0 \N \N - \N
281 - - - - 0 0 \N \N - \N
282 - - - - 0 0 \N \N - \N
283 - - - - 0 0 \N \N - \N
284 - - - - 0 0 \N \N - \N
285 - - - - 0 0 \N \N - \N
286 - - - - 0 0 \N \N - \N
287 - - - - 0 0 \N \N - \N
288 - - - - 0 0 \N \N - \N
289 - - - - 0 0 \N \N - \N
290 - - - - 0 0 \N \N - \N
291 - - - - 0 0 \N \N - \N
292 - - - - 0 0 \N \N - \N
293 - - - - 0 0 \N \N - \N
294 - - - - 0 0 \N \N - \N
295 - - - - 0 0 \N \N - \N
296 - - - - 0 0 \N \N - \N
297 - - - - 0 0 \N \N - \N
298 - - - - 0 0 \N \N - \N
299 - - - - 0 0 \N \N - \N
300 - - - - 0 0 \N \N - \N
301 - - - - 0 0 \N \N - \N
302 - - - - 0 0 \N \N - \N
303 - - - - 0 0 \N \N - \N
304 - - - - 0 0 \N \N - \N
305 - - - - 0 0 \N \N - \N
306 - - - - 0 0 \N \N - \N
307 - - - - 0 0 \N \N - \N
308 - - - - 0 0 \N \N - \N
309 - - - - 0 0 \N \N - \N
310 - - - - 0 0 \N \N - \N
311 - - - - 0 0 \N \N - \N
312 - - - - 0 0 \N \N - \N
313 - - - - 0 0 \N \N - \N
314 - - - - 0 0 \N \N - \N
315 - - - - 0 0 \N \N - \N
316 - - - - 0 0 \N \N - \N
317 - - - - 0 0 \N \N - \N
318 - - - - 0 0 \N \N - \N
319 - - - - 0 0 \N \N - \N
320 - - - - 0 0 \N \N - \N
321 - - - - 0 0 \N \N - \N
322 - - - - 0 0 \N \N - \N
323 - - - - 0 0 \N \N - \N
324 - - - - 0 0 \N \N - \N
325 - - - - 0 0 \N \N - \N
326 - - - - 0 0 \N \N - \N
327 - - - - 0 0 \N \N - \N
328 - - - - 0 0 \N \N - \N
329 - - - - 0 0 \N \N - \N
330 - - - - 0 0 \N \N - \N
331 - - - - 0 0 \N \N - \N
332 - - - - 0 0 \N \N - \N
333 - - - - 0 0 \N \N - \N
334 - - - - 0 0 \N \N - \N
335 - - - - 0 0 \N \N - \N
336 - - - - 0 0 \N \N - \N
337 - - - - 0 0 \N \N - \N
338 - - - - 0 0 \N \N - \N
339 - - - - 0 0 \N \N - \N
340 - - - - 0 0 \N \N - \N
341 - - - - 0 0 \N \N - \N
342 - - - - 0 0 \N \N - \N
343 - - - - 0 0 \N \N - \N
344 - - - - 0 0 \N \N - \N
345 - - - - 0 0 \N \N - \N
346 - - - - 0 0 \N \N - \N
347 - - - - 0 0 \N \N - \N
348 - - - - 0 0 \N \N - \N
349 - - - - 0 0 \N \N - \N
366 - - - - 0 0 \N \N - \N
367 - - - - 0 0 \N \N - \N
351 Diamond White K Yellow -1 -1 \N \N - \N
352 - - - - 0 0 \N \N - \N
353 - - - - 0 0 \N \N - \N
354 - - - - 0 0 \N \N - \N
355 - - - - 0 0 \N \N - \N
356 - - - - 0 0 \N \N - \N
357 - - - - 0 0 \N \N - \N
358 - - - - 0 0 \N \N - \N
359 - - - - 0 0 \N \N - \N
360 - - - - 0 0 \N \N - \N
361 - - - - 0 0 \N \N - \N
362 - - - - 0 0 \N \N - \N
363 - - - - 0 0 \N \N - \N
364 - - - - 0 0 \N \N - \N
365 - - - - 0 0 \N \N - \N
368 - - - - 0 0 \N \N - \N
369 - - - - 0 0 \N \N - \N
370 - - - - 0 0 \N \N - \N
371 - - - - 0 0 \N \N - \N
372 - - - - 0 0 \N \N - \N
373 - - - - 0 0 \N \N - \N
374 - - - - 0 0 \N \N - \N
375 - - - - 0 0 \N \N - \N
376 - - - - 0 0 \N \N - \N
377 - - - - 0 0 \N \N - \N
378 - - - - 0 0 \N \N - \N
379 - - - - 0 0 \N \N - \N
380 - - - - 0 0 \N \N - \N
381 - - - - 0 0 \N \N - \N
382 - - - - 0 0 \N \N - \N
383 - - - - 0 0 \N \N - \N
384 - - - - 0 0 \N \N - \N
385 - - - - 0 0 \N \N - \N
386 - - - - 0 0 \N \N - \N
387 - - - - 0 0 \N \N - \N
388 - - - - 0 0 \N \N - \N
389 - - - - 0 0 \N \N - \N
390 - - - - 0 0 \N \N - \N
350 Square Blue J Q 0 0 \N \N - \N
391 - - - - 0 0 \N \N - \N
392 - - - - 0 0 \N \N - \N
393 - - - - 0 0 \N \N - \N
394 - - - - 0 0 \N \N - \N
395 - - - - 0 0 \N \N - \N
396 - - - - 0 0 \N \N - \N
397 - - - - 0 0 \N \N - \N
398 - - - - 0 0 \N \N - \N
399 - - - - 0 0 \N \N - \N
400 - - - - 0 0 \N \N - \N
401 - - - - 0 0 \N \N - \N
402 - - - - 0 0 \N \N - \N
403 - - - - 0 0 \N \N - \N
404 - - - - 0 0 \N \N - \N
405 - - - - 0 0 \N \N - \N
406 - - - - 0 0 \N \N - \N
407 - - - - 0 0 \N \N - \N
408 - - - - 0 0 \N \N - \N
409 - - - - 0 0 \N \N - \N
410 - - - - 0 0 \N \N - \N
411 - - - - 0 0 \N \N - \N
412 - - - - 0 0 \N \N - \N
413 - - - - 0 0 \N \N - \N
414 - - - - 0 0 \N \N - \N
415 - - - - 0 0 \N \N - \N
416 - - - - 0 0 \N \N - \N
417 - - - - 0 0 \N \N - \N
418 - - - - 0 0 \N \N - \N
419 - - - - 0 0 \N \N - \N
420 - - - - 0 0 \N \N - \N
421 - - - - 0 0 \N \N - \N
422 - - - - 0 0 \N \N - \N
423 - - - - 0 0 \N \N - \N
424 - - - - 0 0 \N \N - \N
425 - - - - 0 0 \N \N - \N
426 - - - - 0 0 \N \N - \N
427 - - - - 0 0 \N \N - \N
428 - - - - 0 0 \N \N - \N
429 - - - - 0 0 \N \N - \N
430 - - - - 0 0 \N \N - \N
431 - - - - 0 0 \N \N - \N
432 - - - - 0 0 \N \N - \N
433 - - - - 0 0 \N \N - \N
434 - - - - 0 0 \N \N - \N
435 - - - - 0 0 \N \N - \N
436 - - - - 0 0 \N \N - \N
437 - - - - 0 0 \N \N - \N
438 - - - - 0 0 \N \N - \N
439 - - - - 0 0 \N \N - \N
440 - - - - 0 0 \N \N - \N
441 - - - - 0 0 \N \N - \N
442 - - - - 0 0 \N \N - \N
443 - - - - 0 0 \N \N - \N
444 - - - - 0 0 \N \N - \N
445 - - - - 0 0 \N \N - \N
446 - - - - 0 0 \N \N - \N
447 - - - - 0 0 \N \N - \N
448 - - - - 0 0 \N \N - \N
449 - - - - 0 0 \N \N - \N
450 - - - - 0 0 \N \N - \N
451 - - - - 0 0 \N \N - \N
452 - - - - 0 0 \N \N - \N
453 - - - - 0 0 \N \N - \N
454 - - - - 0 0 \N \N - \N
455 - - - - 0 0 \N \N - \N
456 - - - - 0 0 \N \N - \N
457 - - - - 0 0 \N \N - \N
458 - - - - 0 0 \N \N - \N
459 - - - - 0 0 \N \N - \N
460 - - - - 0 0 \N \N - \N
461 - - - - 0 0 \N \N - \N
462 - - - - 0 0 \N \N - \N
463 - - - - 0 0 \N \N - \N
464 - - - - 0 0 \N \N - \N
465 - - - - 0 0 \N \N - \N
466 - - - - 0 0 \N \N - \N
467 - - - - 0 0 \N \N - \N
468 - - - - 0 0 \N \N - \N
469 - - - - 0 0 \N \N - \N
470 - - - - 0 0 \N \N - \N
471 - - - - 0 0 \N \N - \N
472 - - - - 0 0 \N \N - \N
473 - - - - 0 0 \N \N - \N
474 - - - - 0 0 \N \N - \N
475 - - - - 0 0 \N \N - \N
476 - - - - 0 0 \N \N - \N
477 - - - - 0 0 \N \N - \N
478 - - - - 0 0 \N \N - \N
479 - - - - 0 0 \N \N - \N
480 - - - - 0 0 \N \N - \N
481 - - - - 0 0 \N \N - \N
482 - - - - 0 0 \N \N - \N
483 - - - - 0 0 \N \N - \N
484 - - - - 0 0 \N \N - \N
485 - - - - 0 0 \N \N - \N
486 - - - - 0 0 \N \N - \N
487 - - - - 0 0 \N \N - \N
488 - - - - 0 0 \N \N - \N
489 - - - - 0 0 \N \N - \N
490 - - - - 0 0 \N \N - \N
491 - - - - 0 0 \N \N - \N
492 - - - - 0 0 \N \N - \N
493 - - - - 0 0 \N \N - \N
494 - - - - 0 0 \N \N - \N
495 - - - - 0 0 \N \N - \N
496 - - - - 0 0 \N \N - \N
497 - - - - 0 0 \N \N - \N
498 - - - - 0 0 \N \N - \N
499 - - - - 0 0 \N \N - \N
500 - - - - 0 0 \N \N - \N
501 - - - - 0 0 \N \N - \N
502 - - - - 0 0 \N \N - \N
503 - - - - 0 0 \N \N - \N
504 - - - - 0 0 \N \N - \N
505 - - - - 0 0 \N \N - \N
506 - - - - 0 0 \N \N - \N
507 - - - - 0 0 \N \N - \N
508 - - - - 0 0 \N \N - \N
509 - - - - 0 0 \N \N - \N
510 - - - - 0 0 \N \N - \N
511 - - - - 0 0 \N \N - \N
512 - - - - 0 0 \N \N - \N
513 - - - - 0 0 \N \N - \N
514 - - - - 0 0 \N \N - \N
515 - - - - 0 0 \N \N - \N
516 - - - - 0 0 \N \N - \N
517 - - - - 0 0 \N \N - \N
518 - - - - 0 0 \N \N - \N
519 - - - - 0 0 \N \N - \N
520 - - - - 0 0 \N \N - \N
521 - - - - 0 0 \N \N - \N
522 - - - - 0 0 \N \N - \N
523 - - - - 0 0 \N \N - \N
524 - - - - 0 0 \N \N - \N
525 - - - - 0 0 \N \N - \N
526 - - - - 0 0 \N \N - \N
527 - - - - 0 0 \N \N - \N
528 - - - - 0 0 \N \N - \N
529 - - - - 0 0 \N \N - \N
530 - - - - 0 0 \N \N - \N
531 - - - - 0 0 \N \N - \N
532 - - - - 0 0 \N \N - \N
533 - - - - 0 0 \N \N - \N
534 - - - - 0 0 \N \N - \N
535 - - - - 0 0 \N \N - \N
536 - - - - 0 0 \N \N - \N
537 - - - - 0 0 \N \N - \N
538 - - - - 0 0 \N \N - \N
539 - - - - 0 0 \N \N - \N
540 - - - - 0 0 \N \N - \N
541 - - - - 0 0 \N \N - \N
542 - - - - 0 0 \N \N - \N
543 - - - - 0 0 \N \N - \N
544 - - - - 0 0 \N \N - \N
545 - - - - 0 0 \N \N - \N
546 - - - - 0 0 \N \N - \N
547 - - - - 0 0 \N \N - \N
548 - - - - 0 0 \N \N - \N
549 - - - - 0 0 \N \N - \N
550 - - - - 0 0 \N \N - \N
\.
--
-- TOC entry 1918 (class 0 OID 16668)
-- Dependencies: 164
-- Data for Name: gps_position; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY gps_position (gps_id, lat, lon, alt) FROM stdin;
1853 32.879995000000001 -117.230445 5.4545454545454604
1854 32.879979477587902 -117.23046339581001 0
1855 32.879979477345699 -117.230198178883 0
1856 32.8801978426647 -117.230463146327 0
1857 32.880197842429098 -117.230201526261 0
1858 32.879979477587902 -117.23046339581001 -0.010553444735705899
1859 32.879979413515997 -117.23046344705401 -0.010597004555165801
1860 32.879979413515997 -117.23046344705401 -0.010597004555165801
1861 32.880040000000001 -117.23018999999999 5.4545454545454604
1862 32.880024477588002 -117.23020839582 0
1863 32.880024477345899 -117.22994317875801 0
1864 32.880242842661403 -117.230208146336 0
1865 32.880242842425702 -117.22994652614101 0
1866 32.880024477588002 -117.23020839582 -0.010553452186286401
1867 32.879914999999997 -117.23028600000001 5.4545454545454604
1868 32.8800602140903 -117.230085007753 0
1869 32.880060214035403 -117.230053345459 0
1870 32.880098929379102 -117.23008549590899 0
1871 32.880098929324497 -117.230053910514 0
1872 32.880029999999998 -117.23030799999999 5.4545454545454604
1873 32.880050788240901 -117.23031022089999 0
1874 32.880050788236296 -117.230274227007 0
1875 32.880095185724898 -117.230310214762 0
1876 32.8800951857203 -117.230274320343 0
1877 32.879966000000003 -117.23036999999999 5.4545454545454604
1878 32.880025284274197 -117.230144087618 0
1879 32.880025284236901 -117.230124325696 0
1880 32.8800553162855 -117.23014451095401 0
1881 32.880055316248402 -117.230124786064 0
1882 32.879966000000003 -117.23036999999999 5.4545454545454604
1883 32.880083597841001 -117.23027827395499 0
1884 32.880083597807101 -117.230239959618 0
1885 32.880132850336402 -117.230278556877 0
1886 32.880132850302601 -117.230240360717 0
1887 32.879966000000003 -117.23036999999999 5.4545454545454604
1888 32.880148679556797 -117.23034162143399 0
1889 32.880148679549499 -117.230318726527 0
1890 32.880168842664901 -117.230341657415 0
1891 32.880168842657604 -117.230318791535 0
1892 32.879962999999996 -117.23039799999999 5.4545454545454604
1893 32.879947477581403 -117.230353763081 0
1894 32.879947477564102 -117.230318813612 0
1895 32.879962584318001 -117.23035380458499 0
1896 32.879962584300799 -117.230318887907 0
1897 32.879981000000001 -117.23044 5.4545454545454604
1898 32.879965477577699 -117.230386194182 0
1899 32.879965477556198 -117.230349044373 0
1900 32.879987040825597 -117.23038626624 0
1901 32.879987040804103 -117.230349166183 0
1902 32.879995000000001 -117.230445 5.4545454545454604
1903 32.880038717284002 -117.230319456141 0
1904 32.880038717234498 -117.230277293798 0
1905 32.880091648893 -117.23031987038 0
1906 32.880091648843901 -117.230277847153 0
1907 32.880011000000003 -117.230446 5.4545454545454604
1908 32.880028598380598 -117.230307740718 0
1909 32.880028598326199 -117.230265152263 0
1910 32.8800820825507 -117.230308200924 0
1911 32.880082082496699 -117.230265754228 0
1912 32.880025000000003 -117.230446 5.4545454545454604
1913 32.880103938305503 -117.23028374898399 0
1914 32.880103938241497 -117.23024020395501 0
1915 32.880157455812999 -117.230284291457 0
1916 32.880157455749298 -117.230240892018 0
1917 32.880032999999997 -117.230441 5.4545454545454604