-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmetadata.jason
2270 lines (1987 loc) · 203 KB
/
metadata.jason
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<!--[if lte IE 7]>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"
xmlns:v="urn:schemas-microsoft-com:vml"
xmlns:og="http://opengraphprotocol.org/schema/" class="ie ie7 noBorderRadius noLinearGradient noCss3"><![endif]-->
<!--[if IE 8]>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"
xmlns:v="urn:schemas-microsoft-com:vml"
xmlns:og="http://opengraphprotocol.org/schema/" class="ie ie8 noBorderRadius noLinearGradient noCss3"><![endif]-->
<!--[if gte IE 9]>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"
xmlns:v="urn:schemas-microsoft-com:vml"
xmlns:og="http://opengraphprotocol.org/schema/" lang="en" class="ie"><![endif]-->
<!--[if !IE]>-->
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"
xmlns:og="http://opengraphprotocol.org/schema/"><!--<![endif]-->
<!--
Powered by the Socrata Open Data Platform
http://www.socrata.com
-->
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="title" content="SAT Results | NYC Open Data" />
<meta property="og:title" content="SAT Results | NYC Open Data" />
<meta property="og:site_name" content="NYC Open Data" />
<meta name="description" content="The most recent school level results for New York City on the SAT. Results are available at the school level for the graduating seniors of 2012. Records contain 2012 College-bound seniors mean SAT scores taken during SY 2012." />
<meta property="og:description" content="The most recent school level results for New York City on the SAT. Results are available at the school level for the graduating seniors of 2012. Records contain 2012 College-bound seniors mean SAT scores taken during SY 2012." />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://data.cityofnewyork.us/Education/SAT-Results/f9bf-2cp4" />
<meta property="og:image" content="http://data.cityofnewyork.us/stylesheets/images/common/socrata_logo_square.png" />
<meta name="keywords" content="statistics,dataset,data,school,sat result,public,nyc,lifelong learning" />
<meta content="authenticity_token" name="csrf-param" />
<meta content="CSWm9yXY077rgFIYnTi17r2EVw/81jtEeljuSTkSNBA=" name="csrf-token" />
<link rel="image_src" href="/stylesheets/images/common/socrata_logo_square.png" />
<link rel="apple-touch-icon-precomposed" media="screen" href="/stylesheets/images/icons/retina_display_icon.png?831b1e9eb6752fd1e44d199e4ec7e03e08c0d4d2.171.1442415933"/>
<link rel="search" type="application/opensearchdescription+xml" href="/opensearch.xml" title="NYC Open Data" />
<link href="/catalog.rss" rel="alternate" title="Subscribe to Datasets" type="application/rss+xml" />
<!--[if IE]>
<style type="text/css">
v\:vmlframe{behavior:url(#default#VML);display:inline-block;}
</style>
<![endif]-->
<link type="text/css" rel="stylesheet" media="all" href="/styles/merged/base.css?831b1e9eb6752fd1e44d199e4ec7e03e08c0d4d2.171.1442415933"/>
<link type="text/css" media="all" rel="stylesheet" href="/webfonts/socrata-apps/socrata-apps.css?831b1e9eb6752fd1e44d199e4ec7e03e08c0d4d2.171.1442415933"/>
<link type="text/css" rel="stylesheet" media="print" href="/styles/merged/print.css?831b1e9eb6752fd1e44d199e4ec7e03e08c0d4d2.171.1442415933"/>
<script type="text/javascript">//<![CDATA[
document.write([
"\<script src='",
"//ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js'",
" type='text/javascript'>\<\/script>"
].join(''));
//]]></script>
<script type="text/javascript">blistEnv = "production";</script><script src="/packages/errors.js?1442524274" type="text/javascript"></script>
<link href="/views/f9bf-2cp4/rows.rss" rel="alternate" title="RSS" type="application/rss+xml" />
<link type="text/css" rel="stylesheet" media="all" href="/styles/merged/base-control-third-party.css?831b1e9eb6752fd1e44d199e4ec7e03e08c0d4d2.171.1442415933"/>
<link type="text/css" rel="stylesheet" media="all" href="/styles/merged/dataset-show.css?831b1e9eb6752fd1e44d199e4ec7e03e08c0d4d2.171.1442415933"/>
<meta name="viewport" content="width=1024, user-scalable=no, maximum-scale=1.0" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<title>SAT Results | NYC Open Data</title>
<link rel="canonical" href="/Education/SAT-Results/f9bf-2cp4" />
<link type="text/css" media="all" rel="stylesheet" href="/styles/current_site.css?831b1e9eb6752fd1e44d199e4ec7e03e08c0d4d2.171.1442415933"/>
<link rel="shortcut icon" href="/stylesheets/images/common/favicon.ico" />
<script type="text/javascript">
//<![CDATA[
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','_gaSocrata');
_gaSocrata('create', 'UA-52982454-8', 'auto', 'socrata');
_gaSocrata('socrata.send', 'pageview');
//]]>
</script>
<!-- start Mixpanel - Measuring UX things -->
<script type="text/javascript">//<![CDATA[
(function(e,b){
if(!b.__SV){
var a,f,i,g;
window.mixpanel=b;
a=e.createElement("script");
a.onload = function() {
blist = window.blist || {};
blist.mixpanelLoaded = true;
};
a.type="text/javascript";
a.async=!0;
a.src=("https:"===e.location.protocol?"https:":"http:")+'//cdn.mxpnl.com/libs/mixpanel-2.2.min.js';
f=e.getElementsByTagName("script")[0];
f.parentNode.insertBefore(a,f);
b._i=[];
b.init=function(a,e,d){
function f(b,h){
var a=h.split(".");
2==a.length&&(b=b[a[0]],h=a[1]);
b[h]=function(){
b.push([h].concat(Array.prototype.slice.call(arguments,0)))
}
}
var c=b;
"undefined"!==typeof d?c=b[d]=[]:d="mixpanel";
c.people=c.people||[];
c.toString=function(b){
var a="mixpanel";
"mixpanel"!==d&&(a+="."+d);
b||(a+=" (stub)");
return a
};
c.people.toString=function(){
return c.toString(1)+".people (stub)"
};
i="disable track track_pageview track_links track_forms register register_once alias unregister identify name_tag set_config people.set people.set_once people.increment people.append people.track_charge people.clear_charges people.delete_user".split(" ");
for(g=0; g<i.length; g++)f(c,i[g]);
b._i.push([a,e,d])
};
b.__SV=1.2
}
})(document,window.mixpanel||[]);
//Session cookies and all events saved
mixpanel.init("1d804068e1d3694468823f3c7f74567d", {disable_cookie: true});
mixpanel.disable();
//]]></script><!-- end Mixpanel -->
</head>
<body class="controller_datasets action_datasets_show locale_en " data-locale="en" data-defaultlocale="en">
<div id="skip-links">
<a href="#content">Skip to main content</a>
<a href="#footerLinks">Skip to footer links</a>
<a href="/Education/SAT-Results/f9bf-2cp4/alt">Go to an accessible version of this page</a>
</div>
<div class="siteOuterWrapper">
<div class="siteInnerWrapper">
<div id="siteHeader" class="clearfix" role="banner">
<div id="header_nyc-open-data">
<h1 id="mainLogo" class="appLogo">
<a href="http://www.nyc.gov">NYC Open Data</a>
</h1>
<ul class="siteUserNav">
<li class="accountLink hide"><a href="/profile"
title="Your Home"><span class="text">Hello, <span class="currentUser">Unknown User</span></span></a></li>
<li class="adminLink hide">
<a href="/admin" title="Administration"><span class="text">Administration</span></a>
</li>
<li><a href="/">Home</a></li><li><a href="http://dev.socrata.com/">Developers</a></li><li class="signUpLink"><a href="/signup" rel="nofollow" title="Sign Up">
<span class="text">Sign Up</span></a></li>
<li class="signInLink"><a href="/login" rel="nofollow"
title="Sign In"><span class="text">Sign In</span></a></li>
<li class="signOutLink hide"><a href="/logout" rel="nofollow"
title="Sign Out"><span class="text">Sign Out</span></a></li>
</ul>
<div class="siteBranding"><a href="/" class="siteLogoLink">Data Mine</a></div>
<div class="nycNav">
<a class="home active" href="/">Home</a>
<a class="about" href="http://www.nyc.gov/html/data/about.html">About NYC Open Data</a>
<a class="faq" href="http://www.nyc.gov/html/data/faq.html">FAQ</a>
<a class="contact" href="http://www.nyc.gov/html/data/contact.html">Contact NYC Open Data</a>
<div class="divider"></div>
</div>
</div>
<div id = "header_nyc-redesign2">
<div id = "header">
<a href = '/'><div id = "logo">
</div></a>
<a href = '/data'><div id = "datasets">
<div id = "datasetsCount">1300+</div>
Data Sets Available
</div></a>
<div id = 'fullMenu'>
<div aria-hidden='true' class = "menuIcon menuData icon-data" onmouseover="showMenu('Data')" onmouseout="hideMenu('Data')">
</div>
<div aria-hidden='true' class = 'menuIcon menuWrench icon-tool' onmouseover="showMenu('Wrench')" onmouseout="hideMenu('Wrench')">
</div>
<div aria-hidden='true' class = 'menuIcon menuInfo icon-help' onmouseover="showMenu('Info')" onmouseout="hideMenu('Info')">
</div>
<div aria-hidden='true' class = 'menuIcon menuNyc icon-nyc' onmouseover="showMenu('Nyc')" onmouseout="hideMenu('Nyc')">
</div>
<div class = 'menuDivider'>
</div>
<a href = "http://nycopendata.tumblr.com/"><div aria-hidden='true' class = "menuIcon menuTumblr icon-tumblr">
</div></a>
<a href = "https://twitter.com/NYCDoITT"><div aria-hidden='true' class = "menuIcon menuTwitter icon-twitter">
</div></a>
<div class = 'menuDivider'>
</div>
<div class = 'menuText'>
<ul class='siteUserNav'>
<li class="accountLink hide"><a href="/profile"
title="Your Home"><span class="text">Hello, <span class="currentUser">Unknown User</span></span></a></li>
<li class="adminLink hide">
<a href="/admin" title="Administration"><span class="text">Administration</span></a>
</li>
<li class="signUpLink"><a href="/signup" rel="nofollow" title="Sign Up">
<span class="text">Sign Up</span></a></li>
<li class="signInLink"><a href="/login" rel="nofollow"
title="Sign In"><span class="text">Sign In</span></a></li>
<li class="signOutLink hide"><a href="/logout" rel="nofollow"
title="Sign Out"><span class="text">Sign Out</span></a></li>
</ul>
</div>
</div>
<div id = "miniMenu">
</div>
</div>
<div id = 'dropdowns'>
<div id = 'menuLogin' class = 'menuGroup' style = 'display:none' onmouseout="hideMenu('Info')">
<div class = 'menuRow'>
<div class = 'menuTitle'><ul class='siteUserNav'>
<li class="accountLink hide"><a href="/profile"
title="Your Home"><span class="text">Hello, <span class="currentUser">Unknown User</span></span></a></li>
<li class="signUpLink"><a href="/signup" rel="nofollow" title="Sign Up">
<span class="text">Sign Up</span></a></li>
<li class="signInLink"><a href="/login" rel="nofollow"
title="Sign In"><span class="text">Sign In</span></a></li>
<li class="signOutLink hide"><a href="/logout" rel="nofollow"
title="Sign Out"><span class="text">Sign Out</span></a></li>
</ul></div>
</div>
</div>
<div id = 'menuData' class = 'menuGroup' style = 'display:none' onmouseout="hideMenu('Data')">
<div class = 'menuSidebar icon-data'aria-hidden='true'></div>
<a href = '/data'>
<div class = 'menuRow'>
<div class = 'menuTitle'>Datasets (All Categories)</div>
<div class = 'menuSubTitle'>NYC's Data Catalog</div>
</div>
</a>
<a href = '/nominate'>
<div class = 'menuRow'>
<div class = 'menuTitle'>Suggest a Dataset</div>
<div class = 'menuSubTitle'>Nominate and Discuss possible data</div>
</div>
</a>
<a href = '/report'>
<div class = 'menuRow'>
<div class = 'menuTitle'>Mayor's Management Report</div>
<div class = 'menuSubTitle'>Citywide Performance Scorecard</div>
</div>
</a>
</div>
<div id = 'menuWrench' class = 'menuGroup'style = 'display:none' onmouseout="hideMenu('Wrench')">
<div class = 'menuSidebar icon-tool'aria-hidden='true'></div>
<a href = 'http://dev.socrata.com/consumers/getting-started.html'>
<div class = 'menuRow'>
<div class = 'menuTitle'>Getting Started with Our APIs</div>
<div class = 'menuSubTitle'>Access Data with the SODA API</div>
</div>
</a>
<a href = 'http://dev.socrata.com/docs/endpoints.html'>
<div class = 'menuRow'>
<div class = 'menuTitle'>API Endpoints</div>
<div class = 'menuSubTitle'>Find API endpoints for our data</div>
</div>
</a>
<a href = 'http://dev.socrata.com/docs/queries.html'>
<div class = 'menuRow'>
<div class = 'menuTitle'>API Queries</div>
<div class = 'menuSubTitle'>Discover how to get just the data you want</div>
</div>
</a>
<a href = 'https://developer.cityofnewyork.us/'>
<div class = 'menuRow'>
<div class = 'menuTitle'>NYC Developer Portal</div>
<div class = 'menuSubTitle'>More NYC Government APIs</div>
</div>
</a>
</div>
<div id = 'menuNyc' class = 'menuGroup'style = 'display:none' onmouseout="hideMenu('Nyc')">
<div class = 'menuSidebar icon-nyc'aria-hidden='true'></div>
<a href = 'http://www.nyc.gov/doitt'>
<div class = 'menuRow'>
<div class = 'menuTitle'>NYC DoITT</div>
<div class = 'menuSubTitle'>NYC Information Technology and Telecommunications</div>
</div>
</a>
<a href = 'http://www.nyc.gov/html/analytics/html/home/home.shtml'>
<div class = 'menuRow'>
<div class = 'menuTitle'>NYC MoDA</div>
<div class = 'menuSubTitle'>NYC Mayor's Office of Data Analytics</div>
</div>
</a>
<a href = 'http://www.digital.nyc'>
<div class = 'menuRow'>
<div class = 'menuTitle'>NYC Digital</div>
</div>
</a>
</div>
<div id = 'menuInfo' class = 'menuGroup' style = 'display:none' onmouseout="hideMenu('Info')">
<div class = 'menuSidebar icon-help'aria-hidden='true'></div>
<div class = 'menuRow' onclick="showLightbox('about')" style = "cursor:pointer">
<div class = 'menuTitle'>About This Site</div>
<div class = 'menuSubTitle'>Learn more about NYC Open Data</div>
</div>
<div class = 'menuRow'onclick="showLightbox('terms')" style = "cursor:pointer">
<div class = 'menuTitle' >Terms of Use</div>
<div class = 'menuSubTitle'>Read the terms of use for the data on this site</div>
</div>
<a href = 'http://www.nyc.gov/html/doitt/downloads/pdf/nyc_open_data_tsm.pdf'>
<div class = 'menuRow'>
<div class = 'menuTitle'>Technical Standards Manual</div>
<div class = 'menuSubTitle'>Read the law, policies, and standards that help us make data public</div>
</div>
</a>
<a href = 'http://support.socrata.com/'>
<div class = 'menuRow'>
<div class = 'menuTitle'>Socrata Support</div>
<div class = 'menuSubTitle'>Get technical support from Socrata</div>
</div>
</a>
<a href="http://www.nyc.gov/html/data/faq.html">
<div class = 'menuRow'>
<div class = 'menuTitle'>Open Data FAQs</div>
</div>
</a>
<a href = '/analytics'>
<div class = 'menuRow'>
<div class = 'menuTitle'>Site Analytics</div>
<div class = 'menuSubTitle'>See usage, access rates and other key metrics</div>
</div>
</a>
</div>
<div id = 'menuTumblr' class = 'menuGroup' style = 'display:none' onmouseout="hideMenu('Info')">
<div class = 'menuSidebar icon-tumblr'aria-hidden='true'></div>
<a href = ''>
<div class = 'menuRow'>
<div class = 'menuTitle'>Tumblr</div>
</div>
</a>
</div>
<div id = 'menuTwitter' class = 'menuGroup' style = 'display:none' onmouseout="hideMenu('Info')">
<div class = 'menuSidebar icon-twitter'aria-hidden='true'></div>
<a href = ''>
<div class = 'menuRow'>
<div class = 'menuTitle'>Twitter</div>
</div>
</a>
</div>
</div>
<div id = 'lightboxCover' style="display:none" >
<div id = 'lightboxOuter'>
<div id = 'lightboxInner'>
<div id = 'closex'></div>
<div id = 'terms'class='lightboxContent'style="display:none">
<h3>Terms of Use</h3>
<p>The following Terms of Use apply to visitors to the NYC OpenData portal and application developers who obtain City data through this single web portal:</p>
<p>By accessing data sets and feeds available through the NYC OpenData portal (or the "Site"), the user agrees to all of the <a href='http://www.nyc.gov/html/misc/html/tou.html' target='_blank'>Terms of Use of NYC.gov</a> as well as the <a href='http://nyc.gov/portal/site/nycgov/menuitem.b52b1c491d03e607a62fa24601c789a0/' target='_blank'>Privacy Policy</a> for NYC.gov. The user also agrees to any additional terms of use defined by entities providing data or feeds through the Site. Entities providing data include, without limitation, agencies, bureaus, offices, departments and other discrete entities of the City of New York ("City"). Public data sets made available on the NYC OpenData portal are provided for informational purposes. The City does not warranty the completeness, accuracy, content, or fitness for any particular purpose or use of any public data set made available on the NYC OpenData portal, nor are any such warranties to be implied or inferred with respect to the public data sets furnished therein.</p>
<p>The City is not liable for any deficiencies in the completeness, accuracy, content, or fitness for any particular purpose or use of any public data set, or application utilizing such data set, provided by any third party.</p>
<p>Submitting City Agencies are the authoritative source of data available on NYC OpenData. These entities are responsible for data quality and retain version control of data sets and feeds accessed on the Site. Data may be updated, corrected, overwritten and/or refreshed at any time. The anticipated update frequency is indicated for each data set on the Site. Older versions of data sets will not be retained.</p>
</div>
<div id = 'about' class='lightboxContent' style="display:none">
<h3>About NYC Open Data</h3>
<p>NYC Open Data makes the wealth of public data generated by various New York City agencies and other City organizations available for public use. As part of an initiative to improve the accessibility, transparency, and accountability of City government, this catalog offers access to a repository of government-produced, machine-readable data sets.</p>
<p>Anyone can use these data sets to participate in and improve government by conducting research and analysis or creating applications, thereby gaining a better understanding of the services provided by City agencies and improving the lives of citizens and the way in which government serves them.</p>
<p>The data sets are available in a variety of machine-readable formats and are refreshed when new data becomes available. Data is presented by category, by City agency, or by other City organization. Descriptions of the data, the collection method, and other contextual material, called metadata, make the data sets easier to understand and use. Use of these data sets and how they are generated can be better understood by reading the <a href='#' id='footer-terms'>Terms of Use</a>.</p>
<h3>How the City Uses Data to Create a Better City</h3>
<p>The Mayor’s Office of Data Analytics (MODA), the Department of Information Technology and Telecommunications (DOITT), and NYC Digital work together to collect, analyze, and share NYC Data, to create a better City supported by data-based decision making, and to promote public use of City data.</p>
<p>The City of New York is a national model for collecting data to measure government performance. Agencies routinely collect data on buildings, streets, infrastructure, businesses, and other entities within the City, including permits, licenses, crime related data, and 311 complaints. MODA centralizes City data, uniting previously disconnected pieces of information from various agencies, and pairs it with NY state, federal, and other open data to create a comprehensive City-wide data platform that serves as a record of City activity, and a foundation for NYC Open Data. DoITT and MODA work closely together to use that platform, DataBridge, to reduce safety risk in the City, deliver daily services more efficiently, and enforce laws more effectively.</p>
<p>The mission of <a href='http://www.nyc.gov/html/digital/html/home/home.shtml'>NYC Digital</a> is to realize New York City's potential as the world's leading digital city, by creating meaningful public-private partnerships that serve New Yorkers and support economic development. NYC Digital produces the City's Digital Roadmap, NYC's technology plan for access, education, open government, engagement, and industry. In partnership with MODA, NYC Digital directs <a href='http://www.nyc.gov/html/digital/html/codecorps/codecorps.shtml'>Code Corps</a>, the nation's first municipal program that engages vetted volunteer technologists to support City emergency and disaster recovery needs.</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="noticeContainer">
</div>
<a name="content" tabindex="-1"></a>
<div class="flash "></div>
<div id="datasetBar" class="clearfix dataset
sidebar-right">
<div id="infoBox">
<div id="datasetIcon" class="typeBlist">
<span class="icon currentViewName">table</span>
<span class="alertIcon"></span>
</div>
<div class="unsavedLine">
<h2 id="unsavedTitle">Unsaved View</h2>
<a href="#SaveAs" title="Save View As..."
class="saveAs toolbarButton">Save As...</a>
<a href="#Revert" title="Revert to saved view"
class="revert toolbarButton">Revert</a>
</div>
<h2 id="datasetName" class="clipText currentViewName" title="SAT Results">
SAT Results
</h2>
<div class="basedOnParent">Based on <a class="parentName"></a></div>
<div class="basedOnTemp">
Based on <a class="revertLink currentViewName" href="#revert">SAT Results</a>
</div>
<div id="description">
<div class="descriptionContent collapsed"><p>The most recent school level results for New York City on the SAT. Results are available at the school level for the graduating seniors of 2012. Records contain 2012 College-bound seniors mean SAT scores taken during SY 2012.</p></div>
<a href="#expand" class="descriptionExpander rightArrow" title="Click to expand">
<span class="icon">Expand</span>
</a>
</div>
</div>
<div id="actionBox" class="clearfix">
<ul id="toolbarOptions" class="clearfix">
<li>
<ul id="shareOptions">
<li class="subscribe">
<a class="subscribe" href="#subscribe" title="Subscribe via Email or RSS">
<span class="icon">Subscribe to Changes</span></a>
</li>
<li><a class="facebook" rel="external" title="Share on Facebook" href="http://www.facebook.com/share.php?u=https://data.cityofnewyork.us/Education/SAT-Results/f9bf-2cp4">
<span class="icon">Share on Facebook</span></a></li>
<li><a class="twitter" rel="external" title="Share on Twitter" href="http://twitter.com/?status=Check out the SAT Results, dataset on NYC Open Data: http://data.cityofnewyork.us/d/f9bf-2cp4?category=Education&view_name=SAT-Results">
<span class="icon">Share on Twitter</span></a></li>
<li><a class="email" href="#email" title="Share via Email">
<span class="icon">Share via Email</span></a></li>
</ul>
</li>
<li>
<ul id="renderTypeOptions" class="pillButtons">
<li><a
href="/Education/SAT-Results/f9bf-2cp4?defaultRender=table"
class="table noRedirPrompt"
title="View as a table">
<span class="icon"></span>
</a></li>
<li><a
href="/Education/SAT-Results/f9bf-2cp4?defaultRender=richList"
class="fatrow noRedirPrompt"
title="View as a rich list">
<span class="icon"></span>
</a></li>
<li><a
href="/Education/SAT-Results/f9bf-2cp4?defaultRender=page"
class="page noRedirPrompt"
title="View as a single row">
<span class="icon"></span>
</a></li>
<li><a
href="/Education/SAT-Results/f9bf-2cp4?defaultRender=template"
class="template noRedirPrompt hide"
title="View as a <span class="translation_missing" title="translation missing: en.screens.ds.bar.view_types.template">Template</span>">
<span class="icon"></span>
</a></li>
</ul>
</li>
<li>
<form id="searchForm" action="#">
<span class="icon"></span>
<input type="text" class="searchField textPrompt" title="Find in this Dataset"
/>
<a href="#clear" class="clearSearch close"><span class="icon"></span></a>
</form>
</li>
</ul>
</div>
<a href="#toggleFullScreen" class="fullscreenButton maximize" title="Toggle full screen">
<span class="icon">Toggle full screen</span>
</a>
<div id="actionBar" class="clearfix position-right">
<div class="sidebarOptionsContainer clearfix">
<ul id="sidebarOptions" class="clearfix">
<li><a class="edit" data-paneName="edit" href="#Edit" title="Edit"><span class="icon"></span>Edit</a></li>
<li><a class="manage" data-paneName="manage" href="#Manage" title="Manage"><span class="icon"></span>Manage</a></li>
<li><a class="moreViews" data-paneName="moreViews" href="#MoreViews" title="More Views"><span class="icon"></span>More Views</a></li>
<li><a class="filter" data-paneName="filter" href="#Filter" title="Filter"><span class="icon"></span>Filter<span class="alertIcon"></span></a></li>
<li><a class="visualize" data-paneName="visualize" href="#Visualize" title="Visualize"><span class="icon"></span>Visualize</a></li>
<li><a class="export" data-paneName="export" href="#Export" title="Export"><span class="icon"></span>Export</a></li>
<li><a class="feed" data-paneName="feed" href="#Discuss" title="Discuss"><span class="icon"></span>Discuss</a></li>
<li><a class="embed" data-paneName="embed" href="#Embed" title="Embed"><span class="icon"></span>Embed</a></li>
<li><a class="about" data-paneName="about" href="#About" title="About"><span class="icon"></span>About</a></li>
<li class="hide"><a class="other" href="#More" title="More"><span class="icon"></span>More</a></li>
</ul>
</div>
</div>
</div>
<div class="outerContainer" role="main">
<div id="renderTypeContainer" class="innerContainer">
<div class="aboutLoad">
<div class="aboutDataset">
<div class="aboutHeader clearfix">
<a class="aboutAuthorImageLink" href="/profile/NYC-OpenData/5fuc-pqz2">
<img class="aboutAuthorImage" alt="NYC OpenData"
src="/images/medium-profile.png"/>
</a>
<a class="aboutAuthorName" href="/profile/NYC-OpenData/5fuc-pqz2">NYC OpenData</a>
<p><em>created</em> <span class="aboutCreateDate"><span class="dateReplace" data-dateFormat="date" data-rawDateTime="1361417333">Feb 20, 2013</span></span></p>
<p><em>updated</em> <span class="aboutUpdateDate"><span class="dateReplace" data-dateFormat="date" data-rawDateTime="1409938929">Sep 05, 2014</span></span></p>
</div>
<a href="/Education/SAT-Results/f9bf-2cp4/about" class="viewFullLink fullButton">View Full Page</a>
<div class="formSection">
<a class="expander expanded formHeader" href="#expand">
<span class="icon"></span>
Description
</a>
<div class="sectionContent">
<p><p>The most recent school level results for New York City on the SAT. Results are available at the school level for the graduating seniors of 2012. Records contain 2012 College-bound seniors mean SAT scores taken during SY 2012.</p></p>
</div>
</div>
<div class="formSection">
<a class="expander expanded formHeader" href="#expand">
<span class="icon"></span>
Activity
</a>
<dl class="sectionContent">
<dt>Community Rating</dt>
<dd class="clearfix">
<div class="starsControl datasetAverageRating" title="0.0 stars"><span class="accessibleValue">Current value: 0.0 out of 5</span><span class="starsLabel value-0 currentValue"></span><span class="starsLabel value-1"></span><span class="starsLabel value-2"></span><span class="starsLabel value-3"></span><span class="starsLabel value-4"></span><span class="starsLabel value-5"></span></div>
</dd>
<dt>Your Rating</dt>
<dd class="clearfix">
<form accept-charset="UTF-8" action="/datasets/f9bf-2cp4/update_rating?category=Education&view_name=SAT-Results" class="starsControl blueStars enabled datasetAverageRating" data-rating-type="rating" data-rating="" id="stars_51" method="post" title=" stars"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="✓" /><input name="authenticity_token" type="hidden" value="CSWm9yXY077rgFIYnTi17r2EVw/81jtEeljuSTkSNBA=" /></div><div><input checked="checked" class="noUniform" id="stars_51_0" name="starsRating" type="radio" value="0" /><label class="starsLabel" for="stars_51_0">0/5</label><input class="noUniform" id="stars_51_1" name="starsRating" type="radio" value="1" /><label class="starsLabel" for="stars_51_1">1/5</label><input class="noUniform" id="stars_51_2" name="starsRating" type="radio" value="2" /><label class="starsLabel" for="stars_51_2">2/5</label><input class="noUniform" id="stars_51_3" name="starsRating" type="radio" value="3" /><label class="starsLabel" for="stars_51_3">3/5</label><input class="noUniform" id="stars_51_4" name="starsRating" type="radio" value="4" /><label class="starsLabel" for="stars_51_4">4/5</label><input class="noUniform" id="stars_51_5" name="starsRating" type="radio" value="5" /><label class="starsLabel" for="stars_51_5">5/5</label></div></form>
</dd>
<dt>Raters</dt>
<dd class="totalTimesRated">0</dd>
<dt>Visits</dt>
<dd>6787</dd>
<dt>Downloads</dt>
<dd>1127</dd>
<dt>Comments</dt>
<dd class="numberOfComments">0</dd>
<dt>Contributors</dt>
<dd>0</dd>
</dl>
</div>
<div class="formSection">
<a class="expander expanded formHeader" href="#expand">
<span class="icon"></span>
Meta
</a>
<dl class="sectionContent">
<dt>Category</dt>
<dd>Education</dd>
<dt>Permissions</dt>
<dd>Public</dd>
<dt>Tags</dt>
<dd><span class="wrap">sat result, nyc, school, lifelong learning</span></dd>
<dt><span class="translation_missing" title="translation missing: en.screens.about.row_label">Row Label</span></dt>
<dd><span class="wrap row_label"></span></dd>
<dt>Row Count</dt>
<dd><span class="wrap row_count"></span></dd>
</dl>
</div>
<div class="formSection">
<a class="expander expanded formHeader" href="#expand">
<span class="icon"></span>
Links
</a>
<dl class="sectionContent">
<dt>Permalink</dt>
<dd><span class="hardWrap"><a href="https://data.cityofnewyork.us/Education/SAT-Results/f9bf-2cp4" rel="external" title="Permanent link, opens in new window">https://data.cityofnewyork.us/Education/SAT-Results/f9bf-2cp4<span class='accessible'>Opens in new window.</span></a></span></dd>
<dt>Short URL</dt>
<dd><span class="hardWrap"><a href="https://data.cityofnewyork.us/d/f9bf-2cp4?category=Education&view_name=SAT-Results" rel="external" title="Short link, opens in new window">https://data.cityofnewyork.us/d/f9bf-2cp4?category=Education&view_name=SAT-Results<span class='accessible'>Opens in new window.</span></a></span></dd>
</dl>
</div>
<div class="formSection">
<a class="expander expanded formHeader" href="#expand">
<span class="icon"></span>
Licensing and Attribution
</a>
<dl class="sectionContent">
<dt>Data Provided By</dt>
<dd>Department of Education (DOE)</dd>
<dt>Source Link</dt>
<dd><a href="http://schools.nyc.gov/NR/rdonlyres/E1C5E5DD-AA7E-4C60-A9FA-53E185AECB1C/0/2012SATPUBLICWEBSITE.xlsx" rel="nofollow external">http://schools.nyc.gov/NR/rdonlyres/E1C5E5DD-AA7E-4C60-A9FA-53E185AECB1C/0/2012SATPUBLICWEBSITE.xlsx</a></dd>
</dl>
</div>
<div class="formSection">
<a class="expander expanded formHeader" href="#expand">
<span class="icon"></span>
Update
</a>
<dl class="sectionContent">
<dt>Update Frequency</dt>
<dd><span class="wrap">
Annually
</span></dd>
</dl>
</div>
<div class="formSection">
<a class="expander expanded formHeader" href="#expand">
<span class="icon"></span>
Dataset Information
</a>
<dl class="sectionContent">
<dt>Agency</dt>
<dd><span class="wrap">
Department of Education (DOE)
</span></dd>
</dl>
</div>
<div class="formSection">
<a href="#expand" class="expander expanded formHeader">
<span class="icon"></span>
Actions
</a>
<div class="flash"></div>
<dl class="sectionContent contactOwnerLinks">
<dt class="widenedItem">
<a href="#flag" class="contactButton" data-select="">Flag Dataset</a>
</dt>
<dd> </dd>
<dt class="widenedItem">
<a href="#contact" class="contactButton" data-select="other">Contact Dataset Owner</a>
</dt>
<dd> </dd>
</dl>
</div>
</div>
<a href="/Education/SAT-Results/f9bf-2cp4?row_index=0" class="rowLink">
First row
</a>
</div>
<div class="viewErrorContainer">
<div class="viewError">This view cannot be displayed</div>
</div>
<div class="staticRenderType fullHeight renderTypeNode">
</div>
<div data-renderType="fatrow" class="fatRowRenderType navRenderType renderTypeNode fullHeight hide">
<div class="columnHeaders"></div>
<div class="rowList"></div>
<ul class="navigation">
<li><a href="#start" title="View first page" class="start button">
<span class="icon"></span>
</a></li>
<li><a href="#previous" title="View previous page" class="previous button">
<span class="icon"></span>
</a></li>
<li class="page"><a href="#page">0</a></li>
<li><a href="#next" title="View next page" class="next button">
<span class="icon"></span>
</a></li>
<li><a href="#end" title="View last page" class="end button">
<span class="icon"></span>
</a></li>
</ul>
<div class="templateRow row clearfix">
</div>
</div>
<div data-renderType="page" class="pageRenderType navRenderType renderTypeNode fullHeight hide">
<div class="content">
</div>
<ul class="navigation">
<li><a href="#start" title="View first row" class="start button">
<span class="icon"></span>
</a></li>
<li><a href="#previous" title="View previous row" class="previous button">
<span class="icon"></span>
</a></li>
<li class="info">
Viewing row <span class="curPage"></span> of <span class="totalPages"></span>
</li>
<li><a href="#next" title="View next row" class="next button">
<span class="icon"></span>
</a></li>
<li><a href="#end" title="View last row" class="end button">
<span class="icon"></span>
</a></li>
</ul>
</div>
</div>
<div id="gridSidebar">
<a class="close" href="#close"><span class="icon">Close</span></a>
</div>
</div>
<script type="text/javascript"> if (typeof blistTranslations == 'undefined') blistTranslations = [];
blistTranslations.push(function()
{
return JSON.parse($.unescapeQuotes("{"support":{"array":{"last_word_connector":", and ","two_words_connector":" and "},"array_or":{"last_word_connector":", or ","two_words_connector":" or "}}}"));
});
</script>
<script type="text/javascript"> if (typeof blistTranslations == 'undefined') blistTranslations = [];
blistTranslations.push(function()
{
return JSON.parse($.unescapeQuotes("{"controls":{"grid":{"add_column":"Add a new column...","clear_column_filter":"Clear Column Filter","clear_sort":"Clear Sort","click_for_menu":"Click for Menu","click_to_sort":"Click to sort","column_info":"Column info","delete_column":"Delete Column","delete_row":"Delete Row","delete_warning_multi_column":"Do you want to delete the selected columns? All data in these columns will be removed!","delete_warning_single_column":"Do you want to delete the selected column? All data in this column will be removed!","edit_column_properties":"Edit Column Properties","errors":{"cannot_edit_at_this_time":"The column cannot be edited at this moment. Please try again later.","data_lens_is_incompatible_with_group_bys":"Datasets with groupings cannot be used with a Data Lens page. We apologize for this inconvenience.","primary_key_collision":"This value already exists as a primary key. You may not overwrite it.","row_locked_for_edit":"Presently, we cannot edit a just-created row. We are working to make that possible. For now, refresh the page before editing this row.","something_went_wrong":"Looks like something went wrong. Please refresh this page."},"filter_this_column":"Filter This Column","geocodes_pending":"Rows in the location column are still geocoding. Please wait until they are finished to publish this dataset","hide_column":"Hide Column","menu":"Menu","must_enter_name":"You must enter a name for this column","new_row":"New","no_columns":"Dataset %{uid} does not have any columns.","no_rows":"No rows to display","permission_denied":"You do not have access to this view.","previous":"Previous","required_cols_missing":"Columns required for this view are missing","sort_ascending":"Sort Ascending","sort_descending":"Sort Descending","totals":"Totals","view_cell_comments":"View comments for this cell","view_first_row":"View first row","view_last_row":"View last row","view_next_row":"View next row","view_previous_row":"View previous row","view_row":"View row","view_single_row":"View Single Row Data","viewing_row_html":"Viewing row <span class=\\"curPage\\"></span> of <span class=\\"totalPages\\"></span>"}}}"));
});
</script>
<script type="text/javascript"> if (typeof blistTranslations == 'undefined') blistTranslations = [];
blistTranslations.push(function()
{
return JSON.parse($.unescapeQuotes("{"controls":{"embed":{"create_template_button":"Create a New Template","custom_size":"Custom Size","embed":"Embed this Dataset","form_frame":"Embed this Form in a Frame","form_or":"or","form_plain":"Embed this Form as Plain HTML","height":"Height","minimum_size":"425x425 is the minimum size","private_warning":"This view is currently private. You can preview it, but you will need to make it public before people will be able to see it.","sdp_template":"Social Data Player Template","size":"Size","template":"Template","width":"Width"}}}"));
});
</script>
<script type="text/javascript"> if (typeof blistTranslations == 'undefined') blistTranslations = [];
blistTranslations.push(function()
{
return JSON.parse($.unescapeQuotes("{"screens":{"ds":{"bar":{"api_unsavable":"API views cannot be modified","based_on_html":"Based on <a class=\\"revertLink currentViewName\\" href=\\"#revert\\">%{name}</a>","based_on_parent_html":"Based on <a class=\\"parentName\\"></a>","based_on_private_view":"a private view.","based_on_working_copy_html":"Based on the working copy of <a class=\\"revertLink currentViewName\\" href=\\"#revert\\">%{name}</a>","find_prompt":"Find in this Dataset","format":{"bold":"Bold","bullet":"Bulleted List","color":"Font Color","italic":"Italic","link":"Link","number":"Numbered List","redo":"Redo","strike":"Strikethrough","underline":"Underline","undo":"Undo"},"full_screen":"Toggle full screen","out_of_date":"This dataset is out of date by %{age}","publish_button":"Publish Dataset","publish_prompt":"This dataset is a working copy and is not publicly available. Once you have made the desired changes, this dataset should be published to make it publicly available.","publish_rights":"Only an owner or publisher can publish this dataset","revert_button":"Revert","revert_prompt":"Revert to saved view","save_as_button":"Save As...","save_as_prompt":"Save View As...","save_button":"Save","save_progress":"Saving...","save_prompt":"Save current view","share_email":"Share via Email","share_facebook":"Share on Facebook","share_twitter":"Share on Twitter","snapshot_notice":"This is a previously published version of the dataset. It is archived and cannot be modified.","snapshot_title":"","snapshot_title_html":"Snapshotted %{date}","snapshot_unsavable":"Snapshotted datasets and views cannot be created or modified","subscribe":"Subscribe to Changes","subscribe_prompt":"Subscribe via Email or RSS","unpublished_unsavable":"Changes to the data below are saved automatically. Filters and searches cannot be saved to a working copy of a dataset. Please create a view on a published dataset.","unsaved_title":"Unsaved View","up_to_date":"This dataset is up-to-date as of %{current}","view_published_html":"View the published <span class=\\"publishedName\\">dataset</span>","view_type":"View as a %{type}","view_types":{"calendar":"calendar","chart":"chart","fatrow":"rich list","map":"map","page":"single row","table":"table"},"working_copy_notice":"This is a copy of the dataset that allows you to make changes to it. It is not visible to others until you publish it.","working_copy_title":"[Working Copy]"},"blob":{"data_extraction":"This data extraction tool or application is available via the link to the right","download":"Download","external_link":"External Link","js_required":"Javascript is required to run the document viewer inside your browser.","js_required_download":{"click_here":"click here","prompt_html":"To download this file instead, %{click_here}."},"limited_download":"This dataset is not tabular data, and may have limited interactivity, but it is available for download"},"column_tip":{"aggregate":"(%{aggregate} on %{data_type})","field_name":"API field name","original_name":"Original Name"},"dataset_contact":{"captcha_failed":"Incorrect answer, please try again.","error_message":"There was an error sending feedback for this dataset. Please retry later.","form":{"email":"Your Email","email_prompt":"Your email address will be shared with the owner of this dataset so they can reply.","message":"Short Message","purpose":"Purpose","purposes":{"copyright_violation":"Copyright Violation","offensive_content":"Offensive Content","other_purpose":"Other","personal_information":"Personal Information","prompt":"-- Select Purpose --","spam":"Spam or Junk"},"send_button":"Send","subject":"Subject"},"other_subject":"A visitor has sent you a message about your '%{dataset_name}' '%{site}' dataset","reasons":{"copyright_violation":"for copyright violation","offensive_content":"for offensive content","personal_information":"for containing personal information","spam":"as potential spam"},"subject":"Your dataset \\"%{dataset_name}\\" has been flagged %{reason}","success_message":"The dataset owner has been notified.","validation":{"no_body":"The message must have a body.","no_email":"Your email address is required.","no_purpose":"You must select a purpose for this message.","no_subject":"You must choose a subject for this message."}},"dataset_status":{"copy_available":"The working copy is now available. The Edit Dataset button will give you access when you are ready to edit.","copy_in_progress":"Please wait while a working copy is made. %{additional}","copy_in_progress_additional":{"processing":"It is currently being processed (started %{time})","queued":"It is in line waiting to be processed (queued %{time}; %{totalQueued} total in line)"},"edit_dataset_button":"Edit Dataset","error_publishing_html":"There was an error in publishing your dataset. Please <a href=\\"http://support.socrata.com\\" rel=\\"external\\">contact Socrata support</a>.","error_publishing_unpublished":"Only unpublished datasets can be published.","immutable":"This dataset is read-only and can only be edited programmatically. Please see SODA 2 documentation for more details.","needs_copy":"This dataset is published and cannot be edited directly. A working copy %{status} that allows you to make all your desired changes before making them publicly available.","needs_copy_status":{"available":"is available","can_be_made":"can be made"}},"email":{"add_email":"Add More","email_button":"Email","message_prompt":"Enter an optional message","private_notice":"Notice: This %{displayName} is currently private. Emailing will grant access to all recipients.","prompt_html":"Share <span class=\\"datasetName\\">%{name}</span> with the following email addresses:","remove_email":"Remove","success":"Your email has been successfully sent.","title_html":"Share &quot;<span class=\\"datasetName\\">%{name}</span>&quot;"},"grid_sidebar":{"add_column":{"convert_address":{"city":"City","city_prompt":"Enter a City","state":"State","state_prompt":"Enter a State","street":"Street","title":"Use Existing Address Columns","zip_code":"Zip Code","zip_code_prompt":"Enter a Zip Code"},"convert_latlong":{"latitude":"Latitude","longitude":"Longitude","title":"Use Existing Latitude & Longitude"},"multiple_choice":{"add_option_button":"Add Option","option":"Option","title":"Multiple Choice Options"},"nested_table":{"default_column_name":"Untitled"},"subtitle":"Add a new column to your dataset","success":"Your column has been added","title":"Add Column","validation":{"view_column":"You cannot add a column to a view"}},"api":{"api_docs":"API Docs","column_ids_title":"Field Names:","developer_portal":"Developer Portal","endpoint_title":"API Endpoint:","intro_html":"The <a href=\\"http://dev.socrata.com/\\">Socrata Open Data API (SODA)</a> provides programmatic access to this dataset including the ability to <a href=\\"http://dev.socrata.com/docs/filtering.html\\">filter</a>, <a href=\\"http://dev.socrata.com/docs/queries.html\\">query</a>, and <a href=\\"http://dev.socrata.com/docs/aggregation.html\\">aggregate</a> data. For more more information, view the <a href=\\"%{view_foundry_url}\\">API docs for this dataset</a> or visit our <a href=\\"http://dev.socrata.com\\">developer portal</a>","reference_html":"To start accessing this dataset programmatically, use the API endpoint provided below. For more information and examples on how to use the Socrata Open Data API, reference our <a href=\\"http://dev.socrata.com\\" rel=\\"external\\">Developer Documentation</a>.","subtitle":"Access this %{view_type} via SODA","title":"SODA API"},"apis":{"create_button":"Create an API","create_button_prompt":"Create an Application Programming Interface (API) to grant programmatic access to this data.","manage_button":"Manage","manage_button_prompt":"Manage the selected API","prompt_existing_html":"<strong>Existing APIs</strong> can be customized. You can control permissions, set request limits, view usage metrics, and edit the documentation.","prompt_new_html":"<strong>API Foundry</strong> allows you to create and configure one or more open, standards-based Application Programming Interfaces (API) for this dataset.","subtitle":"Create and Customize an API","title":"APIs"},"append_replace":{"subtitle":{"immutable":"Upload a new data file whose contents will replace your current data.","mutable":"Upload a new data file whose contents will be added to or replace your current data."},"title":{"immutable":"Replace","mutable":"Append and Replace"},"wizard_button":{"immutable":"Launch the Replace wizard","mutable":"Launch the Append and Replace wizard"}},"base":{"buttons":{"apply":"Apply","cancel":"Cancel","create":"Create","done":"Done","remove":"Remove","update":"Update"},"color_select":{"prompt":"Choose color"},"column_select":{"auto":"Auto","from_grid":"Select a column from the grid","none":"(none)","none_selected":"No column selected","nonselectable":"Invalid Columns","prompt":"Select a column","selectable":"Valid Columns","unselect":"Deselect column"},"datatypes":{"groups":{"standard":"Standard","geometry":"Geometry"},"checkbox":"checkbox","dataset_link":"dataset link","date_time":"date & time","date_time_timezone":"date & time (with timezone)","document":"document","email":"email","flag":"flag","formatted_text":"formatted text","geospatial":"geospatial","list":"list","location":"location","money":"money","multiple_choice":"multiple choice","nested_table":"nested table","number":"number","object":"object","percent":"percent","phone":"phone","photo":"photo (image)","plain_text":"plain text","star":"star","website_url":"website URL"},"generic_select":{"prompt":"Select a value"},"validation":{"at_least":"Value must be at least %{value}","different_value":"You may not use this column twice","file_format":"%{format} file is required","identifier_format":"Valid API identifier characters are lower case letters, digits and underscore. It must start with a letter and cannot have consecutive underscores.","invalid_url":"This URL is not valid","invalid_value":"This value is invalid","invalid_values":"There were problems with the specified values. Please check the errors above.","invalid_view":"This view must be valid","no_greater":"Value must be no greater than %{value}","numeric":"Value must be a number","uid_required":"This requires a 4x4 view UID","verifying_url":"Verifying URL"}},"calendar":{"dates":{"end":"Ending Date","start":"Starting Date","title":"Dates"},"information":{"details":"Details","event_title":"Event Title","new_details_button":"Add Details","title":"Event Information"},"subtitle":"Views with dates can be displayed in a monthly calendar format","title":"Calendar","validation":{"invalid_columns":"This view must have a date column and a text column","viz_limit":"A view may only have one visualization on it"}},"chart":{"advanced":"Advanced Configuration","annotation":"Annotation","auto_update_sort":"Automatically update sort order","auto_update_sort_button":"Apply this now","auto_update_sort_info_donut":"Donut charts work best when sorted in descending clockwise order, inside to outside.","auto_update_sort_info_pie":"Pie charts work best when sorted in descending clockwise order.","axes":{"title":"Axis Options","x_axis_title":"X-Axis Title","x_axis_title_prompt":"Enter a title for the x-axis","y_axis_title":"Y-Axis Title","y_axis_title_prompt":"Enter a title for the y-axis"},"base_color":"Base Color","categories":"Categories","cdlfmtg_color_override_html":"Colors are being overridden by <a href=\\"#Conditional Formatting\\" class=\\"showConditionalFormatting\\">Conditional Formatting</a>. Click <a href=\\"#Clear Conditional Formatting\\" class=\\"clearConditionalFormatting\\">here</a> to clear any current conditional formatting rules.","color_options":{"column_colors":"Column colors"},"color_override_html":"Colors may be overridden using <a href=\\"#Conditional Formatting\\" class=\\"showConditionalFormatting\\">Conditional Formatting</a>. Click <a href=\\"#Clear Conditional Formatting\\" class=\\"clearConditionalFormatting\\">here</a> to clear any current conditional formatting rules.","colors":"Colors","configuration":"Configuration","data_columns":{"new_data_column_button":"Add Data Column","title":"Data Columns"},"data_labels":"Data Labels","data_selection":{"advanced_data_selection":{"title":"Advanced Data Selection"},"chart_definition":{"label_title":"Choose label data","title":"Chart Definition","value_title":"Choose value data"}},"date":"Date","details":"Details","draw_line":"Draw a Line","dsg_color_override_html":"Note that Data Series Grouping will override colors chosen for your data columns. It will not override your <a href=\\"#Conditional Formatting\\" class=\\"showConditionalFormatting\\">Conditional Formatting</a>","error_bars":{"color":"Color","data_high":"Choose higher bound column","data_low":"Choose lower bound column","high":"High","low":"Low","title":"Error Bars"},"flyout":{"new_details_button":"Add Flyout Details","new_values_button":"Add Values","title":"Flyout Details","title_column":"Flyout Title","value":"Flyout Values"},"group_extra":"Group Extra Values","groups":"Groups","headings":{"chart_details":"Chart Details","data_presentation":"Data Presentation","data_selection":"Data Selection"},"label":"Label","labelInBar":"Label in Bar","labels_and_values":"Labels and Values","legend":{"add_text":"Additional text","add_text_button":"Add Additional Text","annotations":"Describe Annotations","conditional_formats":"Describe Conditional Formats","custom_entry":"Custom Label","display":"Display","new_custom_entry_button":"Add Custom Legend Entry","position":"Legend","position_prompt":"Choose a position","positions":{"bottom":"Bottom","left":"Left","none":"None","right":"Right","top":"Top"},"series":"Describe Series","title":"Legend Configuration","title_short":"Legend","value_markers":"Describe Value Markers","values":"Describe Values"},"marker":{"add_button":"Add Annotation","caption":"Caption","marker_title":"Value Marker","new_marker_button":"Add Marker","title":"Annotations","value":"At Value"},"min_angle":"Min. Angle","min_angle_html":"Smallest Angle Displayed (&ordm;)","names":"Names","pie_other":"Warning: %{chart_type} will aggregate distinct values (rows) past the %{row_limit}th into an Other category. Try creating a Roll Up or a filter which limits the number of values and then create a %{chart_type} of that.","pie_truncate":"Warning: %{chart_type} will truncate datasets with more than %{row_limit} distinct values (rows). Try creating a Roll Up or a filter which limits the number of values and then create a %{chart_type} of that.","point_color":"Point Color","point_size":"Point Size","point_title":"Title","series_group":{"alphabetize":"Alphabetize Groups","group_by":"Group by","hideLoadingMsg":"Hide Loading Message","new_column_button":"Add Series Column","row_limit_warning":"Data Series Grouping will run extremely slowly with this many rows.","title":"Data Series Grouping"},"setup":{"title":"Chart Setup","type":"Chart Type","type_prompt":"Select a chart type"},"show_lines":"Show Lines","show_percent":"Show percentages (%)","show_points":"Show Points","show_values":"Show values","smooth_line":"Smooth Line","subtitle":"View data can be displayed with a variety of charts","title":"Chart","treemap_color_html":"These colors are applied to the treemap randomly only for creating visual distinctions. They do not have a specific meaning by themselves.","validation":{"chart_requires":"%{chart_type} needs at least","chart_requires2":"%{and} %{count} of the following column types:","count":"%{count}","required_columns":"%{chart_type} requires %{column_types} columns","viz_limit":"A view may only have one visualization on it"},"value":"Value","valueInBar":"Value in Bar","values":"Values","y_axis_formatting":{"abbreviate":"Abbreviate","auto":"Auto","axis_max":"Axis Max.","axis_min":"Axis Min.","axis_prompt":"Enter a number","decimals":"Decimal Places","no_decimals":"No Decimals","precision":"Precision","title":"Y-Axis Formatting"}},"column_common":{"basic":{"description":"Description","description_prompt":"Enter a Description","name":"Name","name_prompt":"Enter a Name","title":"Basic Information"},"linked_dataset":{"dataset":"Dataset","dataset_prompt":"Dataset URL or 4x4 UID","key":"Key Column","label":"Label Column","title":"Linked Dataset"},"type":{"key":"Key","source":"Source","title":"Column Type","type":"Data Type","type_prompt":"Select a data type"}},"column_order":{"columns":{"title":"Columns"},"prompt_html":"Drag the columns into the order you would like, and then press <strong>apply</strong> to apply the new order.","subtitle":"Change the order of your columns","title":"Column Order","validation":{"valid_columns":"This view must be valid and must have visible columns."}},"column_properties":{"advanced":{"api_identifier":"API Identifier","new_rdf_button":"Add RDF Properties","semantics":"Semantics","title":"Advanced","url":"Enter custom URL"},"column_totals":{"title":"Column Totals","total":"Total","total_prompt":"Select a column total"},"display_order":{"new_item_button":"Add Item","option":"Option","title":"Display Order (for DataSlate)"},"formatting":{"alignment":"Alignment","title":"Formatting","view_style":"View Style"},"link":{"key":"Key","source":"Source","title":"Link"},"localization":{"decimal":"Decimal","thousands":"Thousands","title":"Localization"},"money":{"groups":{"common":"Common","all":"All"},"abbreviated":"Abbreviated","currency":"Currency","format_mask_warning":"","no_precision":"None","precision":"Precision","title":"Money Formatting"},"multiple_choice":{"new_option_button":"Add Option","option":"Option","title":"Multiple Choice Options"},"number":{"display":"Display","no_commas":"No Commas","no_precision":"None","precision":"Precision","title":"Number Formatting"},"number_advanced":{"format_mask":"Format Mask","format_mask_prompt":"Use #s to indicate numeric digits, and other characters where you want them to go; for example a social security number would be ###-##-####","format_mask_warning":"This may override some of your settings above.","title":"Advanced Formatting"},"photo":{"size":"Size","size_prompt":"Choose a size","sizes":{"featured":"Featured (150x80)","large":"Large (220x220)","medium":"Medium (150x150)","original":"Original","thumb":"Thumbnail (80x80)","tiny":"Tiny (24x24)"},"title":"Photo Options"},"subtitle":"Update various properties on this column","success":"Your column has been updated","title":"Column Properties","url":{"base_url":"Base URL","base_url_prompt":"Enter the common URL prefix","title":"URL Options"},"validation":{"published":"Please make a working copy or view of this dataset to change column properties","unsaved":"You cannot edit column properties for an unsaved view"}},"conditional_formatting":{"change_icon":"change","conditions":{"description":"Description","description_prompt":"Describe this match","item":{"operator":"Select a comparison","subcolumn":"Select a sub-column","title":"Condition:"},"new_condition_button":"Add Condition","new_rule_button":"Add New Rule","title":"Conditions","when":{"all":"All Conditions","always":"Always","any":"Any Condition"},"when_title":"When"},"format_html":"Use<br />this color<br />or this icon","subtitle":"Conditional Formatting allows you to change the background color of rows based on custom criteria. Each row will be assigned the color of the first matching condition.","title":"Conditional Formatting","validation":{"no_columns":"This view has no columns to filter","no_icons":"Icons are only relevant for map view"}},"delete":{"confirm":"This will delete the %{view_type} permanently. There is no undo! Are you sure you wish to proceed?","delete_button":"Delete this %{view_type}","subtitle":"Delete this %{view_type}","title":"Delete","warning":{"api":"Deleting this API will break any applications that use this API.","published":"Deleting this dataset will also delete any views associated with it.","view":"Deleting this view will only affect other views that are based upon it.","working_copy":"You can delete this working copy and make a new one in order to revert any changes you've made."}},"digital_signing":{"consumer":"To obtain a signed version of this dataset, simply click on the link below to generate a key and begin the download. The key and downloaded data are specific to the current version of this dataset; if the owner updates the dataset in the future, you will have to restart the process to get the new data. Publish the downloaded data along with the key that you receive, and using the instructions found within the downloaded package, third parties will be able to confirm that your data is legitimate.","generate_button":"Generate and Download Now","intro_html":"Using a <strong>digitally signed dataset</strong>, it is possible to prove using cryptographically secure methods that a particular copy of a Socrata dataset has not been tampered with. This is useful if, for instance, you are looking to publish findings based on this data, and you want to be able to prove its integrity.","publisher":"To generate a signed version of this dataset, simply click on the link below to generate a key. Note that if you update this dataset in the future, you will have to return and regenerate the key in order for consumers to again have access to it. Also note that this process involves operations on the entirety of the data, so it may take some time if your dataset is very large, or contains large attachments.","publisher_generation":"Only dataset owners may generate signed keys.","signature_header":"Signature","subtitle":"Export a version of this data whose integrity may later be verified.","title":"Digital Signing","validation":{"non_tabular":"Only tabular data may be printed"}},"download":{"download_as":"Download As","download_dataset":"Please download the dataset from which this view is derived.","geo_header":"Download Geospatial Data","layers_header":"Download without Geospatial Data","subtitle":"Download a copy of this dataset in a static format","title":"Download"},"feed":{"subtitle":"The discussion feed shows you the conversation and activity around a dataset","title":"Discuss"},"form":{"information":{"name":"Name","name_prompt":"Enter a name","public":"Public?","success":"Success URL","success_prompt":"Enter a webpage URL","title":"Form Information"},"subtitle":"Forms allow you to gather data directly from your website into a dataset","title":"Form","validation":{"no_columns":"This view must have visible columns to create a form"}},"map":{"advanced":{"exclusive":"Exclusive","hide_geolocator":"No Geolocator","subtitle":"Select 'Exclusive' if only one base map should display at a time.","title":"Advanced Configuration","use_legend":"Use Legend"},"base_layers":{"alias":"Alias","layer":"Layer","layer_prompt":"Select a layer","layer_url":"Layer URL","new_base_map_button":"Add Base Map","opacity":"Opacity","subtitle":"Select from a list of map services and configure how it will appear.","title":"Base Maps"},"data_layer":{"alias":"Alias","alias_prompt":"Describe the dataset","base_color":"Base Color","color_high":"Color (High)","color_low":"Color (Low)","flyout":{"details":"Flyout Details","labels":"w/o Labels?","new_details_button":"Add Flyout Details","opacity":"Opacity","title":"Flyout Configuration","title_column":"Title"},"highlight_color":"Hover Color","icon":"Icon","location":"Location","mondara_note":"Mondara layers are currently not customizable further.","opacity":"Opacity","plot_style":"Plot Style","plot_style_prompt":"Select a plot style","point":"Point Customization","point_color":"Point Color","point_size":"Point Size","quantity":"Quantity","region":"Region","region_level_prompt":"Select a region level","region_prompt":"Select a region"},"layers":{"advanced":"Advanced Config for %{name}","config":"Config for %{name}","custom":"Custom Layer","dataset":"Dataset","edit":"edit","new_data_button":"Add Data","title":"Dataset Summary"},"legend":{"conditional_formats":"Describe Conditional Formats","custom_entry":"Add Custom Legend Entry","entry_label":"Label","position":"Legend","position_prompt":"Choose a position","positions":{"bottom_left":"Bottom Left","none":"None","top_right":"Top Right"},"title":"Legend Configuration"},"plots":{"heatmap":"Boundary Map","point":"Point Map","rastermap":"Heat Map"},"regions":{"canada_provinces":"Canada Provinces","counties":"US Counties in","countries":"Countries","state":"US States"},"subtitle":"Views with locations can be displayed as points on a map","title":"Map","validation":{"hidden_location_html":"You can <a href=\\"#showLoc\\" title=\\"Show a location column\\">show a hidden location column</a>.","location_column":"A location column is required to create a map.","viz_limit":"A view may only have one visualization on it"}},"odata":{"endpoint_action":"Copy this link:","intro_html1":"Create a spreadsheet in Microsoft Excel to analyze or visualize this dataset. By using an OData link, the data will be refreshable.","intro_html2":"Use Microsoft Excel 2010, Microsoft Excel 2013 or Microsoft Power Query. Follow the instructions here, using <a href=\\"%{doc_link}\\">Socrata's OData documentation</a>.","subtitle":"Access this dataset via OData","title":"OData"},"ownership":{"error":"There was a problem changing the ownership. Please try again later.","me":"Me","subtitle":"To transfer to another user, enter the email address or account name of the Socrata ID, then select the desired account from the dropdown list. You may also enter the user's profile URL if you know it. Only users with existing accounts may take ownership of datasets.","success":{"me":"You are now the owner","user":"Ownership successfully transferred to %{owner}"},"title":"Ownership","transfer_to":"Transfer ownership to","validation":{"invalid_user":"User not recognized. Please try searching for a user by name, email, or profile URL.","no_user":"Please select a user.","valid_saved":"This view must be valid and saved"}},"permissions":{"error":"There was an error modifying your dataset permissions. Please try again later","features_html":"Additional <span class=\\"datasetTypeName\\">dataset</span> features","status_html":"This <span class=\\"datasetTypeName\\">dataset</span> is currently <span class=\\"datasetPublicText\\">%{visibility}</span>","subtitle":"Manage the permissions of this %{view_type}","success":"Your permissions have been saved","title":"Permissions","validation":{"valid_saved":"This view must be valid and saved"}},"print":{"margins":{"bottom":"Bottom:","left":"Left:","right":"Right:","top":"Top:"},"margins_title":"Margins (inches):","options":{"fit":"Shrink to fit dataset on one page","header_icons":"Display icons in column header","headers_every_page":"Print column titles on each page"},"options_title":"Options:","orientation":"Orientation:","orientations":{"landscape":"Landscape","portrait":"Portrait"},"paper_size":"Paper Size:","paper_sizes":{"a0":"A0 (841 x 1189mm)","a1":"A1 (594 x 841mm)","a2":"A2 (420 x 594mm)","a3":"A3 (297 x 420mm)","a4":"A4 (210 x 297mm)","legal":"Legal (8.5 x 14 inches)","letter":"Letter (8.5 x 11 inches)","tabloid":"Tabloid (11 x 17 inches)"},"print_button":"Print","subtitle":"Export this dataset to a printable PDF format","title":"Print","validation":{"non_tabular":"Only tabular data may be printed"}},"sdp":{"preview":"Preview","subtitle":"The Social Data Player enables you to publish this dataset on the Internet at large","title":"Social Data Player","validation":{"public":"This view must be public before it can be published","valid_saved":"This view must be valid and saved"}},"share":{"error":"There was an error modifying your shares. Please try again later","loading_shares":"Loading Shares...","no_shares_html":"You are not currently sharing this <span class=\\"datasetTypeName\\">dataset</span> with anyone","notify_button":"Notify All of Changes","notify_success":"Notification sent","prompt_html":"This <span class=\\"datasetTypeName\\">dataset</span> is <span class=\\"publicOrPrivate\\">%{visibility} </span> <span class=\\"andSharedHint %{hide}\\">and shared with:</span>","share_button_html":"Share this <span class=\\"datasetTypeNameUpcase\\">Dataset</span>","subtitle":"Share this %{view_type}","success":"Your permissions have been updated","title":"Sharing","validation":{"valid_saved":"This view must be valid and saved"}},"showhide_columns":{"columns":{"title":"Columns"},"subtitle":"Adjust which columns are visible in this view","title":"Show &amp; Hide Columns","warnings":{"active_filter":"You cannot hide this column because it has an active filter."}},"sort_rollup":{"rollup":{"add_group_button":"Add Grouping Column","add_rollup_button":"Add Roll-Up Column","function":"Function","group_by":"Group By","group_function_label":"Based On","group_function_prompt":"Select a grouping function","roll_up":"Roll-Up","roll_up_function":"Select a function","title":"Roll-Ups &amp; Drill-Downs"},"sort":{"add_column_button":"Add Column","column":"Column","direction":"Direction","directions":{"ascending":"Ascending","descending":"Descending"},"title":"Sort"},"subtitle":"You can group rows together and summarize data with a roll-up; and sort one or more columns","title":"Sort &amp; Roll-Up","validation":{"no_eligible_columns":"This view has no columns to roll-up or sort","no_function":"Each roll-up column must have a function","no_group_bys":"You must group by at least one column to roll-up a column"}},"tabs":{"about":"About","discuss":"Discuss","edit":"Edit","embed":"Embed","export":"Export","filter":"Filter","manage":"Manage","more":"More","more_views":"More Views","visualize":"Visualize"},"view_list":{"delete_confirm":"Are you sure you want to delete %{name}?","delete_snapshot_confirm":"Are you sure you want to delete %{name} (snapshotted %{date})?","filter":{"all":"All Views"},"filter_title":"Show only","item":{"author_html":"<span class=\\"date\\"></span> by <span class=\\"author\\"></span>","delete":"Delete this view","expand":"Click to expand"},"no_results":"There are no results","no_results_html":"","pagination":{"last":"See last view","next":"See next %{count} views"},"search":"Search views","snapshots":{"subtitle":"View previously published versions of this data","title":"Dataset Snapshots"},"sort":{"alphaAscending":"A-Z","dateAscending":"Oldest to Newest","dateDescending":"Most Recent","popularity":"Popularity"},"sort_title":"Sort by","views":{"subtitle":"See existing filters, maps, charts and other views on this dataset","title":"Views"}},"visualize":{"choose_type":"Visualization Type"}},"new_ux_button":"Show Me","new_ux_creating_page":"The new Data Lens page is being created and analyzed","new_ux_error":"A preview is not available for this dataset.","new_ux_link":"Try this dataset in our new data exploration tool (beta)","new_ux_nbe_warning":"Internal Only: Old UX view of New Backend dataset. Ordinary users would have been redirected to %{url}","new_ux_text":"See this data in the new Data Lens experience","new_ux_title":"Ready to visually explore?","save_dialog":{"descriptions":{"leaving":"You have unsaved data that will be lost if you leave this page. Please choose whether or not you wish to save this view before you leave; or choose Cancel to return to the page.","reload_save":"This change requires a reload. You may Save your changes to view them, or Cancel to stay on this page.","reload_update":"This change requires a reload. You may Update this view or Save a new view to see your changes, or Cancel to stay on this page."},"form":{"new_name":"Enter a name for your new view:"},"titles":{"normal":"Save view","prompt":"Do you want to save your view?"},"validation":{"auth_required":"You must be logged in to save a view","view_name_required":"A view name is required"}},"show":{"remove_confirm":"Are you sure you want to remove this view?","unpublished_alert":"This dataset is not yet published to allow you to make any necessary changes before making it available to everyone. It will not be visible until you publish this dataset."},"subscribe":{"intro_html":"<strong>To subscribe to the <span class=\\"datasetName\\">%{name}</span> dataset via an RSS reader</strong>, use one of the following links:","rss":"Download as RSS","rss_program":"Open in External Program","subscribe_button":"Subscribe via Email","subscribe_html":"<strong>To receive email notifications</strong> when new data is published, check the Subscribe box below.","subscribed_html":"<strong>You are currently subscribed to this <span class=\\"datasetTypeName\\">dataset</span> via email</strong>, and will receive notifications when new data is published.","title_html":"Subscribe to the &quot;<span class=\\"datasetName\\">%{name}</span>&quot; <span class=\\"datasetTypeNameUpcase\\">Dataset</span>","unsubscribe":"If you no longer wish to receive notifications, uncheck the Subscribe box below."},"unable_to_find_dataset_page":"We were unable to find a Data Lens page for this dataset."}}}"));
});
</script>
<script type="text/javascript"> if (typeof blistTranslations == 'undefined') blistTranslations = [];
blistTranslations.push(function()
{
return JSON.parse($.unescapeQuotes("{"screens":{"about":{"actions":"Actions","activity":"Activity","attachments":"Attachments","category":"Category","comments":"Comments","community":"Community Rating","contact_dataset_owner":"Contact Dataset Owner","contributors":"Contributors","created":"created","data_provided_by":"Data Provided By","description":"Description","downloads":"Downloads","edit_metadata":"Edit Metadata","flag_dataset":"Flag Dataset","license":"License","licensing":"Licensing and Attribution","links":"Links","meta":"Meta","none":"(none)","permalink":"Permalink","permanent_links":"Permanent Links","permissions":"Permissions","private":"Private","public":"Public","raters":"Raters","resource_name":"Resource Name","row_class":"Row Class","row_count":"Row Count","row_identifier":"Row Identifier","semantics":"Semantics and RDF","short_url":"Short URL","snapshotted":"snapshotted","soda2_support":"SODA2 Only","soda2_yes":"Yes","source_link":"Source Link","spatial_extent":"Spatial Extent","subject_column":"Subject Column","tags":"Tags","terms_of_use":"Terms of Use","updated":"updated","view_full_page":"View Full Page","view_statistics":"View Statistics","visits":"Visits","your":"Your Rating"}}}"));
});
</script>
<script type="text/javascript"> if (typeof blistTranslations == 'undefined') blistTranslations = [];
blistTranslations.push(function()
{
return JSON.parse($.unescapeQuotes("{"controls":{"upload_dialog":{"browse":"Browse","title_file":"Upload a File","title_image":"Upload a Image","title_photo":"Upload a Photo","to_upload_file":"File to Upload:","to_upload_image":"Image to Upload:","to_upload_photo":"Photo to Upload:","upload":"Upload"}}}"));
});
</script>
<script type="text/javascript"> if (typeof blistTranslations == 'undefined') blistTranslations = [];
blistTranslations.push(function()
{
return JSON.parse($.unescapeQuotes("{"controls":{"editors":{"actions":{"add":"Add","remove":"Remove","replace":"Replace","view":"View"},"document":{"add_title":"Add a new document","remove_title":"Remove the document","replace_title":"Replace the document"},"photo":{"add_title":"Add a new image","remove_title":"Remove the image","replace_title":"Replace the image","view_title":"View the image in a separate window"}}}}"));
});
</script>
</div>
</div>
<div id="siteFooter" role="contentinfo">
<a name="footerLinks" tabindex="-1"></a>
<div id="footer_nyc-open-data">
<span class="copyright">
© 2015 The City of New York
</span>
<ul class="siteFooterNav"><li><a href="http://www.nyc.gov/html/data/terms.html" rel="nofollow">Terms of Service</a></li><li><a href="http://www.nyc.gov/privacy" rel="nofollow">Privacy</a></li></ul>
<div class="footerLogos clearfix">
<div class="nyLogo doitt"><a href="http://www.nyc.gov/doitt">DOITT</a></div>
<div class="nyLogo digital"><a href="http://www.nyc.gov/digital">Digital</a></div>
</div>
</div>
<div id="footer_nyc-mmr">
<span class="copyright">© 2015 The City of New York</span>
<ul class="siteFooterNav">
<li><a href="http://www.nyc.gov/contact">Contact Us</a></li>
<li><a href="http://www.nyc.gov/faqs">FAQs</a></li>
<li><a href="http://www.nyc.gov/privacy">Privacy Statement</a></li>
<li><a href="http://www.nyc.gov/html/misc/html/tou.html">Terms of Use</a></li>
<li><a href="http://www.nyc.gov/sitemap">Site Map</a></li></ul>
</ul>
</div>
<div id="footer_redesign2">
<div id="footerInner">
<div class="footerText">
<a href="http://www.nyc.gov/contact">Contact Us</a> |
<a href="http://www.nyc.gov/privacy">Privacy Statement</a> |
<a href="http://www.nyc.gov/html/misc/html/tou.html">Terms of Use</a> |
<a href="http://www.nyc.gov/sitemap">Site Map</a> |
© 2015 The City of New York
</div>
</div>
</div>
</div>
<div class="socrataModal"><div class="socrataModalWrapper"></div></div>
<div id="templates" style="display:none">
<div class="menu">
<a class="menuButton" href="#"><span class="icon"></span></a>
<div class="menuDropdown">
<ul class="menuColumns">
<li class="menuColumn">
<ul class="menuEntries">
<li class="menuEntry">
<a href="#" class="clearfix">
<span class="icon"></span>
<span class="contents"></span>
<div class="subtext"></div>
</a>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- should try to find a way to combine these or simplify -->
<div class="settings menu">
<div class="menuDropdown">
<ul class="menuColumns">
<li class="menuColumn">
<ul class="menuEntries">
<li class="menuEntry">
<a href="#" class="clearfix">
<span class="contents"></span>
</a>
</li>
</ul>
</li>
</ul>
</div>
</div>
<div class="outerPane">
<div class="paneOverlay hide"></div>
<div class="mainTitleBlock">
<h3 class="title"></h3>
</div>
<div class="panes">
</div>
</div>
<div class="sidebarPane">
<div class="subtitleBlock">
<p class="subtitle"></p>
</div>
<div class="readOnlyBlock">
<p class="readOnlyMessage"></p>
</div>
<div class="paneContent">
<div class="formSection">
<input type="checkbox" class="sectionSelect" />
<label class="formHeader">
<span class="formHeaderIcon"></span>
</label>
<div class="sectionDisabledMessage"></div>
<div class="sectionWarningMessage"></div>
<div class="sectionContent"></div>
</div>
<div class="mainError"></div>
<div class="required hide">Required Field</div>
<ul class="finishButtons actionButtons clearfix">
<li></li>
</ul>
</div>
</div>
<div class="itemsListBlock">
<div class="itemsContent">
<div class="controlsBar clearfix">
<div class="sortMenu menu"></div>
<div class="showMenu menu"></div>
<div class="searchWrapper">
<input type="text" title="Search views" class="viewSearch textPrompt" />
<a class="clearViewSearch remove"
href="#clear"><span class="icon"></span></a>
</div>
</div>
<ul class="itemsList"></ul>
<a href="#More" class="moreLink fullButton"></a>
</div>
<div class="emptyResult">
There are no results
</div>
</div>
<ul class="viewItemContainer">
<li class="viewItem">
<span class="viewIcon"><span class="icon"></span></span>
<a class="nameLink"><span class="pubDate"></span><span class="name"></span></a>
<span class="authorLine">
<span class="date"></span> by <span class="author"></span>
</span>
<span class="description collapsed"></span>
<a href="#delete" title="Delete this view" class="remove deleteViewLink">
<span class="icon"></span>
</a>
<a href="#expand" title="Click to expand" class="expand downArrow">
<span class="icon"></span>
</a>
</li>
</ul>
<div class="showHideBlock">
<ul class="sectionContent">
<li class="columnItem">
<input type="checkbox" />
<label>
<span class="icon"></span>
<span class="name"></span>
</label>
</li>
</ul>
</div>
<div class="columnOrderBlock">
<ul class="sectionContent columnsList">
<li class="columnItem">
<span class="grabHandle"></span>
<span class="icon"></span>
<span class="name"></span>
</li>
</ul>
<p>Drag the columns into the order you would like, and then press <strong>apply</strong> to apply the new order.</p>
</div>
<div class="embedForm">
<div class="embedForm commonForm">
<label for="embed_code" class="formHeader">Embed this Dataset</label>
<div class="embedCodeWrapper">
<textarea id="embed_code" name="embed_code" class="htmlCode"><div><iframe width="_width_px" title="SAT Results" height="_height_px" src="https://data.cityofnewyork.us/w/f9bf-2cp4/25te-f2tw?cur=hMlkoIUTAwA&from=root" frameborder="0"scrolling="no"><a href="https://data.cityofnewyork.us/Education/SAT-Results/f9bf-2cp4" title="SAT Results" target="_blank">SAT Results</a></iframe><p><a href="http://www.socrata.com/" target="_blank">Powered by Socrata</a></p></div></textarea>
</div>
<div class="privateDatasetMessage flash error hide">This view is currently private. You can preview it, but you will need to make it public before people will be able to see it.</div>