adiwg-json_schemas 0.5.2 → 0.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/examples/extent_point.json +39 -13
- data/examples/extent_polygon.json +4 -4
- data/examples/full_example.json +195 -156
- data/examples/full_example2.json +2278 -0
- data/examples/geojson.json +428 -235
- data/examples/keywords.json +45 -40
- data/examples/lcc_project_example.json +266 -203
- data/examples/onlineResource.json +1 -2
- data/examples/resourceInfo.json +1015 -1045
- data/examples/spatialRef.json +14 -0
- data/examples/uri.json +2 -1
- data/lib/adiwg/json_schemas/version.rb +2 -2
- data/schema/schema/citation.json +16 -25
- data/schema/schema/extent.json +3 -3
- data/schema/schema/geojson/geojson.json +5 -2
- data/schema/schema/graphicOverview.json +3 -3
- data/schema/schema/keyword.json +1 -15
- data/schema/schema/metadata.json +0 -6
- data/schema/schema/onlineResource.json +0 -3
- data/schema/schema/resourceInfo.json +25 -10
- data/templates/adiwg_metadata_template.json +263 -148
- data/test/tc_schemas.rb +132 -122
- data/test/tc_utils.rb +1 -1
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a3efe57bb1de467638869ac6d30ffb62f9bb5b00
|
4
|
+
data.tar.gz: 5aaaad63299cf3eabf4242b8ea870b287363cab2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5496880df10514786f6efa6e6b56d67f4cfafd9c11e2615e2453731f1cd96dddcb6b405e91f0e1de239523ef76719220c74f1fd1f9f79837abd8b22044d12530
|
7
|
+
data.tar.gz: b24ab50266b9bcfe064f62eff5f0e66791d49e664eedb07ea706016000bf15f4aa2ca3e38e6e3264ca2ca456212cd39436428342f0b4a2d698ba57990f53d245
|
data/examples/extent_point.json
CHANGED
@@ -8,8 +8,10 @@
|
|
8
8
|
"properties":{
|
9
9
|
"name":"BS7882",
|
10
10
|
"description":"Borehole BS7882 location",
|
11
|
-
"
|
12
|
-
|
11
|
+
"identifier":[
|
12
|
+
{
|
13
|
+
"identifier":"US 01",
|
14
|
+
"authority":{
|
13
15
|
"title":"Global Terrestrial Network for Permafrost Identifiers",
|
14
16
|
"responsibleParty":[
|
15
17
|
{
|
@@ -21,10 +23,12 @@
|
|
21
23
|
{
|
22
24
|
"uri":"http://www.gtnp.org"
|
23
25
|
}
|
24
|
-
]
|
25
|
-
|
26
|
-
|
27
|
-
|
26
|
+
]
|
27
|
+
}
|
28
|
+
},
|
29
|
+
{
|
30
|
+
"identifier":"ATI",
|
31
|
+
"authority":{
|
28
32
|
"title":"US Geological Survey borehole identifier",
|
29
33
|
"responsibleParty":[
|
30
34
|
{
|
@@ -36,10 +40,10 @@
|
|
36
40
|
{
|
37
41
|
"uri":"http://data.usgs.gov/climateMonitoring/region/show?region=alaska"
|
38
42
|
}
|
39
|
-
]
|
40
|
-
"identifier":"ATI"
|
43
|
+
]
|
41
44
|
}
|
42
|
-
|
45
|
+
}
|
46
|
+
]
|
43
47
|
},
|
44
48
|
"geometry":{
|
45
49
|
"type":"Point",
|
@@ -59,8 +63,19 @@
|
|
59
63
|
"type":"Feature",
|
60
64
|
"id":"point100",
|
61
65
|
"properties":{
|
62
|
-
"identifier":
|
63
|
-
|
66
|
+
"identifier":[
|
67
|
+
{
|
68
|
+
"identifier":"PNT-12346",
|
69
|
+
"authority":{
|
70
|
+
"title":"Global Terrestrial Network for Permafrost Identifiers",
|
71
|
+
"onlineResource":[
|
72
|
+
{
|
73
|
+
"uri":"http://www.gtnp.org"
|
74
|
+
}
|
75
|
+
]
|
76
|
+
}
|
77
|
+
}
|
78
|
+
],
|
64
79
|
"name":"BS999",
|
65
80
|
"description":"Sea buoy BS999 location"
|
66
81
|
},
|
@@ -150,8 +165,19 @@
|
|
150
165
|
"type":"Feature",
|
151
166
|
"id":"point010",
|
152
167
|
"properties":{
|
153
|
-
"identifier":
|
154
|
-
|
168
|
+
"identifier":[
|
169
|
+
{
|
170
|
+
"identifier":"PNT-12345",
|
171
|
+
"authority":{
|
172
|
+
"title":"Global Terrestrial Network for Permafrost Identifiers",
|
173
|
+
"onlineResource":[
|
174
|
+
{
|
175
|
+
"uri":"http://www.gtnp.org"
|
176
|
+
}
|
177
|
+
]
|
178
|
+
}
|
179
|
+
}
|
180
|
+
],
|
155
181
|
"name":"BS7882",
|
156
182
|
"description":"point valid on or after a specific date",
|
157
183
|
"temporalElement":{
|
@@ -38,7 +38,7 @@
|
|
38
38
|
"minimumValue":-500,
|
39
39
|
"maximumValue":0,
|
40
40
|
"verticalCRSTitle":"NAVD88 depth",
|
41
|
-
"
|
41
|
+
"verticalCRSUri":"http://www.epsg-registry.org/export.htm?gml=urn:ogc:def:crs:EPSG::6357"
|
42
42
|
}
|
43
43
|
]
|
44
44
|
},
|
@@ -174,13 +174,13 @@
|
|
174
174
|
"minimumValue":0,
|
175
175
|
"maximumValue":1000,
|
176
176
|
"verticalCRSTitle":"NAVD88 height",
|
177
|
-
"
|
177
|
+
"verticalCRSUri":"http://www.epsg-registry.org/export.htm?gml=urn:ogc:def:crs:EPSG::5703"
|
178
178
|
},
|
179
179
|
{
|
180
180
|
"minimumValue":1500,
|
181
181
|
"maximumValue":0,
|
182
182
|
"verticalCRSTitle":"NAVD88 depth",
|
183
|
-
"
|
183
|
+
"verticalCRSUri":"http://www.epsg-registry.org/export.htm?gml=urn:ogc:def:crs:EPSG::6357"
|
184
184
|
}
|
185
185
|
]
|
186
186
|
},
|
@@ -346,7 +346,7 @@
|
|
346
346
|
"minimumValue":60.5,
|
347
347
|
"maximumValue":110.68,
|
348
348
|
"verticalCRSTitle":"NAVD88 height (ftUS)",
|
349
|
-
"
|
349
|
+
"verticalCRSUri":"http://www.epsg-registry.org/export.htm?gml=urn:ogc:def:axis-name:EPSG::9904"
|
350
350
|
}
|
351
351
|
]
|
352
352
|
}
|
data/examples/full_example.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"version":{
|
3
3
|
"name":"adiwgJSON",
|
4
|
-
"version":"0.
|
4
|
+
"version":"0.7.0"
|
5
5
|
},
|
6
6
|
"contact":[
|
7
7
|
{
|
@@ -356,7 +356,7 @@
|
|
356
356
|
"metadataCreationDate":"2014-02-28",
|
357
357
|
"metadataLastUpdate":"2012-12-21",
|
358
358
|
"metadataUri":"http://alaska.usgs.gov/rex/adiwg/public/projects/32.xml",
|
359
|
-
"metadataCharacterSet":
|
359
|
+
"metadataCharacterSet":"utf8",
|
360
360
|
"metadataStatus":"completed",
|
361
361
|
"metadataMaintenance":{
|
362
362
|
"maintenanceFrequency":"asNeeded",
|
@@ -407,11 +407,55 @@
|
|
407
407
|
"documentDigital",
|
408
408
|
"tableDigital"
|
409
409
|
],
|
410
|
-
"
|
411
|
-
|
412
|
-
|
413
|
-
|
414
|
-
|
410
|
+
"identifier":[
|
411
|
+
{
|
412
|
+
"authority":{
|
413
|
+
"title":"ASC Project ID",
|
414
|
+
"date":[
|
415
|
+
{
|
416
|
+
"date":"2014-05-27",
|
417
|
+
"dateType":"publication"
|
418
|
+
}
|
419
|
+
],
|
420
|
+
"responsibleParty":[
|
421
|
+
{
|
422
|
+
"contactId":"1",
|
423
|
+
"role":"owner"
|
424
|
+
}
|
425
|
+
]
|
426
|
+
},
|
427
|
+
"identifier":"32"
|
428
|
+
},
|
429
|
+
{
|
430
|
+
"authority":{
|
431
|
+
"title":"NSF Grant Award Number",
|
432
|
+
"responsibleParty":[
|
433
|
+
{
|
434
|
+
"contactId":"9",
|
435
|
+
"role":"funder"
|
436
|
+
}
|
437
|
+
],
|
438
|
+
"onlineResource":[
|
439
|
+
{
|
440
|
+
"uri":"http://thisisanexample.com",
|
441
|
+
"protocol":"HTTP",
|
442
|
+
"name":"Example is the name",
|
443
|
+
"description":"It's an example!",
|
444
|
+
"function":"See description"
|
445
|
+
}
|
446
|
+
]
|
447
|
+
},
|
448
|
+
"identifier":"A516548V0034"
|
449
|
+
},
|
450
|
+
{
|
451
|
+
"type":"doi",
|
452
|
+
"identifier":"10/1256.321475266"
|
453
|
+
},
|
454
|
+
{
|
455
|
+
"type":"isbn",
|
456
|
+
"identifier":"ISBNYYt470098j"
|
457
|
+
}
|
458
|
+
],
|
415
459
|
"onlineResource":[
|
416
460
|
{
|
417
461
|
"uri":"http://data.usgs.gov/climateMonitoring/region/show?region=alaska",
|
@@ -422,43 +466,6 @@
|
|
422
466
|
}
|
423
467
|
]
|
424
468
|
},
|
425
|
-
"resourceIdentifier":[
|
426
|
-
{
|
427
|
-
"title":"ASC Project ID",
|
428
|
-
"date":[
|
429
|
-
{
|
430
|
-
"date":"2014-05-27",
|
431
|
-
"dateType":"publication"
|
432
|
-
}
|
433
|
-
],
|
434
|
-
"responsibleParty":[
|
435
|
-
{
|
436
|
-
"contactId":"1",
|
437
|
-
"role":"owner"
|
438
|
-
}
|
439
|
-
],
|
440
|
-
"identifier":"32"
|
441
|
-
},
|
442
|
-
{
|
443
|
-
"title":"NSF Grant Award Number",
|
444
|
-
"responsibleParty":[
|
445
|
-
{
|
446
|
-
"contactId":"9",
|
447
|
-
"role":"funder"
|
448
|
-
}
|
449
|
-
],
|
450
|
-
"onlineResource":[
|
451
|
-
{
|
452
|
-
"uri":"http://thisisanexample.com",
|
453
|
-
"protocol":"HTTP",
|
454
|
-
"name":"Example is the name",
|
455
|
-
"description":"It's an example!",
|
456
|
-
"function":"See description"
|
457
|
-
}
|
458
|
-
],
|
459
|
-
"identifier":"A516548V0034"
|
460
|
-
}
|
461
|
-
],
|
462
469
|
"pointOfContact":[
|
463
470
|
{
|
464
471
|
"contactId":"2",
|
@@ -513,23 +520,28 @@
|
|
513
520
|
],
|
514
521
|
"keywordType":"theme",
|
515
522
|
"thesaurus":{
|
516
|
-
"
|
517
|
-
"
|
518
|
-
|
519
|
-
|
520
|
-
|
521
|
-
"date":"2013-09-19",
|
522
|
-
"dateType":"revision"
|
523
|
-
}
|
524
|
-
],
|
525
|
-
"edition":"Version 8.0.0.0.0",
|
526
|
-
"presentationForm":[
|
527
|
-
"documentDigital"
|
528
|
-
],
|
529
|
-
"additionalIdentifier":{
|
530
|
-
"doi":"10.1000/182"
|
523
|
+
"title":"NASA/Global Change Master Directory (GCMD) Earth Science Keywords",
|
524
|
+
"date":[
|
525
|
+
{
|
526
|
+
"date":"2013-09-19",
|
527
|
+
"dateType":"revision"
|
531
528
|
}
|
532
|
-
|
529
|
+
],
|
530
|
+
"edition":"Version 8.0.0.0.0",
|
531
|
+
"presentationForm":[
|
532
|
+
"documentDigital"
|
533
|
+
],
|
534
|
+
"onlineResource":[
|
535
|
+
{
|
536
|
+
"uri":"http://gcmdservices.gsfc.nasa.gov/static/kms/sciencekeywords/sciencekeywords.csv"
|
537
|
+
}
|
538
|
+
],
|
539
|
+
"identifier":[
|
540
|
+
{
|
541
|
+
"type":"doi",
|
542
|
+
"identifier":"10.1000/182"
|
543
|
+
}
|
544
|
+
]
|
533
545
|
}
|
534
546
|
},
|
535
547
|
{
|
@@ -538,19 +550,21 @@
|
|
538
550
|
],
|
539
551
|
"keywordType":"theme",
|
540
552
|
"thesaurus":{
|
541
|
-
"
|
542
|
-
"
|
543
|
-
|
544
|
-
|
545
|
-
|
546
|
-
|
547
|
-
|
548
|
-
|
549
|
-
|
550
|
-
|
551
|
-
|
552
|
-
|
553
|
-
|
553
|
+
"title":"NSF IPY Discipline Codes",
|
554
|
+
"responsibleParty":[
|
555
|
+
{
|
556
|
+
"contactId":"9",
|
557
|
+
"role":"author"
|
558
|
+
}
|
559
|
+
],
|
560
|
+
"presentationForm":[
|
561
|
+
"documentDigital"
|
562
|
+
],
|
563
|
+
"onlineResource":[
|
564
|
+
{
|
565
|
+
"uri":"http://example.com"
|
566
|
+
}
|
567
|
+
]
|
554
568
|
}
|
555
569
|
},
|
556
570
|
{
|
@@ -561,19 +575,21 @@
|
|
561
575
|
],
|
562
576
|
"keywordType":"place",
|
563
577
|
"thesaurus":{
|
564
|
-
"
|
565
|
-
"
|
566
|
-
|
567
|
-
|
568
|
-
|
569
|
-
|
570
|
-
|
571
|
-
|
572
|
-
|
573
|
-
|
574
|
-
|
575
|
-
|
576
|
-
|
578
|
+
"title":"United States Board on Geographic Names",
|
579
|
+
"date":[
|
580
|
+
{
|
581
|
+
"date":"1993-02-01",
|
582
|
+
"dateType":"creation"
|
583
|
+
}
|
584
|
+
],
|
585
|
+
"presentationForm":[
|
586
|
+
"documentDigital"
|
587
|
+
],
|
588
|
+
"onlineResource":[
|
589
|
+
{
|
590
|
+
"uri":"http://geonames.usgs.gov/"
|
591
|
+
}
|
592
|
+
]
|
577
593
|
}
|
578
594
|
}
|
579
595
|
],
|
@@ -796,10 +812,20 @@
|
|
796
812
|
}
|
797
813
|
]
|
798
814
|
},
|
799
|
-
"
|
800
|
-
"
|
801
|
-
|
802
|
-
|
815
|
+
"spatialReferenceSystem":{
|
816
|
+
"name":[
|
817
|
+
"Alaska State Plane Zone 4",
|
818
|
+
"UTM Zone 9"
|
819
|
+
],
|
820
|
+
"epsgNumber":[
|
821
|
+
102634,
|
822
|
+
32609
|
823
|
+
],
|
824
|
+
"wkt":[
|
825
|
+
"PROJCS[\"NAD_1983_StatePlane_Alaska_4_FIPS_5004_Feet\",GEOGCS[\"GCS_North_American_1983\",DATUM[\"North_American_Datum_1983\",SPHEROID[\"GRS_1980\",6378137,298.257222101]],PRIMEM[\"Greenwich\",0],UNIT[\"Degree\",0.017453292519943295]],PROJECTION[\"Transverse_Mercator\"],PARAMETER[\"False_Easting\",1640416.666666667],PARAMETER[\"False_Northing\",0],PARAMETER[\"Central_Meridian\",-150],PARAMETER[\"Scale_Factor\",0.9999],PARAMETER[\"Latitude_Of_Origin\",54],UNIT[\"Foot_US\",0.30480060960121924],AUTHORITY[\"EPSG\",\"102634\"]]",
|
826
|
+
"PROJCS[\"WGS 84 / UTM zone 9N\",GEOGCS[\"WGS 84\",DATUM[\"WGS_1984\",SPHEROID[\"WGS 84\",6378137,298.257223563,AUTHORITY[\"EPSG\",\"7030\"]],AUTHORITY[\"EPSG\",\"6326\"]],PRIMEM[\"Greenwich\",0,AUTHORITY[\"EPSG\",\"8901\"]],UNIT[\"degree\",0.01745329251994328,AUTHORITY[\"EPSG\",\"9122\"]],AUTHORITY[\"EPSG\",\"4326\"]],UNIT[\"metre\",1,AUTHORITY[\"EPSG\",\"9001\"]],PROJECTION[\"Transverse_Mercator\"],PARAMETER[\"latitude_of_origin\",0],PARAMETER[\"central_meridian\",-129],PARAMETER[\"scale_factor\",0.9996],PARAMETER[\"false_easting\",500000],PARAMETER[\"false_northing\",0],AUTHORITY[\"EPSG\",\"32609\"],AXIS[\"Easting\",EAST],AXIS[\"Northing\",NORTH]]"
|
827
|
+
]
|
828
|
+
},
|
803
829
|
"spatialRepresentation":[
|
804
830
|
"textTable"
|
805
831
|
],
|
@@ -1264,13 +1290,13 @@
|
|
1264
1290
|
"minimumValue":125,
|
1265
1291
|
"maximumValue":222,
|
1266
1292
|
"verticalCRSTitle":"NAVD88 height (ftUS)",
|
1267
|
-
"
|
1293
|
+
"verticalCRSUri":"http://www.epsg-registry.org/export.htm?gml=urn:ogc:def:axis-name:EPSG::9904"
|
1268
1294
|
},
|
1269
1295
|
{
|
1270
1296
|
"minimumValue":1500,
|
1271
1297
|
"maximumValue":0,
|
1272
1298
|
"verticalCRSTitle":"NAVD88 depth",
|
1273
|
-
"
|
1299
|
+
"verticalCRSUri":"http://www.epsg-registry.org/export.htm?gml=urn:ogc:def:crs:EPSG::6357"
|
1274
1300
|
}
|
1275
1301
|
]
|
1276
1302
|
},
|
@@ -1292,7 +1318,7 @@
|
|
1292
1318
|
"name":"EPSG:4326"
|
1293
1319
|
}
|
1294
1320
|
},
|
1295
|
-
"geometry":
|
1321
|
+
"geometry":null,
|
1296
1322
|
"properties":{
|
1297
1323
|
"featureName":"Project bounding box",
|
1298
1324
|
"description":"bounding box for DOI/GTN-P Deep Borehole Array",
|
@@ -1735,36 +1761,40 @@
|
|
1735
1761
|
"featureName":"Atigaru",
|
1736
1762
|
"description":"Deep permafrost borehole",
|
1737
1763
|
"includesData":true,
|
1738
|
-
"
|
1764
|
+
"identifier":[
|
1739
1765
|
{
|
1740
|
-
"
|
1741
|
-
"
|
1742
|
-
|
1743
|
-
|
1744
|
-
|
1745
|
-
|
1746
|
-
|
1747
|
-
|
1748
|
-
|
1749
|
-
|
1750
|
-
|
1751
|
-
|
1752
|
-
|
1766
|
+
"identifier":"US 01",
|
1767
|
+
"authority":{
|
1768
|
+
"title":"Global Terrestrial Network for Permafrost Identifiers",
|
1769
|
+
"responsibleParty":[
|
1770
|
+
{
|
1771
|
+
"contactId":"8",
|
1772
|
+
"role":"originator"
|
1773
|
+
}
|
1774
|
+
],
|
1775
|
+
"onlineResource":[
|
1776
|
+
{
|
1777
|
+
"uri":"http://www.gtnp.org"
|
1778
|
+
}
|
1779
|
+
]
|
1780
|
+
}
|
1753
1781
|
},
|
1754
1782
|
{
|
1755
|
-
"
|
1756
|
-
"
|
1757
|
-
|
1758
|
-
|
1759
|
-
|
1760
|
-
|
1761
|
-
|
1762
|
-
|
1763
|
-
|
1764
|
-
|
1765
|
-
|
1766
|
-
|
1767
|
-
|
1783
|
+
"identifier":"ATI",
|
1784
|
+
"authority":{
|
1785
|
+
"title":"US Geological Survey borehole identifier",
|
1786
|
+
"responsibleParty":[
|
1787
|
+
{
|
1788
|
+
"contactId":"3",
|
1789
|
+
"role":"originator"
|
1790
|
+
}
|
1791
|
+
],
|
1792
|
+
"onlineResource":[
|
1793
|
+
{
|
1794
|
+
"uri":"http://data.usgs.gov/climateMonitoring/region/show?region=alaska"
|
1795
|
+
}
|
1796
|
+
]
|
1797
|
+
}
|
1768
1798
|
}
|
1769
1799
|
],
|
1770
1800
|
"featureScope":"borehole",
|
@@ -1795,14 +1825,18 @@
|
|
1795
1825
|
"featureName":"Awuna",
|
1796
1826
|
"description":"Deep permafrost borehole",
|
1797
1827
|
"includesData":true,
|
1798
|
-
"
|
1828
|
+
"identifier":[
|
1799
1829
|
{
|
1800
|
-
"
|
1801
|
-
"
|
1830
|
+
"identifier":"US 02",
|
1831
|
+
"authority":{
|
1832
|
+
"title":"Global Terrestrial Network for Permafrost Identifiers"
|
1833
|
+
}
|
1802
1834
|
},
|
1803
1835
|
{
|
1804
|
-
"
|
1805
|
-
"
|
1836
|
+
"identifier":"AWUN",
|
1837
|
+
"authority":{
|
1838
|
+
"title":"US Geological Survey borehole identifier"
|
1839
|
+
}
|
1806
1840
|
}
|
1807
1841
|
],
|
1808
1842
|
"featureScope":"borehole",
|
@@ -1834,14 +1868,18 @@
|
|
1834
1868
|
"featureName":"Drew Point",
|
1835
1869
|
"description":"Deep permafrost borehole",
|
1836
1870
|
"includesData":true,
|
1837
|
-
"
|
1871
|
+
"identifier":[
|
1838
1872
|
{
|
1839
|
-
"
|
1840
|
-
"
|
1873
|
+
"identifier":"US 03",
|
1874
|
+
"authority":{
|
1875
|
+
"title":"Global Terrestrial Network for Permafrost Identifiers"
|
1876
|
+
}
|
1841
1877
|
},
|
1842
1878
|
{
|
1843
|
-
"
|
1844
|
-
"
|
1879
|
+
"identifier":"DWPT",
|
1880
|
+
"authority":{
|
1881
|
+
"title":"US Geological Survey borehole identifier"
|
1882
|
+
}
|
1845
1883
|
}
|
1846
1884
|
],
|
1847
1885
|
"featureScope":"borehole",
|
@@ -1861,7 +1899,7 @@
|
|
1861
1899
|
"minimumValue":-653,
|
1862
1900
|
"maximumValue":12,
|
1863
1901
|
"verticalCRSTitle":"NAVD88 depth",
|
1864
|
-
"
|
1902
|
+
"verticalCRSUri":"http://www.epsg-registry.org/export.htm?gml=urn:ogc:def:crs:EPSG::6357"
|
1865
1903
|
}
|
1866
1904
|
]
|
1867
1905
|
}
|
@@ -1926,10 +1964,16 @@
|
|
1926
1964
|
"presentationForm":[
|
1927
1965
|
"documentDigital"
|
1928
1966
|
],
|
1929
|
-
"
|
1930
|
-
|
1931
|
-
|
1932
|
-
|
1967
|
+
"identifier":[
|
1968
|
+
{
|
1969
|
+
"type":"isbn",
|
1970
|
+
"identifier":"HB12365.214"
|
1971
|
+
},
|
1972
|
+
{
|
1973
|
+
"type":"issn",
|
1974
|
+
"identifier":"0ab4-dd983c01"
|
1975
|
+
}
|
1976
|
+
]
|
1933
1977
|
},
|
1934
1978
|
"processStep":[
|
1935
1979
|
{
|
@@ -2095,6 +2139,20 @@
|
|
2095
2139
|
"presentationForm":[
|
2096
2140
|
"digitalData"
|
2097
2141
|
],
|
2142
|
+
"identifier":[
|
2143
|
+
{
|
2144
|
+
"authority":{
|
2145
|
+
"title":"NCCWSC Grant Award Number",
|
2146
|
+
"responsibleParty":[
|
2147
|
+
{
|
2148
|
+
"contactId":"9",
|
2149
|
+
"role":"funder"
|
2150
|
+
}
|
2151
|
+
]
|
2152
|
+
},
|
2153
|
+
"identifier":"2014AKCSC-03"
|
2154
|
+
}
|
2155
|
+
],
|
2098
2156
|
"onlineResource":[
|
2099
2157
|
{
|
2100
2158
|
"uri":"http://esp.cr.usgs.gov/data/bht_alaska/",
|
@@ -2103,18 +2161,6 @@
|
|
2103
2161
|
}
|
2104
2162
|
]
|
2105
2163
|
},
|
2106
|
-
"resourceIdentifier":[
|
2107
|
-
{
|
2108
|
-
"title":"NCCWSC Grant Award Number",
|
2109
|
-
"responsibleParty":[
|
2110
|
-
{
|
2111
|
-
"contactId":"9",
|
2112
|
-
"role":"funder"
|
2113
|
-
}
|
2114
|
-
],
|
2115
|
-
"identifier":"2014AKCSC-03"
|
2116
|
-
}
|
2117
|
-
],
|
2118
2164
|
"metadataCitation":{
|
2119
2165
|
"title":"Borehole Temperature Logs Metadata",
|
2120
2166
|
"date":[
|
@@ -2133,19 +2179,13 @@
|
|
2133
2179
|
"presentationForm":[
|
2134
2180
|
"digitalDocument"
|
2135
2181
|
],
|
2136
|
-
"additionalIdentifier":{
|
2137
|
-
"doi":"",
|
2138
|
-
"isbn":"",
|
2139
|
-
"issn":""
|
2140
|
-
},
|
2141
2182
|
"onlineResource":[
|
2142
2183
|
{
|
2143
2184
|
"uri":"http://alaska.usgs.gov/rex/adiwg/public/projects/263?format=xml",
|
2144
2185
|
"protocol":"HTTP",
|
2145
2186
|
"name":"",
|
2146
2187
|
"description":"project metadata record",
|
2147
|
-
"function":""
|
2148
|
-
"doi":""
|
2188
|
+
"function":""
|
2149
2189
|
}
|
2150
2190
|
]
|
2151
2191
|
}
|
@@ -2175,8 +2215,7 @@
|
|
2175
2215
|
"protocol":"http",
|
2176
2216
|
"name":"Journal of Glaciology",
|
2177
2217
|
"description":"Publication document",
|
2178
|
-
"function":"download"
|
2179
|
-
"doi":"10.1594/PANGAEA.55517"
|
2218
|
+
"function":"download"
|
2180
2219
|
}
|
2181
2220
|
]
|
2182
2221
|
},
|