forked from synthosys/cov
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprivatetestdata.txt
executable file
·2171 lines (2153 loc) · 70 KB
/
privatetestdata.txt
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
{
"count": 2,
"data": [
{
"nsf_id": "P120178",
"pge": {
"code": "1631"
},
"name": "Contruction Engineering/Infrastructure Management Career",
"prop": [
"1149460",
"1149733",
"1149896",
"1150448",
"1150450",
"1150686",
"1150828",
"1150845",
"1150920",
"1151149"
],
"officer": "COWENS",
"address": {
"city": "Arlington",
"state": "VA",
"name": "NSF"
},
"org": {
"code": "07030000",
"name": "CMMI",
"full": "Division of Civil, Mechanical, and Manufacturing Innovation"
},
"revr": [
"GY0936244",
"NR0911038",
"NY0833779",
"PK0847167",
"YX0909915",
"ZS0773056"
],
"start_date": "2011/10/18"
},
{
"nsf_id": "P120383",
"pge": {
"code": "1638"
},
"name": "1638 Career",
"prop": [
"1148079",
"1148574",
"1149460",
"1150608",
"1151031",
"1151037",
"1151065"
],
"officer": "COWENS",
"address": {
"city": "Arlington",
"state": "VA",
"name": "NSF"
},
"org": {
"code": "07030000",
"name": "CMMI",
"full": "Division of Civil, Mechanical, and Manufacturing Innovation"
},
"revr": [
"KY0900048",
"NA0907472",
"YE0858161",
"ZH0883995"
],
"start_date": "2011/10/21"
}
]
}
http://128.150.10.70/py/api/prop?id=1148079,1148574,1149460,1150608,1151031,1151037,1151065
{
"count": 7,
"data": [
{
"status": {
"date": "2011/12/08",
"code": "10",
"name": "decline"
},
"nsf_id": "1148079",
"pge": {
"date": "1999/10/22",
"full": "Infrastructure Management and Extreme Events",
"name": "INFRAST MGMT & EXTREME EVENTS",
"code": "1638"
},
"title": "CAREER: Weather Modification: A Cost-Effective, Adaptive Strategy to Climate Change and Drought Hazards",
"request": {
"duration": "60",
"date": "2012/08/01",
"dollar": "466184"
},
"inst": {
"nsf_id": "0035303000",
"name": "University of Tennessee Knoxville"
},
"org": {
"code": "07030000",
"name": "CMMI",
"full": "Division of Civil, Mechanical, and Manufacturing Innovation"
}
},
{
"status": {
"date": "2011/11/28",
"code": "10",
"name": "decline"
},
"nsf_id": "1148574",
"pge": {
"date": "1999/10/22",
"full": "Infrastructure Management and Extreme Events",
"name": "INFRAST MGMT & EXTREME EVENTS",
"code": "1638"
},
"title": "CAREER: Systematic Approach to Identifying and Quantifying High Impact Events Associated with Construction Methods",
"request": {
"duration": "60",
"date": "2012/01/01",
"dollar": "400000"
},
"inst": {
"nsf_id": "0010819000",
"name": "Arizona State University"
},
"org": {
"code": "07030000",
"name": "CMMI",
"full": "Division of Civil, Mechanical, and Manufacturing Innovation"
}
},
{
"status": {
"date": "2012/01/26",
"code": "80",
"name": "award"
},
"nsf_id": "1149460",
"pge": {
"date": "1999/10/22",
"full": "Civil Infrastructure Systems",
"name": "CIVIL INFRASTRUCTURE SYSTEMS",
"code": "1631"
},
"title": "CAREER: Integrated Modeling of Sustainability and Reliability for Interdependent Infrastructure Systems",
"abstract": "The objective of this Faculty Early Career Development (CAREER) program award is to provide an approach for assessing the economic, environmental, and social sustainability and reliability of interdependent power and water systems. This is intended to better support proactive management of public and private infrastructure, particularly in areas susceptible to natural hazards such as hurricanes and earthquakes. The research develops indicators for measuring trends in the sustainability of power and water systems, providing a basis for changing the management and funding of these systems to improve their sustainability. The project also provides new computational frameworks for modeling interdependent power and water systems. The impacts of natural hazards such as hurricanes and earthquakes will be combined with the effects of aging to develop a more holistic reliability modeling approach for infrastructure systems. The reliability and sustainability models are brought into the infrastructure management proces",
"request": {
"duration": "60",
"date": "2012/06/01",
"dollar": "400000"
},
"awarded": {
"date": "2012/06/01",
"duration": "60",
"dollar": 400000
},
"inst": {
"nsf_id": "0020776000",
"name": "Johns Hopkins University"
},
"org": {
"code": "07030000",
"name": "CMMI",
"full": "Division of Civil, Mechanical, and Manufacturing Innovation"
}
},
{
"status": {
"date": "2011/12/08",
"code": "10",
"name": "decline"
},
"nsf_id": "1150608",
"pge": {
"date": "1999/10/22",
"full": "Infrastructure Management and Extreme Events",
"name": "INFRAST MGMT & EXTREME EVENTS",
"code": "1638"
},
"title": "CAREER: Fundamental Research on the Incentives Implicit in Government Provision of Emergency Preparedness and Disaster Relief",
"request": {
"duration": "60",
"date": "2012/08/15",
"dollar": "505993"
},
"inst": {
"nsf_id": "0028373000",
"name": "SUNY at Buffalo"
},
"org": {
"code": "07030000",
"name": "CMMI",
"full": "Division of Civil, Mechanical, and Manufacturing Innovation"
}
},
{
"status": {
"date": "2011/12/08",
"code": "10",
"name": "decline"
},
"nsf_id": "1151031",
"pge": {
"date": "1999/10/22",
"full": "Infrastructure Management and Extreme Events",
"name": "INFRAST MGMT & EXTREME EVENTS",
"code": "1638"
},
"title": "CAREER: Contaminant Warning Systems for Drinking Water Protection: Integrating Design and Performance",
"request": {
"duration": "60",
"date": "2012/08/01",
"dollar": "400003"
},
"inst": {
"nsf_id": "0031252000",
"name": "University of Cincinnati Main Campus"
},
"org": {
"code": "07030000",
"name": "CMMI",
"full": "Division of Civil, Mechanical, and Manufacturing Innovation"
}
},
{
"status": {
"date": "2011/11/28",
"code": "10",
"name": "decline"
},
"nsf_id": "1151037",
"pge": {
"date": "1999/10/22",
"full": "Infrastructure Management and Extreme Events",
"name": "INFRAST MGMT & EXTREME EVENTS",
"code": "1638"
},
"title": "CAREER: Disaster Debris Management, Recycling and Reuse",
"request": {
"duration": "60",
"date": "2012/06/01",
"dollar": "400001"
},
"inst": {
"nsf_id": "0025650000",
"name": "University of Nebraska-Lincoln"
},
"org": {
"code": "07030000",
"name": "CMMI",
"full": "Division of Civil, Mechanical, and Manufacturing Innovation"
}
},
{
"status": {
"date": "2011/12/08",
"code": "10",
"name": "decline"
},
"nsf_id": "1151065",
"pge": {
"date": "1999/10/22",
"full": "Infrastructure Management and Extreme Events",
"name": "INFRAST MGMT & EXTREME EVENTS",
"code": "1638"
},
"title": "CAREER: Industry Resilience Through the Resources of the Community",
"request": {
"duration": "60",
"date": "2012/01/01",
"dollar": "595679"
},
"inst": {
"nsf_id": "0018259000",
"name": "Purdue University"
},
"org": {
"code": "07030000",
"name": "CMMI",
"full": "Division of Civil, Mechanical, and Manufacturing Innovation"
}
}
]
}
//REVIEWERS
http://128.150.10.70/py/api/user?rid=GY0936244,NR0911038,NY0833779,PK0847167,YX0909915,ZS0773056,KY0900048,NA0907472,YE0858161,ZH0883995
{
"count": 10,
"data": [
{
"nsf_id": "KY0900048",
"first_name": "Jamie",
"last_name": "Padgett",
"name": "Jamie Padgett",
"gender": "F",
"inst": {
"dept": "Civil and Environmental Engineering",
"name": "William Marsh Rice University",
"nsf_id": "0036046000"
}
},
{
"nsf_id": "NA0907472",
"first_name": "Laura",
"last_name": "McLay",
"name": "Laura McLay",
"gender": "F",
"inst": {
"dept": "Dept of Statistical Science and Oper Res",
"name": "Virginia Commonwealth University",
"nsf_id": "0001347000"
}
},
{
"nsf_id": "NR0911038",
"first_name": "Carol",
"last_name": "Menassa",
"name": "Carol Menassa",
"gender": "F",
"inst": {
"dept": "Civil and Environmental Engineering",
"name": "University of Wisconsin-Madison",
"nsf_id": "0038950000"
}
},
{
"nsf_id": "PK0847167",
"first_name": "Vineet",
"last_name": "Kamat",
"name": "Vineet Kamat",
"gender": "M",
"inst": {
"dept": "Civil and Environmental Engineering",
"name": "University of Michigan Ann Arbor",
"nsf_id": "0023259000"
}
},
{
"nsf_id": "YE0858161",
"first_name": "Samuel",
"last_name": "Brody",
"name": "Samuel Brody",
"gender": "M",
"inst": {
"dept": "Marine Sciences Urban Planning",
"name": "Texas A&M University Main Campus",
"nsf_id": "0036327000"
}
},
{
"nsf_id": "000219660",
"first_name": "Dulcy",
"last_name": "Abraham",
"middle_name": "M",
"name": "Dulcy M Abraham",
"degree": {
"name": "PhD",
"year": "1990"
},
"revr": [
"ZS0773056"
],
"gender": "F",
"phone": "7654942239",
"inst": {
"dept": "Department of Civil Engineering",
"name": "Purdue University",
"nsf_id": "0018259000"
},
"address": {
"city": "West Lafayette",
"zip": "479072051",
"country": "US",
"state": "IN",
"street": "School of Civil Engineering",
"street_additional": "Purdue University"
},
"pi": [
"000219660"
],
"email": "[email protected]",
"ethnicity": "NH"
},
{
"nsf_id": "269717446",
"first_name": "John",
"last_name": "Messner",
"middle_name": "I",
"name": "John I Messner",
"degree": {
"name": "PhD",
"year": "1994"
},
"revr": [
"NY0833779"
],
"gender": "M",
"phone": "8148654578",
"inst": {
"dept": "Architectural Engineering",
"name": "Pennsylvania State Univ University Park",
"nsf_id": "0033290000"
},
"address": {
"country": "US",
"state": "PA",
"street": "208 Engineering Unit A",
"zip": "16802",
"city": "University Park"
},
"pi": [
"269717446"
],
"email": "[email protected]",
"ethnicity": "NH"
},
{
"nsf_id": "269773929",
"first_name": "Ioannis",
"last_name": "Brilakis",
"name": "Ioannis Brilakis",
"degree": {
"name": "PhD",
"year": "2005"
},
"revr": [
"YX0909915"
],
"gender": "M",
"phone": "4048949881",
"inst": {
"dept": "Civil & Environmental Engineering",
"name": "Georgia Tech Research Corporation",
"nsf_id": "0015693000"
},
"address": {
"city": "Atlanta",
"zip": "303320355",
"country": "US",
"state": "GA",
"street": "SEB 328",
"street_additional": "790 Atlantic Drive"
},
"pi": [
"269773929"
],
"email": "[email protected]",
"ethnicity": "NH"
},
{
"nsf_id": "269781340",
"first_name": "Sajjad",
"last_name": "Ahmad",
"name": "Sajjad Ahmad",
"degree": {
"name": "PhD",
"year": "2002"
},
"revr": [
"ZH0883995"
],
"gender": "M",
"phone": "7028955456",
"inst": {
"dept": "Civil and Environmental Engineering",
"name": "University of Nevada Las Vegas",
"nsf_id": "0025692000"
},
"address": {
"city": "Las Vegas",
"zip": "89154",
"country": "US",
"state": "NV",
"street": "4505 Maryland Parkway",
"street_additional": "Box 454015"
},
"pi": [
"269781340"
],
"email": "[email protected]",
"ethnicity": "NH"
},
{
"nsf_id": "269790130",
"first_name": "John",
"last_name": "Taylor",
"middle_name": "E",
"name": "John E Taylor",
"degree": {
"name": "PhD",
"year": "2006"
},
"revr": [
"GY0936244"
],
"gender": "M",
"phone": "5402310972",
"inst": {
"dept": "Civil and Environmental Engineering",
"name": "Virginia Polytechnic Institute and State University",
"nsf_id": "0037549000"
},
"address": {
"country": "US",
"state": "VA",
"street": "200 Patton Hall",
"zip": "24061",
"city": "Blacksburg"
},
"pi": [
"269790130"
],
"email": "[email protected]",
"ethnicity": "NH"
}
]
}
http://128.150.10.70/py/api/user?id=000219660&page=prop
{
"count": 31,
"data": {
"nsf": {
"decline": {
"count": 26,
"data": [
{
"date": "2001/01/01",
"nsf_id": "0084776",
"division": "CMMI",
"title": "Demand Modeling and Analysis for the Management of Sewer Systems"
},
{
"date": "2002/09/01",
"nsf_id": "0219886",
"division": "CMMI",
"title": "Life Cycle Data Management for Trenchless Infrastructure Systems"
},
{
"date": "2003/08/15",
"nsf_id": "0324487",
"division": "CMMI",
"title": "SPEIR: Systems Paradigm to Engineer for Infrastructure Renewal"
},
{
"date": "2003/08/15",
"nsf_id": "0328143",
"division": "CMMI",
"title": "Integrating Sustainability and Disaster Mitigation in Hospital Construction Projects"
},
{
"date": "2003/08/15",
"nsf_id": "0332007",
"division": "CMMI",
"title": "A Knowledge Management Approach for Vulnerability Analysis and Disaster Mitigation for Interdependent Critical Infrastructures"
},
{
"date": "2004/05/15",
"nsf_id": "0400336",
"division": "CMMI",
"title": "Vulnerablity Assessment and Mitigation for Water Infrastructure Systems Against Intentional Attacks"
},
{
"date": "2004/08/15",
"nsf_id": "0409106",
"division": "CMMI",
"title": "Assessing Vulnerabilities and Interdependencies in Water Infrastructure Systems and Measuring Response to Intentional Physical Attacks"
},
{
"date": "2005/06/01",
"nsf_id": "0500483",
"division": "CMMI",
"title": "Mitigating the Consequences of Physical Attacks on Water Infrastructure"
},
{
"date": "2005/07/15",
"nsf_id": "0510811",
"division": "CMMI",
"title": "Integrating Sensor-based Assessment and Rehabilitation Approaches for Pipeline Infrastructure Systems."
},
{
"date": "2006/08/01",
"nsf_id": "0556348",
"division": "CMMI",
"title": "Mitigating the Consequences of Physical Destruction of Water Infrastructure"
},
{
"date": "2006/08/15",
"nsf_id": "0600184",
"division": "CMMI",
"title": "Integrating Sensor-based Assessment and Rehabilitation Approaches for Pipeline Infrastructure Systems"
},
{
"date": "2007/06/01",
"nsf_id": "0700735",
"division": "CMMI",
"title": "Collaborative Research: Mitigating the Consequences of Physical Destruction of Water Infrastructure"
},
{
"date": "2011/10/01",
"nsf_id": "1130933",
"division": "CMMI",
"title": "Exploring the Dynamics of Sustainable Innovation in Infrastructure Financing"
},
{
"date": "2012/06/01",
"nsf_id": "1200522",
"division": "CMMI",
"title": "Ex-Ante Policy Analysis for Sustainable Financial Innovtions in Interdependent Infrastructure Systems"
},
{
"date": "1993/08/15",
"nsf_id": "9313358",
"division": "CMMI",
"title": "Integration of Automated Sensing with Hierarchical Concepts For Production Control in Construction"
},
{
"date": "1994/08/01",
"nsf_id": "9457587",
"division": "CMMI",
"title": "NSF Young Investigator"
},
{
"date": "1995/06/01",
"nsf_id": "9501650",
"division": "CMMI",
"title": "An Integrated Research - Teaching Plan for Environmentally Conscious Construction Engineering"
},
{
"date": "1995/09/01",
"nsf_id": "9526076",
"division": "CMMI",
"title": "A Holistic Multi-Attribute Optimization Approach for Sanitary Sewer System Rehabilitation"
},
{
"date": "1996/05/01",
"nsf_id": "9624719",
"division": "CMMI",
"title": "CAREER: Integrated Control and Management Approaches in Underground Utility Rehabilitation"
},
{
"date": "1997/02/01",
"nsf_id": "9653214",
"division": "DUE",
"title": "Interactive Contstruction Management Learning System"
},
{
"date": "1997/05/01",
"nsf_id": "9702455",
"division": "CMMI",
"title": "CAREER: Integrated Assessment and Management Technologies for Underground Infrastructure Rehabilitation"
},
{
"date": "1997/10/01",
"nsf_id": "9714252",
"division": "CMMI",
"title": "Intelligent Renewal of Underground Infrastructure: An Integrated Approach"
},
{
"date": "1997/10/01",
"nsf_id": "9720543",
"division": "CMMI",
"title": "POWRE: Assesment, Rehabilitation and Management of Underground Infrastructure Systems through Life-Cycle Costing"
},
{
"date": "1997/10/01",
"nsf_id": "9730768",
"division": "CMMI",
"title": "Condition Rating and Deterioration Modeling of Sewer Systems"
},
{
"date": "1998/07/01",
"nsf_id": "9870461",
"division": "CMMI",
"title": "POWRE: Data Acquisition and Interpretation for Rehabilitation of Underground Infrastructure"
},
{
"date": "1999/11/01",
"nsf_id": "9908135",
"division": "CMMI",
"title": "Demand Modeling and Analysis for the Management of Sewer Systems through Life-Cycle Costing"
}
]
},
"award": {
"count": 3,
"data": [
{
"date": "2002/08/01",
"nsf_id": "0201364",
"division": "CMMI",
"title": "Asset Condition Evaluation Techniques for Improved Infrastructure Reporting"
},
{
"date": "1994/08/15",
"nsf_id": "9412049",
"division": "CMMI",
"title": "REG: A Multi-Media Research Lab for Design/Construction Integration"
},
{
"date": "1999/07/01",
"nsf_id": "9973509",
"division": "CMMI",
"title": "POWRE: A New Approach for Automated Interpretation of Multi-Sensory Underground Infrastructure Data"
}
]
},
"propose": {
"count": 2,
"data": [
{
"date": "2004/03/01",
"nsf_id": "0412944",
"division": "CMMI",
"title": "International Supplement: NSF CMS 0201364 - Asset Condition Evaluation for Improved Infrastructure Reporting"
},
{
"date": "2008/10/01",
"nsf_id": "0803864",
"division": "EFRI",
"title": "EFRI-RESIN Preliminary Proposal: Integrated Framework for Sustainable Electricity and Water Infrastructural System Management over Multiple Time Scales"
}
]
}
}
}
}
http://128.150.10.70/py/api/topic?id=0084776,0219886,0324487,0328143,0332007,0400336,0409106,0500483,0510811,0556348,0600184,0700735,1130933,1200522,9313358,9457587,9501650,9526076,9624719,9653214,9702455,9714252,9720543,9730768,9870461,9908135,0201364,9412049,9973509,0412944,0803864
{
"count": 31,
"data": [
{
"status": {
"date": "1994/08/22",
"code": "award"
},
"pge": {
"code": "1442"
},
"request": {
"duration": "12",
"date": "1994/08/15",
"dollar": "28750"
},
"fiscal_year": "1994",
"awarded": {
"duration": "12",
"date": "1994/09/01",
"dollar": 28750
},
"topic": {
"id": [
"759",
"996",
"349",
"503"
]
},
"org": {
"code": "07030000",
"name": "CMMI",
"full": "Division of Civil, Mechanical, and Manufacturing Innovation"
},
"proposal": {
"nsf_id": "9412049",
"title": "REG: A Multi-Media Research Lab for Design/Construction Integration"
}
},
{
"status": {
"date": "1999/06/24",
"code": "award"
},
"pge": {
"code": "1442"
},
"request": {
"duration": "18",
"date": "1999/07/01",
"dollar": "74997"
},
"fiscal_year": "1999",
"awarded": {
"duration": "18",
"date": "1999/07/01",
"dollar": 74997
},
"topic": {
"id": [
"591",
"272",
"282",
"87"
]
},
"org": {
"code": "07030000",
"name": "CMMI",
"full": "Division of Civil, Mechanical, and Manufacturing Innovation"
},
"proposal": {
"nsf_id": "9973509",
"title": "POWRE: A New Approach for Automated Interpretation of Multi-Sensory Underground Infrastructure Data"
}
},
{
"status": {
"date": "2002/06/03",
"code": "award"
},
"pge": {
"code": "1631"
},
"request": {
"duration": "24",
"date": "2002/08/01",
"dollar": "199995"
},
"fiscal_year": "2002",
"awarded": {
"duration": "24",
"date": "2002/08/01",
"dollar": 209995
},
"topic": {
"id": [
"591",
"96",
"466",
"842"
]
},
"org": {
"code": "07030000",
"name": "CMMI",
"full": "Division of Civil, Mechanical, and Manufacturing Innovation"
},
"proposal": {
"nsf_id": "0201364",
"title": "Asset Condition Evaluation Techniques for Improved Infrastructure Reporting"
}
},
{
"status": {
"date": "1993/07/29",
"code": "decline"
},
"pge": {
"code": "1442"
},
"request": {
"duration": "12",
"date": "1993/08/15",
"dollar": "18000"
},
"fiscal_year": "1993",
"awarded": {
"duration": "0"
},
"topic": {
"id": [
"0"
]
},
"org": {
"code": "07030400",
"name": "CMMI",
"full": "Construction/Geotechnology/Structures Program Cluster"
},
"proposal": {
"nsf_id": "9313358",
"title": "Integration of Automated Sensing with Hierarchical Concepts For Production Control in Construction"
}
},
{
"status": {
"date": "1994/08/26",
"code": "decline"
},
"pge": {
"code": "1442"
},
"request": {
"duration": "60",
"date": "1994/08/01",
"dollar": "312500"
},
"fiscal_year": "1994",
"awarded": {
"duration": "0"
},
"topic": {
"id": [
"0"
]
},
"org": {
"code": "07030400",
"name": "CMMI",
"full": "Construction/Geotechnology/Structures Program Cluster"
},
"proposal": {
"nsf_id": "9457587",
"title": "NSF Young Investigator"
}
},
{
"status": {
"date": "1995/05/12",
"code": "decline"
},
"pge": {
"code": "1442"
},
"request": {
"duration": "48",
"date": "1995/06/01",
"dollar": "200000"
},
"fiscal_year": "1995",
"awarded": {
"duration": "0"
},
"topic": {
"id": [
"0"
]
},
"org": {
"code": "07030400",
"name": "CMMI",
"full": "Construction/Geotechnology/Structures Program Cluster"
},
"proposal": {
"nsf_id": "9501650",
"title": "An Integrated Research - Teaching Plan for Environmentally Conscious Construction Engineering"
}
},
{
"status": {
"date": "1995/08/24",
"code": "decline"
},
"pge": {
"code": "1448"
},
"request": {
"duration": "24",
"date": "1995/09/01",
"dollar": "855572"
},
"fiscal_year": "1995",
"awarded": {
"duration": "0"
},
"topic": {
"id": [
"0"
]
},
"org": {
"code": "07030400",
"name": "CMMI",
"full": "Construction/Geotechnology/Structures Program Cluster"
},
"proposal": {
"nsf_id": "9526076",
"title": "A Holistic Multi-Attribute Optimization Approach for Sanitary Sewer System Rehabilitation"
}
},
{
"status": {
"date": "1996/06/10",
"code": "decline"
},
"pge": {
"code": "1442"
},
"request": {
"duration": "60",
"date": "1996/05/01",