-
Notifications
You must be signed in to change notification settings - Fork 0
/
npkmc_222_091.xml
1905 lines (1905 loc) · 75.4 KB
/
npkmc_222_091.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<ead xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="urn:isbn:1-931666-22-9" xmlns:ns2="http://www.w3.org/1999/xlink" xsi:schemaLocation="urn:isbn:1-931666-22-9 https://www.loc.gov/ead/ead.xsd">
<!-- Header Portion of EAD -->
<eadheader langencoding="iso639-2b" scriptencoding="iso15924" repositoryencoding="iso15511" countryencoding="iso3166-1" dateencoding="iso8601">
<eadid countrycode="US" mainagencycode="US-NPkMC" url="http://www.marist.edu">npkmc_222_091</eadid>
<filedesc>
<titlestmt>
<titleproper>The Cornwall Pumped Storage Project Collection</titleproper>
<author>Janet Rice<![CDATA[&]]>John Ansley, PhD, 2006; Finding Aid Encoded by: Monish M. Singh, 2006; Finding Aid Encoding updated by: Connor Johnson, 2022</author>
</titlestmt>
<publicationstmt>
<publisher>Marist College
<lb/>Archives and Special Collections
</publisher>
<address>
<addressline>3399 North Road
<lb/>Poughkeepsie, NY 12601
<lb/>Phone: 845-575-5217
<lb/>Fax: 845-575-3150
<lb/><lb/>Email: library.archives@marist.edu<lb/>Website:
https://archives.marist.edu/</addressline>
</address>
<date type="publication" normal="2006-07-13">July 13, 2006</date>
</publicationstmt>
</filedesc>
<profiledesc>
<creation>Monish M. Singh<date>2006</date>
</creation>
<langusage>Finding aid written in<language langcode="eng" scriptcode="Latn">English</language></langusage>
<descrules><abbr>DACS</abbr>Describing Archives: A Content Standard. Chicago: Society of American Archivists, 2013.</descrules>
</profiledesc>
<revisiondesc>
<list>
<item>Feburary 2022, EAD updated by Connor Johnson</item>
</list>
</revisiondesc>
</eadheader>
<!-- Archival Description portion of EAD -->
<archdesc level="collection">
<did>
<unittitle>Cornwall Pumped Storage Project Collection</unittitle>
<unitid countrycode="US" repositorycode="US-NPkMC">NPkMC-222-091</unitid>
<unitdate type="inclusive" normal="1953/1981">1953 - 1981</unitdate>
<physdesc>
<extent type="size">7 Linear Feet</extent>
</physdesc>
<repository>
<corpname>Marist College Archives and Special Collections</corpname>
</repository>
<origination label="creator">
<corpname>Scenic Hudson Preservation Conference</corpname>
</origination>
<abstract>The Cornwall Collection documents the issues surrounding the Pumped-Storage
Project at Cornwall-on-Hudson by the Consolidated Edison Company of New York, Inc.
The collection includes various scientific studies in the Hudson River Estuary,
specifically fish studies in the Indian Point area. It also includes legal documents
from the Storm King Case, correspondence, and newspaper clippings.</abstract>
<langmaterial>
<language langcode="eng">English</language>
</langmaterial>
<physloc>Please contact the Marist College Archives and Special Collections for information regarding use and access of this collection.</physloc>
</did>
<relatedmaterial>
<head>Related Collections</head>
<p>
<extref href="https://www.empireadc.org/search/catalog/npkmc_222_094">Alexander Saunders Papers: Records Relating to the Storm King Case, 1962 - 1966</extref>
</p>
<p>
<extref href="https://www.empireadc.org/search/catalog/npkmc_222_158">Grim Collection: Hudson River Fisheries Investigation, 1965 - 1968</extref>
</p>
<p>
<extref href="https://www.empireadc.org/search/catalog/npkmc_223_071">Hudson River Environmental Society Collection, 1963 - 2005</extref>
</p>
<p>
<extref href="https://www.empireadc.org/search/catalog/npkmc_221_081">Hudson River Valley Greenway Council Collection, 1989-1996</extref>
</p>
<p>
<extref href="https://www.empireadc.org/search/catalog/npkmc_222_181">Hudson Valley GREEN Collection, 1981 - 2002</extref>
</p>
<p>
<extref href="https://www.empireadc.org/search/catalog/npkmc_212_162">Mr. and Mrs. Henry Dain Papers, 1963 - 1967</extref>
</p>
<p>
<extref href="https://www.empireadc.org/search/catalog/npkmc_222_082">On the River Collection, 1986 - 1993</extref>
</p>
<p>
<extref href="https://www.empireadc.org/search/catalog/npkmc_221_254">Scenic Hudson, Inc. Administrative History Collection, 1960- 2000</extref>
</p>
<p>
<extref href="https://www.empireadc.org/search/catalog/npkmc_222_083">Scenic Hudson Decision Hearings Transcripts Collection, 1977- 1980</extref>
</p>
<p>
<extref href="https://www.empireadc.org/search/catalog/npkmc_222_081">Senator &amp;amp; Mrs. Whitney N. Seymour Jr. Papers: Records Relating to the Storm King Case, 1962-1978</extref>
</p>
</relatedmaterial>
<scopecontent>
<head>Collection Overview</head>
<p>The Cornwall Collection contains a variety of scientific studies, including
ecological studies of the Hudson River Estuary, fisheries investigations, and the
impact of the power plant on the fish and environment. In addition, the collection
has several newspaper clippings related to the Storm King Case and Indian Point.</p>
</scopecontent>
<acqinfo>
<head>Acquisitions Information</head>
<p>The Cornwall Pumped Storage Project Collection was donated to Marist College by the
Cornwall Public Library.</p>
</acqinfo>
<bioghist encodinganalog="545">
<head>Historical Note</head>
<p>In September 1962, the Consolidated Edison Company announced plans to build a pumped
storage facility, the largest of its kind in the world, at Storm King Mountain near
Cornwall, New York. The initial application for license to construct the plant was
filed with the Federal Power Commission in January 1963. On November 8, 1963, a
small group of concerned citizens met at the home of Carl Carmer and formed the
Scenic Hudson Preservation Conference to fight the pumped storage project on the
grounds that it posed a threat to the Cornwall water supply, the Hudson River
fisheries, and to the scenic beauty and historic significance of Storm King
Mountain. Thanks to the tireless work of those involved with Scenic Hudson, the
mountain would come to weather this storm as well. Today the mountain is home to
Storm King State Park and thousands of visitors come to hike the trails this
historic mountain has to offer.</p>
</bioghist>
<accessrestrict>
<head>Restrictions to Access</head>
<p>There are no restrictions on this collection</p>
</accessrestrict>
<userestrict>
<head>Notice of Copyright</head>
<p>Individuals requesting reproductions expressly assume the responsibility for compliance with all pertinent provisions of the Copyright Act, 17 U.S.C. ss101 et seq. Patrons further agree to indemnify and hold harmless the Marist College Archives and Special Collections and its staff in connection with any disputes arising from the Copyright Act, over the reproduction of material at the request of patrons. For more information please visit the following website: http://www.loc.gov/copyright/title17/.</p>
</userestrict>
<prefercite>
<head>Preferred Citation</head>
<p>[Description of item, date, location of item in order of series, box number, folder number ], in the Cornwall Pumped Storage Collection, Archives and Special Collections, James A. Cannavino Library, Marist College.</p>
</prefercite>
<dsc type="combined">
<c01 level="series">
<did>
<unitid>1</unitid>
<unittitle>1. Reports</unittitle>
<unitdate type="inclusive" normal="1966/1979">1966 - 1979</unitdate>
<physdesc>
<extent type="size">5 Linear Feet</extent>
<extent type="boxes">Boxes: 1 - 5</extent>
</physdesc>
</did>
<scopecontent>
<p>Series contains scientific studies pertaining to the influence of the power plant on the
ecosystem of the Hudson River.</p>
</scopecontent>
<arrangement>
<p>By subject, chronological</p>
</arrangement>
<c02 level="subseries">
<did>
<unitid>1.1</unitid>
<unittitle>Subseries 1.1: Hudson River Ecological Studies</unittitle>
<unitdate type="inclusive" normal="1973/1978">1973 - 1978</unitdate>
<physdesc>
<extent type="boxes">Box: 1 - 2</extent>
</physdesc>
</did>
<c03 level="file">
<did>
<container type="folder">1</container>
<unittitle>Hudson River Ecological Study: in the area of Indian Point, April
1973</unittitle>
<container type="box">1</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">2</container>
<unittitle>Hudson River Ecological Study: in the area of Indian Point, Nov.
1973</unittitle>
<container type="box">1</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">3</container>
<unittitle>Hudson River Ecological Study: in the area of Indian Point, 1973
Annual Report</unittitle>
<container type="box">1</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">4</container>
<unittitle>Hudson River Ecological Study: in the area of Indian Point, 1974
Annual Report</unittitle>
<container type="box">1</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">5</container>
<unittitle>Hudson River Ecological Study: in the area of Indian Point, 1975
Annual Report</unittitle>
<container type="box">1</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">6</container>
<unittitle>Semi-Annual Progress Report for Hudson River Ecological Study: in
the area of Indian Point, April 1975</unittitle>
<container type="box">1</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">1</container>
<unittitle>Hudson River Ecological Study: in the area of Indian Point, 1976
Annual Report</unittitle>
<container type="box">2</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">2</container>
<unittitle>Hudson River Ecological Study: in the area of Indian Point -
Thermal Effects Report, Sept. 1976</unittitle>
<container type="box">2</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">3</container>
<unittitle>Hudson River Ecological Study: in the area of Indian Point, 1977
Annual Report</unittitle>
<container type="box">2</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">4</container>
<unittitle>Hudson River Ecological Study: in the area of Indian Point, 1978
Annual Report</unittitle>
<container type="box">2</container>
</did>
</c03>
</c02>
<c02 level="subseries">
<did>
<unitid>1.2</unitid>
<unittitle>Subseries 1.2: Hudson River Ecosystems Studies</unittitle>
<unitdate type="inclusive" normal="1971/1975">1971 - 1975</unitdate>
<physdesc>
<extent type="boxes">Box: 3 - 4</extent>
</physdesc>
</did>
<c03 level="file">
<did>
<container type="folder">1</container>
<unittitle>Hudson River Ecosystem Studies: Effects of Entrainment by the
Indian Point Power Plant on Biota in the Hudson River Estuary, Progress
Report for 1971 and 1972</unittitle>
<container type="box">3</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">2</container>
<unittitle>Hudson River Ecosystem Studies: Effects of Entrainment by the
Indian Point Power Plant on Biota in the Hudson River Estuary, Addenda
to: the 1973 Report</unittitle>
<container type="box">3</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">3</container>
<unittitle>Hudson River Ecosystem Studies: Effects of Entrainment by the
Indian Point Power Plant on Biota in the Hudson River Estuary, Progress
Report for 1973</unittitle>
<container type="box">3</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">4</container>
<unittitle>Hudson River Ecosystem Studies: Semi-Annual Progress Report, 1
January to 10 June, 1974</unittitle>
<container type="box">3</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">5</container>
<unittitle>Hudson River Ecosystem Studies: Effects of Entrainment by the
Indian Point Power Plant on Biota in the Hudson River Estuary, Progress
Report for 1974</unittitle>
<container type="box">3</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">6</container>
<unittitle>Hudson River Ecosystem Studies: Effects of Temperature and
Chlorine on Entrained Hudson River Organisms, Progress Report for 1975</unittitle>
<container type="box">3</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">1</container>
<unittitle>Hudson River Ecosystem Studies: Effects of Entrainment by the
Indian Point Power Plant on Biota in the Hudson River Estuary, Progress
Report for 1975</unittitle>
<container type="box">4</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">2</container>
<unittitle>Hudson River Ecosystem Studies: Effects of Entrainment by the
Indian Point Power Plant on Biota in the Hudson River Estuary, Progress
Report for 1976</unittitle>
<container type="box">4</container>
</did>
</c03>
</c02>
<c02 level="subseries">
<did>
<unitid>1.3</unitid>
<unittitle>Subseries 1.3: Multi-Plant Impact Study</unittitle>
<unitdate type="inclusive" normal="1975/1979">1975 - 1979</unitdate>
<physdesc>
<extent type="boxes">Box: 4 - 6</extent>
</physdesc>
</did>
<c03 level="file">
<did>
<container type="folder">3</container>
<unittitle>1974 Year-Class Report for the Multi-Plant Impact Study of the
Hudson River Estuary, Volume 1 Text, May 1977</unittitle>
<container type="box">4</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">4</container>
<unittitle>1974 Year-Class Report for the Multi-Plant Impact Study of the
Hudson River Estuary, Volume 2 Appendices, May 1977</unittitle>
<container type="box">4</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">5</container>
<unittitle>1974 Year-Class Report for the Multi-Plant Impact Study of the
Hudson River Estuary, Volume 3 Lower Estuary Study, May 1977</unittitle>
<container type="box">4</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">6</container>
<unittitle>1975 Year-Class Report for the Multi-Plant Impact Study of the
Hudson River Estuary, June 1978 Final Report</unittitle>
<container type="box">4</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">1</container>
<unittitle>Semi-Annual Progress Report for the Multi-Plant Impact Study of
the Hudson River Estuary, Feb. 1975</unittitle>
<container type="box">5</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">2</container>
<unittitle>First Annual Report for the Multi-Plant Impact Study of the
Hudson River Estuary, Volume 1 Text, July 1975</unittitle>
<container type="box">5</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">3</container>
<unittitle>First Annual Report for the Multi-Plant Impact Study of the
Hudson River Estuary, Volume 2 Appendices, July 1975</unittitle>
<container type="box">5</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">4</container>
<unittitle>1976 Year-Class Report for the Multi-Plant Impact Study of the
Hudson River Estuary, May 1979</unittitle>
<container type="box">5</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">1</container>
<unittitle>1977 Year-Class Report for the Multi-Plant Impact Study of the
Hudson River Estuary</unittitle>
<container type="box">6</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">2</container>
<unittitle>1978 Year-Class Report for the Multi-Plant Impact Study of the
Hudson River Estuary (no folder)</unittitle>
<container type="box">6</container>
</did>
</c03>
</c02>
<c02 level="subseries">
<did>
<unitid>1.4</unitid>
<unittitle>Subseries 1.4: Indian Point Studies</unittitle>
<unitdate type="inclusive" normal="1953/1981">1972 - 1977</unitdate>
<physdesc>
<extent type="boxes">Box: 7 - 10</extent>
</physdesc>
</did>
<c03 level="file">
<did>
<container type="folder">1</container>
<unittitle>Indian Point Flume Study: First Progress Report, Aug. 1975</unittitle>
<container type="box">7</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">2</container>
<unittitle>Indian Point Flume Study: Final Report, July 1976</unittitle>
<container type="box">7</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">3</container>
<unittitle>Indian Point Generating Station a 316(a) Demonstration</unittitle>
<container type="box">7</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">4</container>
<unittitle>Indian Point Generating Station a 316(a) Demonstration, Appendix
D: Procedures and Analyses - Biological and Hydrothermal Studies</unittitle>
<container type="box">7</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">5</container>
<unittitle>Indian Point Generating Station Entrainment Survival and Related
Studies, 1977 Annual Report</unittitle>
<container type="box">7</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">1</container>
<unittitle>Indian Point Generating Station Entrainment Survival and Related
Studies, 1978 Annual Report</unittitle>
<container type="box">8</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">2</container>
<unittitle>Indian Point Generating Plants: A Hydraulic Model Study of Hudson
River Flows around Cooling Water Intakes, Nov. 1976</unittitle>
<container type="box">8</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">3</container>
<unittitle>Indian Point Impingement Study Report for the Period 15 June 1972
through 31 December 1973</unittitle>
<container type="box">8</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">4</container>
<unittitle>Indian Point Impingement Study Report for the Period 1 January
1974 through 31 December 1974</unittitle>
<container type="box">8</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">5</container>
<unittitle>Indian Point Impingement Study Report for the Period 1 January
1975 through 31 December 1975</unittitle>
<container type="box">8</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">6</container>
<unittitle>Indian Point Unit No. 2<![CDATA[&]]>3 - Near-Field Effects of
Once-Through Cooling System Operation on Hudson River Biota, Appendices
1.1 and 1.2, July 1977</unittitle>
<container type="box">8</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">1</container>
<unittitle>Indian Point Unit No. 2<![CDATA[&]]>3 - Near-Field Effects of
Once-Through Cooling System Operation on Hudson River Biota, July 1977</unittitle>
<container type="box">9</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">2</container>
<unittitle>Influence of Indian Point Unit 2 and Other Steam Electric
Generating Plants on the Hudson River Estuary, with Emphasis on Striped
Bass and Other Fish: Supplement 1, July 1977</unittitle>
<container type="box">9</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">1</container>
<unittitle>Influence of Indian Point Unit 2 and Other Steam Electric
Generating Plants on the Hudson River Estuary, with Emphasis on Striped
Bass and Other Fish Population, Jan. 1977 (no folder)</unittitle>
<container type="box">10</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">2</container>
<unittitle>Errata for: “Supplement 1 to Influence of Indian Point Unit 2 and
Other Steam Electric Generating Plants on the Hudson River Estuary, with
Emphasis on Striped Bass and Other Fish Population”</unittitle>
<container type="box">10</container>
</did>
</c03>
</c02>
<c02 level="subseries">
<did>
<unitid>1.5</unitid>
<unittitle>Subseries 1.5: Culturing and Stocking Striped Bass
Studies</unittitle>
<unitdate type="inclusive" normal="1973/1975">1973 - 1975</unitdate>
<physdesc>
<extent type="boxes">Box: 11 - 13</extent>
</physdesc>
</did>
<c03 level="file">
<did>
<container type="folder">1</container>
<unittitle>Feasibility of Culturing and Stocking Hudson River Striped Bass:
An Overview, 1973-1975</unittitle>
<container type="box">11</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">2</container>
<unittitle>Feasibility of Culturing and Stocking Hudson River Striped Bass,
July 1974</unittitle>
<container type="box">11</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">3</container>
<unittitle>Second Semi-Annual Report Related to the Feasibility Study for
Spawning, Hatching and Stocking Striped Bass in the Hudson River, Nov.
1974</unittitle>
<container type="box">11</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">4</container>
<unittitle>Feasibility of Culturing and Stocking Hudson River Striped Bass,
1974 Annual Report</unittitle>
<container type="box">11</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">5</container>
<unittitle>Feasibility of Culturing and Stocking Hudson River Striped Bass,
1975 Annual Report</unittitle>
<container type="box">11</container>
</did>
</c03>
</c02>
<c02 level="subseries">
<did>
<unitid>1.6</unitid>
<unittitle>Subseries 1.6: Fish and Fisheries Studies</unittitle>
<unitdate type="inclusive" normal="1975/1978">1975 - 1978</unitdate>
<physdesc>
<extent type="boxes">Box: 11 - 12</extent>
</physdesc>
</did>
<c03 level="file">
<did>
<container type="folder">6</container>
<unittitle>Catch Efficiency of 100-ft Beach Seins for Estimating Density
of young-of-the-year Striped Bass and White Perch... June 1978 Final
Report</unittitle>
<container type="box">11</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">7</container>
<unittitle>Cytogenetic Study of the Striped Bass from the Hudson River, Sept.
1976</unittitle>
<container type="box">11</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">8</container>
<unittitle>The Effects of Changes in Hydrostatic Pressure on some Hudson
River Biota Progress Report 1974</unittitle>
<container type="box">11</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">9</container>
<unittitle>The Effects of changes in Hydrostatic Pressure on some Hudson
River Biota Progress Report 1975</unittitle>
<container type="box">11</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">10</container>
<unittitle>Efficiency of the 1.0m^2 Epibenthic Sled... 1978</unittitle>
<container type="box">11</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">11</container>
<unittitle>Efficiency of a 100-ft Beach Seine for Estimating Shore Zone
Densities at night of... Striped Bass and... White Perch July 1979</unittitle>
<container type="box">11</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">12</container>
<unittitle>Evaluation of a Submerged Weir to Reduce Fish Impingment...
25 May - 29 July, 1977</unittitle>
<container type="box">11</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">1</container>
<unittitle>Feasibility Study and Design Development Striped Bass Fish
Hatchery... Dec. 15, 1974</unittitle>
<container type="box">12</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">2</container>
<unittitle>Final Report of the Synoptic Subpopulation Analysis. Phase 1,
Sept, 1975</unittitle>
<container type="box">12</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">3</container>
<unittitle>First Annual Progress Report on Fisheries Investigations - Cornwall,
NY May 1974</unittitle>
<container type="box">12</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">4</container>
<unittitle>Hudson River Program Fisheries Data Summary, Vol. 1, Oct.
1973</unittitle>
<container type="box">12</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">5</container>
<unittitle>Hudson River Program Fisheries Data Summary, Vol. 2 Dec.
1973</unittitle>
<container type="box">12</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">6</container>
<unittitle>Fisheries Survey of the Hudson River Vol. 3, March 1974</unittitle>
<container type="box">12</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">1</container>
<unittitle>Fisheries Survey of the Hudson River Vol. 4 Revised Edition.
June 1976</unittitle>
<container type="box">13</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">2</container>
<unittitle>Influence of the Proposed Cornwall Pumped Storage
Project and Steam Electric Generating Plants on the Hudson
River Estuary with Emphasis on Striped Bass and Other Fish
Populations</unittitle>
<container type="box">13</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">1</container>
<unittitle>Influence of the Proposed Cornwall Pumped Storage Project and
Steam Electric Generating Plants on the Hudson River Estuary with
Emphasis on Striped Bass and Other Fish Populations - Revised July 1978
(no )</unittitle>
<container type="box">14</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">2</container>
<unittitle>Initial and Extended Survival or Fish... at the Indian Point
Generating Station 15 June - 22 Dec., 1977</unittitle>
<container type="box">14</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">3</container>
<unittitle>Life Stage Duration Studies on Hudson River Striped Bass
- Final Report, Sept. 1974</unittitle>
<container type="box">14</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">4</container>
<unittitle>Mortality of Striped Bass Eggs and Larvac in Nets,
July 1976</unittitle>
<container type="box">14</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">5</container>
<unittitle>Predation by Bluefish in the Lower Hudson River Feb.
1976</unittitle>
<container type="box">14</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">1</container>
<unittitle>A Preliminary Evaluation of the Potential Impact on
the Fisheries... Sept. 1975</unittitle>
<container type="box">15</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">2</container>
<unittitle>Production of Striped Bass for Experimental Purposes
1976 Hatchery Report</unittitle>
<container type="box">15</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">3</container>
<unittitle>Production of striped Bass for Power Plant Entrainment
Studies 1977 Hatchery Report</unittitle>
<container type="box">15</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">4</container>
<unittitle>Racial Investigation of the Striped Bass Using Critical
Scale Analysis Final Report 1975</unittitle>
<container type="box">15</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">5</container>
<unittitle>The Rearing of Hudson River Striped Bass at the Edenton
National Fish Hatchery, 1975</unittitle>
<container type="box">15</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">6</container>
<unittitle>Report on 1978-1979 Studies to Evaluate Catch Efficiency
of the 1.0m^2 Epibenthic Sled Sept. 1980</unittitle>
<container type="box">15</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">7</container>
<unittitle>Report on Development of a Real-Time, Two Dimensional Model
of the Hudson River Striped Bass Population Oct. 1975</unittitle>
<container type="box">15</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">8</container>
<unittitle>Report on Relative Contribution of Hudson River Striped Bass
to the Atlantic Coastal Fishery, Dec. 1976</unittitle>
<container type="box">15</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">9</container>
<unittitle>Striped Bass Rearing Experiments 1975</unittitle>
<container type="box">15</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">10</container>
<unittitle>Striped Bass Rearing Experiments 1976</unittitle>
<container type="box">15</container>
</did>
</c03>
</c02>
<c02 level="subseries">
<did>
<unitid>1.7</unitid>
<unittitle>Subseries 1.7: Other Scientific Studies</unittitle>
<unitdate type="inclusive" normal="1966/1979">1966 - 1979</unitdate>
<physdesc>
<extent type="boxes">Box: 15</extent>
</physdesc>
</did>
<c03 level="file">
<did>
<container type="folder">11</container>
<unittitle>1975 Cornwall Transect Data Display, Aug. 1976</unittitle>
<container type="box">15</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">12</container>
<unittitle>Acute and Chronic Effects of Evaporative Cooling Tower Blowdown
and Power Plant Chemical Discharges on White Perch and Striped Bass,
Nov. 1974</unittitle>
<container type="box">15</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">13</container>
<unittitle>Benthic Landfill Studies: Cornwall, Final Report, Feb. 1975</unittitle>
<container type="box">15</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">14</container>
<unittitle>Cornwall Pumped Storage Scheme: Hydraulic Model Study of Hudson
River Flows Around Screen Structure, July 1976</unittitle>
<container type="box">15</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">1</container>
<unittitle>The Effects of Intakes and Associated Cooling Water Systems on
Phythoplankton and Aquatic Invertebrates of the Hudson River, July 1977</unittitle>
<container type="box">16</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">2</container>
<unittitle>Evaluation of the Effectiveness of a Continuously Operating Fine
Mesh Traveling Screen for Reducing Ichthyoplankton Entrainment at the
Indian Point Generating Station, April 1979</unittitle>
<container type="box">16</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">3</container>
<unittitle>Gear Evaluation Studies 1974 and 1975</unittitle>
<container type="box">16</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">4</container>
<unittitle>Hudson River Environmental Study: in the area of Ossining, Final
Report, Jan. 1975</unittitle>
<container type="box">16</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">5</container>
<unittitle>Hudson River Model Study in the Area of the Cornwall Pumped
Storage Project by Alden Research Laboratories, Feb. - Aug., 1966</unittitle>
<container type="box">16</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">6</container>
<unittitle>Hudson River Thermal Effects Studies for Representative Species:
Final Report, March 1978</unittitle>
<container type="box">16</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">7</container>
<unittitle>Preliminary Investigations into the Use of a Continuously
Operating Fine Mesh Traveling Screen to Reduce Ichthyoplankton
Entrainment at Indian Point Generating Station, Dec. 1977</unittitle>
<container type="box">16</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">8</container>
<unittitle>Survival of Entrained Ichthyoplankton and Macroinvertebrates at
Hudson River Power Plants, July 1977</unittitle>
<container type="box">16</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">9</container>
<unittitle>A Synthesis of Available Data Pertaining to Major Physicochemical
Variables within the Hudson River Estuary, Nov. 1976</unittitle>
<container type="box">16</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">10</container>
<unittitle>Thermal Effects Literature Review for Hudson River Representative
Important Species, March 1978</unittitle>
<container type="box">16</container>
</did>
</c03>
</c02>
</c01>
<c01 level="series">
<did>
<unitid>2</unitid>
<unittitle>2. Clippings</unittitle>
<unitdate type="inclusive" normal="1953/1966">1953 - 1966</unitdate>
<physdesc>
<extent type="size">1 Linear Foot</extent>
<extent type="boxes">Box: 17 - 19</extent>
</physdesc>
</did>
<scopecontent>
<p>Series contains newspaper and magazine clippings concerning the issues surrounding Storm King
and Indian Point from 1953 to 1966.</p>
</scopecontent>
<arrangement>
<p>Chronological</p>
</arrangement>
<c02 level="file">
<did>
<container type="folder">1</container>
<unittitle>Clippings - 1953</unittitle>
<container type="box">17</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">2</container>
<unittitle>Clippings - 1954</unittitle>
<container type="box">17</container>
</did>
</c02>