-
Notifications
You must be signed in to change notification settings - Fork 2
/
solr_example.json
1260 lines (1260 loc) · 126 KB
/
solr_example.json
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
{
"responseHeader": {
"status": 0,
"QTime": 1,
"params": {
"q": "* sys.src.collections_ss: (Issue|Reynolds)",
"wt": "json",
"rows": "20"
}
},
"response": {
"numFound": 1077,
"start": 0,
"docs": [
{
"id": "36a094bebff941338093825cd31c9509",
"id.table_s": "table.docindex",
"url.metadata_s": "http://search.criticalzone.org/czoportal/rest/document?id=%7B36A094BE-BFF9-4133-8093-825CD31C9509%7D",
"id.fileid_s": "{96117299-7a23-3ca4-b5fa-33757a1d41c0}",
"title": ["Reynolds Creek - Precipitation (1962-2013)"],
"description": "These data have been collected at the Reynolds Creek Experimental Watershed by the Northwest Watershed Research Center and the USDA-ARS. Collection began as early as 1962 across these 26 geographically distinct gauge sites, and include both daily and hourly measurements. Spatial coordinates, descriptive location names, and other metadata are provided in the header file for each precipitation dataset.",
"links": [
"http://criticalzone.org/national/data/dataset/3731/",
"ftp://ftp.nwrc.ars.usda.gov/publicdatabase/reynolds-creek/precipitation/"
],
"keywords": "Climatology / Meteorology RCEW Reynolds Creek Experimental Watershed Precipitation USDA-ARS Precipitation precipitation time/date Reynolds Creek Reynolds Creek Experimental Watershed environment",
"keywords_ss": [
"Climatology / Meteorology",
"RCEW",
"Reynolds Creek Experimental Watershed",
"Precipitation",
"USDA-ARS",
"precipitation",
"time/date",
"Reynolds Creek",
"environment"
],
"contact.organizations_ss": ["Reynolds Critical Zone Observatory"],
"contact.people_ss": [
"USDA ARS Northwest Watershed Research Center",
"Mark Seyfried, [email protected] or Steven Van Vactor, [email protected]"
],
"apiso.Identifier_s": "{96117299-7a23-3ca4-b5fa-33757a1d41c0}",
"apiso.Title_t": "Reynolds Creek - Precipitation (1962-2013)",
"apiso:Abstract_t": "These data have been collected at the Reynolds Creek Experimental Watershed by the Northwest Watershed Research Center and the USDA-ARS. Collection began as early as 1962 across these 26 geographically distinct gauge sites, and include both daily and hourly measurements. Spatial coordinates, descriptive location names, and other metadata are provided in the header file for each precipitation dataset.",
"apiso.OrganizationName_t": "Reynolds Critical Zone Observatory",
"apiso.Subject_t": "Climatology / Meteorology RCEW Reynolds Creek Experimental Watershed Precipitation USDA-ARS Precipitation precipitation time/date Reynolds Creek Reynolds Creek Experimental Watershed environment",
"apiso.Type_s": "dataset",
"apiso.TopicCategory_ss": ["environment"],
"apiso.KeywordType_ss": [
"discipline",
"theme",
"place"
],
"apiso.Modified_tdt": "2014-09-14T00:00:00Z",
"apiso.CreationDate_tdt": "2014-07-28T00:00:00Z",
"apiso.RevisionDate_tdt": "2014-09-14T00:00:00Z",
"apiso.PublicationDate_tdt": "2014-09-14T00:00:00Z",
"apiso.HasSecurityConstraints_b": true,
"apiso.OtherConstraints_ss": ["CZO DATA USE POLICY. DRAFT v.0.3.5. SUMMARY VERSION. For full details, see http://criticalzone.org/national/data/access-czo-data-1national/ (1) USE OUR DATA FREELY. All CZO Data Products, except those labelled \"Private\", are released to the public and may be freely used under the condition that you give acknowledgement. Non-CZO data products \u2014 like those produced by USGS or NOAA \u2014 have their own use policies, which should be followed. (2) GIVE PROPER ACKNOWLEDGEMENT. Publications, models and data products that make use of these datasets must include proper acknowledgement. (3) LET US KNOW HOW YOU WILL USE THE DATA. The dataset creators would appreciate hearing of any plans to use the dataset."],
"apiso.ConditionApplyingToAccessAndUse_txt": ["CZO DATA USE POLICY. DRAFT v.0.3.5. SUMMARY VERSION. For full details, see http://criticalzone.org/national/data/access-czo-data-1national/ (1) USE OUR DATA FREELY. All CZO Data Products, except those labelled \"Private\", are released to the public and may be freely used under the condition that you give acknowledgement. Non-CZO data products \u2014 like those produced by USGS or NOAA \u2014 have their own use policies, which should be followed. (2) GIVE PROPER ACKNOWLEDGEMENT. Publications, models and data products that make use of these datasets must include proper acknowledgement. (3) LET US KNOW HOW YOU WILL USE THE DATA. The dataset creators would appreciate hearing of any plans to use the dataset."],
"apiso.ResponsiblePartyRole_t": "author",
"apiso.CRS.ID_ss": ["4326"],
"envelope_geo": ["-116.865 43.059 -116.684 43.312"],
"apiso:BoundingBox_geo": ["-116.865 43.059 -116.684 43.312"],
"apiso.TempExtent_begin_dts": ["1962-01-01T00:00:00Z"],
"apiso.TempExtent_end_dts": ["2013-12-31T23:59:59.999Z"],
"apiso.TempExtent_begin_tdt": "1962-01-01T00:00:00Z",
"apiso.TempExtent_end_tdt": "2013-12-31T23:59:59.999Z",
"sys.metadatatype.key_s": "iso19115",
"sys.metadatatype.identifier_s": "http://www.isotc211.org/2005/gmd",
"sys.metadatatype.indexables.version_s": "v1.iso19115-toSolr.xslt",
"sys.owner.username_s": "gptaccount",
"sys.src.item.lastmodified_tdt": "2014-09-23T16:36:00.873Z",
"sys.src.item.uri_s": "http://criticalzone.org/national/data/xml-metadata-test/3731?.xml",
"sys.src.item.url_s": "http://criticalzone.org/national/data/xml-metadata-test/3731?.xml",
"sys.src.site.id_s": "{0F3673EC-7E0F-44E6-92AC-9727D5F16B4F}",
"sys.src.site.name_s": "CZO Datasets",
"sys.src.site.protocol_s": "waf",
"sys.src.site_url_s": "http://criticalzone.org/national/data/xml-metadata-test-links/",
"sys.sync.foreign.id_s": "{36A094BE-BFF9-4133-8093-825CD31C9509}",
"sys.sync.foreign.instance.id_s": "gptinstance.czogeoportal",
"sys.sync.foreign.instance.url_s": "http://search.criticalzone.org/czoportal/",
"sys.sync.foreign.stamp_s": "approved.1..1411490160873",
"sys.sync.type_s": "sync.type.gptdb2solr",
"sys.task.id_s": "4d969f1ac622451c9c2cb09cc605e372",
"sys.task.indexdate_tdt": "2015-03-01T17:56:27.731Z",
"sys.src.collections_txt": [
"Issue|Reynolds",
"Category||Climatology_/_Meteorology"
],
"sys.src.collections_ss": [
"Issue|Reynolds",
"Category||Climatology_/_Meteorology"
],
"_version_": 1494464685914718208
},
{
"id": "99af9092e6e64e6588900e59849d964e",
"id.table_s": "table.docindex",
"url.metadata_s": "http://search.criticalzone.org/czoportal/rest/document?id=%7B99AF9092-E6E6-4E65-8890-0E59849D964E%7D",
"id.fileid_s": "{2569a05d-eff4-34ee-b575-d7d47319362e}",
"title": ["Reynolds Creek Experimental Watershed - Soil Temperature, Soil Moisture, Soil Evapotranspiration (1977-2011)"],
"description": "We describe long term data collected at the Reynolds Creek Experimental Watershed (RCEW) related to below-ground fluxes of energy and water. Three kinds of data are described: (i) evapotranspiration (ET) as measured by lysimeter, (ii) soil water content as measured by neutron probe, and (iii) soil temperature. \nThe length of record ranges from 15 years for the lysimeter and soil temperature data to 25 years for the neutron probe data. These data were collected at locations representing different climates and soils within the RCEW. Spatial variability of water balance within the watershed and well as temporal variability at specific sites is illustrated. High correlation between neutron probe and lysimeter results are the basis for assessing the accuracy of neutron probe-measured changes in soil-water content. All data are available to the public via the internet.",
"links": [
"http://criticalzone.org/national/data/dataset/3732/",
"ftp://ftp.nwrc.ars.usda.gov/publicdatabase/reynolds-creek/soil-temperature/",
"ftp://ftp.nwrc.ars.usda.gov/publicdatabase/reynolds-creek/soil-water-neutron-probe/",
"ftp://ftp.nwrc.ars.usda.gov/publicdatabase/reynolds-creek/soil-water-lysimeter/"
],
"keywords": "Biology / Ecology Soil Science / Pedology RCEW Reynolds Creek Experimental Watershed soil moisture soil water soil evapotranspiration ET USDA-ARS Soil Temperature Soil Moisture Soil Evapotranspiration temperature water volume precipitation area drainage runoff time Reynolds Creek Experimental Watershed Reynolds Creek Experimental Watershed environment",
"keywords_ss": [
"Biology / Ecology",
"Soil Science / Pedology",
"RCEW",
"Reynolds Creek Experimental Watershed",
"soil moisture",
"soil water",
"soil evapotranspiration",
"ET",
"USDA-ARS",
"Soil Temperature",
"Soil Moisture",
"Soil Evapotranspiration",
"temperature",
"water volume",
"precipitation",
"area",
"drainage",
"runoff",
"time",
"environment"
],
"contact.organizations_ss": ["Reynolds Critical Zone Observatory"],
"contact.people_ss": [
"MARK S. SEYFRIED \nGERALD N. FLERCHINGER \nCLATYON L. HANSON \nMARK D. MURDOCK \nSTEVEN S. VAN VACTOR",
"Mark Seyfried, [email protected] or Steven Van Vactor, [email protected]"
],
"apiso.Identifier_s": "{2569a05d-eff4-34ee-b575-d7d47319362e}",
"apiso.Title_t": "Reynolds Creek Experimental Watershed - Soil Temperature, Soil Moisture, Soil Evapotranspiration (1977-2011)",
"apiso:Abstract_t": "We describe long term data collected at the Reynolds Creek Experimental Watershed (RCEW) related to below-ground fluxes of energy and water. Three kinds of data are described: (i) evapotranspiration (ET) as measured by lysimeter, (ii) soil water content as measured by neutron probe, and (iii) soil temperature. \nThe length of record ranges from 15 years for the lysimeter and soil temperature data to 25 years for the neutron probe data. These data were collected at locations representing different climates and soils within the RCEW. Spatial variability of water balance within the watershed and well as temporal variability at specific sites is illustrated. High correlation between neutron probe and lysimeter results are the basis for assessing the accuracy of neutron probe-measured changes in soil-water content. All data are available to the public via the internet.",
"apiso.OrganizationName_t": "Reynolds Critical Zone Observatory",
"apiso.Subject_t": "Biology / Ecology Soil Science / Pedology RCEW Reynolds Creek Experimental Watershed soil moisture soil water soil evapotranspiration ET USDA-ARS Soil Temperature Soil Moisture Soil Evapotranspiration temperature water volume precipitation area drainage runoff time Reynolds Creek Experimental Watershed Reynolds Creek Experimental Watershed environment",
"apiso.Type_s": "dataset",
"apiso.TopicCategory_ss": ["environment"],
"apiso.KeywordType_ss": [
"discipline",
"theme",
"place"
],
"apiso.Modified_tdt": "2014-09-14T00:00:00Z",
"apiso.CreationDate_tdt": "2014-07-28T00:00:00Z",
"apiso.RevisionDate_tdt": "2014-09-14T00:00:00Z",
"apiso.PublicationDate_tdt": "2014-09-14T00:00:00Z",
"apiso.HasSecurityConstraints_b": true,
"apiso.OtherConstraints_ss": ["CZO DATA USE POLICY. DRAFT v.0.3.5. SUMMARY VERSION. For full details, see http://criticalzone.org/national/data/access-czo-data-1national/ (1) USE OUR DATA FREELY. All CZO Data Products, except those labelled \"Private\", are released to the public and may be freely used under the condition that you give acknowledgement. Non-CZO data products \u2014 like those produced by USGS or NOAA \u2014 have their own use policies, which should be followed. (2) GIVE PROPER ACKNOWLEDGEMENT. Publications, models and data products that make use of these datasets must include proper acknowledgement. (3) LET US KNOW HOW YOU WILL USE THE DATA. The dataset creators would appreciate hearing of any plans to use the dataset."],
"apiso.ConditionApplyingToAccessAndUse_txt": ["CZO DATA USE POLICY. DRAFT v.0.3.5. SUMMARY VERSION. For full details, see http://criticalzone.org/national/data/access-czo-data-1national/ (1) USE OUR DATA FREELY. All CZO Data Products, except those labelled \"Private\", are released to the public and may be freely used under the condition that you give acknowledgement. Non-CZO data products \u2014 like those produced by USGS or NOAA \u2014 have their own use policies, which should be followed. (2) GIVE PROPER ACKNOWLEDGEMENT. Publications, models and data products that make use of these datasets must include proper acknowledgement. (3) LET US KNOW HOW YOU WILL USE THE DATA. The dataset creators would appreciate hearing of any plans to use the dataset."],
"apiso.ResponsiblePartyRole_t": "author",
"apiso.CRS.ID_ss": ["4326"],
"envelope_geo": ["-116.865 43.059 -116.684 43.312"],
"apiso:BoundingBox_geo": ["-116.865 43.059 -116.684 43.312"],
"apiso.TempExtent_begin_dts": ["1977-12-31T00:00:00Z"],
"apiso.TempExtent_end_dts": ["2011-12-31T23:59:59.999Z"],
"apiso.TempExtent_begin_tdt": "1977-12-31T00:00:00Z",
"apiso.TempExtent_end_tdt": "2011-12-31T23:59:59.999Z",
"sys.metadatatype.key_s": "iso19115",
"sys.metadatatype.identifier_s": "http://www.isotc211.org/2005/gmd",
"sys.metadatatype.indexables.version_s": "v1.iso19115-toSolr.xslt",
"sys.owner.username_s": "gptaccount",
"sys.src.item.lastmodified_tdt": "2014-09-23T16:36:04.08Z",
"sys.src.item.uri_s": "http://criticalzone.org/national/data/xml-metadata-test/3732?.xml",
"sys.src.item.url_s": "http://criticalzone.org/national/data/xml-metadata-test/3732?.xml",
"sys.src.site.id_s": "{0F3673EC-7E0F-44E6-92AC-9727D5F16B4F}",
"sys.src.site.name_s": "CZO Datasets",
"sys.src.site.protocol_s": "waf",
"sys.src.site_url_s": "http://criticalzone.org/national/data/xml-metadata-test-links/",
"sys.sync.foreign.id_s": "{99AF9092-E6E6-4E65-8890-0E59849D964E}",
"sys.sync.foreign.instance.id_s": "gptinstance.czogeoportal",
"sys.sync.foreign.instance.url_s": "http://search.criticalzone.org/czoportal/",
"sys.sync.foreign.stamp_s": "approved.1..1411490164080",
"sys.sync.type_s": "sync.type.gptdb2solr",
"sys.task.id_s": "4d969f1ac622451c9c2cb09cc605e372",
"sys.task.indexdate_tdt": "2015-03-01T17:56:34.823Z",
"sys.src.collections_txt": [
"Category||Biology_/_Ecology",
"Issue|Reynolds",
"Category||Soil_Science_/_Pedology"
],
"sys.src.collections_ss": [
"Category||Biology_/_Ecology",
"Issue|Reynolds",
"Category||Soil_Science_/_Pedology"
],
"_version_": 1494464693351219200
},
{
"id": "eecd5541d5b34f88bdf2a85d6a143ff8",
"id.table_s": "table.docindex",
"url.metadata_s": "http://search.criticalzone.org/czoportal/rest/document?id=%7BEECD5541-D5B3-4F88-BDF2-A85D6A143FF8%7D",
"id.fileid_s": "{37d01834-eec1-3d05-ac6d-0d35b89ecd87}",
"title": ["Reynolds Creek - LiDAR (2007)"],
"description": "DEM, Canopy Height, Vegetation Models \n\t\t\t\t\nThe LiDAR survey was conducted by vendor Watershed Sciences, Corvallis, OR. Leica ALS50 Phase II LiDAR instrument was flown in a Cessna Caravan 208B aircraft over the period of November 10-18, 2007 for Reynolds Creek. The total area was 18,532 acres. The data was delivered in LAS 1.1 format with information on return number, easting, northing, elevation, scan angle, and normalized intensity for each return.\n\nUsing the BCAL LiDAR tools, a digital elevation model raster, a vegetation cover raster, and a canopy height model raster product was created for LiDAR data of Reynolds Creek Experimental Watershed. The resolution is 3m.\n\nThis effort was coordinated by Dr. Nancy Glenn at Boise State University.",
"links": [
"http://criticalzone.org/national/data/dataset/3730/",
"https://docs.google.com/file/d/0B7JD-VcM1bVbOVg4SHllSGY4ZGs/edit?usp=sharing",
"http://www.idaholidar.org/data/62"
],
"keywords": "GIS / Remote Sensing RCEW Reynolds Creek Experimental Watershed LiDAR raster LiDAR point cloud returns Reynolds Creek Reynolds Creek Experimental Watershed environment",
"keywords_ss": [
"GIS / Remote Sensing",
"RCEW",
"Reynolds Creek Experimental Watershed",
"LiDAR",
"raster",
"point cloud returns",
"Reynolds Creek",
"environment"
],
"contact.organizations_ss": ["Reynolds Critical Zone Observatory"],
"contact.people_ss": [
"Watershed Sciences. Glenn, Nancy; Spaete, Lucas, Phero, Timothy. Boise State University.",
"Nancy Glenn\nBoise State University\nBoise, ID 83725-1535\[email protected]\n208-426-2933"
],
"apiso.Identifier_s": "{37d01834-eec1-3d05-ac6d-0d35b89ecd87}",
"apiso.Title_t": "Reynolds Creek - LiDAR (2007)",
"apiso:Abstract_t": "DEM, Canopy Height, Vegetation Models \n\t\t\t\t\nThe LiDAR survey was conducted by vendor Watershed Sciences, Corvallis, OR. Leica ALS50 Phase II LiDAR instrument was flown in a Cessna Caravan 208B aircraft over the period of November 10-18, 2007 for Reynolds Creek. The total area was 18,532 acres. The data was delivered in LAS 1.1 format with information on return number, easting, northing, elevation, scan angle, and normalized intensity for each return.\n\nUsing the BCAL LiDAR tools, a digital elevation model raster, a vegetation cover raster, and a canopy height model raster product was created for LiDAR data of Reynolds Creek Experimental Watershed. The resolution is 3m.\n\nThis effort was coordinated by Dr. Nancy Glenn at Boise State University.",
"apiso.OrganizationName_t": "Reynolds Critical Zone Observatory",
"apiso.Subject_t": "GIS / Remote Sensing RCEW Reynolds Creek Experimental Watershed LiDAR raster LiDAR point cloud returns Reynolds Creek Reynolds Creek Experimental Watershed environment",
"apiso.Type_s": "dataset",
"apiso.TopicCategory_ss": ["environment"],
"apiso.KeywordType_ss": [
"discipline",
"theme",
"place"
],
"apiso.Modified_tdt": "2014-09-14T00:00:00Z",
"apiso.CreationDate_tdt": "2014-07-28T00:00:00Z",
"apiso.RevisionDate_tdt": "2014-09-14T00:00:00Z",
"apiso.PublicationDate_tdt": "2014-09-14T00:00:00Z",
"apiso.HasSecurityConstraints_b": true,
"apiso.OtherConstraints_ss": ["CZO DATA USE POLICY. DRAFT v.0.3.5. SUMMARY VERSION. For full details, see http://criticalzone.org/national/data/access-czo-data-1national/ (1) USE OUR DATA FREELY. All CZO Data Products, except those labelled \"Private\", are released to the public and may be freely used under the condition that you give acknowledgement. Non-CZO data products \u2014 like those produced by USGS or NOAA \u2014 have their own use policies, which should be followed. (2) GIVE PROPER ACKNOWLEDGEMENT. Publications, models and data products that make use of these datasets must include proper acknowledgement. (3) LET US KNOW HOW YOU WILL USE THE DATA. The dataset creators would appreciate hearing of any plans to use the dataset."],
"apiso.ConditionApplyingToAccessAndUse_txt": ["CZO DATA USE POLICY. DRAFT v.0.3.5. SUMMARY VERSION. For full details, see http://criticalzone.org/national/data/access-czo-data-1national/ (1) USE OUR DATA FREELY. All CZO Data Products, except those labelled \"Private\", are released to the public and may be freely used under the condition that you give acknowledgement. Non-CZO data products \u2014 like those produced by USGS or NOAA \u2014 have their own use policies, which should be followed. (2) GIVE PROPER ACKNOWLEDGEMENT. Publications, models and data products that make use of these datasets must include proper acknowledgement. (3) LET US KNOW HOW YOU WILL USE THE DATA. The dataset creators would appreciate hearing of any plans to use the dataset."],
"apiso.ResponsiblePartyRole_t": "author",
"apiso.CRS.ID_ss": ["4326"],
"envelope_geo": ["-116.865 43.059 -116.684 43.312"],
"apiso:BoundingBox_geo": ["-116.865 43.059 -116.684 43.312"],
"apiso.TempExtent_begin_dts": ["2007-11-10T00:00:00Z"],
"apiso.TempExtent_end_dts": ["2007-11-18T23:59:59.999Z"],
"apiso.TempExtent_begin_tdt": "2007-11-10T00:00:00Z",
"apiso.TempExtent_end_tdt": "2007-11-18T23:59:59.999Z",
"sys.metadatatype.key_s": "iso19115",
"sys.metadatatype.identifier_s": "http://www.isotc211.org/2005/gmd",
"sys.metadatatype.indexables.version_s": "v1.iso19115-toSolr.xslt",
"sys.owner.username_s": "gptaccount",
"sys.src.item.lastmodified_tdt": "2014-09-23T16:35:58.407Z",
"sys.src.item.uri_s": "http://criticalzone.org/national/data/xml-metadata-test/3730?.xml",
"sys.src.item.url_s": "http://criticalzone.org/national/data/xml-metadata-test/3730?.xml",
"sys.src.site.id_s": "{0F3673EC-7E0F-44E6-92AC-9727D5F16B4F}",
"sys.src.site.name_s": "CZO Datasets",
"sys.src.site.protocol_s": "waf",
"sys.src.site_url_s": "http://criticalzone.org/national/data/xml-metadata-test-links/",
"sys.sync.foreign.id_s": "{EECD5541-D5B3-4F88-BDF2-A85D6A143FF8}",
"sys.sync.foreign.instance.id_s": "gptinstance.czogeoportal",
"sys.sync.foreign.instance.url_s": "http://search.criticalzone.org/czoportal/",
"sys.sync.foreign.stamp_s": "approved.1..1411490158407",
"sys.sync.type_s": "sync.type.gptdb2solr",
"sys.task.id_s": "4d969f1ac622451c9c2cb09cc605e372",
"sys.task.indexdate_tdt": "2015-03-01T17:56:42.282Z",
"sys.src.collections_txt": [
"Category||GIS_/_Remote_Sensing",
"Issue|Reynolds"
],
"sys.src.collections_ss": [
"Category||GIS_/_Remote_Sensing",
"Issue|Reynolds"
],
"_version_": 1494464701172547584
},
{
"id": "f128c80686c94e55b14552af948d906e",
"id.table_s": "table.docindex",
"url.metadata_s": "http://search.criticalzone.org/czoportal/rest/document?id=%7BF128C806-86C9-4E55-B145-52AF948D906E%7D",
"id.fileid_s": "{e4962fcc-4cb0-3a43-aec1-94b5fa46bd48}",
"title": ["Reynolds Creek Experimental Watershed - Geology, Soil Survey, Vegetation (1960-1970)"],
"description": "Historical descriptions of soils, vegetation, and geology. \n\t\t\t\t\nThese data and documents comprise a historical inventory of soils, vegetation, and geology at the Reynolds Creek Experimental Watershed in southwestern Idaho from c 1960-1970. This effort was undertaken by the United State Department of Agriculture Research and Soil Conservation Services and the University of Idaho College of Agriculture. \n\t\t\t\t\n \n\t\t\t\t\nDATE RANGE COMMENTS: Approximate data collection date range is 1960-1970.",
"links": [
"http://criticalzone.org/national/data/dataset/3722/",
"https://docs.google.com/file/d/0B7JD-VcM1bVbb2taY1Zlby1Nek0/edit?usp=sharing",
"https://docs.google.com/file/d/0B7JD-VcM1bVbUEIzVmpNbWRlSk0/edit?usp=sharing",
"https://docs.google.com/file/d/0B7JD-VcM1bVbMmhiLTZqTDJSTmM/edit?usp=sharing",
"https://docs.google.com/file/d/0B7JD-VcM1bVbQ1FpVWs0NUR0Q0k/edit?usp=sharing",
"https://docs.google.com/file/d/0B7JD-VcM1bVbZ3BMS1hhTkV2bkk/edit?usp=sharing",
"https://docs.google.com/file/d/0B7JD-VcM1bVbdTd4TndiRHhHbm8/edit?usp=sharing"
],
"keywords": "Biology / Ecology Geology / Chronology Soil Science / Pedology geology vegetation soils Reynolds Creek Experimental Watershed historical data Geology Soil Survey Vegetation soil type vegetation type geology Reynolds Creek Experimental Watershed environment",
"keywords_ss": [
"Biology / Ecology",
"Geology / Chronology",
"Soil Science / Pedology",
"geology",
"vegetation",
"soils",
"Reynolds Creek Experimental Watershed",
"historical data",
"Geology",
"Soil Survey",
"Vegetation",
"soil type",
"vegetation type",
"environment"
],
"contact.organizations_ss": ["Reynolds Critical Zone Observatory"],
"contact.people_ss": [
"Edited by Gordon R. Stephenson, Geologist, USDA-ARS, University of Idaho College of Agriculture",
"Steven VanVactor\nNorthwest Watershed Management Research \nHydrologist\[email protected] \nPhone: (208) 422-0731 \nFax: (208) 334-1502\n800 PARK BLVD., STE 105 \nBOISE, ID, 83712-7716"
],
"apiso.Identifier_s": "{e4962fcc-4cb0-3a43-aec1-94b5fa46bd48}",
"apiso.Title_t": "Reynolds Creek Experimental Watershed - Geology, Soil Survey, Vegetation (1960-1970)",
"apiso:Abstract_t": "Historical descriptions of soils, vegetation, and geology. \n\t\t\t\t\nThese data and documents comprise a historical inventory of soils, vegetation, and geology at the Reynolds Creek Experimental Watershed in southwestern Idaho from c 1960-1970. This effort was undertaken by the United State Department of Agriculture Research and Soil Conservation Services and the University of Idaho College of Agriculture. \n\t\t\t\t\n \n\t\t\t\t\nDATE RANGE COMMENTS: Approximate data collection date range is 1960-1970.",
"apiso.OrganizationName_t": "Reynolds Critical Zone Observatory",
"apiso.Subject_t": "Biology / Ecology Geology / Chronology Soil Science / Pedology geology vegetation soils Reynolds Creek Experimental Watershed historical data Geology Soil Survey Vegetation soil type vegetation type geology Reynolds Creek Experimental Watershed environment",
"apiso.Type_s": "dataset",
"apiso.TopicCategory_ss": ["environment"],
"apiso.KeywordType_ss": [
"discipline",
"theme",
"place"
],
"apiso.Modified_tdt": "2014-09-14T00:00:00Z",
"apiso.CreationDate_tdt": "2014-07-25T00:00:00Z",
"apiso.RevisionDate_tdt": "2014-09-14T00:00:00Z",
"apiso.PublicationDate_tdt": "2014-09-14T00:00:00Z",
"apiso.HasSecurityConstraints_b": true,
"apiso.OtherConstraints_ss": ["CZO DATA USE POLICY. DRAFT v.0.3.5. SUMMARY VERSION. For full details, see http://criticalzone.org/national/data/access-czo-data-1national/ (1) USE OUR DATA FREELY. All CZO Data Products, except those labelled \"Private\", are released to the public and may be freely used under the condition that you give acknowledgement. Non-CZO data products \u2014 like those produced by USGS or NOAA \u2014 have their own use policies, which should be followed. (2) GIVE PROPER ACKNOWLEDGEMENT. Publications, models and data products that make use of these datasets must include proper acknowledgement. (3) LET US KNOW HOW YOU WILL USE THE DATA. The dataset creators would appreciate hearing of any plans to use the dataset."],
"apiso.ConditionApplyingToAccessAndUse_txt": ["CZO DATA USE POLICY. DRAFT v.0.3.5. SUMMARY VERSION. For full details, see http://criticalzone.org/national/data/access-czo-data-1national/ (1) USE OUR DATA FREELY. All CZO Data Products, except those labelled \"Private\", are released to the public and may be freely used under the condition that you give acknowledgement. Non-CZO data products \u2014 like those produced by USGS or NOAA \u2014 have their own use policies, which should be followed. (2) GIVE PROPER ACKNOWLEDGEMENT. Publications, models and data products that make use of these datasets must include proper acknowledgement. (3) LET US KNOW HOW YOU WILL USE THE DATA. The dataset creators would appreciate hearing of any plans to use the dataset."],
"apiso.ResponsiblePartyRole_t": "author",
"apiso.CRS.ID_ss": ["4326"],
"envelope_geo": ["-116.865 43.059 -116.684 43.312"],
"apiso:BoundingBox_geo": ["-116.865 43.059 -116.684 43.312"],
"apiso.TempExtent_begin_dts": ["1960-12-31T00:00:00Z"],
"apiso.TempExtent_end_dts": ["1970-12-31T23:59:59.999Z"],
"apiso.TempExtent_begin_tdt": "1960-12-31T00:00:00Z",
"apiso.TempExtent_end_tdt": "1970-12-31T23:59:59.999Z",
"sys.metadatatype.key_s": "iso19115",
"sys.metadatatype.identifier_s": "http://www.isotc211.org/2005/gmd",
"sys.metadatatype.indexables.version_s": "v1.iso19115-toSolr.xslt",
"sys.owner.username_s": "gptaccount",
"sys.src.item.lastmodified_tdt": "2014-09-23T16:36:07.287Z",
"sys.src.item.uri_s": "http://criticalzone.org/national/data/xml-metadata-test/3722?.xml",
"sys.src.item.url_s": "http://criticalzone.org/national/data/xml-metadata-test/3722?.xml",
"sys.src.site.id_s": "{0F3673EC-7E0F-44E6-92AC-9727D5F16B4F}",
"sys.src.site.name_s": "CZO Datasets",
"sys.src.site.protocol_s": "waf",
"sys.src.site_url_s": "http://criticalzone.org/national/data/xml-metadata-test-links/",
"sys.sync.foreign.id_s": "{F128C806-86C9-4E55-B145-52AF948D906E}",
"sys.sync.foreign.instance.id_s": "gptinstance.czogeoportal",
"sys.sync.foreign.instance.url_s": "http://search.criticalzone.org/czoportal/",
"sys.sync.foreign.stamp_s": "approved.1..1411490167287",
"sys.sync.type_s": "sync.type.gptdb2solr",
"sys.task.id_s": "4d969f1ac622451c9c2cb09cc605e372",
"sys.task.indexdate_tdt": "2015-03-01T17:56:42.532Z",
"sys.src.collections_txt": [
"Category||Biology_/_Ecology",
"Issue|Reynolds",
"Category||Soil_Science_/_Pedology",
"Category||Geology_/_Chronology"
],
"sys.src.collections_ss": [
"Category||Biology_/_Ecology",
"Issue|Reynolds",
"Category||Soil_Science_/_Pedology",
"Category||Geology_/_Chronology"
],
"_version_": 1494464701434691584
},
{
"id": "00378118e0f944bdbe5223935da0d529",
"id.table_s": "table.docindex",
"url.metadata_s": "http://search.criticalzone.org/czoportal/rest/document?id=%7B00378118-E0F9-44BD-BE52-23935DA0D529%7D",
"sys.src.item.uri_s": "http://maxim.ucsd.edu/czo_waf/{FCE9A7CF-6BB8-4E27-A9F1-71B25880E7F9}.xml",
"title": ["Bisley Stream Data; Bisley - Quebrada 3; 5 min stream data 1-18-10 to 12-12-11"],
"description": "This is project presents data related to discharge measurements from the Bisley Watershed in the Luquillo Mountains.Long-term rainfall and discharge data from the Luquillo Experimental Forest (LEF) were analysed to develop relationships between rainfall, stream-runoff, and elevation. These relationships were then used with a Geographic Information System (GIS) to determine spatially-averaged, mean annual hydrologic budgets for watersheds and forest types within the study area. Model estimates indicate that a total of 3864 mm/yy (444 hm3) of rainfall falls on the forest in an average year. The Tabonuco, Colorado, Palm and Dwarf Forest types receive an estimated annual rainfall of 3537, 4191, 4167, and 4849 mm/yy, respectively. Of the average annual rainfall input, 65% (2526 mm/yr) is converted to runoff and the remainding 35% (1338 mm.yr) is lost from the system by evapotranspiration and other abstractions. In comparison to other tropical forests, the LEF as a whole has more evapotranspiration than many tropical montane forests but less evapotranspiration than many lowland tropical forests.; PUBLICATIONS: DEFAULT_PARAMTER.UTCOffset = -4DEFAULT_PARAMETER.TimeZone = ASTDEFAULT_PARAMETER.DataBeginsOnRow = 2DEFAULT_PARAMETER.NoDataValue =DEFAULT_PARAMETER.QualityControlLevel = 1DEFAULT_PARAMETER.sitecode = 22DEFAULT_PARAMETER.timeSupport =DEFAULT_PARAMETER.timeSupportUnits = minuteDEFAULT_PARAMETER.DataFile = Quebreda Q3 5 min 1-8-10 to 12-12-11.csv",
"links": ["https://www.sas.upenn.edu/lczodata/sites/www.sas.upenn.edu.lczodata/files/Quebreda Q3 5 min 1-8-10 to 12-12-11.hdr"],
"keywords": "Hydrology latitude: 18.314091 longitude: -65.747312TIMING. start date 2010-01-09T00:00:00 end date 2011-12-12T00:00:00 periodicity: minute",
"keywords_ss": [
"Hydrology",
"latitude: 18.314091 longitude: -65.747312TIMING. start date 2010-01-09T00:00:00 end date 2011-12-12T00:00:00 periodicity: minute"
],
"contact.organizations_ss": [". Fred N. Scatena,USDA Forest Service, IITF,Carlos R. Estrada Ruiz"],
"contact.people_ss": [". Fred N. Scatena,USDA Forest Service, IITF,Carlos R. Estrada Ruiz"],
"envelope_geo": ["-65.76383806 18.279714 -65.744327 18.331111"],
"sys.metadatatype.key_s": "dc",
"sys.metadatatype.identifier_s": "http://purl.org/dc/elements/1.1/",
"sys.metadatatype.indexables.version_s": "v1.dc-toSolr.xslt",
"sys.owner.username_s": "gptaccount",
"sys.src.item.lastmodified_tdt": "2014-09-22T22:39:43.97Z",
"sys.src.item.url_s": "http://maxim.ucsd.edu/czo_waf/{FCE9A7CF-6BB8-4E27-A9F1-71B25880E7F9}.xml",
"sys.src.site.id_s": "{43C8EA97-4CC6-4EC8-8BC1-3BF141E6625B}",
"sys.src.site.name_s": "CZO Display Files",
"sys.src.site.protocol_s": "waf",
"sys.src.site_url_s": "http://maxim.ucsd.edu/czo_waf",
"sys.sync.foreign.id_s": "{00378118-E0F9-44BD-BE52-23935DA0D529}",
"sys.sync.foreign.instance.id_s": "gptinstance.czogeoportal",
"sys.sync.foreign.instance.url_s": "http://search.criticalzone.org/czoportal/",
"sys.sync.foreign.stamp_s": "approved.1..1411425583970",
"sys.sync.type_s": "sync.type.gptdb2solr",
"sys.task.id_s": "4d969f1ac622451c9c2cb09cc605e372",
"sys.task.indexdate_tdt": "2015-03-01T17:56:22.322Z",
"sys.src.collections_txt": ["Issue|Luquillo"],
"sys.src.collections_ss": ["Issue|Luquillo"],
"_version_": 1494464680246116352
},
{
"id": "003a89515801415a828d8c6fe3c47579",
"id.table_s": "table.docindex",
"url.metadata_s": "http://search.criticalzone.org/czoportal/rest/document?id=%7B003A8951-5801-415A-828D-8C6FE3C47579%7D",
"sys.src.item.uri_s": "http://www.czo.psu.edu/downloads/sdsc/hydroped/soiltemp/2007_SSHCZO_15_SoilTemperature.hdr",
"title": ["SSH Site 15 Soil Temperature Data - 2007"],
"description": "The Real-Time Soil Moisture Monitoring Network provides integrated observation of water, energy and temperature in the soils of the Shale Hills Susquehanna Critical Zone Observatory watershed. Soil Temperature is measured at between 4 and 5 depths at up to 13 sites. Soil Temperature is measured with 229 probes manufactured by Campbell Scientific, by 5TE probes manufactured by Decagon, and by Stevens Hydra probes. At 2 sites (15 and 55) soil temperature is measured with 2 loggers, which have different time stamps. CITATION: PUBLICATIONS: 1. Graham, C., and H.S. Lin. 2011. Controls and frequency of preferential flow occurrence at the Shale Hills Critical Zone Observatory: A 175 event analysis of soil moisture response to precipitation. Submitted to Vadose Zone Journal (in press).2. Takagi, K. and H.S. Lin. 2011. Temporal Evolution of Soil Moisture Spatial Variability in the Shale Hills Catchment. Submitted to Vadose Zone Journal.3. Takagi, K. and H.S. Lin. 2011. Soil-Terrain Attributes in Relation to Surface and Subsurface Soil Moisture in the Shale Hills Catchment. Submitted to Geoderma.4. Andrews, D.M., H.S. Lin, Q. Zhu, L. Jin, and S.L. Brantley. 2011. Dissolved organic carbon export and soil carbon storage in the Shale Hills Critical Zone Observatory. Submitted to Vadose Zone Journal.5. Jin, L., D. M. Andrews, G. H. Holmes, C. J. Duffy, H.S. Lin, and S. L. Brantley. 2011. Water chemistry reflects hydrological controls on weathering in the Shale Hills Critical Zone Observatory. Submitted to Vadose Zone Journal.6. Zhang, J. H.S. Lin, and J. Doolittle. 2011. Subsurface Lateral Flow as Revealed by Combined Ground Penetrating Radar and Real-Time Soil Moisture Monitoring. Submitted to Hydrological Processes.7. Zhu, Q., and H.S. Lin. 2010. Interpolation of soil properties based on combined information of spatial structure, sample size and auxiliary variables. Pedosphere 20:594-606.8. Lin, H.S., and X.B. Zhou. 2008. Evidence of Subsurface Preferential Flow Using Soil Hydrologic Monitoring in the Shale Hills Catchment. European J. of Soil Science 59:34?49.9. Lin, H.S. 2006. Temporal stability of soil moisture spatial pattern and subsurface preferential flow pathways in the Shale Hills Catchment. Vadose Zone Journal 5:317-340.10. Lin, H.S., W. Kogelmann, C. Walker, and M.A. Bruns. 2006. Soil moisture patterns in a forested catchment: A hydropedological perspective. Geoderma 131:345-368.",
"links": ["http://www.czo.psu.edu/downloads/sdsc/hydroped/soiltemp/2007_SSHCZO_15_SoilTemperature.hdr"],
"keywords": "Hydrology Soil water hydrology hydropedology soil science soil temperature. Volumetric water content.",
"keywords_ss": [
"Hydrology",
"Soil",
"water",
"hydrology",
"hydropedology",
"soil science",
"soil temperature.",
"Volumetric water content."
],
"contact.organizations_ss": ["Dr. Henry Lin, Crop and Soil Science, The Pennsylvania State University, 444 Agricultural Sciences and Industries Building, University Park, PA 16802, (814) 865-6726, [email protected]."],
"contact.people_ss": ["Dr. Henry Lin, Crop and Soil Science, The Pennsylvania State University, 444 Agricultural Sciences and Industries Building, University Park, PA 16802, (814) 865-6726, [email protected]."],
"envelope_geo": ["-77.90734 40.6637476 -77.90315 40.6658305"],
"sys.metadatatype.key_s": "dc",
"sys.metadatatype.identifier_s": "http://purl.org/dc/elements/1.1/",
"sys.metadatatype.indexables.version_s": "v1.dc-toSolr.xslt",
"sys.owner.username_s": "gptaccount",
"sys.src.item.lastmodified_tdt": "2014-10-07T19:04:52.303Z",
"sys.src.site.id_s": "{43C8EA97-4CC6-4EC8-8BC1-3BF141E6625B}",
"sys.src.site.name_s": "CZO Display Files",
"sys.src.site.protocol_s": "waf",
"sys.src.site_url_s": "http://maxim.ucsd.edu/czo_waf",
"sys.sync.foreign.id_s": "{003A8951-5801-415A-828D-8C6FE3C47579}",
"sys.sync.foreign.instance.id_s": "gptinstance.czogeoportal",
"sys.sync.foreign.instance.url_s": "http://search.criticalzone.org/czoportal/",
"sys.sync.foreign.stamp_s": "approved.1..1412708692303",
"sys.sync.type_s": "sync.type.gptdb2solr",
"sys.task.id_s": "4d969f1ac622451c9c2cb09cc605e372",
"sys.task.indexdate_tdt": "2015-03-01T17:56:22.35Z",
"_version_": 1494464680271282176
},
{
"id": "004019f9e157419f8b7a522b7b190736",
"id.table_s": "table.docindex",
"url.metadata_s": "http://search.criticalzone.org/czoportal/rest/document?id=%7B004019F9-E157-419F-8B7A-522B7B190736%7D",
"sys.src.item.uri_s": "http://maxim.ucsd.edu/czo_waf/{FC827A7D-EA7D-47E0-BF6A-8F213C78DAAA}.xml",
"title": ["Bisley Stream Data; Bisley - Quebrada 3; daily stream data 1-18-10 to 4-11-11"],
"description": "This is project presents data related to discharge measurements from the Bisley Watershed in the Luquillo Mountains. Long-term rainfall and discharge data from the Luquillo Experimental Forest (LEF) were analysed to develop relationships between rainfall, stream-runoff, and elevation. These relationships were then used with a Geographic Information System (GIS) to determine spatially-averaged, mean annual hydrologic budgets for watersheds and forest types within the study area. Model estimates indicate that a total of 3864 mm/yy (444 hm3) of rainfall falls on the forest in an average year. The Tabonuco, Colorado, Palm and Dwarf Forest types receive an estimated annual rainfall of 3537, 4191, 4167, and 4849 mm/yy, respectively. Of the average annual rainfall input, 65% (2526 mm/yr) is converted to runoff and the remainding 35% (1338 mm.yr) is lost from the system by evapotranspiration and other abstractions. In comparison to other tropical forests, the LEF as a whole has more evapotranspiration than many tropical montane forests but less evapotranspiration than many lowland tropical forests.; PUBLICATIONS: DEFAULT_PARAMTER.UTCOffset = -4DEFAULT_PARAMETER.TimeZone = ASTDEFAULT_PARAMETER.DataBeginsOnRow = 3DEFAULT_PARAMETER.NoDataValue =-6999DEFAULT_PARAMETER.QualityControlLevel = 1DEFAULT_PARAMETER.sitecode = 22DEFAULT_PARAMETER.timeSupport = 1DEFAULT_PARAMETER.timeSupportUnits = dayDEFAULT_PARAMETER.DataFile = Quebreda Q3 Daily 1-8-10 to 4-11-11.csv",
"links": ["https://oni.sas.upenn.edu/lczo-test/sites/oni.sas.upenn.edu.lczo-test/files/Quebreda Q3 Daily 1-8-10 to 4-11-11.hdr"],
"keywords": "Hydrology LOCATION. Quebrada three-Bisley (Q3) Stream Flow Monitoring LocationTIMING. start date 2010-01-18T00:00:00 end date 2011-04-11T00:00:00 periodicity: day",
"keywords_ss": [
"Hydrology",
"LOCATION. Quebrada three-Bisley (Q3) Stream Flow Monitoring LocationTIMING. start date 2010-01-18T00:00:00 end date 2011-04-11T00:00:00 periodicity: day"
],
"contact.organizations_ss": [". Fred N. Scatena,USDA Forest Service, IITF,Carlos R. Estrada Ruiz"],
"contact.people_ss": [". Fred N. Scatena,USDA Forest Service, IITF,Carlos R. Estrada Ruiz"],
"envelope_geo": ["-65.76383806 18.279714 -65.731111 18.331111"],
"sys.metadatatype.key_s": "dc",
"sys.metadatatype.identifier_s": "http://purl.org/dc/elements/1.1/",
"sys.metadatatype.indexables.version_s": "v1.dc-toSolr.xslt",
"sys.owner.username_s": "gptaccount",
"sys.src.item.lastmodified_tdt": "2014-09-22T22:39:43.707Z",
"sys.src.item.url_s": "http://maxim.ucsd.edu/czo_waf/{FC827A7D-EA7D-47E0-BF6A-8F213C78DAAA}.xml",
"sys.src.site.id_s": "{43C8EA97-4CC6-4EC8-8BC1-3BF141E6625B}",
"sys.src.site.name_s": "CZO Display Files",
"sys.src.site.protocol_s": "waf",
"sys.src.site_url_s": "http://maxim.ucsd.edu/czo_waf",
"sys.sync.foreign.id_s": "{004019F9-E157-419F-8B7A-522B7B190736}",
"sys.sync.foreign.instance.id_s": "gptinstance.czogeoportal",
"sys.sync.foreign.instance.url_s": "http://search.criticalzone.org/czoportal/",
"sys.sync.foreign.stamp_s": "approved.1..1411425583707",
"sys.sync.type_s": "sync.type.gptdb2solr",
"sys.task.id_s": "4d969f1ac622451c9c2cb09cc605e372",
"sys.task.indexdate_tdt": "2015-03-01T17:56:22.366Z",
"sys.src.collections_txt": ["Issue|Luquillo"],
"sys.src.collections_ss": ["Issue|Luquillo"],
"_version_": 1494464680289107968
},
{
"id": "0044e883105e4bd794bc7c1f4364ee53",
"id.table_s": "table.docindex",
"url.metadata_s": "http://search.criticalzone.org/czoportal/rest/document?id=%7B0044E883-105E-4BD7-94BC-7C1F4364EE53%7D",
"sys.src.item.uri_s": "http://maxim.ucsd.edu/czo_waf/{A4692F64-6C51-4643-8765-5B947D1846DC}.xml",
"title": ["SSH Site 11 Soil Matric Potential Data - 2011"],
"description": "The Real-Time Soil Moisture Monitoring Network provides integrated observation of water, energy and temperature in the soils of the Shale Hills Susquehanna Critical Zone Observatory watershed. Soil Matric Potential is measured at between 3 and 13 depths at 10 sites. Matric potential is measured with MPS1 probes manufactured by Decagon. CITATION: PUBLICATIONS: 1. Graham, C., and H.S. Lin. 2011. Controls and frequency of preferential flow occurrence at the Shale Hills Critical Zone Observatory: A 175 event analysis of soil moisture response to precipitation. Submitted to Vadose Zone Journal (in press).2. Takagi, K. and H.S. Lin. 2011. Temporal Evolution of Soil Moisture Spatial Variability in the Shale Hills Catchment. Submitted to Vadose Zone Journal.3. Takagi, K. and H.S. Lin. 2011. Soil-Terrain Attributes in Relation to Surface and Subsurface Soil Moisture in the Shale Hills Catchment. Submitted to Geoderma.4. Andrews, D.M., H.S. Lin, Q. Zhu, L. Jin, and S.L. Brantley. 2011. Dissolved organic carbon export and soil carbon storage in the Shale Hills Critical Zone Observatory. Submitted to Vadose Zone Journal.5. Jin, L., D. M. Andrews, G. H. Holmes, C. J. Duffy, H.S. Lin, and S. L. Brantley. 2011. Water chemistry reflects hydrological controls on weathering in the Shale Hills Critical Zone Observatory. Submitted to Vadose Zone Journal.6. Zhang, J. H.S. Lin, and J. Doolittle. 2011. Subsurface Lateral Flow as Revealed by Combined Ground Penetrating Radar and Real-Time Soil Moisture Monitoring. Submitted to Hydrological Processes.7. Zhu, Q., and H.S. Lin. 2010. Interpolation of soil properties based on combined information of spatial structure, sample size and auxiliary variables. Pedosphere 20:594-606.8. Lin, H.S., and X.B. Zhou. 2008. Evidence of Subsurface Preferential Flow Using Soil Hydrologic Monitoring in the Shale Hills Catchment. European J. of Soil Science 59:34?49.9. Lin, H.S. 2006. Temporal stability of soil moisture spatial pattern and subsurface preferential flow pathways in the Shale Hills Catchment. Vadose Zone Journal 5:317-340.10. Lin, H.S., W. Kogelmann, C. Walker, and M.A. Bruns. 2006. Soil moisture patterns in a forested catchment: A hydropedological perspective. Geoderma 131:345-368.",
"links": ["http://www.czo.psu.edu/downloads/sdsc/hydroped/2011_SSHCZO_11_MPSMP.hdr"],
"keywords": "Hydrology Soil water hydrology hydropedology soil science matric potential. Water potential.",
"keywords_ss": [
"Hydrology",
"Soil",
"water",
"hydrology",
"hydropedology",
"soil science",
"matric potential.",
"Water potential."
],
"contact.organizations_ss": ["Dr. Henry Lin, Crop and Soil Science, The Pennsylvania State University, 444 Agricultural Sciences and Industries Building, University Park, PA 16802, (814) 865-6726, [email protected]."],
"contact.people_ss": ["Dr. Henry Lin, Crop and Soil Science, The Pennsylvania State University, 444 Agricultural Sciences and Industries Building, University Park, PA 16802, (814) 865-6726, [email protected]."],
"envelope_geo": ["-77.90734 40.6637476 -77.90315 40.6658305"],
"sys.metadatatype.key_s": "dc",
"sys.metadatatype.identifier_s": "http://purl.org/dc/elements/1.1/",
"sys.metadatatype.indexables.version_s": "v1.dc-toSolr.xslt",
"sys.owner.username_s": "gptaccount",
"sys.src.item.lastmodified_tdt": "2014-09-22T22:38:27.003Z",
"sys.src.item.url_s": "http://maxim.ucsd.edu/czo_waf/{A4692F64-6C51-4643-8765-5B947D1846DC}.xml",
"sys.src.site.id_s": "{43C8EA97-4CC6-4EC8-8BC1-3BF141E6625B}",
"sys.src.site.name_s": "CZO Display Files",
"sys.src.site.protocol_s": "waf",
"sys.src.site_url_s": "http://maxim.ucsd.edu/czo_waf",
"sys.sync.foreign.id_s": "{0044E883-105E-4BD7-94BC-7C1F4364EE53}",
"sys.sync.foreign.instance.id_s": "gptinstance.czogeoportal",
"sys.sync.foreign.instance.url_s": "http://search.criticalzone.org/czoportal/",
"sys.sync.foreign.stamp_s": "approved.1..1411425507003",
"sys.sync.type_s": "sync.type.gptdb2solr",
"sys.task.id_s": "4d969f1ac622451c9c2cb09cc605e372",
"sys.task.indexdate_tdt": "2015-03-01T17:56:22.382Z",
"sys.src.collections_txt": ["Issue|Shale_Hills"],
"sys.src.collections_ss": ["Issue|Shale_Hills"],
"_version_": 1494464680305885184
},
{
"id": "0054b9b6872041278266a3260f5c898b",
"id.table_s": "table.docindex",
"url.metadata_s": "http://search.criticalzone.org/czoportal/rest/document?id=%7B0054B9B6-8720-4127-8266-A3260F5C898B%7D",
"sys.src.item.uri_s": "http://maxim.ucsd.edu/czo_waf/{05E6A787-FA7C-4154-87D3-649CC433ABE1}.xml",
"title": ["SSH Site 12 Electric Conductivity Data - 2011"],
"description": "The Real-Time Soil Moisture Monitoring Network provides integrated observation of water, energy and temperature in the soils of the Shale Hills Susquehanna Critical Zone Observatory watershed. Electric Conductivity is measured at between 4 and 5 depths at 13 sites. Electric conductivity is measured with HydraProbes manufactured by Stevens Instruments, and by 5TE probes manufactured by Decagon. At 2 sites (15 and 55) electric conductivity is measured with 2 loggers, which have different time stamps. Where offsets are the same, left precedes right. CITATION: PUBLICATIONS: 1. Graham, C., and H.S. Lin. 2011. Controls and frequency of preferential flow occurrence at the Shale Hills Critical Zone Observatory: A 175 event analysis of soil moisture response to precipitation. Submitted to Vadose Zone Journal (in press).2. Takagi, K. and H.S. Lin. 2011. Temporal Evolution of Soil Moisture Spatial Variability in the Shale Hills Catchment. Submitted to Vadose Zone Journal.3. Takagi, K. and H.S. Lin. 2011. Soil-Terrain Attributes in Relation to Surface and Subsurface Soil Moisture in the Shale Hills Catchment. Submitted to Geoderma.4. Andrews, D.M., H.S. Lin, Q. Zhu, L. Jin, and S.L. Brantley. 2011. Dissolved organic carbon export and soil carbon storage in the Shale Hills Critical Zone Observatory. Submitted to Vadose Zone Journal.5. Jin, L., D. M. Andrews, G. H. Holmes, C. J. Duffy, H.S. Lin, and S. L. Brantley. 2011. Water chemistry reflects hydrological controls on weathering in the Shale Hills Critical Zone Observatory. Submitted to Vadose Zone Journal.6. Zhang, J. H.S. Lin, and J. Doolittle. 2011. Subsurface Lateral Flow as Revealed by Combined Ground Penetrating Radar and Real-Time Soil Moisture Monitoring. Submitted to Hydrological Processes.7. Zhu, Q., and H.S. Lin. 2010. Interpolation of soil properties based on combined information of spatial structure, sample size and auxiliary variables. Pedosphere 20:594-606.8. Lin, H.S., and X.B. Zhou. 2008. Evidence of Subsurface Preferential Flow Using Soil Hydrologic Monitoring in the Shale Hills Catchment. European J. of Soil Science 59:34?49.9. Lin, H.S. 2006. Temporal stability of soil moisture spatial pattern and subsurface preferential flow pathways in the Shale Hills Catchment. Vadose Zone Journal 5:317-340.10. Lin, H.S., W. Kogelmann, C. Walker, and M.A. Bruns. 2006. Soil moisture patterns in a forested catchment: A hydropedological perspective. Geoderma 131:345-368.",
"links": ["http://www.czo.psu.edu/downloads/sdsc/hydroped/2011_SSHCZO_12_ElecCond.hdr"],
"keywords": "Hydrology Soil water hydrology hydropedology soil science soil temperature. Water potential.",
"keywords_ss": [
"Hydrology",
"Soil",
"water",
"hydrology",
"hydropedology",
"soil science",
"soil temperature.",
"Water potential."
],
"contact.organizations_ss": ["Dr. Henry Lin, Crop and Soil Science, The Pennsylvania State University, 444 Agricultural Sciences and Industries Building, University Park, PA 16802, (814) 865-6726, [email protected]."],
"contact.people_ss": ["Dr. Henry Lin, Crop and Soil Science, The Pennsylvania State University, 444 Agricultural Sciences and Industries Building, University Park, PA 16802, (814) 865-6726, [email protected]."],
"envelope_geo": ["-77.90734 40.6637476 -77.90315 40.6658305"],
"sys.metadatatype.key_s": "dc",
"sys.metadatatype.identifier_s": "http://purl.org/dc/elements/1.1/",
"sys.metadatatype.indexables.version_s": "v1.dc-toSolr.xslt",
"sys.owner.username_s": "gptaccount",
"sys.src.item.lastmodified_tdt": "2014-09-22T22:35:43.777Z",
"sys.src.item.url_s": "http://maxim.ucsd.edu/czo_waf/{05E6A787-FA7C-4154-87D3-649CC433ABE1}.xml",
"sys.src.site.id_s": "{43C8EA97-4CC6-4EC8-8BC1-3BF141E6625B}",
"sys.src.site.name_s": "CZO Display Files",
"sys.src.site.protocol_s": "waf",
"sys.src.site_url_s": "http://maxim.ucsd.edu/czo_waf",
"sys.sync.foreign.id_s": "{0054B9B6-8720-4127-8266-A3260F5C898B}",
"sys.sync.foreign.instance.id_s": "gptinstance.czogeoportal",
"sys.sync.foreign.instance.url_s": "http://search.criticalzone.org/czoportal/",
"sys.sync.foreign.stamp_s": "approved.1..1411425343777",
"sys.sync.type_s": "sync.type.gptdb2solr",
"sys.task.id_s": "4d969f1ac622451c9c2cb09cc605e372",
"sys.task.indexdate_tdt": "2015-03-01T17:56:22.396Z",
"sys.src.collections_txt": ["Issue|Shale_Hills"],
"sys.src.collections_ss": ["Issue|Shale_Hills"],
"_version_": 1494464680319516672
},
{
"id": "0060422bc7c8478ab6b66f308c0712d5",
"id.table_s": "table.docindex",
"url.metadata_s": "http://search.criticalzone.org/czoportal/rest/document?id=%7B0060422B-C7C8-478A-B6B6-6F308C0712D5%7D",
"sys.src.item.uri_s": "http://maxim.ucsd.edu/czo_waf/{FF13426D-236D-41F2-9A36-B7C4E712661E}.xml",
"title": ["Shale Hills RTH1 (Real-Time Hydrology Network) Daily Precipitation - 2006"],
"description": "Quality controlled precipitation data has been prepared using the field observations from the OTT Pluvio weighingtype rain gauge (Hach Company, Loveland, CO) with the precision of 0.1 mm. Missing values were gap filled (q=E) with fieldobservations from the ThiesCLIMA Laser Precipitation Monitor (LPM;Thies Clima, G?ttingen, Germany) with the precision of0.01 mm when available or correlated with hourly tipping bucket gauges (q=F) located at Shale Hills CZO. The tipping-bucketsrecord rainfall at a height of 0.3 m with a precision of 0.2 mm. Data from the OTT Pluvio and LPM were collected on 10 minintervals and were located on the ridge top (Lat: 40.6657515; Long: -77.9040044). The 10 min data was summed to determinehourly precipitin inputs and hourly data was then summed to determine daily precipitin amounts. CITATION:",
"links": ["http://www.czo.psu.edu/downloads/sdsc/ts_precip/daily/2006_CZO_RTH1_SSHO_Daily_Precip.hdr"],
"keywords": "Hydrology hydrology precipitation snow rain. Precipitation quality control flags.",
"keywords_ss": [
"Hydrology",
"hydrology",
"precipitation",
"snow",
"rain.",
"Precipitation",
"quality control flags."
],
"contact.organizations_ss": ["Dr. Christopher J. Duffy, Professor of Civil and Environmental Engineering, The PennsylvaniaState University, 231G Sackett Building, University Park, PA, 16802, 814.863.4384, [email protected]."],
"contact.people_ss": ["Dr. Christopher J. Duffy, Professor of Civil and Environmental Engineering, The PennsylvaniaState University, 231G Sackett Building, University Park, PA, 16802, 814.863.4384, [email protected]."],
"envelope_geo": ["-77.90734 40.6637476 -77.90315 40.6658305"],
"sys.metadatatype.key_s": "dc",
"sys.metadatatype.identifier_s": "http://purl.org/dc/elements/1.1/",
"sys.metadatatype.indexables.version_s": "v1.dc-toSolr.xslt",
"sys.owner.username_s": "gptaccount",
"sys.src.item.lastmodified_tdt": "2014-09-22T22:39:47.82Z",
"sys.src.item.url_s": "http://maxim.ucsd.edu/czo_waf/{FF13426D-236D-41F2-9A36-B7C4E712661E}.xml",
"sys.src.site.id_s": "{43C8EA97-4CC6-4EC8-8BC1-3BF141E6625B}",
"sys.src.site.name_s": "CZO Display Files",
"sys.src.site.protocol_s": "waf",
"sys.src.site_url_s": "http://maxim.ucsd.edu/czo_waf",
"sys.sync.foreign.id_s": "{0060422B-C7C8-478A-B6B6-6F308C0712D5}",
"sys.sync.foreign.instance.id_s": "gptinstance.czogeoportal",
"sys.sync.foreign.instance.url_s": "http://search.criticalzone.org/czoportal/",
"sys.sync.foreign.stamp_s": "approved.1..1411425587820",
"sys.sync.type_s": "sync.type.gptdb2solr",
"sys.task.id_s": "4d969f1ac622451c9c2cb09cc605e372",
"sys.task.indexdate_tdt": "2015-03-01T17:56:22.417Z",
"sys.src.collections_txt": ["Issue|Shale_Hills"],
"sys.src.collections_ss": ["Issue|Shale_Hills"],
"_version_": 1494464680341536768
},
{
"id": "00604880de6248938be1f8df39c0d0e2",
"id.table_s": "table.docindex",
"url.metadata_s": "http://search.criticalzone.org/czoportal/rest/document?id=%7B00604880-DE62-4893-8BE1-F8DF39C0D0E2%7D",
"sys.src.item.uri_s": "http://maxim.ucsd.edu/czo_waf/{7C3FDB0D-8FC8-49FE-8518-AC433D7CCB2D}.xml",
"title": ["Bisley Stream Data; Bisley - Quebrada 1; 5 min stream data 5-24-11 to 2-22-12"],
"description": "This is project presents data related to discharge measurements from the Bisley Watershed in the Luquillo Mountains.Long-term rainfall and discharge data from the Luquillo Experimental Forest (LEF) were analysed to develop relationships between rainfall, stream-runoff, and elevation. These relationships were then used with a Geographic Information System (GIS) to determine spatially-averaged, mean annual hydrologic budgets for watersheds and forest types within the study area. Model estimates indicate that a total of 3864 mm/yy (444 hm3) of rainfall falls on the forest in an average year. The Tabonuco, Colorado, Palm and Dwarf Forest types receive an estimated annual rainfall of 3537, 4191, 4167, and 4849 mm/yy, respectively. Of the average annual rainfall input, 65% (2526 mm/yr) is converted to runoff and the remainding 35% (1338 mm.yr) is lost from the system by evapotranspiration and other abstractions. In comparison to other tropical forests, the LEF as a whole has more evapotranspiration than many tropical montane forests but less evapotranspiration than many lowland tropical forests.; PUBLICATIONS: DEFAULT_PARAMTER.UTCOffset = -4DEFAULT_PARAMETER.TimeZone = ASTDEFAULT_PARAMETER.DataBeginsOnRow = 5DEFAULT_PARAMETER.NoDataValue =-6999DEFAULT_PARAMETER.QualityControlLevel = 2DEFAULT_PARAMETER.sitecode = 20DEFAULT_PARAMETER.timeSupport =DEFAULT_PARAMETER.timeSupportUnits =DEFAULT_PARAMETER.DataFile = Q1_5m5-6-11to2-22-12.csv",
"links": ["https://www.sas.upenn.edu/lczodata/sites/www.sas.upenn.edu.lczodata/files/Q1_5m5-6-11to2-22-12.hdr"],
"keywords": "Hydrology latitude: 18.315717 longitude: -65.74538TIMING. start date 2011-05-24T00:00:00 end date 2012-02-22T00:00:00",
"keywords_ss": [
"Hydrology",
"latitude: 18.315717 longitude: -65.74538TIMING. start date 2011-05-24T00:00:00 end date 2012-02-22T00:00:00"
],
"contact.organizations_ss": [". Fred N. Scatena,USDA Forest Service, IITF,Carlos R. Estrada Ruiz"],
"contact.people_ss": [". Fred N. Scatena,USDA Forest Service, IITF,Carlos R. Estrada Ruiz"],
"envelope_geo": ["-65.76383806 18.279714 -65.744327 18.331111"],
"sys.metadatatype.key_s": "dc",
"sys.metadatatype.identifier_s": "http://purl.org/dc/elements/1.1/",
"sys.metadatatype.indexables.version_s": "v1.dc-toSolr.xslt",
"sys.owner.username_s": "gptaccount",
"sys.src.item.lastmodified_tdt": "2014-09-22T22:37:39.11Z",
"sys.src.item.url_s": "http://maxim.ucsd.edu/czo_waf/{7C3FDB0D-8FC8-49FE-8518-AC433D7CCB2D}.xml",
"sys.src.site.id_s": "{43C8EA97-4CC6-4EC8-8BC1-3BF141E6625B}",
"sys.src.site.name_s": "CZO Display Files",
"sys.src.site.protocol_s": "waf",
"sys.src.site_url_s": "http://maxim.ucsd.edu/czo_waf",
"sys.sync.foreign.id_s": "{00604880-DE62-4893-8BE1-F8DF39C0D0E2}",
"sys.sync.foreign.instance.id_s": "gptinstance.czogeoportal",
"sys.sync.foreign.instance.url_s": "http://search.criticalzone.org/czoportal/",
"sys.sync.foreign.stamp_s": "approved.1..1411425459110",
"sys.sync.type_s": "sync.type.gptdb2solr",
"sys.task.id_s": "4d969f1ac622451c9c2cb09cc605e372",
"sys.task.indexdate_tdt": "2015-03-01T17:56:22.439Z",
"sys.src.collections_txt": ["Issue|Luquillo"],
"sys.src.collections_ss": ["Issue|Luquillo"],
"_version_": 1494464680365654016
},
{
"id": "00b851b2537c4db0a84ef7acefe832a8",
"id.table_s": "table.docindex",
"url.metadata_s": "http://search.criticalzone.org/czoportal/rest/document?id=%7B00B851B2-537C-4DB0-A84E-F7ACEFE832A8%7D",
"id.fileid_s": "{25571de7-6505-398b-adab-de795b6878ce}",
"title": ["Icacos/Blanco watersheds - Groundwater Chemistry, Groundwater Depth (2014)"],
"description": "Hach Hydrolabs \n\t\t\t\t\nA sample of data from three groundwater monitoring locations in the Icacos / Rio Blanco watershed are included here. Requests for a complete dataset will be considered, please email [email protected] with an explanation of what you would like to do with the data. A complete dataset will be released to the public at a later date. \n\t\t\t\t\n \n\t\t\t\t\nDATE RANGE COMMENTS: Collection ongoing",
"links": [
"http://criticalzone.org/national/data/dataset/3642/",
"http://www.sas.upenn.edu/lczodata/sites/www.sas.upenn.edu.lczodata/files/I-03Hydrolab.csv",
"http://www.sas.upenn.edu/lczodata/sites/www.sas.upenn.edu.lczodata/files/I-09Hydrolab.csv",
"http://www.sas.upenn.edu/lczodata/sites/www.sas.upenn.edu.lczodata/files/I-10Hydrolab.csv",
"http://www.sas.upenn.edu/lczodata/content/icacos-groundwater-monitoring"
],
"keywords": "Hydrology Water Chemistry Groundwater well Temperature pH Specific Conductance Groundwater Depth LDO% LDO BP Nitrate Groundwater Chemistry Groundwater Depth Temperature pH Specific Conductance Groundwater Depth LDO% LDO BP Nitrate Icacos/Blanco watersheds Rio Blanco environment",
"keywords_ss": [
"Hydrology",
"Water Chemistry",
"Groundwater",
"well",
"Temperature",
"pH",
"Specific Conductance",
"Groundwater Depth",
"LDO%",
"LDO",
"BP",
"Nitrate",
"Groundwater Chemistry",
"Icacos/Blanco watersheds",
"Rio Blanco",
"environment"
],
"contact.organizations_ss": ["Luquillo Critical Zone Observatory"],
"contact.people_ss": [
"Bill McDowell, Rich Brereton",
"William McDowell",
"Rich Brereton",
"Geoff Schwaner",
"Miguel Leon; [email protected]"
],
"apiso.Identifier_s": "{25571de7-6505-398b-adab-de795b6878ce}",
"apiso.Title_t": "Icacos/Blanco watersheds - Groundwater Chemistry, Groundwater Depth (2014)",
"apiso:Abstract_t": "Hach Hydrolabs \n\t\t\t\t\nA sample of data from three groundwater monitoring locations in the Icacos / Rio Blanco watershed are included here. Requests for a complete dataset will be considered, please email [email protected] with an explanation of what you would like to do with the data. A complete dataset will be released to the public at a later date. \n\t\t\t\t\n \n\t\t\t\t\nDATE RANGE COMMENTS: Collection ongoing",
"apiso.OrganizationName_t": "Luquillo Critical Zone Observatory",
"apiso.Subject_t": "Hydrology Water Chemistry Groundwater well Temperature pH Specific Conductance Groundwater Depth LDO% LDO BP Nitrate Groundwater Chemistry Groundwater Depth Temperature pH Specific Conductance Groundwater Depth LDO% LDO BP Nitrate Icacos/Blanco watersheds Rio Blanco environment",
"apiso.Type_s": "dataset",
"apiso.TopicCategory_ss": ["environment"],
"apiso.KeywordType_ss": [
"discipline",
"theme",
"place"
],
"apiso.Modified_tdt": "2014-09-18T00:00:00Z",
"apiso.CreationDate_tdt": "2014-06-16T00:00:00Z",
"apiso.RevisionDate_tdt": "2014-09-18T00:00:00Z",
"apiso.PublicationDate_tdt": "2014-09-18T00:00:00Z",
"apiso.HasSecurityConstraints_b": true,
"apiso.OtherConstraints_ss": ["CZO DATA USE POLICY. DRAFT v.0.3.5. SUMMARY VERSION. For full details, see http://criticalzone.org/national/data/access-czo-data-1national/ (1) USE OUR DATA FREELY. All CZO Data Products, except those labelled \"Private\", are released to the public and may be freely used under the condition that you give acknowledgement. Non-CZO data products \u2014 like those produced by USGS or NOAA \u2014 have their own use policies, which should be followed. (2) GIVE PROPER ACKNOWLEDGEMENT. Publications, models and data products that make use of these datasets must include proper acknowledgement. (3) LET US KNOW HOW YOU WILL USE THE DATA. The dataset creators would appreciate hearing of any plans to use the dataset."],
"apiso.ConditionApplyingToAccessAndUse_txt": ["CZO DATA USE POLICY. DRAFT v.0.3.5. SUMMARY VERSION. For full details, see http://criticalzone.org/national/data/access-czo-data-1national/ (1) USE OUR DATA FREELY. All CZO Data Products, except those labelled \"Private\", are released to the public and may be freely used under the condition that you give acknowledgement. Non-CZO data products \u2014 like those produced by USGS or NOAA \u2014 have their own use policies, which should be followed. (2) GIVE PROPER ACKNOWLEDGEMENT. Publications, models and data products that make use of these datasets must include proper acknowledgement. (3) LET US KNOW HOW YOU WILL USE THE DATA. The dataset creators would appreciate hearing of any plans to use the dataset."],
"apiso.ResponsiblePartyRole_t": "author",
"apiso.CRS.ID_ss": ["4326"],
"envelope_geo": ["-65.78885 18.275085 -65.785928 18.29241"],
"apiso:BoundingBox_geo": ["-65.78885 18.275085 -65.785928 18.29241"],
"apiso.TempExtent_begin_dts": ["2014-03-09T00:00:00Z"],
"apiso.TempExtent_end_dts": ["2014-06-16T23:59:59.999Z"],
"apiso.TempExtent_begin_tdt": "2014-03-09T00:00:00Z",
"apiso.TempExtent_end_tdt": "2014-06-16T23:59:59.999Z",
"sys.metadatatype.key_s": "iso19115",
"sys.metadatatype.identifier_s": "http://www.isotc211.org/2005/gmd",
"sys.metadatatype.indexables.version_s": "v1.iso19115-toSolr.xslt",
"sys.owner.username_s": "gptaccount",
"sys.src.item.lastmodified_tdt": "2014-09-23T16:33:08.78Z",
"sys.src.item.uri_s": "http://criticalzone.org/national/data/xml-metadata-test/3642?.xml",
"sys.src.item.url_s": "http://criticalzone.org/national/data/xml-metadata-test/3642?.xml",
"sys.src.site.id_s": "{0F3673EC-7E0F-44E6-92AC-9727D5F16B4F}",
"sys.src.site.name_s": "CZO Datasets",
"sys.src.site.protocol_s": "waf",
"sys.src.site_url_s": "http://criticalzone.org/national/data/xml-metadata-test-links/",
"sys.sync.foreign.id_s": "{00B851B2-537C-4DB0-A84E-F7ACEFE832A8}",
"sys.sync.foreign.instance.id_s": "gptinstance.czogeoportal",
"sys.sync.foreign.instance.url_s": "http://search.criticalzone.org/czoportal/",
"sys.sync.foreign.stamp_s": "approved.1..1411489988780",
"sys.sync.type_s": "sync.type.gptdb2solr",
"sys.task.id_s": "4d969f1ac622451c9c2cb09cc605e372",
"sys.task.indexdate_tdt": "2015-03-01T17:56:22.474Z",
"sys.src.collections_txt": [
"Category||Hydrology",
"Category||Water_Chemistry",
"Issue|Luquillo"
],
"sys.src.collections_ss": [
"Category||Hydrology",
"Category||Water_Chemistry",
"Issue|Luquillo"
],
"_version_": 1494464680402354176
},
{
"id": "013d0a5a86594af796a219ad8d802dcd",
"id.table_s": "table.docindex",
"url.metadata_s": "http://search.criticalzone.org/czoportal/rest/document?id=%7B013D0A5A-8659-4AF7-96A2-19AD8D802DCD%7D",
"sys.src.item.uri_s": "http://maxim.ucsd.edu/czo_waf/{D9FA3B91-33C4-4B40-8042-D2B76DABC38B}.xml",
"title": ["Valles Caldera Ponderosa Pine Flux Tower."],
"description": "The flux tower is located in the Jemez River basin of the Jemez Mountains in north-central New Mexico at the southern margin of the Rocky Mountain ecoregion in the Valles Caldera National Preserve. The climate can be characterized as semi-arid, montane. Vegetation at this site is composed of a Pinus ponderosa overstory with Gambel oak scrubland (Quercus gambelii) understory. Tower height is 25 m. CITATION: PUBLICATIONS: [1] McDowell, N.G., White, S., Pockman, W.T. 2008. Transpiration and stomatal conductance across a steep climate gradient in the southern Rocky Mountains. Ecohydrology 1:3 193-204.[2] Anderson-Teixera, DeLong, J.P., Fox, A., Brese, D.A. and Litvak, M.E. 2011. Differential responses of production and respiration to temperature and moisture drive the carbon balance across a climatic gradient in New Mexico. Global Change Biology 17: 410-424.",
"links": ["http://www.czo.arizona.edu/data/pub/valle/Towers/Vcp/Tower_Vcp_metadata_2009.hdr"],
"keywords": "Hydrology Flux Tower Temperature Pressure Carbon Dioxide Water Vapor Precipitation Humidity Heat Flux Radiation Soil Temperature Wind Speed Soil Moisture Valle Caldera New Mexico Friction velocity Temperature Wind direction Wind speed Carbon dioxide flux Sensible heat flux Latent heat flux Precipitation Relative humidity Barometric pressure Carbon dioxide Vapor pressure deficit Volumetric water content Radiation net Radiation incoming PAR Radiation incoming shortwave Radiation outgoing shortwave Radiation incoming longwave Radiation outgoing longwave Water vapor concentration Ecosystem respiration Gross primary productivity.",
"keywords_ss": [
"Hydrology",
"Flux Tower",
"Temperature",
"Pressure",
"Carbon Dioxide",
"Water Vapor",
"Precipitation",
"Humidity",
"Heat Flux",
"Radiation",
"Soil Temperature",
"Wind Speed",
"Soil Moisture",
"Valle Caldera",
"New Mexico",
"Friction velocity",
"Wind direction",
"Wind speed",
"Carbon dioxide flux",
"Sensible heat flux",
"Latent heat flux",
"Relative humidity",
"Barometric pressure",
"Carbon dioxide",
"Vapor pressure deficit",
"Volumetric water content",
"Radiation net",
"Radiation incoming PAR",
"Radiation incoming shortwave",
"Radiation outgoing shortwave",
"Radiation incoming longwave",
"Radiation outgoing longwave",
"Water vapor concentration",
"Ecosystem respiration",
"Gross primary productivity."
],
"contact.organizations_ss": ["Marcy Litvak, Biology Department, University of New Mexico, Biology MSC03 2020, 167 Castetter Hall, Albuquerque, NM 87131, [email protected]."],
"contact.people_ss": ["Marcy Litvak, Biology Department, University of New Mexico, Biology MSC03 2020, 167 Castetter Hall, Albuquerque, NM 87131, [email protected]."],
"envelope_geo": ["-106.596101 35.864716 -106.532212 35.889161"],
"sys.metadatatype.key_s": "dc",
"sys.metadatatype.identifier_s": "http://purl.org/dc/elements/1.1/",
"sys.metadatatype.indexables.version_s": "v1.dc-toSolr.xslt",
"sys.owner.username_s": "gptaccount",
"sys.src.item.lastmodified_tdt": "2014-09-22T22:39:18.02Z",
"sys.src.item.url_s": "http://maxim.ucsd.edu/czo_waf/{D9FA3B91-33C4-4B40-8042-D2B76DABC38B}.xml",
"sys.src.site.id_s": "{43C8EA97-4CC6-4EC8-8BC1-3BF141E6625B}",
"sys.src.site.name_s": "CZO Display Files",
"sys.src.site.protocol_s": "waf",
"sys.src.site_url_s": "http://maxim.ucsd.edu/czo_waf",
"sys.sync.foreign.id_s": "{013D0A5A-8659-4AF7-96A2-19AD8D802DCD}",
"sys.sync.foreign.instance.id_s": "gptinstance.czogeoportal",
"sys.sync.foreign.instance.url_s": "http://search.criticalzone.org/czoportal/",
"sys.sync.foreign.stamp_s": "approved.1..1411425558020",
"sys.sync.type_s": "sync.type.gptdb2solr",
"sys.task.id_s": "4d969f1ac622451c9c2cb09cc605e372",
"sys.task.indexdate_tdt": "2015-03-01T17:56:22.488Z",
"sys.src.collections_txt": ["Issue|Catalina-Jemez"],
"sys.src.collections_ss": ["Issue|Catalina-Jemez"],
"_version_": 1494464680417034240
},
{
"id": "01403cb3085f4e76bf4933fdd67b97e6",
"id.table_s": "table.docindex",
"url.metadata_s": "http://search.criticalzone.org/czoportal/rest/document?id=%7B01403CB3-085F-4E76-BF49-33FDD67B97E6%7D",
"sys.src.item.uri_s": "http://maxim.ucsd.edu/czo_waf/{AA4BE19F-6666-4412-BA42-A5B9576C2CC7}.xml",
"title": ["East Peak Climate ; IITF East Peak Daily Climate"],
"description": "The overall goal of this effort is to monitor the surface climate of the upper Luquillo Mountains. This station provides basic hourly and daily climate data that is comparable to the Bisley and El Verde stations at lower elevations. It also provides the long-term reference data that supplements shorter-term, high frequency measurements.; PUBLICATIONS: Weaver, P.L., E. Medina, D. Pool, K. Dugget, J. Gonzales-Liboy, E. Cuvas, 1986. Ecological Observations in the Cloud Forests of the Luquillo Mountains in Puerto Rico. Biotropica 18(1):69-82",
"links": ["https://oni.sas.upenn.edu/lczo-test/sites/oni.sas.upenn.edu.lczo-test/files/EastPeak-4-9-10_to_3-31-11New.hdr"],
"keywords": "Hydrology latitude: 18.279714 N longitude: 65.763838 WTIMING. start date 2010-04-09T00:00:00 end date 2011-03-31T00:00:00 periodicity: day",
"keywords_ss": [
"Hydrology",
"latitude: 18.279714 N longitude: 65.763838 WTIMING. start date 2010-04-09T00:00:00 end date 2011-03-31T00:00:00 periodicity: day"
],
"contact.organizations_ss": [". F.N. ScatenaCarlos EstradaIITF Watershed TechniciansVARIABLES. DateTime, Recorder code, Precipitation, Precipitation, Temperature, Relative humidity, Temperature, Not_Primary_Date_and_or_Time, Relative humidity, Not_Primary_Date_and_or_Time, Wind speed, Not_Primary_Date_and_or_Time, Temperature, Temperature, Relative humidity, Relative humidity, Wind speed, Not Primary Date and or Time, Radiation, net PAR, Radiation, net, Radiation, net PAR, Radiation, net PAR, Temperature, Relative humidity, Wind speed, Wind speed, Wind speed, Wind speed, Wind speed, Wind speed, Wind speed, Wind speed, Wind speed, Wind speed, Wind speed, Wind speed, Battery voltage"],
"contact.people_ss": [". F.N. ScatenaCarlos EstradaIITF Watershed TechniciansVARIABLES. DateTime, Recorder code, Precipitation, Precipitation, Temperature, Relative humidity, Temperature, Not_Primary_Date_and_or_Time, Relative humidity, Not_Primary_Date_and_or_Time, Wind speed, Not_Primary_Date_and_or_Time, Temperature, Temperature, Relative humidity, Relative humidity, Wind speed, Not Primary Date and or Time, Radiation, net PAR, Radiation, net, Radiation, net PAR, Radiation, net PAR, Temperature, Relative humidity, Wind speed, Wind speed, Wind speed, Wind speed, Wind speed, Wind speed, Wind speed, Wind speed, Wind speed, Wind speed, Wind speed, Wind speed, Battery voltage"],
"envelope_geo": ["-65.76383806 18.27971444 -65.731111 18.331111"],
"sys.metadatatype.key_s": "dc",
"sys.metadatatype.identifier_s": "http://purl.org/dc/elements/1.1/",
"sys.metadatatype.indexables.version_s": "v1.dc-toSolr.xslt",
"sys.owner.username_s": "gptaccount",
"sys.src.item.lastmodified_tdt": "2014-09-22T22:38:31.737Z",
"sys.src.item.url_s": "http://maxim.ucsd.edu/czo_waf/{AA4BE19F-6666-4412-BA42-A5B9576C2CC7}.xml",
"sys.src.site.id_s": "{43C8EA97-4CC6-4EC8-8BC1-3BF141E6625B}",
"sys.src.site.name_s": "CZO Display Files",
"sys.src.site.protocol_s": "waf",
"sys.src.site_url_s": "http://maxim.ucsd.edu/czo_waf",
"sys.sync.foreign.id_s": "{01403CB3-085F-4E76-BF49-33FDD67B97E6}",
"sys.sync.foreign.instance.id_s": "gptinstance.czogeoportal",
"sys.sync.foreign.instance.url_s": "http://search.criticalzone.org/czoportal/",
"sys.sync.foreign.stamp_s": "approved.1..1411425511737",
"sys.sync.type_s": "sync.type.gptdb2solr",
"sys.task.id_s": "4d969f1ac622451c9c2cb09cc605e372",
"sys.task.indexdate_tdt": "2015-03-01T17:56:22.502Z",
"sys.src.collections_txt": ["Issue|Luquillo"],
"sys.src.collections_ss": ["Issue|Luquillo"],
"_version_": 1494464680430665728
},
{
"id": "014f6ea0e37047e89187225b44e223ca",
"id.table_s": "table.docindex",
"url.metadata_s": "http://search.criticalzone.org/czoportal/rest/document?id=%7B014F6EA0-E370-47E8-9187-225B44E223CA%7D",
"sys.src.item.uri_s": "http://www.czo.psu.edu/downloads/sdsc/hydroped/watertable/2010_SSHCZO_61a_WaterTable.hdr",
"title": ["SSH Site 61a Water Table Data - 2010"],
"description": "The Real-Time Soil Moisture Monitoring Network provides integrated observation of water, energy and temperature in the soils of the Shale Hills Susquehanna Critical Zone Observatory watershed. Water table is measured at between 1 and 4 locations at 10 sites. At 8 sites, water table were measured with 2 different data loggers, thus have different time stamps. There are 2 or 3 time stamps for each of these data sheets, with the time stamp applying to the data in the subsequent columns. CITATION: PUBLICATIONS: 1. Graham, C., and H.S. Lin. 2011. Controls and frequency of preferential flow occurrence at the Shale Hills Critical Zone Observatory: A 175 event analysis of soil moisture response to precipitation. Submitted to Vadose Zone Journal (in press).2. Takagi, K. and H.S. Lin. 2011. Temporal Evolution of Soil Moisture Spatial Variability in the Shale Hills Catchment. Submitted to Vadose Zone Journal.3. Takagi, K. and H.S. Lin. 2011. Soil-Terrain Attributes in Relation to Surface and Subsurface Soil Moisture in the Shale Hills Catchment. Submitted to Geoderma.4. Andrews, D.M., H.S. Lin, Q. Zhu, L. Jin, and S.L. Brantley. 2011. Dissolved organic carbon export and soil carbon storage in the Shale Hills Critical Zone Observatory. Submitted to Vadose Zone Journal.5. Jin, L., D. M. Andrews, G. H. Holmes, C. J. Duffy, H.S. Lin, and S. L. Brantley. 2011. Water chemistry reflects hydrological controls on weathering in the Shale Hills Critical Zone Observatory. Submitted to Vadose Zone Journal.6. Zhang, J. H.S. Lin, and J. Doolittle. 2011. Subsurface Lateral Flow as Revealed by Combined Ground Penetrating Radar and Real-Time Soil Moisture Monitoring. Submitted to Hydrological Processes.7. Zhu, Q., and H.S. Lin. 2010. Interpolation of soil properties based on combined information of spatial structure, sample size and auxiliary variables. Pedosphere 20:594-606.8. Lin, H.S., and X.B. Zhou. 2008. Evidence of Subsurface Preferential Flow Using Soil Hydrologic Monitoring in the Shale Hills Catchment. European J. of Soil Science 59:34?49.9. Lin, H.S. 2006. Temporal stability of soil moisture spatial pattern and subsurface preferential flow pathways in the Shale Hills Catchment. Vadose Zone Journal 5:317-340.10. Lin, H.S., W. Kogelmann, C. Walker, and M.A. Bruns. 2006. Soil moisture patterns in a forested catchment: A hydropedological perspective. Geoderma 131:345-368.",
"links": ["http://www.czo.psu.edu/downloads/sdsc/hydroped/watertable/2010_SSHCZO_61a_WaterTable.hdr"],
"keywords": "Hydrology Soil water hydrology hydropedology soil science water table. Water depth voltage.",
"keywords_ss": [
"Hydrology",
"Soil",
"water",
"hydrology",
"hydropedology",
"soil science",
"water table.",
"Water depth",
"voltage."
],
"contact.organizations_ss": ["Dr. Henry Lin, Crop and Soil Science, The Pennsylvania State University, 444 Agricultural Sciences and Industries Building, University Park, PA 16802, (814) 865-6726, [email protected]."],
"contact.people_ss": ["Dr. Henry Lin, Crop and Soil Science, The Pennsylvania State University, 444 Agricultural Sciences and Industries Building, University Park, PA 16802, (814) 865-6726, [email protected]."],
"envelope_geo": ["-77.90734 40.6637476 -77.90315 40.6658305"],
"sys.metadatatype.key_s": "dc",
"sys.metadatatype.identifier_s": "http://purl.org/dc/elements/1.1/",
"sys.metadatatype.indexables.version_s": "v1.dc-toSolr.xslt",
"sys.owner.username_s": "gptaccount",
"sys.src.item.lastmodified_tdt": "2014-10-09T22:00:51.007Z",
"sys.src.site.id_s": "{43C8EA97-4CC6-4EC8-8BC1-3BF141E6625B}",
"sys.src.site.name_s": "CZO Display Files",
"sys.src.site.protocol_s": "waf",
"sys.src.site_url_s": "http://maxim.ucsd.edu/czo_waf",
"sys.sync.foreign.id_s": "{014F6EA0-E370-47E8-9187-225B44E223CA}",
"sys.sync.foreign.instance.id_s": "gptinstance.czogeoportal",
"sys.sync.foreign.instance.url_s": "http://search.criticalzone.org/czoportal/",
"sys.sync.foreign.stamp_s": "approved.1..1412892051007",
"sys.sync.type_s": "sync.type.gptdb2solr",
"sys.task.id_s": "4d969f1ac622451c9c2cb09cc605e372",
"sys.task.indexdate_tdt": "2015-03-01T17:56:22.536Z",
"sys.src.collections_txt": ["Issue|Shale_Hills"],
"sys.src.collections_ss": ["Issue|Shale_Hills"],
"_version_": 1494464680467365888
},
{
"id": "017ffa1c5c1149a9ac33eff573fd61fb",
"id.table_s": "table.docindex",
"url.metadata_s": "http://search.criticalzone.org/czoportal/rest/document?id=%7B017FFA1C-5C11-49A9-AC33-EFF573FD61FB%7D",
"id.fileid_s": "OT.052013.26913.1",
"title": ["2010 CU-Boulder Campus and Flatirons"],
"description": "NCALM Project. PI: Shane Grigsby, University of Colorado, Boulder. LiDAR survey of the CU-Boulder campus as part of a solar energy potential and photovoltaic planning study. The acquisition covers 45 km2 and includes East Campus, West Campus, and South Campus, as well as portions of the Flatirons and surrounding areas in multiple return, classified points. The CU Environmental Center is using the LiDAR data, combined with building footprint vector data from the campus GIS system, to facilitate site selection for new solar arrays. The LiDAR data and terrain products enables analysis of insolation using the GRASS GIS implementation of the SOLPOS 2.0 (SOLar POSition and intensity) algorithm developed and maintained by the National Renewable Energy Laboratory (NREL). This allows campus solar sites to take into account day length, position of the sun, seasonal atmospheric effects, orientation and the local shading effects from trees, buildings and other structures.",
"links": [
"http://www.ncalm.cive.uh.edu/",
"http://www.colorado.edu/ecenter/",
"http://geography.colorado.edu/",
"http://opentopography.org",
"http://dx.doi.org/10.5069/G9ZC80SR"
],
"keywords": "geoscientificInformation",
"keywords_ss": ["geoscientificInformation"],
"contact.organizations_ss": [
"OpenTopography Facility",
"National Center for Airborne Laser Mapping",
"University of Colorado at Boulder Environmental Center",
"University of Colorado at Boulder Geography Department"
],
"apiso.Identifier_s": "OT.052013.26913.1",
"apiso.Title_t": "2010 CU-Boulder Campus and Flatirons",
"apiso:Abstract_t": "NCALM Project. PI: Shane Grigsby, University of Colorado, Boulder. LiDAR survey of the CU-Boulder campus as part of a solar energy potential and photovoltaic planning study. The acquisition covers 45 km2 and includes East Campus, West Campus, and South Campus, as well as portions of the Flatirons and surrounding areas in multiple return, classified points. The CU Environmental Center is using the LiDAR data, combined with building footprint vector data from the campus GIS system, to facilitate site selection for new solar arrays. The LiDAR data and terrain products enables analysis of insolation using the GRASS GIS implementation of the SOLPOS 2.0 (SOLar POSition and intensity) algorithm developed and maintained by the National Renewable Energy Laboratory (NREL). This allows campus solar sites to take into account day length, position of the sun, seasonal atmospheric effects, orientation and the local shading effects from trees, buildings and other structures.",
"apiso.OrganizationName_t": "OpenTopography Facility",
"apiso.Subject_t": "geoscientificInformation",
"apiso.Type_s": "dataset",
"apiso.TopicCategory_ss": ["geoscientificInformation"],
"apiso.Modified_tdt": "2013-05-28T00:00:00Z",
"apiso.PublicationDate_tdt": "2013-05-28T00:00:00Z",
"apiso.HasSecurityConstraints_b": false,
"apiso.ResponsiblePartyRole_t": "originator",
"apiso.CRS.ID_ss": [
"UTM Zone 13N NAD83 (CORS96) [EPSG: 26913]",
"NAVD88 (Geoid 03) [EPSG: 5703]"
],
"envelope_geo": ["-105.3164 39.9387 -105.2109 40.0289"],
"apiso:BoundingBox_geo": ["-105.3164 39.9387 -105.2109 40.0289"],
"sys.metadatatype.key_s": "iso19115",
"sys.metadatatype.identifier_s": "http://www.isotc211.org/2005/gmd",
"sys.metadatatype.indexables.version_s": "v1.iso19115-toSolr.xslt",
"sys.owner.username_s": "gptaccount",
"sys.src.item.lastmodified_tdt": "2014-09-16T23:29:45.113Z",
"sys.src.item.uri_s": "{017FFA1C-5C11-49A9-AC33-EFF573FD61FB}",
"sys.src.site.id_s": "{2A5FF0C5-99AC-4B11-A389-780ED22E5527}",
"sys.src.site.name_s": "OpenTopography Lidar Catalog",
"sys.src.site.protocol_s": "csw",
"sys.src.site_url_s": "http://opentopo.sdsc.edu/geoportal/csw/discovery?Request=GetCapabilities&Service=CSW&Version=2.0.2",
"sys.sync.foreign.id_s": "{017FFA1C-5C11-49A9-AC33-EFF573FD61FB}",
"sys.sync.foreign.instance.id_s": "gptinstance.czogeoportal",
"sys.sync.foreign.instance.url_s": "http://search.criticalzone.org/czoportal/",
"sys.sync.foreign.stamp_s": "approved.1..1410910185113",
"sys.sync.type_s": "sync.type.gptdb2solr",
"sys.task.id_s": "4d969f1ac622451c9c2cb09cc605e372",
"sys.task.indexdate_tdt": "2015-03-01T17:56:22.575Z",
"sys.src.collections_txt": ["noczo"],
"sys.src.collections_ss": ["noczo"],
"_version_": 1494464680508260352
},
{
"id": "0288163534984de3a45f781cc2d4a86f",
"id.table_s": "table.docindex",
"url.metadata_s": "http://search.criticalzone.org/czoportal/rest/document?id=%7B02881635-3498-4DE3-A45F-781CC2D4A86F%7D",
"sys.src.item.uri_s": "http://www.czo.psu.edu/downloads/sdsc/hydroped/watertable/2008_SSHCZO_74_WaterTable.hdr",
"title": ["SSH Site 74 Water Table Data - 2008"],
"description": "The Real-Time Soil Moisture Monitoring Network provides integrated observation of water, energy and temperature in the soils of the Shale Hills Susquehanna Critical Zone Observatory watershed. Water table is measured at between 1 and 4 locations at 10 sites. At 8 sites, water table were measured with 2 different data loggers, thus have different time stamps. There are 2 or 3 time stamps for each of these data sheets, with the time stamp applying to the data in the subsequent columns. CITATION: PUBLICATIONS: 1. Graham, C., and H.S. Lin. 2011. Controls and frequency of preferential flow occurrence at the Shale Hills Critical Zone Observatory: A 175 event analysis of soil moisture response to precipitation. Submitted to Vadose Zone Journal (in press).2. Takagi, K. and H.S. Lin. 2011. Temporal Evolution of Soil Moisture Spatial Variability in the Shale Hills Catchment. Submitted to Vadose Zone Journal.3. Takagi, K. and H.S. Lin. 2011. Soil-Terrain Attributes in Relation to Surface and Subsurface Soil Moisture in the Shale Hills Catchment. Submitted to Geoderma.4. Andrews, D.M., H.S. Lin, Q. Zhu, L. Jin, and S.L. Brantley. 2011. Dissolved organic carbon export and soil carbon storage in the Shale Hills Critical Zone Observatory. Submitted to Vadose Zone Journal.5. Jin, L., D. M. Andrews, G. H. Holmes, C. J. Duffy, H.S. Lin, and S. L. Brantley. 2011. Water chemistry reflects hydrological controls on weathering in the Shale Hills Critical Zone Observatory. Submitted to Vadose Zone Journal.6. Zhang, J. H.S. Lin, and J. Doolittle. 2011. Subsurface Lateral Flow as Revealed by Combined Ground Penetrating Radar and Real-Time Soil Moisture Monitoring. Submitted to Hydrological Processes.7. Zhu, Q., and H.S. Lin. 2010. Interpolation of soil properties based on combined information of spatial structure, sample size and auxiliary variables. Pedosphere 20:594-606.8. Lin, H.S., and X.B. Zhou. 2008. Evidence of Subsurface Preferential Flow Using Soil Hydrologic Monitoring in the Shale Hills Catchment. European J. of Soil Science 59:34?49.9. Lin, H.S. 2006. Temporal stability of soil moisture spatial pattern and subsurface preferential flow pathways in the Shale Hills Catchment. Vadose Zone Journal 5:317-340.10. Lin, H.S., W. Kogelmann, C. Walker, and M.A. Bruns. 2006. Soil moisture patterns in a forested catchment: A hydropedological perspective. Geoderma 131:345-368.",
"links": ["http://www.czo.psu.edu/downloads/sdsc/hydroped/watertable/2008_SSHCZO_74_WaterTable.hdr"],
"keywords": "Hydrology Soil water hydrology hydropedology soil science water table. Water depth voltage.",
"keywords_ss": [
"Hydrology",
"Soil",
"water",
"hydrology",
"hydropedology",
"soil science",
"water table.",
"Water depth",
"voltage."
],
"contact.organizations_ss": ["Dr. Henry Lin, Crop and Soil Science, The Pennsylvania State University, 444 Agricultural Sciences and Industries Building, University Park, PA 16802, (814) 865-6726, [email protected]."],
"contact.people_ss": ["Dr. Henry Lin, Crop and Soil Science, The Pennsylvania State University, 444 Agricultural Sciences and Industries Building, University Park, PA 16802, (814) 865-6726, [email protected]."],
"envelope_geo": ["-77.90734 40.6637476 -77.90315 40.6658305"],
"sys.metadatatype.key_s": "dc",
"sys.metadatatype.identifier_s": "http://purl.org/dc/elements/1.1/",
"sys.metadatatype.indexables.version_s": "v1.dc-toSolr.xslt",
"sys.owner.username_s": "gptaccount",
"sys.src.item.lastmodified_tdt": "2014-10-09T20:55:19.86Z",
"sys.src.site.id_s": "{43C8EA97-4CC6-4EC8-8BC1-3BF141E6625B}",
"sys.src.site.name_s": "CZO Display Files",
"sys.src.site.protocol_s": "waf",
"sys.src.site_url_s": "http://maxim.ucsd.edu/czo_waf",
"sys.sync.foreign.id_s": "{02881635-3498-4DE3-A45F-781CC2D4A86F}",
"sys.sync.foreign.instance.id_s": "gptinstance.czogeoportal",
"sys.sync.foreign.instance.url_s": "http://search.criticalzone.org/czoportal/",
"sys.sync.foreign.stamp_s": "approved.1..1412888119860",
"sys.sync.type_s": "sync.type.gptdb2solr",
"sys.task.id_s": "4d969f1ac622451c9c2cb09cc605e372",