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
|
[
{
"pk": 1,
"model": "relatedapp.location",
"fields": {
"point": "SRID=4326;POINT (-97.516111 33.058333)"
}
},
{
"pk": 2,
"model": "relatedapp.location",
"fields": {
"point": "SRID=4326;POINT (-104.528056 33.387222)"
}
},
{
"pk": 3,
"model": "relatedapp.location",
"fields": {
"point": "SRID=4326;POINT (-79.460734 40.18476)"
}
},
{
"pk": 4,
"model": "relatedapp.location",
"fields": {
"point": "SRID=4326;POINT (-95.363151 29.763374)"
}
},
{
"pk": 5,
"model": "relatedapp.location",
"fields": {
"point": "SRID=4326;POINT (-96.801611 32.782057)"
}
},
{
"pk": 1,
"model": "relatedapp.city",
"fields": {
"name": "Aurora",
"state": "TX",
"location": 1
}
},
{
"pk": 2,
"model": "relatedapp.city",
"fields": {
"name": "Roswell",
"state": "NM",
"location": 2
}
},
{
"pk": 3,
"model": "relatedapp.city",
"fields": {
"name": "Kecksburg",
"state": "PA",
"location": 3
}
},
{
"pk": 4,
"model": "relatedapp.city",
"fields": {
"name": "Dallas",
"state": "TX",
"location": 5
}
},
{
"pk": 5,
"model": "relatedapp.city",
"fields": {
"name": "Houston",
"state": "TX",
"location": 4
}
},
{
"pk": 6,
"model": "relatedapp.city",
"fields": {
"name": "Fort Worth",
"state": "TX",
"location": 5
}
},
{
"pk": 1,
"model": "relatedapp.Author",
"fields": {
"name": "Trevor Paglen",
"dob": "1974-5-23"
}
},
{
"pk": 2,
"model": "relatedapp.Author",
"fields": {
"name": "William Patry",
"dob": "1950-1-1"
}
},
{
"pk": 1,
"model": "relatedapp.Book",
"fields": {
"title": "Torture Taxi",
"author": 1
}
},
{
"pk": 2,
"model": "relatedapp.Book",
"fields": {
"title": "I Could Tell You But Then You Would Have to be Destroyed by Me",
"author": 1
}
},
{
"pk": 3,
"model": "relatedapp.Book",
"fields": {
"title": "Blank Spots on the Map",
"author": 1
}
},
{
"pk": 4,
"model": "relatedapp.Book",
"fields": {
"title": "Patry on Copyright",
"author": 2
}
},
{
"model": "relatedapp.parcel",
"pk": 1,
"fields": {
"name": "Aurora Parcel Alpha",
"city": 1,
"center1": "POINT (1.7128 -2.0060)",
"center2": "POINT (3.7128 -5.0060)",
"border1": "POLYGON((0 0, 5 5, 12 12, 0 0))",
"border2": "POLYGON((0 0, 5 5, 8 8, 0 0))"
}
},
{
"model": "relatedapp.parcel",
"pk": 2,
"fields": {
"name": "Aurora Parcel Beta",
"city": 1,
"center1": "POINT (4.7128 5.0060)",
"center2": "POINT (12.75 10.05)",
"border1": "POLYGON((10 10, 15 15, 22 22, 10 10))",
"border2": "POLYGON((10 10, 15 15, 22 22, 10 10))"
}
},
{
"model": "relatedapp.parcel",
"pk": 3,
"fields": {
"name": "Aurora Parcel Ignore",
"city": 1,
"center1": "POINT (9.7128 12.0060)",
"center2": "POINT (1.7128 -2.0060)",
"border1": "POLYGON ((24 23, 25 25, 32 32, 24 23))",
"border2": "POLYGON ((24 23, 25 25, 32 32, 24 23))"
}
},
{
"model": "relatedapp.parcel",
"pk": 4,
"fields": {
"name": "Roswell Parcel Ignore",
"city": 2,
"center1": "POINT (-9.7128 -12.0060)",
"center2": "POINT (-1.7128 2.0060)",
"border1": "POLYGON ((30 30, 35 35, 42 32, 30 30))",
"border2": "POLYGON ((30 30, 35 35, 42 32, 30 30))"
}
}
]
|