barton 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,173 @@
1
+ <!doctype html>
2
+ <html>
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <meta http-equiv="X-UA-Compatible" content="chrome=1">
6
+ <title>Barton by experimentsindemocracy</title>
7
+
8
+ <link rel="stylesheet" href="http://experimentsindemocracy.github.com/barton/stylesheets/styles.css">
9
+ <link rel="stylesheet" href="http://experimentsindemocracy.github.com/barton/stylesheets/pygment_trac.css">
10
+ <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
11
+ <!--[if lt IE 9]>
12
+ <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
13
+ <![endif]-->
14
+ </head>
15
+ <body>
16
+ <div class="wrapper">
17
+ <header>
18
+ <h1>Barton</h1>
19
+ <p>Programmable political access</p>
20
+
21
+ <p class="view"><a href="https://github.com/experimentsindemocracy/barton">View the Project on GitHub <small>experimentsindemocracy/barton</small></a></p>
22
+
23
+
24
+ <ul>
25
+ <li><a href="https://github.com/experimentsindemocracy/barton/zipball/master">Download <strong>ZIP File</strong></a></li>
26
+ <li><a href="https://github.com/experimentsindemocracy/barton/tarball/master">Download <strong>TAR Ball</strong></a></li>
27
+ <li><a href="https://github.com/experimentsindemocracy/barton">View On <strong>GitHub</strong></a></li>
28
+ </ul>
29
+ </header>
30
+ <section>
31
+ <h1>Barton</h1>
32
+
33
+ <p>Barton is programmable, political access. It's an API for Australian electorate and politician contact details.</p>
34
+
35
+ <h2>Access</h2>
36
+
37
+ <p>Access the API via HTTP:</p>
38
+
39
+ <pre><code>curl http://barton.experimentsindemocracy.org/api
40
+ </code></pre>
41
+
42
+ <p>Or download and install it yourself:</p>
43
+
44
+ <pre><code>$ gem install barton
45
+ $ barton
46
+ </code></pre>
47
+
48
+ <h2>Requests</h2>
49
+
50
+ <p>NOTE: Barton is in a very early alpha stage and the API may change substantially. Ensure you use the email param to get notifications of any changes.</p>
51
+
52
+ <p>The API base with examples can be found at:</p>
53
+
54
+ <pre><code>http://barton.experimentsindemocracy.org/api
55
+ </code></pre>
56
+
57
+ <p>Subsequent use takes the form:</p>
58
+
59
+ <pre><code>/resource/[id]?[params]
60
+ </code></pre>
61
+
62
+ <p>To return a single electorate</p>
63
+
64
+ <pre><code>/electorates/id
65
+ </code></pre>
66
+
67
+ <p>To return multiple electorates</p>
68
+
69
+ <pre><code>/electorates?params=values
70
+ </code></pre>
71
+
72
+ <p>Address returns all electorates bounding the supplied address. Where ever possible, do the geocoding yourself to avoid Google's 2500 per day rate limit.</p>
73
+
74
+ <pre><code>/electorates?address=676+Ann+St,+Fortitude+Valley+Qld+4006
75
+ </code></pre>
76
+
77
+ <p>Geo returns all electorates bounding the supplied 'long,lat' string. Using geo instead of address will result in faster response times.</p>
78
+
79
+ <pre><code>/electorates?geo=145.77602080,-16.92192860
80
+ </code></pre>
81
+
82
+ <p>Tags returns all electorates matching the comma separated tags. To find all local councils and wards in Sydney for example:</p>
83
+
84
+ <pre><code>/electorates?tags=sydney,local
85
+ </code></pre>
86
+
87
+ <p>Or get more cunning with key:value and splat tags for all Mayors in Queensland whose name that start with the letter 'G'</p>
88
+
89
+ <pre><code>/electorates?tags=members.name:g*,queensland,mayor
90
+ </code></pre>
91
+
92
+ <p>Go totally freaky by mixing tags and geo. Try all politicians responsible for transport in Cairns</p>
93
+
94
+ <pre><code>/electorates?geo=145.77602080,-16.92192860&amp;tags=transport
95
+ </code></pre>
96
+
97
+ <p>Finally, add your email so I can keep a handle on usage and loads</p>
98
+
99
+ <pre><code>/electorates?email=bob@gmail.com
100
+ </code></pre>
101
+
102
+ <h2>Responses</h2>
103
+
104
+ <p>Barton will try to play HATEOAS as nicely as possible so you should be able to explore from the base api url to all resources. Responses are will be in JSON format and limited to 100 results.</p>
105
+
106
+ <pre><code>/electorates?tags=name:sydney,local
107
+
108
+ {
109
+ "name": "Barton API",
110
+ "result_count": 3,
111
+ "results": [
112
+ {
113
+ "name": "Sydney",
114
+ "tags": [
115
+ "New South Wales",
116
+ "Local",
117
+ "Ward",
118
+ "Eastern Suburbs"
119
+ ],
120
+ "id": "1623a1"
121
+ },
122
+ {
123
+ "name": "Sydney",
124
+ "tags": [
125
+ "New South Wales",
126
+ "Local",
127
+ "LGA",
128
+ "Eastern Suburbs"
129
+ ],
130
+ "id": "164e15"
131
+ },
132
+ {
133
+ "name": "North Sydney",
134
+ "tags": [
135
+ "New South Wales",
136
+ "Local",
137
+ "LGA",
138
+ "Lower North Shore"
139
+ ],
140
+ "id": "7b971f"
141
+ }
142
+ ],
143
+ "resources": {
144
+ "home": "http://barton.experimentsindemocracy.org",
145
+ "api": "http://barton.experimentsindemocracy.org/api",
146
+ "electorates": "http://barton.experimentsindemocracy.org/api/electorates"
147
+ },
148
+ "examples": {
149
+ "electorates": {
150
+ "resource_id": "http://barton.experimentsindemocracy.org/api/electorates/ccbfd1",
151
+ "geo": "http://barton.experimentsindemocracy.org/api/electorates?geo=151.2054563,-33.8438383",
152
+ "tags": "http://barton.experimentsindemocracy.org/barton/api/electorates?tags=sydney,local",
153
+ "mixed": "http://barton.experimentsindemocracy.org/api/electorates? geo=151.2054563,-33.8438383&amp;tags=federal"
154
+ }
155
+ }
156
+ }
157
+ </code></pre>
158
+
159
+ <h2>Contributing</h2>
160
+
161
+ <p>If you want to help then by all means jump in, fork and push a pull request.</p>
162
+
163
+ <p>Updating politician contact details is the most pressing job. See the <a href="https://github.com/experimentsindemocracy/barton/blob/master/data/README.md">data readme</a> for more details.</p>
164
+ </section>
165
+ <footer>
166
+ <p>This project is maintained by <a href="https://github.com/experimentsindemocracy">experimentsindemocracy</a></p>
167
+ <p><small>Hosted on GitHub Pages &mdash; Theme by <a href="https://github.com/orderedlist">orderedlist</a></small></p>
168
+ </footer>
169
+ </div>
170
+ <script src="javascripts/scale.fix.js"></script>
171
+
172
+ </body>
173
+ </html>
@@ -1,3 +1,3 @@
1
1
  module Barton
