audio_vision 1.0.0.rc1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,73 @@
1
+ module AudioVision
2
+ class Post < Base
3
+
4
+ class << self
5
+ def api_namespace
6
+ :posts
7
+ end
8
+
9
+
10
+ # Find a Post by its URL.
11
+ # Returns a Post if success, otherwise nil.
12
+ #
13
+ # Example:
14
+ # AudioVision::Post.find_by_url(
15
+ # "http://audiovision.scpr.org/321/the-night-watch"
16
+ # )
17
+ #
18
+ # #=> #<AudioVision::Post>
19
+ def find_by_url(url)
20
+ response = client.get(endpoint("by_url"), :url => url)
21
+
22
+ if response.success?
23
+ new(response.body)
24
+ else
25
+ nil
26
+ end
27
+ end
28
+ end
29
+
30
+
31
+ attr_accessor \
32
+ :id,
33
+ :title,
34
+ :teaser,
35
+ :body,
36
+ :published_at,
37
+ :thumbnail,
38
+ :assets,
39
+ :category,
40
+ :byline,
41
+ :attributions,
42
+ :public_url
43
+
44
+
45
+ def initialize(attributes={})
46
+ @id = attributes["id"]
47
+ @title = attributes["title"]
48
+ @teaser = attributes["teaser"]
49
+ @body = attributes["body"]
50
+ @thumbnail = attributes["thumbnail"]
51
+ @byline = attributes["byline"]
52
+ @public_url = attributes["public_url"]
53
+
54
+ if attributes["category"]
55
+ @category = Category.new(attributes["category"])
56
+ end
57
+
58
+ if attributes["published_at"]
59
+ @published_at = Time.parse(attributes["published_at"].to_s)
60
+ end
61
+
62
+ @attributions = []
63
+ Array(attributes["attributions"]).each do |json|
64
+ @attributions << Attribution.new(json)
65
+ end
66
+
67
+ @assets = []
68
+ Array(attributes["assets"]).each do |json|
69
+ @assets << Asset.new(json)
70
+ end
71
+ end
72
+ end
73
+ end
@@ -0,0 +1,3 @@
1
+ module AudioVision
2
+ VERSION = "1.0.0.rc1"
3
+ end
@@ -0,0 +1,737 @@
1
+ {
2
+ "id": "billboard-1",
3
+ "published_at": "2013-05-10T18:11:00.000Z",
4
+ "layout": 3,
5
+ "updated_at": "2013-06-09T17:51:50.000Z",
6
+ "posts": [
7
+ {
8
+ "id": "posts:29",
9
+ "title": "The Color of Space",
10
+ "byline": "Maya Sugarman",
11
+ "published_at": "2013-05-09T17:48:12.000Z",
12
+ "teaser": "Siri Kaur's telescope photos excite the space nerd in all of us. Her photo subjects are millions of lightyears away, and they're stunningly psychedelic.",
13
+ "body": "<p>What color is space?</p>\r\n\r\n<p>That&#39;s all in the eye of the beholder. Images taken from many telescopes return black and white images or data that must be manipulated.</p>\r\n\r\n<p>Amateur and professional astrophotographers <a href=\"http://hubblesite.org/gallery/behind_the_pictures/meaning_of_color/index.php\" target=\"_blank\">spend hours&nbsp;colorizing images from across the galaxy</a>&nbsp;with exacting precision. They add color to the clouds of the <a href=\"http://www.nasa.gov/multimedia/imagegallery/image_feature_89.html\" target=\"_blank\">Horsehead&nbsp;Nebula</a>&nbsp;or&nbsp;paint the <a href=\"http://en.wikipedia.org/wiki/File:Unraveling_Saturn%27s_Rings.jpg\" target=\"_blank\">rings of Saturn</a>.</p>\r\n\r\n<p>Los Angeles-based art photographer&nbsp;<a href=\"http://www.sirikaur.com/\">Siri Kaur</a>&nbsp;takes a more impressionistic approach to the craft.</p>\r\n\r\n<p>Four or five times a year since 2007, she&#39;s driven 480 miles&nbsp;to the <a href=\"http://www.noao.edu/kpno/\" target=\"_blank\">Kitt Peak National Observatory</a> in Arizona to point her film camera at the sky.</p>\r\n\r\n<p>&quot;Their telescopes are the size of a house, they&#39;re enormous,&quot; Kaur said.</p>\r\n\r\n<p>Since the observatory sits at 7,000 feet, Kaur always has a little headache.</p>\r\n\r\n<p>Getting a good image off the telescopes is a challenge.&nbsp;It takes five to eight&nbsp;hours to expose one picture through the night. And after all this, sometimes Kaur may come back with nothing.</p>\r\n\r\n<p>If you have some time,&nbsp;this fascinating video of Astronaut Don Pettit explaining the challenge of photographing space is well worth it.</p>\r\n\r\n<p><iframe allowfullscreen=\"\" frameborder=\"0\" height=\"360\" mozallowfullscreen=\"\" src=\"http://player.vimeo.com/video/61083440?title=0&amp;byline=0&amp;portrait=0\" webkitallowfullscreen=\"\" width=\"640\"></iframe></p>\r\n\r\n<p>At first, Kaur developed her photos traditionally,&nbsp;then one day a slip changed everything.</p>\r\n\r\n<p>&quot;I started in the darkroom printing them, and I messed up one of the prints,&quot; she said.&nbsp;&quot;It was really off, and it looked amazing.&quot;</p>\r\n\r\n<p>Siri Kaur began experimenting, intentionally exposing the photos to light and sprinkling them with chemicals.</p>\r\n\r\n<p>She now names her astronomical works of distorted light and color after the images they conjure instead of the subjects they capture &ndash;&nbsp;&nbsp;a rose, clouds,&nbsp;the desert.</p>\r\n\r\n<p>Despite her distorting development&nbsp;process,&nbsp;Kaur is still amazed by the enormity of astrophotography.</p>\r\n\r\n<p>&quot;This light has been traveling for as long as the planet&#39;s been around,&quot; she said. &quot;It hits my camera, and I capture it.&quot;</p>\r\n\r\n<p>Siri Kaur is a photography professor at&nbsp;<a href=\"http://www.otis.edu\">Otis College&nbsp;of Art and Design</a>.</p>\r\n\r\n<p>You can see Kaur&#39;s work in person at the <a href=\"http://www.stephencohengallery.com/\">Cohen Gallery</a> from March 28 &ndash; May 11, as part of the show &quot;Falling From Great Heights.&quot;</p>\r\n",
14
+ "public_url": "http://audiovision.scpr.org/29/out-of-this-world",
15
+ "thumbnail": "<img src=\"http://a.scpr.org/i/a170f2d0aff1ef1449bc251f690ab23f/58205-lsquare.jpg\" width=\"188\" height=\"188\" alt=\"Siri Kaur - 1\" />",
16
+ "category": {
17
+ "id": 2,
18
+ "title": "Images",
19
+ "slug": "images",
20
+ "description": "The heartbeat of AudioVision. The best from our team of photojournalists — and discover images from the photographers who inspire them.",
21
+ "public_url": "http://audiovision.scpr.org/images"
22
+ },
23
+ "assets": [
24
+ {
25
+ "title": "Siri Kaur - 1",
26
+ "caption": "Clouds (Darkroom Experiment #1)",
27
+ "owner": "Siri Kaur/Stephen Cohen Gallery",
28
+ "thumbnail": {
29
+ "url": "http://a.scpr.org/i/a170f2d0aff1ef1449bc251f690ab23f/58205-lsquare.jpg",
30
+ "width": 188,
31
+ "height": 188
32
+ },
33
+ "small": {
34
+ "url": "http://a.scpr.org/i/a170f2d0aff1ef1449bc251f690ab23f/58205-small.jpg",
35
+ "width": 352,
36
+ "height": 450
37
+ },
38
+ "large": {
39
+ "url": "http://a.scpr.org/i/a170f2d0aff1ef1449bc251f690ab23f/58205-eight.jpg",
40
+ "width": 380,
41
+ "height": 486
42
+ },
43
+ "full": {
44
+ "url": "http://a.scpr.org/i/a170f2d0aff1ef1449bc251f690ab23f/58205-full.jpg",
45
+ "width": 675,
46
+ "height": 864
47
+ }
48
+ },
49
+ {
50
+ "title": "Siri Kaur - 2",
51
+ "caption": "Rose (Darkroom Experiment #2)",
52
+ "owner": "Siri Kaur/Stephen Cohen Gallery",
53
+ "thumbnail": {
54
+ "url": "http://a.scpr.org/i/f1a3540a80619360a4b557aac3ce9c76/58207-lsquare.jpg",
55
+ "width": 188,
56
+ "height": 188
57
+ },
58
+ "small": {
59
+ "url": "http://a.scpr.org/i/f1a3540a80619360a4b557aac3ce9c76/58207-small.jpg",
60
+ "width": 354,
61
+ "height": 450
62
+ },
63
+ "large": {
64
+ "url": "http://a.scpr.org/i/f1a3540a80619360a4b557aac3ce9c76/58207-eight.jpg",
65
+ "width": 383,
66
+ "height": 486
67
+ },
68
+ "full": {
69
+ "url": "http://a.scpr.org/i/f1a3540a80619360a4b557aac3ce9c76/58207-full.jpg",
70
+ "width": 680,
71
+ "height": 864
72
+ }
73
+ },
74
+ {
75
+ "title": "Siri Kaur - 3",
76
+ "caption": "Desert (Darkroom Experiment #1)",
77
+ "owner": "Siri Kaur/Stephen Cohen Gallery",
78
+ "thumbnail": {
79
+ "url": "http://a.scpr.org/i/3bab72af4aadcc145e19251fa2b98cb9/58206-lsquare.jpg",
80
+ "width": 188,
81
+ "height": 188
82
+ },
83
+ "small": {
84
+ "url": "http://a.scpr.org/i/3bab72af4aadcc145e19251fa2b98cb9/58206-small.jpg",
85
+ "width": 362,
86
+ "height": 450
87
+ },
88
+ "large": {
89
+ "url": "http://a.scpr.org/i/3bab72af4aadcc145e19251fa2b98cb9/58206-eight.jpg",
90
+ "width": 391,
91
+ "height": 486
92
+ },
93
+ "full": {
94
+ "url": "http://a.scpr.org/i/3bab72af4aadcc145e19251fa2b98cb9/58206-full.jpg",
95
+ "width": 692,
96
+ "height": 861
97
+ }
98
+ },
99
+ {
100
+ "title": "Siri Kaur - 4",
101
+ "caption": "Whiplash (Darkroom Experiment #3)",
102
+ "owner": "Siri Kaur/Stephen Cohen Gallery",
103
+ "thumbnail": {
104
+ "url": "http://a.scpr.org/i/61f1e8bd5630aa7e3f0a80cfd4d435de/58208-lsquare.jpg",
105
+ "width": 188,
106
+ "height": 188
107
+ },
108
+ "small": {
109
+ "url": "http://a.scpr.org/i/61f1e8bd5630aa7e3f0a80cfd4d435de/58208-small.jpg",
110
+ "width": 354,
111
+ "height": 450
112
+ },
113
+ "large": {
114
+ "url": "http://a.scpr.org/i/61f1e8bd5630aa7e3f0a80cfd4d435de/58208-eight.jpg",
115
+ "width": 382,
116
+ "height": 486
117
+ },
118
+ "full": {
119
+ "url": "http://a.scpr.org/i/61f1e8bd5630aa7e3f0a80cfd4d435de/58208-full.jpg",
120
+ "width": 805,
121
+ "height": 1024
122
+ }
123
+ },
124
+ {
125
+ "title": "Siri Kaur - 5",
126
+ "caption": "A Little Death (Darkroom Experiment #3)",
127
+ "owner": "Siri Kaur/Stephen Cohen Gallery",
128
+ "thumbnail": {
129
+ "url": "http://a.scpr.org/i/d0818390792a82a169ec49ae6b828967/58201-lsquare.jpg",
130
+ "width": 188,
131
+ "height": 188
132
+ },
133
+ "small": {
134
+ "url": "http://a.scpr.org/i/d0818390792a82a169ec49ae6b828967/58201-small.jpg",
135
+ "width": 360,
136
+ "height": 450
137
+ },
138
+ "large": {
139
+ "url": "http://a.scpr.org/i/d0818390792a82a169ec49ae6b828967/58201-eight.jpg",
140
+ "width": 389,
141
+ "height": 486
142
+ },
143
+ "full": {
144
+ "url": "http://a.scpr.org/i/d0818390792a82a169ec49ae6b828967/58201-full.jpg",
145
+ "width": 461,
146
+ "height": 576
147
+ }
148
+ },
149
+ {
150
+ "title": "Siri Kaur - 6",
151
+ "caption": "Frost (Darkroom Experiment #4)",
152
+ "owner": "Siri Kaur/Stephen Cohen Gallery",
153
+ "thumbnail": {
154
+ "url": "http://a.scpr.org/i/0551131eed6ebbacb479b4e4c6fe64eb/58203-lsquare.jpg",
155
+ "width": 188,
156
+ "height": 188
157
+ },
158
+ "small": {
159
+ "url": "http://a.scpr.org/i/0551131eed6ebbacb479b4e4c6fe64eb/58203-small.jpg",
160
+ "width": 306,
161
+ "height": 450
162
+ },
163
+ "large": {
164
+ "url": "http://a.scpr.org/i/0551131eed6ebbacb479b4e4c6fe64eb/58203-eight.jpg",
165
+ "width": 330,
166
+ "height": 486
167
+ },
168
+ "full": {
169
+ "url": "http://a.scpr.org/i/0551131eed6ebbacb479b4e4c6fe64eb/58203-full.jpg",
170
+ "width": 587,
171
+ "height": 864
172
+ }
173
+ },
174
+ {
175
+ "title": "Siri Kaur - 7",
176
+ "caption": "Hive (Darkroom Experiment #4)",
177
+ "owner": "Siri Kaur/Stephen Cohen Gallery",
178
+ "thumbnail": {
179
+ "url": "http://a.scpr.org/i/591d3382bec3e9d35a6df3b964793892/58204-lsquare.jpg",
180
+ "width": 188,
181
+ "height": 188
182
+ },
183
+ "small": {
184
+ "url": "http://a.scpr.org/i/591d3382bec3e9d35a6df3b964793892/58204-small.jpg",
185
+ "width": 284,
186
+ "height": 450
187
+ },
188
+ "large": {
189
+ "url": "http://a.scpr.org/i/591d3382bec3e9d35a6df3b964793892/58204-eight.jpg",
190
+ "width": 307,
191
+ "height": 486
192
+ },
193
+ "full": {
194
+ "url": "http://a.scpr.org/i/591d3382bec3e9d35a6df3b964793892/58204-full.jpg",
195
+ "width": 647,
196
+ "height": 1024
197
+ }
198
+ },
199
+ {
200
+ "title": "Siri Kaur - 8",
201
+ "caption": "Black Hole (Darkroom Experiment #4)",
202
+ "owner": "Siri Kaur/Stephen Cohen Gallery",
203
+ "thumbnail": {
204
+ "url": "http://a.scpr.org/i/7fdb7435e8ab78d6f5557eff96cfaec9/58202-lsquare.jpg",
205
+ "width": 188,
206
+ "height": 188
207
+ },
208
+ "small": {
209
+ "url": "http://a.scpr.org/i/7fdb7435e8ab78d6f5557eff96cfaec9/58202-small.jpg",
210
+ "width": 345,
211
+ "height": 450
212
+ },
213
+ "large": {
214
+ "url": "http://a.scpr.org/i/7fdb7435e8ab78d6f5557eff96cfaec9/58202-eight.jpg",
215
+ "width": 372,
216
+ "height": 486
217
+ },
218
+ "full": {
219
+ "url": "http://a.scpr.org/i/7fdb7435e8ab78d6f5557eff96cfaec9/58202-full.jpg",
220
+ "width": 662,
221
+ "height": 864
222
+ }
223
+ }
224
+ ],
225
+ "attributions": [
226
+ {
227
+ "name": "Maya Sugarman",
228
+ "url": "http://audiovision.scpr.org/about/maya-sugarman",
229
+ "role_text": "Author",
230
+ "role": 1
231
+ }
232
+ ]
233
+ },
234
+ {
235
+ "id": "posts:53",
236
+ "title": "This Is AudioVision",
237
+ "byline": "Grant Slater",
238
+ "published_at": "2013-04-16T23:31:34.000Z",
239
+ "teaser": "Welcome to our corner of the web for the visual side of public radio. Make yourself at home.",
240
+ "body": "<p>Welcome to AudioVision, our little corner of the Internet for exploring&nbsp;the world through images&nbsp;from Southern California and beyond.</p>\r\n\r\n<p>This site has three hosts, <a href=\"http://www.maeryan.com\" target=\"_blank\">Mae Ryan</a>, <a href=\"http://audiovision.scpr.org/92/follow-this-grantslater\">Grant Slater</a><a href=\"http://grant-slater.com/\"> </a>and <a href=\"http://www.mayasugarman.com/\">Maya Sugarman</a>. We post extra delights to&nbsp;<a href=\"http://twitter.com/audiovision\" target=\"_blank\">Twitter</a>, <a href=\"http://audiovision.tumblr.com/\" target=\"_blank\">Tumblr</a> and <a href=\"http://www.facebook.com/Audiovision\" target=\"_blank\">Facebook</a>. We play around on <a href=\"http://instagram.com/kpcc\">Instagram</a>, too.</p>\r\n\r\n<p>As photojournalists, we approach people in public nearly every day and ask to take their picture.</p>\r\n\r\n<p>This conversation always begins with some version of the phrase, &quot;My name is Grant, and I&#39;m a photographer for public radio.&quot; Nine times out of 10, the&nbsp;reply comes with a confused look:&nbsp;&quot;How do you take pictures for the radio?&quot;</p>\r\n\r\n<p>The short answer is &quot;for the website.&quot; But there&#39;s a longer version of this conversation, and it goes to the heart of what public radio does for listeners.</p>\r\n\r\n<p>Public radio is not a number on your radio dial. It&#39;s not even about radio.</p>\r\n\r\n<p>Public radio is an ethos. It&#39;s a way of viewing the world with curiosity and care. It&#39;s about making your life better through stories big and small.</p>\r\n\r\n<p>You know what that sounds like. You hear it on public radio stations across the country every day. But what does it look like? AudioVision is our attempt to find out.</p>\r\n\r\n<p>The digital world we&#39;ve created is a place exploding with eye candy, visual distractions that make getting anything done a near impossibility.</p>\r\n\r\n<p>In the same way that public radio filters the news of the day and brings you just the best, AudioVision will help you sort through the <a href=\"http://www.youtube.com/watch?feature=player_embedded&amp;v=VACbH_S5ZFo\" target=\"_blank\">cacophony of cat videos</a>.</p>\r\n\r\n<p>We constantly look to the online world for inspiration, and we&#39;d like to share that inspiration with you, alongside our work from Los Angeles and beyond.</p>\r\n\r\n<p>Southern California is the capital of global visual culture. This is the place where billion-dollar blockbusters get made, the place where YouTube studios are popping up to challenge the traditional tastemakers of Hollywood and the place where art, music, fashion and photography make the jump from niche to&nbsp;mainstream.</p>\r\n\r\n<p>Those ideas may start elsewhere, but all roads eventually lead to Los Angeles.</p>\r\n\r\n<p>Southern California itself&nbsp;is one of the most diverse regions&nbsp;on the planet. We live here. We&#39;ll show it to you.</p>\r\n\r\n<p>Here&#39;s what you can expect to find on&nbsp;AudioVision.</p>\r\n\r\n<ul>\r\n\t<li>We&#39;ll bring you <em>photos from Southern California and beyond</em>. We&#39;ll talk with&nbsp;image makers doing captivating&nbsp;work and share their work with you.</li>\r\n\t<li>Web video is evolving rapidly. We&#39;re <a href=\"http://audiovision.scpr.org/77/transactivations\" target=\"_blank\">part of that change</a>, and we keep close tabs on new and inspiring work.&nbsp;We&#39;ll watch <em>videos from across the web</em> so you don&#39;t have to and point you toward those that will inform and inspire you. Los Angeles is ground zero for the YouTube revolution and we&#39;re keeping close eye on the best.&nbsp;</li>\r\n\t<li><em>Photography is undergoing a social revolution</em> that is democratizing both the tools of the trade and the distribution of photography. There&#39;s never been a better time to be a&nbsp;photography addict, but the photos come in torrents. We&#39;ll enrich your life by steering&nbsp;your Instagram feed to new places. And we&#39;ll give you the smarts to take better photos yourself.</li>\r\n</ul>\r\n\r\n<p>We have a big basket full of ideas, and we hope you&#39;ll stick with us as we try some of them out.</p>\r\n\r\n<p>We view photography these days as a conversation. We want to see your photos as much as we want&nbsp;to show you ours.</p>\r\n\r\n<p>We work with <a href=\"http://instagram.com/igla\" target=\"_blank\">Instagram Lovers Anonymous</a> to hold a monthly Instagram Challenge on a theme, and we have more activities in the works.</p>\r\n\r\n<p>You can always tag any photo on Instagram #KPCC, and we&#39;ll find it. For your captures with bigger cameras,&nbsp;you can <a href=\"http://www.flickr.com/groups/audiovision/\" target=\"_blank\">submit photos to our Flickr pool</a>. We&#39;ll pick our favorites&nbsp;and use them on this site.</p>\r\n\r\n<p>Thanks you for taking the time to explore AudioVision, and we look forward to seeing where you&#39;ll take us. Let us know what you think by <a href=\"mailto:plee@scpr.org\">emailing us</a> or <a href=\"https://www.facebook.com/Audiovision\">commenting on our Facebook page.</a></p>\r\n",
241
+ "public_url": "http://audiovision.scpr.org/53/this-is-audiovision",
242
+ "thumbnail": "<img src=\"http://a.scpr.org/i/daf85d388cc45743d8ec548d8c1d5073/39576-lsquare.jpg\" width=\"188\" height=\"188\" alt=\"Venus Transit\" />",
243
+ "category": {
244
+ "id": 2,
245
+ "title": "Images",
246
+ "slug": "images",
247
+ "description": "The heartbeat of AudioVision. The best from our team of photojournalists — and discover images from the photographers who inspire them.",
248
+ "public_url": "http://audiovision.scpr.org/images"
249
+ },
250
+ "assets": [
251
+ {
252
+ "title": "Venus Transit",
253
+ "caption": "Kimberly Huber and her daughter Clarity, 4, view the transit of Venus on June 5, 2012 at Griffith Obervatory.",
254
+ "owner": "Grant Slater/KPCC",
255
+ "thumbnail": {
256
+ "url": "http://a.scpr.org/i/daf85d388cc45743d8ec548d8c1d5073/39576-lsquare.jpg",
257
+ "width": 188,
258
+ "height": 188
259
+ },
260
+ "small": {
261
+ "url": "http://a.scpr.org/i/daf85d388cc45743d8ec548d8c1d5073/39576-small.jpg",
262
+ "width": 450,
263
+ "height": 300
264
+ },
265
+ "large": {
266
+ "url": "http://a.scpr.org/i/daf85d388cc45743d8ec548d8c1d5073/39576-eight.jpg",
267
+ "width": 729,
268
+ "height": 486
269
+ },
270
+ "full": {
271
+ "url": "http://a.scpr.org/i/daf85d388cc45743d8ec548d8c1d5073/39576-full.jpg",
272
+ "width": 1024,
273
+ "height": 683
274
+ }
275
+ },
276
+ {
277
+ "title": "Frank Evans",
278
+ "caption": "Friends of Frank Evans, who was shot in South Central attend his funeral on April 23rd, 2012.",
279
+ "owner": "Mae Ryan/KPCC",
280
+ "thumbnail": {
281
+ "url": "http://a.scpr.org/i/c08b07524dd70c161810090f1c8354bc/52237-lsquare.jpg",
282
+ "width": 188,
283
+ "height": 188
284
+ },
285
+ "small": {
286
+ "url": "http://a.scpr.org/i/c08b07524dd70c161810090f1c8354bc/52237-small.jpg",
287
+ "width": 450,
288
+ "height": 300
289
+ },
290
+ "large": {
291
+ "url": "http://a.scpr.org/i/c08b07524dd70c161810090f1c8354bc/52237-eight.jpg",
292
+ "width": 729,
293
+ "height": 486
294
+ },
295
+ "full": {
296
+ "url": "http://a.scpr.org/i/c08b07524dd70c161810090f1c8354bc/52237-full.jpg",
297
+ "width": 1024,
298
+ "height": 683
299
+ }
300
+ },
301
+ {
302
+ "title": "Almond Farm Bees - 1",
303
+ "caption": "Dr. Gordon Wardell, beekeeper for Paramount Farms' almond farms in Lost Hills, Calif., pulls out a palate of rented honeybees. Paramount is the largest almond grower in the nation with 46,000 acres of almond trees across the San Joaquin Valley.",
304
+ "owner": "Maya Sugarman/KPCC",
305
+ "thumbnail": {
306
+ "url": "http://a.scpr.org/i/3f7ffae5b30af6b5514d72ccfa380107/56432-lsquare.jpg",
307
+ "width": 188,
308
+ "height": 188
309
+ },
310
+ "small": {
311
+ "url": "http://a.scpr.org/i/3f7ffae5b30af6b5514d72ccfa380107/56432-small.jpg",
312
+ "width": 450,
313
+ "height": 299
314
+ },
315
+ "large": {
316
+ "url": "http://a.scpr.org/i/3f7ffae5b30af6b5514d72ccfa380107/56432-eight.jpg",
317
+ "width": 730,
318
+ "height": 485
319
+ },
320
+ "full": {
321
+ "url": "http://a.scpr.org/i/3f7ffae5b30af6b5514d72ccfa380107/56432-full.jpg",
322
+ "width": 1024,
323
+ "height": 681
324
+ }
325
+ },
326
+ {
327
+ "title": "Nutcracker - 01",
328
+ "caption": "An instructor gets her student ready for a Nutcracker rehearsal at Westside Ballet in Santa Monica, Calif. ",
329
+ "owner": "Mae Ryan/KPCC",
330
+ "thumbnail": {
331
+ "url": "http://a.scpr.org/i/090a5e13b6299487380f59d8635ba4d1/52238-lsquare.jpg",
332
+ "width": 188,
333
+ "height": 188
334
+ },
335
+ "small": {
336
+ "url": "http://a.scpr.org/i/090a5e13b6299487380f59d8635ba4d1/52238-small.jpg",
337
+ "width": 450,
338
+ "height": 300
339
+ },
340
+ "large": {
341
+ "url": "http://a.scpr.org/i/090a5e13b6299487380f59d8635ba4d1/52238-eight.jpg",
342
+ "width": 729,
343
+ "height": 486
344
+ },
345
+ "full": {
346
+ "url": "http://a.scpr.org/i/090a5e13b6299487380f59d8635ba4d1/52238-full.jpg",
347
+ "width": 1024,
348
+ "height": 683
349
+ }
350
+ },
351
+ {
352
+ "title": "",
353
+ "caption": "Rudy and Mariana Darryanto before an immigration ceremony at the Los Angeles Convention Center in June. They live in Corona and Rudy owns a used car dealership in Riverside. They came to the United States as refugees when riots in 1998 targeted ethnic Chinese in their home country.",
354
+ "owner": "Grant Slater/KPCC",
355
+ "thumbnail": {
356
+ "url": "http://a.scpr.org/i/675f2156aecb063ed321f8d0562385ce/52253-lsquare.jpg",
357
+ "width": 188,
358
+ "height": 188
359
+ },
360
+ "small": {
361
+ "url": "http://a.scpr.org/i/675f2156aecb063ed321f8d0562385ce/52253-small.jpg",
362
+ "width": 450,
363
+ "height": 300
364
+ },
365
+ "large": {
366
+ "url": "http://a.scpr.org/i/675f2156aecb063ed321f8d0562385ce/52253-eight.jpg",
367
+ "width": 729,
368
+ "height": 486
369
+ },
370
+ "full": {
371
+ "url": "http://a.scpr.org/i/675f2156aecb063ed321f8d0562385ce/52253-full.jpg",
372
+ "width": 1024,
373
+ "height": 682
374
+ }
375
+ },
376
+ {
377
+ "title": "Ash Wednesday - 1",
378
+ "caption": "Mary Ann Laccabue, a staffer at Our Lady of Grace School participates in an 8 a.m. mass for Ash Wednesday at the school's parish in Encino on Feb. 13. The parish offered two morning services, a noon prayer service, and two evening services, including a Spanish-language mass.",
379
+ "owner": "Maya Sugarman/KPCC",
380
+ "thumbnail": {
381
+ "url": "http://a.scpr.org/i/b749fdb00579521e8b4503974a088e65/55074-lsquare.jpg",
382
+ "width": 188,
383
+ "height": 188
384
+ },
385
+ "small": {
386
+ "url": "http://a.scpr.org/i/b749fdb00579521e8b4503974a088e65/55074-small.jpg",
387
+ "width": 450,
388
+ "height": 300
389
+ },
390
+ "large": {
391
+ "url": "http://a.scpr.org/i/b749fdb00579521e8b4503974a088e65/55074-eight.jpg",
392
+ "width": 730,
393
+ "height": 486
394
+ },
395
+ "full": {
396
+ "url": "http://a.scpr.org/i/b749fdb00579521e8b4503974a088e65/55074-full.jpg",
397
+ "width": 1024,
398
+ "height": 682
399
+ }
400
+ },
401
+ {
402
+ "title": "Banda El Salvador - 3",
403
+ "caption": "Las Princesas Mayas accompany Banda El Salvador, performers in the Rose Parade, in Duarte, Calif. on December 30th, 2012 ",
404
+ "owner": "Mae Ryan/KPCC",
405
+ "thumbnail": {
406
+ "url": "http://a.scpr.org/i/b539dd357eb5e3496e6131795c01df3c/52914-lsquare.jpg",
407
+ "width": 188,
408
+ "height": 188
409
+ },
410
+ "small": {
411
+ "url": "http://a.scpr.org/i/b539dd357eb5e3496e6131795c01df3c/52914-small.jpg",
412
+ "width": 450,
413
+ "height": 300
414
+ },
415
+ "large": {
416
+ "url": "http://a.scpr.org/i/b539dd357eb5e3496e6131795c01df3c/52914-eight.jpg",
417
+ "width": 729,
418
+ "height": 486
419
+ },
420
+ "full": {
421
+ "url": "http://a.scpr.org/i/b539dd357eb5e3496e6131795c01df3c/52914-full.jpg",
422
+ "width": 1024,
423
+ "height": 683
424
+ }
425
+ },
426
+ {
427
+ "title": "Paralympics Runner",
428
+ "caption": "Katy Sullivan, a competitor in the 2012 Paralympic Games, was born without her legs and is one of two women with prosthetics above the knee to compete in the international competition.",
429
+ "owner": "Grant Slater/KPCC",
430
+ "thumbnail": {
431
+ "url": "http://a.scpr.org/i/db9c74dca1f50a9a5403a1512fc42bd6/46039-lsquare.jpg",
432
+ "width": 188,
433
+ "height": 188
434
+ },
435
+ "small": {
436
+ "url": "http://a.scpr.org/i/db9c74dca1f50a9a5403a1512fc42bd6/46039-small.jpg",
437
+ "width": 450,
438
+ "height": 300
439
+ },
440
+ "large": {
441
+ "url": "http://a.scpr.org/i/db9c74dca1f50a9a5403a1512fc42bd6/46039-eight.jpg",
442
+ "width": 729,
443
+ "height": 486
444
+ },
445
+ "full": {
446
+ "url": "http://a.scpr.org/i/db9c74dca1f50a9a5403a1512fc42bd6/46039-full.jpg",
447
+ "width": 1024,
448
+ "height": 682
449
+ }
450
+ },
451
+ {
452
+ "title": "WeHo Halloween - 1",
453
+ "caption": "Gerry Regan, left, and Denny Gerber dance during the start of the West Hollywood Halloween Carnaval on Santa Monica Boulevard.",
454
+ "owner": "Maya Sugarman/KPCC",
455
+ "thumbnail": {
456
+ "url": "http://a.scpr.org/i/c75b39963753d6005158a0aed33657b6/49960-lsquare.jpg",
457
+ "width": 188,
458
+ "height": 188
459
+ },
460
+ "small": {
461
+ "url": "http://a.scpr.org/i/c75b39963753d6005158a0aed33657b6/49960-small.jpg",
462
+ "width": 450,
463
+ "height": 329
464
+ },
465
+ "large": {
466
+ "url": "http://a.scpr.org/i/c75b39963753d6005158a0aed33657b6/49960-eight.jpg",
467
+ "width": 666,
468
+ "height": 486
469
+ },
470
+ "full": {
471
+ "url": "http://a.scpr.org/i/c75b39963753d6005158a0aed33657b6/49960-full.jpg",
472
+ "width": 1024,
473
+ "height": 748
474
+ }
475
+ },
476
+ {
477
+ "title": "Lancaster Zombie Walk - 1",
478
+ "caption": "Milania and Beverly Halabi, center, begin a Zombie Walk along Lancaster Boulevard.",
479
+ "owner": "Maya Sugarman/KPCC",
480
+ "thumbnail": {
481
+ "url": "http://a.scpr.org/i/6212d9faf61a91605ae8bcf566a9dd02/49678-lsquare.jpg",
482
+ "width": 188,
483
+ "height": 188
484
+ },
485
+ "small": {
486
+ "url": "http://a.scpr.org/i/6212d9faf61a91605ae8bcf566a9dd02/49678-small.jpg",
487
+ "width": 450,
488
+ "height": 312
489
+ },
490
+ "large": {
491
+ "url": "http://a.scpr.org/i/6212d9faf61a91605ae8bcf566a9dd02/49678-eight.jpg",
492
+ "width": 701,
493
+ "height": 486
494
+ },
495
+ "full": {
496
+ "url": "http://a.scpr.org/i/6212d9faf61a91605ae8bcf566a9dd02/49678-full.jpg",
497
+ "width": 1024,
498
+ "height": 710
499
+ }
500
+ },
501
+ {
502
+ "title": "Wondercon 2013 Anaheim",
503
+ "caption": "Kids play with an R2 M5 at WonderCon 2013, an annual comic book, science fiction and film convention in Anaheim, Calif.",
504
+ "owner": "Mae Ryan/KPCC",
505
+ "thumbnail": {
506
+ "url": "http://a.scpr.org/i/45e2bff053a055797811a2610a9b1e98/59501-lsquare.jpg",
507
+ "width": 188,
508
+ "height": 188
509
+ },
510
+ "small": {
511
+ "url": "http://a.scpr.org/i/45e2bff053a055797811a2610a9b1e98/59501-small.jpg",
512
+ "width": 450,
513
+ "height": 300
514
+ },
515
+ "large": {
516
+ "url": "http://a.scpr.org/i/45e2bff053a055797811a2610a9b1e98/59501-eight.jpg",
517
+ "width": 729,
518
+ "height": 486
519
+ },
520
+ "full": {
521
+ "url": "http://a.scpr.org/i/45e2bff053a055797811a2610a9b1e98/59501-full.jpg",
522
+ "width": 1024,
523
+ "height": 683
524
+ }
525
+ },
526
+ {
527
+ "title": "Pole Dancing Convention",
528
+ "caption": "Mary Caryl of Northridge participates in a pole dancing master class the International Pole Dancing Convention.",
529
+ "owner": "Grant Slater/KPCC",
530
+ "thumbnail": {
531
+ "url": "http://a.scpr.org/i/2ebd16dc54822b58fd10247b00df6034/41145-lsquare.jpg",
532
+ "width": 188,
533
+ "height": 188
534
+ },
535
+ "small": {
536
+ "url": "http://a.scpr.org/i/2ebd16dc54822b58fd10247b00df6034/41145-small.jpg",
537
+ "width": 450,
538
+ "height": 300
539
+ },
540
+ "large": {
541
+ "url": "http://a.scpr.org/i/2ebd16dc54822b58fd10247b00df6034/41145-eight.jpg",
542
+ "width": 729,
543
+ "height": 486
544
+ },
545
+ "full": {
546
+ "url": "http://a.scpr.org/i/2ebd16dc54822b58fd10247b00df6034/41145-full.jpg",
547
+ "width": 1024,
548
+ "height": 682
549
+ }
550
+ },
551
+ {
552
+ "title": "KCON K-Pop Convention",
553
+ "caption": "Lexie Collins, 11, writes on a graffiti wall in the center of the Verizon Amphitheater during KCON, a K-pop convention.",
554
+ "owner": "Grant Slater/KPCC",
555
+ "thumbnail": {
556
+ "url": "http://a.scpr.org/i/77baedbaa698b0c82c496312ec28fa8f/48933-lsquare.jpg",
557
+ "width": 188,
558
+ "height": 188
559
+ },
560
+ "small": {
561
+ "url": "http://a.scpr.org/i/77baedbaa698b0c82c496312ec28fa8f/48933-small.jpg",
562
+ "width": 450,
563
+ "height": 300
564
+ },
565
+ "large": {
566
+ "url": "http://a.scpr.org/i/77baedbaa698b0c82c496312ec28fa8f/48933-eight.jpg",
567
+ "width": 729,
568
+ "height": 486
569
+ },
570
+ "full": {
571
+ "url": "http://a.scpr.org/i/77baedbaa698b0c82c496312ec28fa8f/48933-full.jpg",
572
+ "width": 1024,
573
+ "height": 682
574
+ }
575
+ },
576
+ {
577
+ "title": "Endeavour First Night",
578
+ "caption": "The space shuttle Endeavour leaves Los Angeles International Airport on its way to the California Science Center.",
579
+ "owner": "Grant Slater/KPCC",
580
+ "thumbnail": {
581
+ "url": "http://a.scpr.org/i/c81547a3d264b97a08b73260966f4615/48726-lsquare.jpg",
582
+ "width": 188,
583
+ "height": 188
584
+ },
585
+ "small": {
586
+ "url": "http://a.scpr.org/i/c81547a3d264b97a08b73260966f4615/48726-small.jpg",
587
+ "width": 450,
588
+ "height": 300
589
+ },
590
+ "large": {
591
+ "url": "http://a.scpr.org/i/c81547a3d264b97a08b73260966f4615/48726-eight.jpg",
592
+ "width": 729,
593
+ "height": 486
594
+ },
595
+ "full": {
596
+ "url": "http://a.scpr.org/i/c81547a3d264b97a08b73260966f4615/48726-full.jpg",
597
+ "width": 1024,
598
+ "height": 682
599
+ }
600
+ },
601
+ {
602
+ "title": "Michael Crain Funeral Dorner Shooting Riverside Funeral",
603
+ "caption": "Riverside Police Officers watch airplanes fly over Riverside National Cemetery during the memorial service for Michael Crain, an officer who was killed by Christopher Dorner on February 7th, 2013.",
604
+ "owner": "Mae Ryan/KPCC",
605
+ "thumbnail": {
606
+ "url": "http://a.scpr.org/i/05c96d1efb6d507da3dd8f6cad685b98/55107-lsquare.jpg",
607
+ "width": 188,
608
+ "height": 188
609
+ },
610
+ "small": {
611
+ "url": "http://a.scpr.org/i/05c96d1efb6d507da3dd8f6cad685b98/55107-small.jpg",
612
+ "width": 450,
613
+ "height": 300
614
+ },
615
+ "large": {
616
+ "url": "http://a.scpr.org/i/05c96d1efb6d507da3dd8f6cad685b98/55107-eight.jpg",
617
+ "width": 729,
618
+ "height": 486
619
+ },
620
+ "full": {
621
+ "url": "http://a.scpr.org/i/05c96d1efb6d507da3dd8f6cad685b98/55107-full.jpg",
622
+ "width": 1024,
623
+ "height": 683
624
+ }
625
+ },
626
+ {
627
+ "title": "Paralympics Fencing",
628
+ "caption": "Mario Rodriguez rests after a long day of practice. The duo will compete in the Paralympics in early September.",
629
+ "owner": "Grant Slater/KPCC",
630
+ "thumbnail": {
631
+ "url": "http://a.scpr.org/i/10ef5e89858e6bad6e10fc88cc173623/46184-lsquare.jpg",
632
+ "width": 188,
633
+ "height": 188
634
+ },
635
+ "small": {
636
+ "url": "http://a.scpr.org/i/10ef5e89858e6bad6e10fc88cc173623/46184-small.jpg",
637
+ "width": 450,
638
+ "height": 300
639
+ },
640
+ "large": {
641
+ "url": "http://a.scpr.org/i/10ef5e89858e6bad6e10fc88cc173623/46184-eight.jpg",
642
+ "width": 729,
643
+ "height": 486
644
+ },
645
+ "full": {
646
+ "url": "http://a.scpr.org/i/10ef5e89858e6bad6e10fc88cc173623/46184-full.jpg",
647
+ "width": 1024,
648
+ "height": 682
649
+ }
650
+ },
651
+ {
652
+ "title": "Norwalk Weddings - 5",
653
+ "caption": "Victor Sanchez and Karina Jara wait with their family before their wedding ceremony at the LA County Registrar-Recorder’s office in Norwalk. The couple has been together for two years.",
654
+ "owner": "Maya Sugarman/KPCC",
655
+ "thumbnail": {
656
+ "url": "http://a.scpr.org/i/40b6fd38b14671edc9fe2a6469dab055/51998-lsquare.jpg",
657
+ "width": 188,
658
+ "height": 188
659
+ },
660
+ "small": {
661
+ "url": "http://a.scpr.org/i/40b6fd38b14671edc9fe2a6469dab055/51998-small.jpg",
662
+ "width": 450,
663
+ "height": 327
664
+ },
665
+ "large": {
666
+ "url": "http://a.scpr.org/i/40b6fd38b14671edc9fe2a6469dab055/51998-eight.jpg",
667
+ "width": 669,
668
+ "height": 486
669
+ },
670
+ "full": {
671
+ "url": "http://a.scpr.org/i/40b6fd38b14671edc9fe2a6469dab055/51998-full.jpg",
672
+ "width": 1000,
673
+ "height": 726
674
+ }
675
+ },
676
+ {
677
+ "title": "Travelers Hotel",
678
+ "caption": "Nancy Jimenez lives in the Travelers Hotel, a residence near Skid Row that the city of Los Angeles is trying to shut down.",
679
+ "owner": "Mae Ryan/KPCC",
680
+ "thumbnail": {
681
+ "url": "http://a.scpr.org/i/17541daa480890021d7523d5ceef4f3a/39424-lsquare.jpg",
682
+ "width": 188,
683
+ "height": 188
684
+ },
685
+ "small": {
686
+ "url": "http://a.scpr.org/i/17541daa480890021d7523d5ceef4f3a/39424-small.jpg",
687
+ "width": 450,
688
+ "height": 300
689
+ },
690
+ "large": {
691
+ "url": "http://a.scpr.org/i/17541daa480890021d7523d5ceef4f3a/39424-eight.jpg",
692
+ "width": 729,
693
+ "height": 486
694
+ },
695
+ "full": {
696
+ "url": "http://a.scpr.org/i/17541daa480890021d7523d5ceef4f3a/39424-full.jpg",
697
+ "width": 1024,
698
+ "height": 683
699
+ }
700
+ },
701
+ {
702
+ "title": "Undocumented Unafraid",
703
+ "caption": "Claudia Ramirez was brought to the states from Atizapan de Zaragoza, Mexico when she was four-years old. She hopes to pursue a degree in nutrition to help educate people in her South Los Angeles community.",
704
+ "owner": "Mae Ryan/KPCC",
705
+ "thumbnail": {
706
+ "url": "http://a.scpr.org/i/227403117c9bdd11766b8427fb9c473d/40193-lsquare.jpg",
707
+ "width": 188,
708
+ "height": 188
709
+ },
710
+ "small": {
711
+ "url": "http://a.scpr.org/i/227403117c9bdd11766b8427fb9c473d/40193-small.jpg",
712
+ "width": 450,
713
+ "height": 300
714
+ },
715
+ "large": {
716
+ "url": "http://a.scpr.org/i/227403117c9bdd11766b8427fb9c473d/40193-eight.jpg",
717
+ "width": 729,
718
+ "height": 486
719
+ },
720
+ "full": {
721
+ "url": "http://a.scpr.org/i/227403117c9bdd11766b8427fb9c473d/40193-full.jpg",
722
+ "width": 1024,
723
+ "height": 683
724
+ }
725
+ }
726
+ ],
727
+ "attributions": [
728
+ {
729
+ "name": "Grant Slater",
730
+ "url": "http://audiovision.scpr.org/about/grant-slater",
731
+ "role_text": "Author",
732
+ "role": 1
733
+ }
734
+ ]
735
+ }
736
+ ]
737
+ }