gowalla-ruby 0.0.1 → 0.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/Manifest +10 -0
- data/README.markdown +20 -17
- data/Rakefile +1 -1
- data/gowalla-ruby.gemspec +5 -5
- data/init.rb +6 -1
- data/lib/gowalla/activity.rb +13 -0
- data/lib/gowalla/address.rb +1 -1
- data/lib/gowalla/category.rb +10 -0
- data/lib/gowalla/event.rb +18 -0
- data/lib/gowalla/map_bound.rb +12 -0
- data/lib/gowalla/spot.rb +40 -2
- data/lib/gowalla/stamp.rb +1 -1
- data/lib/gowalla/top_10.rb +17 -0
- data/lib/gowalla/user.rb +1 -1
- data/test/fixtures/event.json +195 -0
- data/test/fixtures/spot.json +183 -0
- data/test/fixtures/spots.json +818 -0
- data/test/test_event.rb +40 -0
- data/test/test_spot.rb +122 -0
- data/test/test_stamp.rb +3 -3
- data/test/test_user.rb +10 -3
- metadata +19 -2
|
@@ -0,0 +1,183 @@
|
|
|
1
|
+
{
|
|
2
|
+
"activity_url": "/spots/18568/events",
|
|
3
|
+
"radius_meters": 50,
|
|
4
|
+
"remove_bookmark_url": null,
|
|
5
|
+
"checkins_url": "/checkins?spot_id=18568",
|
|
6
|
+
"checkins_count": 303,
|
|
7
|
+
"items_count": 12,
|
|
8
|
+
"facebook_url": "http://facebook.com/TorchysTacos",
|
|
9
|
+
"websites": ["http://www.wahoos.com/"],
|
|
10
|
+
"founders": [{
|
|
11
|
+
"first_name": "Court",
|
|
12
|
+
"url": "/users/151",
|
|
13
|
+
"last_name": "Simas",
|
|
14
|
+
"image_url": "http://s3.amazonaws.com/static.gowalla.com/users/151-standard.jpg?1266952532"
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"first_name": "Lauryn",
|
|
18
|
+
"url": "/users/159",
|
|
19
|
+
"last_name": "Haase",
|
|
20
|
+
"image_url": "http://s3.amazonaws.com/static.gowalla.com/users/159-standard.jpg?1237242693"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"first_name": "Keegan",
|
|
24
|
+
"url": "/users/5",
|
|
25
|
+
"last_name": "Jones",
|
|
26
|
+
"image_url": "http://s3.amazonaws.com/static.gowalla.com/users/5-standard.jpg?1253829277"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"first_name": "John",
|
|
30
|
+
"url": "/users/6",
|
|
31
|
+
"last_name": "Marstall",
|
|
32
|
+
"image_url": "http://s3.amazonaws.com/static.gowalla.com/users/6-standard.jpg?1233854471"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"first_name": "Dr. Barnabus",
|
|
36
|
+
"url": "/users/40",
|
|
37
|
+
"last_name": "Peddingferd",
|
|
38
|
+
"image_url": "http://s3.amazonaws.com/static.gowalla.com/users/40-standard.jpg?1237587930"
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"first_name": "Team",
|
|
42
|
+
"url": "/users/1934",
|
|
43
|
+
"last_name": "Gowalla",
|
|
44
|
+
"image_url": "http://s3.amazonaws.com/static.gowalla.com/users/1934-standard.jpg?1251325516"
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"first_name": "Laura",
|
|
48
|
+
"url": "/users/4339",
|
|
49
|
+
"last_name": "Young",
|
|
50
|
+
"image_url": "http://s3.amazonaws.com/static.gowalla.com/users/4339-standard.jpg?1253722671"
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"first_name": "Jonathan",
|
|
54
|
+
"url": "/users/29",
|
|
55
|
+
"last_name": "Carroll",
|
|
56
|
+
"image_url": "http://s3.amazonaws.com/static.gowalla.com/users/29-standard.jpg?1249506826"
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"first_name": "jenni",
|
|
60
|
+
"url": "/users/107",
|
|
61
|
+
"last_name": "carroll",
|
|
62
|
+
"image_url": "http://s3.amazonaws.com/static.gowalla.com/users/107-standard.jpg?1237418143"
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"first_name": "Tom",
|
|
66
|
+
"url": "/users/1665",
|
|
67
|
+
"last_name": "Walton",
|
|
68
|
+
"image_url": "http://s3.amazonaws.com/static.gowalla.com/users/1665-standard.jpg?1254614891"
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"first_name": "Josh",
|
|
72
|
+
"url": "/users/2",
|
|
73
|
+
"last_name": "Williams",
|
|
74
|
+
"image_url": "http://s3.amazonaws.com/static.gowalla.com/users/2-standard.jpg?1251170137"
|
|
75
|
+
}],
|
|
76
|
+
"creator": {
|
|
77
|
+
"first_name": "Keegan",
|
|
78
|
+
"url": "/users/5",
|
|
79
|
+
"last_name": "Jones",
|
|
80
|
+
"image_url": "http://s3.amazonaws.com/static.gowalla.com/users/5-standard.jpg?1253829277"
|
|
81
|
+
},
|
|
82
|
+
"list_image_url_320": '',
|
|
83
|
+
"items_url": "/spots/18568/items",
|
|
84
|
+
"spot_categories": [{
|
|
85
|
+
"name": "Mexican",
|
|
86
|
+
"url": "/categories/15"
|
|
87
|
+
}],
|
|
88
|
+
"strict_radius": false,
|
|
89
|
+
"name": "Wahoo's",
|
|
90
|
+
"map_bounds": {
|
|
91
|
+
"south": null,
|
|
92
|
+
"west": null,
|
|
93
|
+
"north": null,
|
|
94
|
+
"east": null
|
|
95
|
+
},
|
|
96
|
+
"phone_number": "1-816-914-5294",
|
|
97
|
+
"address": {
|
|
98
|
+
"street_address": "1234 Main St.",
|
|
99
|
+
"region": null,
|
|
100
|
+
"locality": null
|
|
101
|
+
},
|
|
102
|
+
"trending_level": 0,
|
|
103
|
+
"lat": 30.2695755256,
|
|
104
|
+
"users_count": 118,
|
|
105
|
+
"lng": -97.7495133877,
|
|
106
|
+
"url": "/spots/18568",
|
|
107
|
+
"twitter_username": "Wahoos512",
|
|
108
|
+
"top_10": [{
|
|
109
|
+
"checkins_count": "10",
|
|
110
|
+
"first_name": "Sandi",
|
|
111
|
+
"url": "/users/33",
|
|
112
|
+
"last_name": "Weldon",
|
|
113
|
+
"image_url": "http://s3.amazonaws.com/static.gowalla.com/users/33-standard.jpg?1237404524"
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
"checkins_count": "9",
|
|
117
|
+
"first_name": "Adam",
|
|
118
|
+
"url": "/users/3",
|
|
119
|
+
"last_name": "McManus",
|
|
120
|
+
"image_url": "http://s3.amazonaws.com/static.gowalla.com/users/3-standard.jpg?1236873337"
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
"checkins_count": "8",
|
|
124
|
+
"first_name": "Josh",
|
|
125
|
+
"url": "/users/2",
|
|
126
|
+
"last_name": "Williams",
|
|
127
|
+
"image_url": "http://s3.amazonaws.com/static.gowalla.com/users/2-standard.jpg?1251170137"
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
"checkins_count": "7",
|
|
131
|
+
"first_name": "Keegan",
|
|
132
|
+
"url": "/users/5",
|
|
133
|
+
"last_name": "Jones",
|
|
134
|
+
"image_url": "http://s3.amazonaws.com/static.gowalla.com/users/5-standard.jpg?1253829277"
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
"checkins_count": "7",
|
|
138
|
+
"first_name": "whurley",
|
|
139
|
+
"url": "/users/26700",
|
|
140
|
+
"last_name": "*",
|
|
141
|
+
"image_url": "http://s3.amazonaws.com/static.gowalla.com/users/26700-standard.jpg?1259180481"
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
"checkins_count": "5",
|
|
145
|
+
"first_name": "Phillip",
|
|
146
|
+
"url": "/users/12",
|
|
147
|
+
"last_name": "Bowden",
|
|
148
|
+
"image_url": "http://s3.amazonaws.com/static.gowalla.com/users/12-standard.jpg?1249405659"
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
"checkins_count": "4",
|
|
152
|
+
"first_name": "Jonathan",
|
|
153
|
+
"url": "/users/29",
|
|
154
|
+
"last_name": "Carroll",
|
|
155
|
+
"image_url": "http://s3.amazonaws.com/static.gowalla.com/users/29-standard.jpg?1249506826"
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
"checkins_count": "3",
|
|
159
|
+
"first_name": "kerissa",
|
|
160
|
+
"url": "/users/39192",
|
|
161
|
+
"last_name": "bearce",
|
|
162
|
+
"image_url": "http://s3.amazonaws.com/static.gowalla.com/users/39192-standard.jpg?1260759087"
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
"checkins_count": "3",
|
|
166
|
+
"first_name": "Chris",
|
|
167
|
+
"url": "/users/61797",
|
|
168
|
+
"last_name": "Marlow",
|
|
169
|
+
"image_url": "http://s3.amazonaws.com/static.gowalla.com/users/61797-standard.jpg?1264624166"
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
"checkins_count": "3",
|
|
173
|
+
"first_name": "John",
|
|
174
|
+
"url": "/users/6",
|
|
175
|
+
"last_name": "Marstall",
|
|
176
|
+
"image_url": "http://s3.amazonaws.com/static.gowalla.com/users/6-standard.jpg?1233854471"
|
|
177
|
+
}],
|
|
178
|
+
"created_at": "2009-07-23T17:58:14+00:00",
|
|
179
|
+
"description": "All the fun of fish tacos at the beach, without the sand in your shorts.",
|
|
180
|
+
"bookmarks_url": "/bookmarks?spot_id=18568",
|
|
181
|
+
"max_items_count": 10,
|
|
182
|
+
"image_url": "http://static.gowalla.com/categories/15-standard.png"
|
|
183
|
+
}
|
|
@@ -0,0 +1,818 @@
|
|
|
1
|
+
{
|
|
2
|
+
"spots": [{
|
|
3
|
+
"trending_level": 0,
|
|
4
|
+
"checkins_url": "/checkins?spot_id=43711",
|
|
5
|
+
"items_url": "/spots/43711/items",
|
|
6
|
+
"items_count": 11,
|
|
7
|
+
"strict_radius": false,
|
|
8
|
+
"name": "Gnomb Bar",
|
|
9
|
+
"address": {
|
|
10
|
+
"region": "TX",
|
|
11
|
+
"locality": "Austin"
|
|
12
|
+
},
|
|
13
|
+
"checkins_count": 62,
|
|
14
|
+
"lat": 30.2697851261,
|
|
15
|
+
"image_url": "http://static.gowalla.com/categories/28-standard.png",
|
|
16
|
+
"users_count": 48,
|
|
17
|
+
"lng": -97.7493430889,
|
|
18
|
+
"url": "/spots/43711",
|
|
19
|
+
"activity_url": "/spots/43711/events",
|
|
20
|
+
"radius_meters": 50
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"trending_level": 0,
|
|
24
|
+
"checkins_url": "/checkins?spot_id=18568",
|
|
25
|
+
"items_url": "/spots/18568/items",
|
|
26
|
+
"items_count": 12,
|
|
27
|
+
"strict_radius": false,
|
|
28
|
+
"name": "Wahoo's",
|
|
29
|
+
"address": {
|
|
30
|
+
"region": null,
|
|
31
|
+
"locality": null
|
|
32
|
+
},
|
|
33
|
+
"checkins_count": 303,
|
|
34
|
+
"lat": 30.2695755256,
|
|
35
|
+
"image_url": "http://static.gowalla.com/categories/15-standard.png",
|
|
36
|
+
"users_count": 118,
|
|
37
|
+
"lng": -97.7495133877,
|
|
38
|
+
"url": "/spots/18568",
|
|
39
|
+
"activity_url": "/spots/18568/events",
|
|
40
|
+
"radius_meters": 50
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"trending_level": 0,
|
|
44
|
+
"checkins_url": "/checkins?spot_id=23534",
|
|
45
|
+
"items_url": "/spots/23534/items",
|
|
46
|
+
"items_count": 10,
|
|
47
|
+
"strict_radius": false,
|
|
48
|
+
"name": "Katz's Deli",
|
|
49
|
+
"address": {
|
|
50
|
+
"region": "TX",
|
|
51
|
+
"locality": "Austin"
|
|
52
|
+
},
|
|
53
|
+
"checkins_count": 137,
|
|
54
|
+
"lat": 30.2698905167,
|
|
55
|
+
"image_url": "http://static.gowalla.com/categories/101-standard.png",
|
|
56
|
+
"users_count": 96,
|
|
57
|
+
"lng": -97.7493256,
|
|
58
|
+
"url": "/spots/23534",
|
|
59
|
+
"activity_url": "/spots/23534/events",
|
|
60
|
+
"radius_meters": 50
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"trending_level": 0,
|
|
64
|
+
"checkins_url": "/checkins?spot_id=161959",
|
|
65
|
+
"items_url": "/spots/161959/items",
|
|
66
|
+
"items_count": 4,
|
|
67
|
+
"strict_radius": false,
|
|
68
|
+
"name": "Hoffbrau Steaks",
|
|
69
|
+
"address": {
|
|
70
|
+
"region": "TX",
|
|
71
|
+
"locality": "Austin"
|
|
72
|
+
},
|
|
73
|
+
"checkins_count": 27,
|
|
74
|
+
"lat": 30.2697276667,
|
|
75
|
+
"image_url": "http://static.gowalla.com/categories/100-standard.png",
|
|
76
|
+
"users_count": 26,
|
|
77
|
+
"lng": -97.7490836833,
|
|
78
|
+
"url": "/spots/161959",
|
|
79
|
+
"activity_url": "/spots/161959/events",
|
|
80
|
+
"radius_meters": 50
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"trending_level": 0,
|
|
84
|
+
"checkins_url": "/checkins?spot_id=188353",
|
|
85
|
+
"items_url": "/spots/188353/items",
|
|
86
|
+
"items_count": 9,
|
|
87
|
+
"strict_radius": false,
|
|
88
|
+
"name": "DBs",
|
|
89
|
+
"address": {
|
|
90
|
+
"region": "TX",
|
|
91
|
+
"locality": "Austin"
|
|
92
|
+
},
|
|
93
|
+
"checkins_count": 74,
|
|
94
|
+
"lat": 30.2694087356,
|
|
95
|
+
"image_url": "http://static.gowalla.com/categories/28-standard.png",
|
|
96
|
+
"users_count": 50,
|
|
97
|
+
"lng": -97.7495884895,
|
|
98
|
+
"url": "/spots/188353",
|
|
99
|
+
"activity_url": "/spots/188353/events",
|
|
100
|
+
"radius_meters": 50
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
"trending_level": 0,
|
|
104
|
+
"checkins_url": "/checkins?spot_id=197305",
|
|
105
|
+
"items_url": "/spots/197305/items",
|
|
106
|
+
"items_count": 8,
|
|
107
|
+
"strict_radius": false,
|
|
108
|
+
"name": "Key Bar",
|
|
109
|
+
"address": {
|
|
110
|
+
"region": "TX",
|
|
111
|
+
"locality": "Austin"
|
|
112
|
+
},
|
|
113
|
+
"checkins_count": 50,
|
|
114
|
+
"lat": 30.2699702,
|
|
115
|
+
"image_url": "http://static.gowalla.com/categories/26-standard.png",
|
|
116
|
+
"users_count": 39,
|
|
117
|
+
"lng": -97.74914045,
|
|
118
|
+
"url": "/spots/197305",
|
|
119
|
+
"activity_url": "/spots/197305/events",
|
|
120
|
+
"radius_meters": 50
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
"trending_level": 0,
|
|
124
|
+
"checkins_url": "/checkins?spot_id=331619",
|
|
125
|
+
"items_url": "/spots/331619/items",
|
|
126
|
+
"items_count": 1,
|
|
127
|
+
"strict_radius": false,
|
|
128
|
+
"name": "Gattis Pizza",
|
|
129
|
+
"address": {
|
|
130
|
+
"region": "TX",
|
|
131
|
+
"locality": "Austin"
|
|
132
|
+
},
|
|
133
|
+
"checkins_count": 13,
|
|
134
|
+
"lat": 30.2699120667,
|
|
135
|
+
"image_url": "http://static.gowalla.com/categories/155-standard.png",
|
|
136
|
+
"users_count": 10,
|
|
137
|
+
"lng": -97.7497345833,
|
|
138
|
+
"url": "/spots/331619",
|
|
139
|
+
"activity_url": "/spots/331619/events",
|
|
140
|
+
"radius_meters": 50
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
"trending_level": 0,
|
|
144
|
+
"checkins_url": "/checkins?spot_id=19267",
|
|
145
|
+
"items_url": "/spots/19267/items",
|
|
146
|
+
"items_count": 10,
|
|
147
|
+
"strict_radius": false,
|
|
148
|
+
"name": "Walton's Fancy \u0026 Staple",
|
|
149
|
+
"address": {
|
|
150
|
+
"region": "TX",
|
|
151
|
+
"locality": "Austin"
|
|
152
|
+
},
|
|
153
|
+
"checkins_count": 160,
|
|
154
|
+
"lat": 30.2696496544,
|
|
155
|
+
"image_url": "http://static.gowalla.com/categories/110-standard.png",
|
|
156
|
+
"users_count": 80,
|
|
157
|
+
"lng": -97.7489876747,
|
|
158
|
+
"url": "/spots/19267",
|
|
159
|
+
"activity_url": "/spots/19267/events",
|
|
160
|
+
"radius_meters": 50
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
"trending_level": 0,
|
|
164
|
+
"checkins_url": "/checkins?spot_id=42124",
|
|
165
|
+
"items_url": "/spots/42124/items",
|
|
166
|
+
"items_count": 10,
|
|
167
|
+
"strict_radius": false,
|
|
168
|
+
"name": "Union Park",
|
|
169
|
+
"address": {
|
|
170
|
+
"region": "TX",
|
|
171
|
+
"locality": "Austin"
|
|
172
|
+
},
|
|
173
|
+
"checkins_count": 94,
|
|
174
|
+
"lat": 30.2698105017,
|
|
175
|
+
"image_url": "http://static.gowalla.com/categories/26-standard.png",
|
|
176
|
+
"users_count": 64,
|
|
177
|
+
"lng": -97.7489702462,
|
|
178
|
+
"url": "/spots/42124",
|
|
179
|
+
"activity_url": "/spots/42124/events",
|
|
180
|
+
"radius_meters": 50
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
"trending_level": 0,
|
|
184
|
+
"checkins_url": "/checkins?spot_id=293641",
|
|
185
|
+
"items_url": "/spots/293641/items",
|
|
186
|
+
"items_count": 10,
|
|
187
|
+
"strict_radius": false,
|
|
188
|
+
"name": "Kung Fu Saloon",
|
|
189
|
+
"address": {
|
|
190
|
+
"region": "TX",
|
|
191
|
+
"locality": "Austin"
|
|
192
|
+
},
|
|
193
|
+
"checkins_count": 89,
|
|
194
|
+
"lat": 30.2694643323,
|
|
195
|
+
"image_url": "http://static.gowalla.com/spots/293641-e7d7549d2a011279bb6c333cb5b7b83b.png",
|
|
196
|
+
"users_count": 62,
|
|
197
|
+
"lng": -97.7499103546,
|
|
198
|
+
"url": "/spots/293641",
|
|
199
|
+
"activity_url": "/spots/293641/events",
|
|
200
|
+
"radius_meters": 50
|
|
201
|
+
},
|
|
202
|
+
{
|
|
203
|
+
"trending_level": 0,
|
|
204
|
+
"checkins_url": "/checkins?spot_id=99231",
|
|
205
|
+
"items_url": "/spots/99231/items",
|
|
206
|
+
"items_count": 10,
|
|
207
|
+
"strict_radius": false,
|
|
208
|
+
"name": "Mother Egan's",
|
|
209
|
+
"address": {
|
|
210
|
+
"region": "TX",
|
|
211
|
+
"locality": "Austin"
|
|
212
|
+
},
|
|
213
|
+
"checkins_count": 77,
|
|
214
|
+
"lat": 30.2699606,
|
|
215
|
+
"image_url": "http://static.gowalla.com/categories/24-standard.png",
|
|
216
|
+
"users_count": 62,
|
|
217
|
+
"lng": -97.7498949,
|
|
218
|
+
"url": "/spots/99231",
|
|
219
|
+
"activity_url": "/spots/99231/events",
|
|
220
|
+
"radius_meters": 50
|
|
221
|
+
},
|
|
222
|
+
{
|
|
223
|
+
"trending_level": 0,
|
|
224
|
+
"checkins_url": "/checkins?spot_id=15478",
|
|
225
|
+
"items_url": "/spots/15478/items",
|
|
226
|
+
"items_count": 10,
|
|
227
|
+
"strict_radius": false,
|
|
228
|
+
"name": "Opal Divine's",
|
|
229
|
+
"address": {
|
|
230
|
+
"region": "TX",
|
|
231
|
+
"locality": "Austin"
|
|
232
|
+
},
|
|
233
|
+
"checkins_count": 190,
|
|
234
|
+
"lat": 30.2701946667,
|
|
235
|
+
"image_url": "http://static.gowalla.com/categories/24-standard.png",
|
|
236
|
+
"users_count": 106,
|
|
237
|
+
"lng": -97.7495684833,
|
|
238
|
+
"url": "/spots/15478",
|
|
239
|
+
"activity_url": "/spots/15478/events",
|
|
240
|
+
"radius_meters": 50
|
|
241
|
+
},
|
|
242
|
+
{
|
|
243
|
+
"trending_level": 0,
|
|
244
|
+
"checkins_url": "/checkins?spot_id=232536",
|
|
245
|
+
"items_url": "/spots/232536/items",
|
|
246
|
+
"items_count": 2,
|
|
247
|
+
"strict_radius": false,
|
|
248
|
+
"name": "Momo's",
|
|
249
|
+
"address": {
|
|
250
|
+
"region": "TX",
|
|
251
|
+
"locality": "Austin"
|
|
252
|
+
},
|
|
253
|
+
"checkins_count": 15,
|
|
254
|
+
"lat": 30.2701965,
|
|
255
|
+
"image_url": "http://static.gowalla.com/categories/32-standard.png",
|
|
256
|
+
"users_count": 13,
|
|
257
|
+
"lng": -97.7490722667,
|
|
258
|
+
"url": "/spots/232536",
|
|
259
|
+
"activity_url": "/spots/232536/events",
|
|
260
|
+
"radius_meters": 50
|
|
261
|
+
},
|
|
262
|
+
{
|
|
263
|
+
"trending_level": 0,
|
|
264
|
+
"checkins_url": "/checkins?spot_id=584664",
|
|
265
|
+
"items_url": "/spots/584664/items",
|
|
266
|
+
"items_count": 0,
|
|
267
|
+
"strict_radius": false,
|
|
268
|
+
"name": "Walton's Fancy and Staple",
|
|
269
|
+
"address": {
|
|
270
|
+
"region": "TX",
|
|
271
|
+
"locality": "Austin"
|
|
272
|
+
},
|
|
273
|
+
"checkins_count": 1,
|
|
274
|
+
"lat": 30.2697617,
|
|
275
|
+
"image_url": "http://static.gowalla.com/categories/110-standard.png",
|
|
276
|
+
"users_count": 1,
|
|
277
|
+
"lng": -97.748725,
|
|
278
|
+
"url": "/spots/584664",
|
|
279
|
+
"activity_url": "/spots/584664/events",
|
|
280
|
+
"radius_meters": 50
|
|
281
|
+
},
|
|
282
|
+
{
|
|
283
|
+
"trending_level": 0,
|
|
284
|
+
"checkins_url": "/checkins?spot_id=420315",
|
|
285
|
+
"items_url": "/spots/420315/items",
|
|
286
|
+
"items_count": 10,
|
|
287
|
+
"strict_radius": false,
|
|
288
|
+
"name": "Gowalla Incorporated",
|
|
289
|
+
"address": {
|
|
290
|
+
"region": "TX",
|
|
291
|
+
"locality": "Austin"
|
|
292
|
+
},
|
|
293
|
+
"checkins_count": 389,
|
|
294
|
+
"lat": 30.2691029532,
|
|
295
|
+
"image_url": "http://static.gowalla.com/spots/420315-790176c52df5c1b8c00a97fa57b81991.png",
|
|
296
|
+
"users_count": 58,
|
|
297
|
+
"lng": -97.7493953705,
|
|
298
|
+
"url": "/spots/420315",
|
|
299
|
+
"activity_url": "/spots/420315/events",
|
|
300
|
+
"radius_meters": 100
|
|
301
|
+
},
|
|
302
|
+
{
|
|
303
|
+
"trending_level": 0,
|
|
304
|
+
"checkins_url": "/checkins?spot_id=511509",
|
|
305
|
+
"items_url": "/spots/511509/items",
|
|
306
|
+
"items_count": 1,
|
|
307
|
+
"strict_radius": false,
|
|
308
|
+
"name": "fake",
|
|
309
|
+
"address": {
|
|
310
|
+
"region": "TX",
|
|
311
|
+
"locality": "Austin"
|
|
312
|
+
},
|
|
313
|
+
"checkins_count": 6,
|
|
314
|
+
"lat": 30.2691029532,
|
|
315
|
+
"image_url": "http://static.gowalla.com/categories/121-standard.png",
|
|
316
|
+
"users_count": 5,
|
|
317
|
+
"lng": -97.7493953705,
|
|
318
|
+
"url": "/spots/511509",
|
|
319
|
+
"activity_url": "/spots/511509/events",
|
|
320
|
+
"radius_meters": 50
|
|
321
|
+
},
|
|
322
|
+
{
|
|
323
|
+
"trending_level": 0,
|
|
324
|
+
"checkins_url": "/checkins?spot_id=51856",
|
|
325
|
+
"items_url": "/spots/51856/items",
|
|
326
|
+
"items_count": 10,
|
|
327
|
+
"strict_radius": false,
|
|
328
|
+
"name": "J Blacks Feel Good Lounge",
|
|
329
|
+
"address": {
|
|
330
|
+
"region": "TX",
|
|
331
|
+
"locality": "Austin"
|
|
332
|
+
},
|
|
333
|
+
"checkins_count": 101,
|
|
334
|
+
"lat": 30.2700961105,
|
|
335
|
+
"image_url": "http://static.gowalla.com/categories/56-standard.png",
|
|
336
|
+
"users_count": 82,
|
|
337
|
+
"lng": -97.750031834,
|
|
338
|
+
"url": "/spots/51856",
|
|
339
|
+
"activity_url": "/spots/51856/events",
|
|
340
|
+
"radius_meters": 50
|
|
341
|
+
},
|
|
342
|
+
{
|
|
343
|
+
"trending_level": 0,
|
|
344
|
+
"checkins_url": "/checkins?spot_id=26791",
|
|
345
|
+
"items_url": "/spots/26791/items",
|
|
346
|
+
"items_count": 5,
|
|
347
|
+
"strict_radius": false,
|
|
348
|
+
"name": "Annie's West",
|
|
349
|
+
"address": {
|
|
350
|
+
"region": "TX",
|
|
351
|
+
"locality": "Austin"
|
|
352
|
+
},
|
|
353
|
+
"checkins_count": 69,
|
|
354
|
+
"lat": 30.2702139,
|
|
355
|
+
"image_url": "http://static.gowalla.com/categories/26-standard.png",
|
|
356
|
+
"users_count": 52,
|
|
357
|
+
"lng": -97.7499479167,
|
|
358
|
+
"url": "/spots/26791",
|
|
359
|
+
"activity_url": "/spots/26791/events",
|
|
360
|
+
"radius_meters": 50
|
|
361
|
+
},
|
|
362
|
+
{
|
|
363
|
+
"trending_level": 0,
|
|
364
|
+
"checkins_url": "/checkins?spot_id=24166",
|
|
365
|
+
"items_url": "/spots/24166/items",
|
|
366
|
+
"items_count": 9,
|
|
367
|
+
"strict_radius": false,
|
|
368
|
+
"name": "Thai Tera",
|
|
369
|
+
"address": {
|
|
370
|
+
"region": "TX",
|
|
371
|
+
"locality": "Austin"
|
|
372
|
+
},
|
|
373
|
+
"checkins_count": 92,
|
|
374
|
+
"lat": 30.2696240333,
|
|
375
|
+
"image_url": "http://static.gowalla.com/categories/18-standard.png",
|
|
376
|
+
"users_count": 61,
|
|
377
|
+
"lng": -97.7485771,
|
|
378
|
+
"url": "/spots/24166",
|
|
379
|
+
"activity_url": "/spots/24166/events",
|
|
380
|
+
"radius_meters": 50
|
|
381
|
+
},
|
|
382
|
+
{
|
|
383
|
+
"trending_level": 0,
|
|
384
|
+
"checkins_url": "/checkins?spot_id=127465",
|
|
385
|
+
"items_url": "/spots/127465/items",
|
|
386
|
+
"items_count": 9,
|
|
387
|
+
"strict_radius": false,
|
|
388
|
+
"name": "Star Bar",
|
|
389
|
+
"address": {
|
|
390
|
+
"region": "TX",
|
|
391
|
+
"locality": "Austin"
|
|
392
|
+
},
|
|
393
|
+
"checkins_count": 47,
|
|
394
|
+
"lat": 30.2698255833,
|
|
395
|
+
"image_url": "http://static.gowalla.com/categories/26-standard.png",
|
|
396
|
+
"users_count": 40,
|
|
397
|
+
"lng": -97.7485237333,
|
|
398
|
+
"url": "/spots/127465",
|
|
399
|
+
"activity_url": "/spots/127465/events",
|
|
400
|
+
"radius_meters": 50
|
|
401
|
+
},
|
|
402
|
+
{
|
|
403
|
+
"trending_level": 0,
|
|
404
|
+
"checkins_url": "/checkins?spot_id=34714",
|
|
405
|
+
"items_url": "/spots/34714/items",
|
|
406
|
+
"items_count": 7,
|
|
407
|
+
"strict_radius": false,
|
|
408
|
+
"name": "Aquarelle",
|
|
409
|
+
"address": {
|
|
410
|
+
"region": "TX",
|
|
411
|
+
"locality": "Austin"
|
|
412
|
+
},
|
|
413
|
+
"checkins_count": 42,
|
|
414
|
+
"lat": 30.2705150833,
|
|
415
|
+
"image_url": "http://static.gowalla.com/categories/82-standard.png",
|
|
416
|
+
"users_count": 33,
|
|
417
|
+
"lng": -97.74937345,
|
|
418
|
+
"url": "/spots/34714",
|
|
419
|
+
"activity_url": "/spots/34714/events",
|
|
420
|
+
"radius_meters": 50
|
|
421
|
+
},
|
|
422
|
+
{
|
|
423
|
+
"trending_level": 0,
|
|
424
|
+
"checkins_url": "/checkins?spot_id=517690",
|
|
425
|
+
"items_url": "/spots/517690/items",
|
|
426
|
+
"items_count": 1,
|
|
427
|
+
"strict_radius": false,
|
|
428
|
+
"name": "Austin Urban Vet Center",
|
|
429
|
+
"address": {
|
|
430
|
+
"region": "TX",
|
|
431
|
+
"locality": "Austin"
|
|
432
|
+
},
|
|
433
|
+
"checkins_count": 3,
|
|
434
|
+
"lat": 30.2691939462,
|
|
435
|
+
"image_url": "http://static.gowalla.com/categories/217-standard.png",
|
|
436
|
+
"users_count": 2,
|
|
437
|
+
"lng": -97.7501848668,
|
|
438
|
+
"url": "/spots/517690",
|
|
439
|
+
"activity_url": "/spots/517690/events",
|
|
440
|
+
"radius_meters": 50
|
|
441
|
+
},
|
|
442
|
+
{
|
|
443
|
+
"trending_level": 0,
|
|
444
|
+
"checkins_url": "/checkins?spot_id=365814",
|
|
445
|
+
"items_url": "/spots/365814/items",
|
|
446
|
+
"items_count": 8,
|
|
447
|
+
"strict_radius": false,
|
|
448
|
+
"name": "Citibank",
|
|
449
|
+
"address": {
|
|
450
|
+
"region": "TX",
|
|
451
|
+
"locality": "Austin"
|
|
452
|
+
},
|
|
453
|
+
"checkins_count": 34,
|
|
454
|
+
"lat": 30.2689053667,
|
|
455
|
+
"image_url": "http://static.gowalla.com/categories/186-standard.png",
|
|
456
|
+
"users_count": 23,
|
|
457
|
+
"lng": -97.7498251,
|
|
458
|
+
"url": "/spots/365814",
|
|
459
|
+
"activity_url": "/spots/365814/events",
|
|
460
|
+
"radius_meters": 50
|
|
461
|
+
},
|
|
462
|
+
{
|
|
463
|
+
"trending_level": 0,
|
|
464
|
+
"checkins_url": "/checkins?spot_id=402099",
|
|
465
|
+
"items_url": "/spots/402099/items",
|
|
466
|
+
"items_count": 6,
|
|
467
|
+
"strict_radius": false,
|
|
468
|
+
"name": "Austin Dirty Dog",
|
|
469
|
+
"address": {
|
|
470
|
+
"region": "TX",
|
|
471
|
+
"locality": "Austin"
|
|
472
|
+
},
|
|
473
|
+
"checkins_count": 20,
|
|
474
|
+
"lat": 30.2689657735,
|
|
475
|
+
"image_url": "http://static.gowalla.com/categories/173-standard.png",
|
|
476
|
+
"users_count": 17,
|
|
477
|
+
"lng": -97.7501113871,
|
|
478
|
+
"url": "/spots/402099",
|
|
479
|
+
"activity_url": "/spots/402099/events",
|
|
480
|
+
"radius_meters": 50
|
|
481
|
+
},
|
|
482
|
+
{
|
|
483
|
+
"trending_level": 0,
|
|
484
|
+
"checkins_url": "/checkins?spot_id=9510",
|
|
485
|
+
"items_url": "/spots/9510/items",
|
|
486
|
+
"items_count": 10,
|
|
487
|
+
"strict_radius": false,
|
|
488
|
+
"name": "Molotov",
|
|
489
|
+
"address": {
|
|
490
|
+
"region": "TX",
|
|
491
|
+
"locality": "Austin"
|
|
492
|
+
},
|
|
493
|
+
"checkins_count": 193,
|
|
494
|
+
"lat": 30.270083,
|
|
495
|
+
"image_url": "http://static.gowalla.com/categories/26-standard.png",
|
|
496
|
+
"users_count": 102,
|
|
497
|
+
"lng": -97.750427,
|
|
498
|
+
"url": "/spots/9510",
|
|
499
|
+
"activity_url": "/spots/9510/events",
|
|
500
|
+
"radius_meters": 50
|
|
501
|
+
},
|
|
502
|
+
{
|
|
503
|
+
"trending_level": 0,
|
|
504
|
+
"checkins_url": "/checkins?spot_id=78290",
|
|
505
|
+
"items_url": "/spots/78290/items",
|
|
506
|
+
"items_count": 10,
|
|
507
|
+
"strict_radius": false,
|
|
508
|
+
"name": "One Taco",
|
|
509
|
+
"address": {
|
|
510
|
+
"region": "TX",
|
|
511
|
+
"locality": "Austin"
|
|
512
|
+
},
|
|
513
|
+
"checkins_count": 101,
|
|
514
|
+
"lat": 30.269767797,
|
|
515
|
+
"image_url": "http://static.gowalla.com/categories/189-standard.png",
|
|
516
|
+
"users_count": 42,
|
|
517
|
+
"lng": -97.7482661605,
|
|
518
|
+
"url": "/spots/78290",
|
|
519
|
+
"activity_url": "/spots/78290/events",
|
|
520
|
+
"radius_meters": 50
|
|
521
|
+
},
|
|
522
|
+
{
|
|
523
|
+
"trending_level": 0,
|
|
524
|
+
"checkins_url": "/checkins?spot_id=41937",
|
|
525
|
+
"items_url": "/spots/41937/items",
|
|
526
|
+
"items_count": 10,
|
|
527
|
+
"strict_radius": false,
|
|
528
|
+
"name": "The Ranch",
|
|
529
|
+
"address": {
|
|
530
|
+
"region": "TX",
|
|
531
|
+
"locality": "Austin"
|
|
532
|
+
},
|
|
533
|
+
"checkins_count": 72,
|
|
534
|
+
"lat": 30.2701632167,
|
|
535
|
+
"image_url": "http://static.gowalla.com/categories/24-standard.png",
|
|
536
|
+
"users_count": 63,
|
|
537
|
+
"lng": -97.7504193,
|
|
538
|
+
"url": "/spots/41937",
|
|
539
|
+
"activity_url": "/spots/41937/events",
|
|
540
|
+
"radius_meters": 50
|
|
541
|
+
},
|
|
542
|
+
{
|
|
543
|
+
"trending_level": 0,
|
|
544
|
+
"checkins_url": "/checkins?spot_id=31324",
|
|
545
|
+
"items_url": "/spots/31324/items",
|
|
546
|
+
"items_count": 10,
|
|
547
|
+
"strict_radius": false,
|
|
548
|
+
"name": "Little Woodrow's",
|
|
549
|
+
"address": {
|
|
550
|
+
"region": "TX",
|
|
551
|
+
"locality": "Austin"
|
|
552
|
+
},
|
|
553
|
+
"checkins_count": 98,
|
|
554
|
+
"lat": 30.2695945667,
|
|
555
|
+
"image_url": "http://static.gowalla.com/categories/24-standard.png",
|
|
556
|
+
"users_count": 64,
|
|
557
|
+
"lng": -97.7481275333,
|
|
558
|
+
"url": "/spots/31324",
|
|
559
|
+
"activity_url": "/spots/31324/events",
|
|
560
|
+
"radius_meters": 50
|
|
561
|
+
},
|
|
562
|
+
{
|
|
563
|
+
"trending_level": 0,
|
|
564
|
+
"checkins_url": "/checkins?spot_id=247268",
|
|
565
|
+
"items_url": "/spots/247268/items",
|
|
566
|
+
"items_count": 1,
|
|
567
|
+
"strict_radius": false,
|
|
568
|
+
"name": "Rossocorp",
|
|
569
|
+
"address": {
|
|
570
|
+
"region": "TX",
|
|
571
|
+
"locality": "Austin"
|
|
572
|
+
},
|
|
573
|
+
"checkins_count": 10,
|
|
574
|
+
"lat": 30.2701861833,
|
|
575
|
+
"image_url": "http://static.gowalla.com/categories/121-standard.png",
|
|
576
|
+
"users_count": 6,
|
|
577
|
+
"lng": -97.7482349167,
|
|
578
|
+
"url": "/spots/247268",
|
|
579
|
+
"activity_url": "/spots/247268/events",
|
|
580
|
+
"radius_meters": 50
|
|
581
|
+
},
|
|
582
|
+
{
|
|
583
|
+
"trending_level": 0,
|
|
584
|
+
"checkins_url": "/checkins?spot_id=430256",
|
|
585
|
+
"items_url": "/spots/430256/items",
|
|
586
|
+
"items_count": 0,
|
|
587
|
+
"strict_radius": false,
|
|
588
|
+
"name": "Roscoe Properties",
|
|
589
|
+
"address": {
|
|
590
|
+
"region": "TX",
|
|
591
|
+
"locality": "Austin"
|
|
592
|
+
},
|
|
593
|
+
"checkins_count": 2,
|
|
594
|
+
"lat": 30.2705535291,
|
|
595
|
+
"image_url": "http://static.gowalla.com/categories/57-standard.png",
|
|
596
|
+
"users_count": 2,
|
|
597
|
+
"lng": -97.7483826211,
|
|
598
|
+
"url": "/spots/430256",
|
|
599
|
+
"activity_url": "/spots/430256/events",
|
|
600
|
+
"radius_meters": 50
|
|
601
|
+
},
|
|
602
|
+
{
|
|
603
|
+
"trending_level": 0,
|
|
604
|
+
"checkins_url": "/checkins?spot_id=425629",
|
|
605
|
+
"items_url": "/spots/425629/items",
|
|
606
|
+
"items_count": 0,
|
|
607
|
+
"strict_radius": false,
|
|
608
|
+
"name": "Salon Bloom",
|
|
609
|
+
"address": {
|
|
610
|
+
"region": "TX",
|
|
611
|
+
"locality": "Austin"
|
|
612
|
+
},
|
|
613
|
+
"checkins_count": 3,
|
|
614
|
+
"lat": 30.2709336214,
|
|
615
|
+
"image_url": "http://static.gowalla.com/categories/117-standard.png",
|
|
616
|
+
"users_count": 3,
|
|
617
|
+
"lng": -97.7492674039,
|
|
618
|
+
"url": "/spots/425629",
|
|
619
|
+
"activity_url": "/spots/425629/events",
|
|
620
|
+
"radius_meters": 50
|
|
621
|
+
},
|
|
622
|
+
{
|
|
623
|
+
"trending_level": 0,
|
|
624
|
+
"checkins_url": "/checkins?spot_id=18328",
|
|
625
|
+
"items_url": "/spots/18328/items",
|
|
626
|
+
"items_count": 10,
|
|
627
|
+
"strict_radius": false,
|
|
628
|
+
"name": "Ranch 616",
|
|
629
|
+
"address": {
|
|
630
|
+
"region": "TX",
|
|
631
|
+
"locality": "Austin"
|
|
632
|
+
},
|
|
633
|
+
"checkins_count": 114,
|
|
634
|
+
"lat": 30.27055195,
|
|
635
|
+
"image_url": "http://static.gowalla.com/categories/100-standard.png",
|
|
636
|
+
"users_count": 60,
|
|
637
|
+
"lng": -97.7483066333,
|
|
638
|
+
"url": "/spots/18328",
|
|
639
|
+
"activity_url": "/spots/18328/events",
|
|
640
|
+
"radius_meters": 50
|
|
641
|
+
},
|
|
642
|
+
{
|
|
643
|
+
"trending_level": 0,
|
|
644
|
+
"checkins_url": "/checkins?spot_id=330736",
|
|
645
|
+
"items_url": "/spots/330736/items",
|
|
646
|
+
"items_count": 2,
|
|
647
|
+
"strict_radius": false,
|
|
648
|
+
"name": "Favorite Liquor",
|
|
649
|
+
"address": {
|
|
650
|
+
"region": "TX",
|
|
651
|
+
"locality": "Austin"
|
|
652
|
+
},
|
|
653
|
+
"checkins_count": 9,
|
|
654
|
+
"lat": 30.2702552333,
|
|
655
|
+
"image_url": "http://static.gowalla.com/categories/54-standard.png",
|
|
656
|
+
"users_count": 8,
|
|
657
|
+
"lng": -97.7507995167,
|
|
658
|
+
"url": "/spots/330736",
|
|
659
|
+
"activity_url": "/spots/330736/events",
|
|
660
|
+
"radius_meters": 50
|
|
661
|
+
},
|
|
662
|
+
{
|
|
663
|
+
"trending_level": 0,
|
|
664
|
+
"checkins_url": "/checkins?spot_id=13340",
|
|
665
|
+
"items_url": "/spots/13340/items",
|
|
666
|
+
"items_count": 10,
|
|
667
|
+
"strict_radius": false,
|
|
668
|
+
"name": "Frank \u0026 Angie's",
|
|
669
|
+
"address": {
|
|
670
|
+
"region": "TX",
|
|
671
|
+
"locality": "Austin"
|
|
672
|
+
},
|
|
673
|
+
"checkins_count": 87,
|
|
674
|
+
"lat": 30.27003765,
|
|
675
|
+
"image_url": "http://static.gowalla.com/categories/155-standard.png",
|
|
676
|
+
"users_count": 64,
|
|
677
|
+
"lng": -97.7509403167,
|
|
678
|
+
"url": "/spots/13340",
|
|
679
|
+
"activity_url": "/spots/13340/events",
|
|
680
|
+
"radius_meters": 50
|
|
681
|
+
},
|
|
682
|
+
{
|
|
683
|
+
"trending_level": 0,
|
|
684
|
+
"checkins_url": "/checkins?spot_id=195817",
|
|
685
|
+
"items_url": "/spots/195817/items",
|
|
686
|
+
"items_count": 3,
|
|
687
|
+
"strict_radius": false,
|
|
688
|
+
"name": "Aziz Salon \u0026 Day Spa",
|
|
689
|
+
"address": {
|
|
690
|
+
"region": "TX",
|
|
691
|
+
"locality": "Austin"
|
|
692
|
+
},
|
|
693
|
+
"checkins_count": 11,
|
|
694
|
+
"lat": 30.2709181789,
|
|
695
|
+
"image_url": "http://static.gowalla.com/categories/117-standard.png",
|
|
696
|
+
"users_count": 6,
|
|
697
|
+
"lng": -97.7501431539,
|
|
698
|
+
"url": "/spots/195817",
|
|
699
|
+
"activity_url": "/spots/195817/events",
|
|
700
|
+
"radius_meters": 50
|
|
701
|
+
},
|
|
702
|
+
{
|
|
703
|
+
"trending_level": 0,
|
|
704
|
+
"checkins_url": "/checkins?spot_id=253551",
|
|
705
|
+
"items_url": "/spots/253551/items",
|
|
706
|
+
"items_count": 4,
|
|
707
|
+
"strict_radius": false,
|
|
708
|
+
"name": "Austin Wine Merchant",
|
|
709
|
+
"address": {
|
|
710
|
+
"region": "TX",
|
|
711
|
+
"locality": "Austin"
|
|
712
|
+
},
|
|
713
|
+
"checkins_count": 9,
|
|
714
|
+
"lat": 30.26965945,
|
|
715
|
+
"image_url": "http://static.gowalla.com/categories/106-standard.png",
|
|
716
|
+
"users_count": 9,
|
|
717
|
+
"lng": -97.74780505,
|
|
718
|
+
"url": "/spots/253551",
|
|
719
|
+
"activity_url": "/spots/253551/events",
|
|
720
|
+
"radius_meters": 50
|
|
721
|
+
},
|
|
722
|
+
{
|
|
723
|
+
"trending_level": 0,
|
|
724
|
+
"checkins_url": "/checkins?spot_id=18268",
|
|
725
|
+
"items_url": "/spots/18268/items",
|
|
726
|
+
"items_count": 10,
|
|
727
|
+
"strict_radius": false,
|
|
728
|
+
"name": "404 Rio Grande",
|
|
729
|
+
"address": {
|
|
730
|
+
"region": "TX",
|
|
731
|
+
"locality": "Austin"
|
|
732
|
+
},
|
|
733
|
+
"checkins_count": 189,
|
|
734
|
+
"lat": 30.2686674434,
|
|
735
|
+
"image_url": "http://static.gowalla.com/categories/20-standard.png",
|
|
736
|
+
"users_count": 53,
|
|
737
|
+
"lng": -97.7505433559,
|
|
738
|
+
"url": "/spots/18268",
|
|
739
|
+
"activity_url": "/spots/18268/events",
|
|
740
|
+
"radius_meters": 75
|
|
741
|
+
},
|
|
742
|
+
{
|
|
743
|
+
"trending_level": 0,
|
|
744
|
+
"checkins_url": "/checkins?spot_id=492714",
|
|
745
|
+
"items_url": "/spots/492714/items",
|
|
746
|
+
"items_count": 1,
|
|
747
|
+
"strict_radius": false,
|
|
748
|
+
"name": "Royal Blue Grocery",
|
|
749
|
+
"address": {
|
|
750
|
+
"region": "TX",
|
|
751
|
+
"locality": "Austin"
|
|
752
|
+
},
|
|
753
|
+
"checkins_count": 9,
|
|
754
|
+
"lat": 30.2687293,
|
|
755
|
+
"image_url": "http://static.gowalla.com/categories/106-standard.png",
|
|
756
|
+
"users_count": 9,
|
|
757
|
+
"lng": -97.7506149,
|
|
758
|
+
"url": "/spots/492714",
|
|
759
|
+
"activity_url": "/spots/492714/events",
|
|
760
|
+
"radius_meters": 50
|
|
761
|
+
},
|
|
762
|
+
{
|
|
763
|
+
"trending_level": 0,
|
|
764
|
+
"checkins_url": "/checkins?spot_id=253301",
|
|
765
|
+
"items_url": "/spots/253301/items",
|
|
766
|
+
"items_count": 4,
|
|
767
|
+
"strict_radius": false,
|
|
768
|
+
"name": "Optique Eyewear",
|
|
769
|
+
"address": {
|
|
770
|
+
"region": "TX",
|
|
771
|
+
"locality": "Austin"
|
|
772
|
+
},
|
|
773
|
+
"checkins_count": 13,
|
|
774
|
+
"lat": 30.2683286412,
|
|
775
|
+
"image_url": "http://static.gowalla.com/categories/210-standard.png",
|
|
776
|
+
"users_count": 13,
|
|
777
|
+
"lng": -97.748759264,
|
|
778
|
+
"url": "/spots/253301",
|
|
779
|
+
"activity_url": "/spots/253301/events",
|
|
780
|
+
"radius_meters": 50
|
|
781
|
+
},
|
|
782
|
+
{
|
|
783
|
+
"trending_level": 0,
|
|
784
|
+
"checkins_url": "/checkins?spot_id=324054",
|
|
785
|
+
"items_url": "/spots/324054/items",
|
|
786
|
+
"items_count": 4,
|
|
787
|
+
"strict_radius": false,
|
|
788
|
+
"name": "Miller Blueprint",
|
|
789
|
+
"address": {
|
|
790
|
+
"region": "TX",
|
|
791
|
+
"locality": "Austin"
|
|
792
|
+
},
|
|
793
|
+
"checkins_count": 10,
|
|
794
|
+
"lat": 30.2692077167,
|
|
795
|
+
"image_url": "http://static.gowalla.com/categories/163-standard.png",
|
|
796
|
+
"users_count": 10,
|
|
797
|
+
"lng": -97.7477555,
|
|
798
|
+
"url": "/spots/324054",
|
|
799
|
+
"activity_url": "/spots/324054/events",
|
|
800
|
+
"radius_meters": 50
|
|
801
|
+
}],
|
|
802
|
+
"groups": [{
|
|
803
|
+
"name": "SXSW 2010",
|
|
804
|
+
"image_url": "http://www.gowalla.com/images/featured_36.png",
|
|
805
|
+
"spots_count": 5,
|
|
806
|
+
"updated_at": "2010/02/23 00:16:53 +0000",
|
|
807
|
+
"url": "/spots?in_group=1",
|
|
808
|
+
"tag": "sxsw",
|
|
809
|
+
"starts_at": "2010/02/22 00:16:53 +0000",
|
|
810
|
+
"lng": -97.740119,
|
|
811
|
+
"id": 1,
|
|
812
|
+
"list_image_url_320": "http://static.gowalla.com/new_sxsw_list_image.png",
|
|
813
|
+
"ends_at": "2010/04/23 00:16:53 +0000",
|
|
814
|
+
"lat": 30.262528,
|
|
815
|
+
"distance": "0.744004625029533",
|
|
816
|
+
"created_at": "2010/02/23 00:16:53 +0000"
|
|
817
|
+
}]
|
|
818
|
+
}
|