2
- VERSION = "0.0.2"
2
+ VERSION = "0.0.3"
3
3
  end
@@ -1,4 +1,14 @@
1
1
  ---
2
+ - name: Queensland
3
+ tags:
4
+ - State
5
+ - Queensland
6
+ members:
7
+ - role: Premier
8
+ name: Campbell Newman
9
+ id: fee284
10
+ phone: 555 6969
11
+ id: 22d5fb
2
12
  - name: Ashgrove
3
13
  tags:
4
14
  - Queensland
@@ -6,34 +16,30 @@
6
16
  - Legislative Assembly
7
17
  - Brisbane North
8
18
  members:
9
- - name: bob smith
10
- - tags:
11
- - transport
12
- - roads
13
- id: e07a89
19
+ - role: Member for Ashgrove
20
+ name: Some dude
21
+ address: some place
22
+ web: www.stuff.com
23
+ id: 2c283e
24
+ id: 73d5fa
14
25
  - name: Aspley
15
26
  tags:
16
27
  - Queensland
17
28
  - State
18
29
  - Legislative Assembly
19
30
  - Brisbane North
20
- id: f6586f
31
+ id: 6e01ec
21
32
  - name: Brisbane Central
22
33
  tags:
23
34
  - Queensland
24
35
  - State
25
36
  - Legislative Assembly
26
37
  - Brisbane North
27
- id: 69dc24
28
- members:
29
- - name: Greg Yrok
30
- tags:
31
- - stuff
32
- - water
38
+ id: 6d7232
33
39
  - name: Clayfield
34
40
  tags:
35
41
  - Queensland
36
42
  - State
37
43
  - Legislative Assembly
38
44
  - Brisbane North
39
- id: '801187'
45
+ id: f6bc92
@@ -5,11 +5,10 @@
5
5
  - Queensland
6
6
  members:
7
7
  - name: Campbell Newman
8
- roles:
9
- - Premier
10
- - Member for X
11
- id: !binary |-
12
- ODNhMGE4
8
+ role: Premier
9
+ phone: 555 6969
10
+ id: fee284
11
+ id: 22d5fb
13
12
  - name: Ashgrove
14
13
  tags:
15
14
  - Queensland
@@ -20,29 +19,27 @@
20
19
  - name: Some dude
21
20
  address: some place
22
21
  web: www.stuff.com
23
- id: !binary |-
24
- ZTA3YTg5
22
+ role: Member for Ashgrove
23
+ id: 2c283e
24
+ id: 73d5fa
25
25
  - name: Aspley
26
26
  tags:
27
27
  - Queensland
28
28
  - State
29
29
  - Legislative Assembly
30
30
  - Brisbane North
31
- id: !binary |-
32
- ZjY1ODZm
31
+ id: 6e01ec
33
32
  - name: Brisbane Central
34
33
  tags:
35
34
  - Queensland
36
35
  - State
37
36
  - Legislative Assembly
38
37
  - Brisbane North
39
- id: !binary |-
40
- NjlkYzI0
38
+ id: 6d7232
41
39
  - name: Clayfield
42
40
  tags:
43
41
  - Queensland
44
42
  - State
45
43
  - Legislative Assembly
46
44
  - Brisbane North
47
- id: !binary |-
48
- ODAxMTg3
45
+ id: f6bc92
@@ -1,5 +1,5 @@
1
1
  ---
2
- e07a89:
2
+ 73d5fa:
3
3
  boundaries:
4
4
  - 153.0068296754392,-27.43696154039627 153.0062182004481,-27.43565517700658 153.0055129544807,-27.43344757029832
5
5
  153.0051111217854,-27.43259917848863 153.0050963570713,-27.43141004772982 153.0053602989078,-27.43000656231877
@@ -123,13 +123,13 @@ e07a89:
123
123
  153.0019288547097,-27.43936170101258 153.0023102913831,-27.43920298583237 153.0026290654083,-27.43920966454203
124
124
  153.0030465355376,-27.43937678976348 153.0034752418972,-27.43965024177337 153.0040063405542,-27.4397487910026
125
125
  153.0053187252689,-27.43971197861989 153.0059302312682,-27.43952276405063 153.0062875521537,-27.43918536563777
126
- 153.0064601924022,-27.43817301903762 153.0071901109249,27.43830745233188 -153.0068296754392,-27.43696154039627,0
126
+ 153.0064601924022,-27.43817301903762 153.0071901109249,-27.43830745233188 153.0068296754392,-27.43696154039627,0
127
127
  geobox:
128
- north: 27.3984
128
+ north: -27.3984
129
129
  south: -27.46558447601242
130
130
  east: 153.0071901109249
131
- west: -152.798652764664
132
- f6586f:
131
+ west: 152.798652764664
132
+ 6e01ec:
133
133
  boundaries:
134
134
  - 153.0148,-27.2877 153.0144,-27.28900000000001 153.0141,-27.2922 153.0131,-27.29510000000001
135
135
  153.0128,-27.2972 153.0116,-27.2976 153.011,-27.2972 153.0104,-27.2973 153.0094,-27.298
@@ -186,7 +186,7 @@ f6586f:
186
186
  south: -27.389226
187
187
  east: 153.0368633598745
188
188
  west: 152.9791
189
- 69dc24:
189
+ 6d7232:
190
190
  boundaries:
191
191
  - 153.0123006927877,-27.46936354541213 153.0169587281769,-27.46870066729663 153.0213261637199,-27.47136677757538
192
192
  153.0256273699427,-27.47892442954736 153.0281083544132,-27.48107362252231 153.032009002021,-27.48034933845813
@@ -215,7 +215,7 @@ f6586f:
215
215
  south: -27.48107362252231
216
216
  east: 153.0562927405536
217
217
  west: 153.0068079986374
218
- '801187':
218
+ f6bc92:
219
219
  boundaries:
220
220
  - 153.0507821192325,-27.44179706564809 153.0593793485766,-27.44051871452692 153.079537996401,-27.44611196521132
221
221
  153.091119694259,-27.44762828744587 153.1008500760433,-27.44510153104588 153.110011022877,-27.44114768978185
@@ -1,5 +1,5 @@
1
1
  ---
2
- !binary "ZTA3YTg5":
2
+ 73d5fa:
3
3
  boundaries:
4
4
  - 153.0068296754392,-27.43696154039627 153.0062182004481,-27.43565517700658 153.0055129544807,-27.43344757029832
5
5
  153.0051111217854,-27.43259917848863 153.0050963570713,-27.43141004772982 153.0053602989078,-27.43000656231877
@@ -129,7 +129,7 @@
129
129
  south: -27.46558447601242
130
130
  east: 153.0071901109249
131
131
  west: 152.798652764664
132
- !binary "ZjY1ODZm":
132
+ 6e01ec:
133
133
  boundaries:
134
134
  - 153.0148,-27.2877 153.0144,-27.28900000000001 153.0141,-27.2922 153.0131,-27.29510000000001
135
135
  153.0128,-27.2972 153.0116,-27.2976 153.011,-27.2972 153.0104,-27.2973 153.0094,-27.298
@@ -186,7 +186,7 @@
186
186
  south: -27.389226
187
187
  east: 153.0368633598745
188
188
  west: 152.9791
189
- !binary "NjlkYzI0":
189
+ 6d7232:
190
190
  boundaries:
191
191
  - 153.0123006927877,-27.46936354541213 153.0169587281769,-27.46870066729663 153.0213261637199,-27.47136677757538
192
192
  153.0256273699427,-27.47892442954736 153.0281083544132,-27.48107362252231 153.032009002021,-27.48034933845813
@@ -215,7 +215,7 @@
215
215
  south: -27.48107362252231
216
216
  east: 153.0562927405536
217
217
  west: 153.0068079986374
218
- !binary "ODAxMTg3":
218
+ f6bc92:
219
219
  boundaries:
220
220
  - 153.0507821192325,-27.44179706564809 153.0593793485766,-27.44051871452692 153.079537996401,-27.44611196521132
221
221
  153.091119694259,-27.44762828744587 153.1008500760433,-27.44510153104588 153.110011022877,-27.44114768978185
@@ -1,4 +1,14 @@
1
1
  ---
2
+ - name: Queensland
3
+ tags:
4
+ - State
5
+ - Queensland
6
+ members:
7
+ - role: Premier
8
+ name: Campbell Newman
9
+ id: fee284
10
+ phone: 555 6969
11
+ id: 22d5fb
2
12
  - name: Ashgrove
3
13
  tags:
4
14
  - Queensland
@@ -6,34 +16,30 @@
6
16
  - Legislative Assembly
7
17
  - Brisbane North
8
18
  members:
9
- - name: bob smith
10
- - tags:
11
- - transport
12
- - roads
13
- id: e07a89
19
+ - role: Member for Ashgrove
20
+ name: Some dude
21
+ address: some place
22
+ web: www.stuff.com
23
+ id: 2c283e
24
+ id: 73d5fa
14
25
  - name: Aspley
15
26
  tags:
16
27
  - Queensland
17
28
  - State
18
29
  - Legislative Assembly
19
30
  - Brisbane North
20
- id: f6586f
31
+ id: 6e01ec
21
32
  - name: Brisbane Central
22
33
  tags:
23
34
  - Queensland
24
35
  - State
25
36
  - Legislative Assembly
26
37
  - Brisbane North
27
- id: 69dc24
28
- members:
29
- - name: Greg Yrok
30
- tags:
31
- - stuff
32
- - water
38
+ id: 6d7232
33
39
  - name: Clayfield
34
40
  tags:
35
41
  - Queensland
36
42
  - State
37
43
  - Legislative Assembly
38
44
  - Brisbane North
39
- id: '801187'
45
+ id: f6bc92
@@ -1,19 +1,18 @@
1
1
  - name: Queensland
2
2
  tags: [State, Queensland]
3
3
  members:
4
- - name: Campbell Newman
5
- roles:
6
- - Premier
7
- - Member for X
4
+ - name: Campbell Newman
5
+ role: Premier
6
+ phone: 555 6969
8
7
 
9
8
  - name: Ashgrove
10
9
  tags: [Queensland, State, Legislative Assembly, Brisbane North]
11
- members:
12
- - name: Some dude
13
- address: some place
14
- web: www.stuff.com
15
10
  boundaries:
16
11
  - 153.0068296754392,-27.43696154039627 153.0062182004481,-27.43565517700658 153.0055129544807,-27.43344757029832 153.0051111217854,-27.43259917848863 153.0050963570713,-27.43141004772982 153.0053602989078,-27.43000656231877 153.0034313365449,-27.4285927858784 153.0025961023514,-27.42773496831722 153.0005564147037,-27.42448096722211 152.9997076803313,-27.42241309620244 152.9995680547386,-27.42087539521013 152.9994646270209,-27.42013645268729 153.000072417145,-27.4169928534019 153.0002379418539,-27.41662444396342 153.0006426046373,-27.4161048380352 153.0013811331126,-27.41531811697499 153.001117,-27.414711 153.000699,-27.414478 153.00068,-27.41445300000001 153.000266,-27.414064 153.000184,-27.414074 152.999866,-27.414278 152.999587,-27.414252 152.999138,-27.413849 152.998533,-27.412496 152.998154,-27.41222 152.997576,-27.411896 152.99755,-27.411881 152.997063,-27.411585 152.996946,-27.411519 152.996384,-27.411315 152.996015,-27.411315 152.995758,-27.411057 152.995504,-27.410966 152.995286,-27.411031 152.994901,-27.41116 152.994473,-27.411265 152.994186,-27.411075 152.994074,-27.411079 152.993765,-27.41122800000001 152.993289,-27.411578 152.992736,-27.412052 152.992442,-27.412531 152.992406,-27.412588 152.992135,-27.412916 152.991716,-27.413263 152.991337,-27.413767 152.990964,-27.41434200000001 152.990726,-27.414473 152.990536,-27.414463 152.990376,-27.414325 152.989772,-27.413734 152.98954,-27.413172 152.989091,-27.412913 152.988823,-27.412557 152.988401,-27.41138 152.987859,-27.410773 152.987545,-27.410582 152.9872565744697,-27.41255383124928 152.986515,-27.412457 152.98645,-27.412803 152.986067,-27.414891 152.985706,-27.416857 152.985456,-27.418222 152.983962,-27.418003 152.983786,-27.417977 152.983402,-27.417921 152.982764,-27.41769 152.981748,-27.417184 152.980231,-27.416432 152.979301,-27.416006 152.97671,-27.414627 152.975843,-27.414238 152.975357,-27.413964 152.974067,-27.413324 152.972773,-27.412689 152.972547,-27.412588 152.971634,-27.412107 152.97079,-27.411706 152.969823,-27.411203 152.969644,-27.41111 152.968838,-27.41066 152.967798,-27.410149 152.966813,-27.409812 152.96666,-27.409911 152.965714,-27.410499 152.964873,-27.411144 152.964183,-27.411425 152.963732,-27.41156300000002 152.962726,-27.411946 152.9619985331991,-27.41237119035507 152.9614205146763,-27.41287466517536 152.9600781413066,-27.41427884372851 152.9596314823972,-27.41444423007416 152.9589242246845,-27.41460970040138 152.957318,-27.422258 152.952613,-27.421605 152.952511,-27.421575 152.952537,-27.423051 152.953681,-27.42457900000001 152.954049,-27.425435 152.954557,-27.425683 152.955559,-27.426044 152.9567,-27.42741 152.95831,-27.428297 152.958426,-27.428361 152.958133,-27.428309 152.956031,-27.429184 152.953586,-27.430201 152.952051,-27.43084 152.949056,-27.43023000000001 152.9488025296305,-27.43018437878719 152.9483,-27.4283 152.9466,-27.428 152.9453,-27.4273 152.9433,-27.4274 152.943,-27.4276 152.9428,-27.4281 152.9422,-27.4277 152.9325,-27.4258 152.9304,-27.4268 152.9291,-27.4266 152.9276,-27.425 152.925,-27.42470000000001 152.9239,-27.4312 152.9232,-27.4319 152.9235,-27.4343 152.9226,-27.4345 152.9214,-27.4342 152.9188,-27.4342 152.9173,-27.4334 152.9158,-27.4337 152.9142,-27.4335 152.9129,-27.4326 152.9115,-27.4326 152.9105,-27.4333 152.9088,-27.4333 152.9062,-27.4325 152.9052,-27.4318 152.9044,-27.4319 152.9053,-27.4265 152.9037,-27.42630000000001 152.904,-27.4254 152.9047,-27.4245 152.9049,-27.4239 152.9044,-27.4229 152.905,-27.4216 152.9018,-27.4212 152.9022,-27.4185 152.8992,-27.4181 152.8996,-27.4154 152.8976,-27.4151 152.8972,-27.4173 152.8727,-27.4138 152.8721,-27.4131 152.8648,-27.4179 152.8631,-27.4177 152.8624,-27.4212 152.8625,-27.42180000000002 152.8611,-27.4221 152.8584,-27.4209 152.8556,-27.4209 152.8531,-27.4205 152.8516,-27.4216 152.8494,-27.42170000000001 152.8473,-27.4195 152.8453,-27.4191 152.8443,-27.4179 152.8427,-27.4175 152.8378,-27.4185 152.8364,-27.41860000000001 152.8312,-27.4168 152.8294,-27.4151 152.828,-27.4144 152.826,-27.4118 152.821,-27.4101 152.8182,-27.4072 152.8174,-27.4071 152.8165,-27.4061 152.8152,-27.4041 152.8148,-27.4021 152.8125,-27.4013 152.812,-27.4016 152.8088,-27.401 152.8087,-27.4007 152.8076,-27.401 152.8062,-27.4009 152.8042,-27.3999 152.803,-27.3998 152.8021,-27.3987 152.8014,-27.3984 152.8006,-27.3994 152.7997,-27.3995 152.7992,-27.4011 152.7987,-27.4015 152.7993,-27.4016 152.7987,-27.4051 152.798652764664,-27.40520002492694 152.799629888044,-27.40535194070279 152.7995619003265,-27.40581442334322 152.8007806813098,-27.40732128576283 152.8000130203041,-27.40841325362887 152.7995054171357,-27.40860330211971 152.7993764383861,-27.4094675995744 152.7997257117075,-27.40984883933115 152.8000020070857,-27.41043406504444 152.8016508143096,-27.41095246385641 152.8022077219359,-27.41175347428867 152.802672306969,-27.41276292773835 152.8031411769698,-27.41308427333362 152.8038584016281,-27.41472794361081 152.8055364880773,-27.41669216148194 152.8060557278225,-27.41674199383346 152.8083334275578,-27.41469325477526 152.8087858706367,-27.41492589905869 152.8092609172203,-27.4159178576716 152.8099500586532,-27.41645819264785 152.8105875001278,-27.41722812392476 152.8112632254592,-27.41737566366433 152.812048070384,-27.41733393389153 152.8124926311122,-27.41866398604895 152.8134850456183,-27.41962930334253 152.8150628015678,-27.42002454322918 152.8152167567834,-27.42013026505915 152.8156242734413,-27.42009803928344 152.8162069143592,-27.41958296594725 152.8165646828267,-27.41955020060664 152.817089900964,-27.41959074880812 152.81804637017,-27.42041014939694 152.8187152195232,-27.42082863558937 152.8197821431089,-27.42122480382497 152.8210581123564,-27.42258465742216 152.8218667197118,-27.42229186896077 152.8220579005144,-27.42239578804096 152.822606919614,-27.42294217933456 152.8230970073991,-27.42360522834262 152.8239564839647,-27.42390584623005 152.8240904460275,-27.42402857076867 152.8240372175926,-27.42473674736098 152.8239272287179,-27.42500786404741 152.8239139529661,-27.42590770127884 152.8241362742346,-27.42626757518016 152.8248751005129,-27.42673173678898 152.8250148139589,-27.42694177680053 152.8250236270453,-27.42752645392601 152.8252227900537,-27.42817760719403 152.8258136407488,-27.42923225382863 152.8276162446026,-27.43061317969635 152.8278000374736,-27.43089939508258 152.8279276452851,-27.43193295470372 152.8284723571387,-27.43257949537456 152.8278628060313,-27.43346960467795 152.8270389793252,-27.43396238909471 152.8265066864501,-27.43498081157146 152.8268006419918,-27.43644689632388 152.8257733734803,-27.43869389602025 152.82661343294,-27.4396100366373 152.8265704598875,-27.44069645000909 152.826806237312,-27.44164027652422 152.8264554284342,-27.44250190683412 152.8309174445801,-27.44243599249728 152.8342446464777,-27.44278869017602 152.8389868741764,-27.44576562654201 152.8425969129517,-27.44651530983251 152.8477691311028,-27.44659989062237 152.849592352952,-27.4469658851783 152.8509867425289,-27.4468116022525 152.8527160927988,-27.44598217070839 152.8548867246839,-27.44608727301367 152.8566440813072,-27.44560946134507 152.8579720999292,-27.44633782940138 152.8596663735761,-27.44652775155395 152.8608144242638,-27.44615787307279 152.8636228401979,-27.44301483741806 152.8654146842546,-27.44373663533762 152.8671066684076,-27.44525080592968 152.8696488875516,-27.44621160551551 152.8716309326698,-27.44762859768057 152.8740672470425,-27.44735283619642 152.8802424441661,-27.45494156288159 152.8852376927694,-27.45165655029731 152.8892766695038,-27.45646675654779 152.8895518692535,-27.45625839508792 152.8915734186027,-27.45872588341309 152.8920714799485,-27.45842983039021 152.8924506245028,-27.45785943248418 152.8964214132621,-27.456895213846 152.8980673332974,-27.45820237149108 152.9024134829952,-27.45978320478463 152.9037050322373,-27.45951225004208 152.9068127114662,-27.45730304516268 152.9090033457165,-27.45624425723156 152.9114555194408,-27.45652041743488 152.9127131488104,-27.45641600410778 152.9139654748695,-27.45644242791373 152.9147562499314,-27.45736234672225 152.9158539422289,-27.45739919653024 152.9173075267353,-27.4570666113448 152.9186301969232,-27.45786578597806 152.9194310188937,-27.45861990161008 152.9200687124458,-27.45990194468569 152.9202107270614,-27.45993959839147 152.9201893906059,-27.46143888770366 152.9196964141803,-27.46282997565059 152.9205266624495,-27.46313281782403 152.9211717551101,-27.46385076812012 152.9234186364556,-27.4637266451885 152.924693161936,-27.46485302078589 152.926406120488,-27.46506421194812 152.9277417994476,-27.46492325871211 152.9281301388552,-27.46529317924679 152.9287588005009,-27.4653986557154 152.9293507518904,-27.46550175086193 152.930232330497,-27.46424463781197 152.9304231199455,-27.46365384971102 152.9317705645213,-27.46375479601874 152.9324924582613,-27.4635647298974 152.9330686747703,-27.46464639138419 152.934585765234,-27.46558447601242 152.9348252395965,-27.46551338853131 152.9352346145955,-27.46325925415395 152.9357776665484,-27.46255972205865 152.9377761223839,-27.46280120251331 152.9440806575983,-27.46374014928006 152.9449443363521,-27.45899985814678 152.9578076065504,-27.46076423033213 152.9583000219562,-27.45799999587813 152.9589999852774,-27.45459994138427 152.962381710663,-27.45500082647872 152.9629999920575,-27.45129999726046 152.9650000093636,-27.45159999353901 152.9653090743719,-27.44990017418864 152.9669822525794,-27.44989410557328 152.9677612986875,-27.45060589198971 152.9671447636814,-27.45154067296991 152.9658721073074,-27.45209856620908 152.9657945492645,-27.45229391264167 152.9662522774694,-27.45275698441521 152.9673779371095,-27.45289290016937 152.9674083022551,-27.45320982864797 152.9676993449072,-27.45327480121724 152.9677692665279,-27.45288179864467 152.9692806084383,-27.45309925767617 152.9692623562309,-27.45339861733627 152.9704343556772,-27.4535566630167 152.9705024239027,-27.45332259070619 152.9717439792416,-27.45351211734405 152.9723416486536,-27.4526014453287 152.9735068257981,-27.45301618089912 152.974385003061,-27.45295698294721 152.9750056760188,-27.45331080337325 152.9758662966793,-27.45462968957798 152.9773354823289,-27.45498943690687 152.9779748011064,-27.45484503842479 152.9783242350708,-27.45458586652278 152.9778335663482,-27.45389533634693 152.978257495468,-27.45318358576344 152.9784862655671,-27.45240330907407 152.978967,-27.451592 152.979196,-27.451758 152.979343,-27.45191300000001 152.979699,-27.452284 152.980921,-27.453323 152.981578,-27.454173 152.98167,-27.45433 152.982495,-27.455778 152.983117,-27.456032 152.984476,-27.456417 152.985767,-27.457015 152.9884999786892,-27.45437883674868 152.9882752069327,-27.45333905400984 152.9892589108621,-27.44904428922023 152.9898720144651,-27.44935340019254 152.9909388001116,-27.44893336662114 152.9920919997236,-27.4492166108634 152.9936590781372,-27.44884379764874 152.9951436299709,-27.44868425699783 152.9948825408951,-27.44780678243568 152.9944593332784,-27.44756707318917 152.99539242508,-27.4469802787713 152.9956317080787,-27.44620196122167 152.9963747914543,-27.44600790209203 152.9970182459066,-27.44653173959854 152.9975383187334,-27.44673050486059 152.9980196417814,-27.44711123067646 152.9978038890582,-27.44788866843211 152.9973609366049,-27.44864758042616 152.997619107749,-27.44895611696033 152.9985024332259,-27.44881906680146 152.9987659413971,-27.4483761600557 152.9992657457425,-27.4484142715441 152.9992835108361,-27.44893173283537 153.0002880737435,-27.44901509295941 153.0008538891726,-27.44805342734437 153.0004392996405,-27.44711084422466 153.0003082845174,-27.44630956340576 153.0008083746387,-27.44588341277659 153.0013136399448,-27.44565385485453 153.0019729302158,-27.44499889121277 153.0016328199843,-27.44480768613072 153.001327349232,-27.4443276304552 153.0014226878713,-27.44363992064423 153.0017886555186,-27.44362762090262 153.0021681937215,-27.44346826451389 153.0024904680785,-27.44314411858885 153.0027884933192,-27.44245459962717 153.0027354990758,-27.44200567720838 153.0025456401126,-27.44178979649606 153.0022957573782,-27.4413959845179 153.001999122394,-27.44133489513702 153.0011787654193,-27.44006807821909 153.0012541195053,-27.43989076019304 153.0019288547097,-27.43936170101258 153.0023102913831,-27.43920298583237 153.0026290654083,-27.43920966454203 153.0030465355376,-27.43937678976348 153.0034752418972,-27.43965024177337 153.0040063405542,-27.4397487910026 153.0053187252689,-27.43971197861989 153.0059302312682,-27.43952276405063 153.0062875521537,-27.43918536563777 153.0064601924022,-27.43817301903762 153.0071901109249,-27.43830745233188 153.0068296754392,-27.43696154039627,0
12
+ members:
13
+ - name: Some dude
14
+ address: some place
15
+ web: www.stuff.com
17
16
 
18
17
  - name: Aspley
19
18
  tags: [Queensland, State, Legislative Assembly, Brisbane North]