adiwg-json_schemas 0.4.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (63) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +18 -0
  3. data/.travis.yml +9 -0
  4. data/CREDITS +3 -0
  5. data/Gemfile +4 -0
  6. data/LICENSE +24 -0
  7. data/README.md +36 -0
  8. data/Rakefile +12 -0
  9. data/adiwg-json_schemas.gemspec +24 -0
  10. data/examples/adiwg_project_example_1.json +847 -0
  11. data/examples/citation.json +60 -0
  12. data/examples/contact.json +165 -0
  13. data/examples/contactRef.json +15 -0
  14. data/examples/dataQuality.json +132 -0
  15. data/examples/data_example.json +371 -0
  16. data/examples/date.json +19 -0
  17. data/examples/distributor.json +53 -0
  18. data/examples/extent_linestring.json +288 -0
  19. data/examples/extent_point.json +200 -0
  20. data/examples/extent_polygon.json +353 -0
  21. data/examples/full_example.json +1629 -0
  22. data/examples/geojson.json +253 -0
  23. data/examples/graphicOverview.json +23 -0
  24. data/examples/hierarchyLevel.json +90 -0
  25. data/examples/keywords.json +68 -0
  26. data/examples/lcc_project_example.json +245 -0
  27. data/examples/maintInfo.json +22 -0
  28. data/examples/onlineResource.json +12 -0
  29. data/examples/resolution.json +9 -0
  30. data/examples/resourceConstraints.json +25 -0
  31. data/examples/resourceInfo.json +1287 -0
  32. data/examples/resourceMaintenance.json +10 -0
  33. data/examples/taxonomy.json +98 -0
  34. data/examples/uri.json +7 -0
  35. data/examples/usage.json +23 -0
  36. data/lib/adiwg/json_schemas/utils.rb +20 -0
  37. data/lib/adiwg/json_schemas/version.rb +6 -0
  38. data/lib/adiwg/json_schemas.rb +7 -0
  39. data/lib/adiwg-json_schemas.rb +1 -0
  40. data/schema/schema/citation.json +77 -0
  41. data/schema/schema/contact.json +175 -0
  42. data/schema/schema/dataQuality.json +82 -0
  43. data/schema/schema/distributor.json +89 -0
  44. data/schema/schema/extent.json +118 -0
  45. data/schema/schema/geojson/bbox.json +10 -0
  46. data/schema/schema/geojson/crs.json +53 -0
  47. data/schema/schema/geojson/geojson.json +131 -0
  48. data/schema/schema/geojson/geometry.json +123 -0
  49. data/schema/schema/graphicOverview.json +22 -0
  50. data/schema/schema/keyword.json +37 -0
  51. data/schema/schema/maintInfo.json +26 -0
  52. data/schema/schema/metadata.json +88 -0
  53. data/schema/schema/onlineResource.json +28 -0
  54. data/schema/schema/resolution.json +29 -0
  55. data/schema/schema/resourceConstraint.json +65 -0
  56. data/schema/schema/resourceInfo.json +151 -0
  57. data/schema/schema/taxonomy.json +61 -0
  58. data/schema/schema/usage.json +23 -0
  59. data/schema/schema.json +42 -0
  60. data/templates/adiwg_metadata_template.json +585 -0
  61. data/test/tc_schemas.rb +133 -0
  62. data/test/tc_utils.rb +26 -0
  63. metadata +150 -0
@@ -0,0 +1,1629 @@
1
+ {
2
+ "contacts":[
3
+ {
4
+ "contactId":"1",
5
+ "individualName":"Josh Bradley",
6
+ "organizationName":"Arctic Landscape Conservation Cooperative",
7
+ "positionName":"Data Manager",
8
+ "onlineResource":[
9
+ {
10
+ "linkage":"http://arcticlcc.org",
11
+ "name":"Arctic LCC website",
12
+ "description":"Website for the Arctic Landscape Conservation Cooperative"
13
+ },
14
+ {
15
+ "linkage":"http://alaska.usgs.gov/akcsc",
16
+ "name":"Alaska Climate Science Center",
17
+ "description":"Website for the USGS Alaska Climate Science Center"
18
+ }
19
+ ],
20
+ "voice":[
21
+ {
22
+ "phoneName":"office",
23
+ "phoneNumber":"+1 907.455.1847"
24
+ },
25
+ {
26
+ "phoneName":"mobile",
27
+ "phoneNumber":"907-455-1847"
28
+ }
29
+ ],
30
+ "sms":[
31
+ {
32
+ "phoneName":"office",
33
+ "phoneNumber":"907-455-1847"
34
+ },
35
+ {
36
+ "phoneName":"mobile",
37
+ "phoneNumber":"907-455-1847"
38
+ }
39
+ ],
40
+ "fax":[
41
+ {
42
+ "phoneName":"office",
43
+ "phoneNumber":"907-455-1847"
44
+ },
45
+ {
46
+ "phoneName":"alt",
47
+ "phoneNumber":"907-999-9999"
48
+ }
49
+ ],
50
+ "address":{
51
+ "deliveryPoint":[
52
+ "101 12th Avenue",
53
+ "Room 110"
54
+ ],
55
+ "city":"Fairbanks",
56
+ "administrativeArea":"AK",
57
+ "postalCode":"99701",
58
+ "country":"USA",
59
+ "electronicMailAddress":[
60
+ "joshua_bradley@fws.gov",
61
+ "jbradley@arcticlcc.org"
62
+ ]
63
+ }
64
+ },
65
+ {
66
+ "contactId":"2",
67
+ "organizationName":"Arctic Landscape Conservation Cooperative",
68
+ "onlineResource":[
69
+ {
70
+ "linkage":"http://arcticlcc.org",
71
+ "name":"Arctic LCC website",
72
+ "description":"Website for the Arctic Landscape Conservation Cooperative"
73
+ }
74
+ ],
75
+ "voice":[
76
+ {
77
+ "phoneName":"office",
78
+ "phoneNumber":"907-786-3605"
79
+ },
80
+ {
81
+ "phoneName":"mobile",
82
+ "phoneNumber":"907-306-1895"
83
+ }
84
+ ],
85
+ "fax":[
86
+ {
87
+ "phoneName":"office",
88
+ "phoneNumber":"907-786-3592"
89
+ }
90
+ ],
91
+ "address":{
92
+ "deliveryPoint":[
93
+ "1011 E. Tudor Rd"
94
+ ],
95
+ "city":"Anchorage",
96
+ "administrativeArea":"AK",
97
+ "postalCode":"99503",
98
+ "country":"USA",
99
+ "electronicMailAddress":[
100
+ "staff@arcticlcc.org"
101
+ ]
102
+ }
103
+ },
104
+ {
105
+ "contactId":"3",
106
+ "organizationName":"Arctic Landscape Conservation Cooperative",
107
+ "positionName":"Data Manager",
108
+ "address":{
109
+ "deliveryPoint":[
110
+ "101 12th Avenue",
111
+ "Room 110"
112
+ ],
113
+ "city":"Fairbanks",
114
+ "administrativeArea":"AK",
115
+ "postalCode":"99701",
116
+ "country":"USA",
117
+ "electronicMailAddress":[
118
+ "joshua_bradley@fws.gov",
119
+ "jbradley@arcticlcc.org"
120
+ ]
121
+ }
122
+ },
123
+ {
124
+ "contactId":"4",
125
+ "individualName":"Chris Turner",
126
+ "organizationName":"Axiom Consulting & Design",
127
+ "positionName":"Data Librarian",
128
+ "onlineResource":[
129
+ {
130
+ "linkage":"http://axiomalaska.com",
131
+ "name":"Axiom Consulting & Design",
132
+ "description":"Website for Axiom Consulting and Design"
133
+ },
134
+ {
135
+ "linkage":"http://www.aoos.org",
136
+ "name":"The Alaska Ocean Observing System",
137
+ "description":"The homepage for AOOS, the eye on Alaska's coasts and oceans"
138
+ }
139
+ ],
140
+ "voice":[
141
+ {
142
+ "phoneName":"mobile",
143
+ "phoneNumber":"907-555-1234"
144
+ }
145
+ ],
146
+ "sms":[
147
+ {
148
+ "phoneName":"mobile",
149
+ "phoneNumber":"907-555-1234"
150
+ }
151
+ ],
152
+ "fax":[
153
+ {
154
+ "phoneName":"office",
155
+ "phoneNumber":"907-555-6543"
156
+ },
157
+ {
158
+ "phoneName":"alt",
159
+ "phoneNumber":"1-800-598-5571"
160
+ }
161
+ ],
162
+ "address":{
163
+ "deliveryPoint":[
164
+ "523 W 8th Ave",
165
+ "Suite 104"
166
+ ],
167
+ "city":"Anchorage",
168
+ "administrativeArea":"Alaska",
169
+ "postalCode":"99501",
170
+ "country":"USA",
171
+ "electronicMailAddress":[
172
+ "chris@axiomalaska.com",
173
+ "theotherchris@axiomalaska.com"
174
+ ]
175
+ }
176
+ },
177
+ {
178
+ "contactId":"5",
179
+ "individualName":"Sirhc Renrut",
180
+ "organizationName":"Moixa Designs and Consulting",
181
+ "positionName":"Data Wrangler",
182
+ "onlineResource":[
183
+ {
184
+ "linkage":"http://moixaalaska.com",
185
+ "name":"Moixa Design and Consulting",
186
+ "description":"Website for Moixa Design and Consulting"
187
+ },
188
+ {
189
+ "linkage":"http://www.oaos.org"
190
+ }
191
+ ],
192
+ "voice":[
193
+ {
194
+ "phoneName":"office",
195
+ "phoneNumber":"907-458-8765"
196
+ },
197
+ {
198
+ "phoneName":"mobile",
199
+ "phoneNumber":"907-567-1234"
200
+ }
201
+ ],
202
+ "sms":[
203
+ {
204
+ "phoneName":"mobile",
205
+ "phoneNumber":"907-567-1234"
206
+ }
207
+ ],
208
+ "fax":[
209
+ {
210
+ "phoneName":"office",
211
+ "phoneNumber":"907-567-6543"
212
+ },
213
+ {
214
+ "phoneName":"alt",
215
+ "phoneNumber":"1-800-598-5571"
216
+ }
217
+ ],
218
+ "address":{
219
+ "deliveryPoint":[
220
+ "532 W 8th Ave",
221
+ "Suite 401"
222
+ ],
223
+ "city":"Anchorage",
224
+ "administrativeArea":"Alaska",
225
+ "postalCode":"99501",
226
+ "country":"USA",
227
+ "electronicMailAddress":[
228
+ "sirhc@moixaalaska.com"
229
+ ]
230
+ }
231
+ }
232
+ ],
233
+ "metadata":{
234
+ "metadataIdentifier":"a2342cc0-e1db-0130-e0b7-080027a263b8",
235
+ "hierarchyLevel":[
236
+ "dataset"
237
+ ],
238
+ "contact":[
239
+ {
240
+ "contactId":"1",
241
+ "role":"custodian"
242
+ }
243
+ ],
244
+ "metadataCreationDate":"2013-08-07",
245
+ "dataSetURI":"http://arcticlcc.org/projects/management/project-tracking-system",
246
+ "spatialReference":[
247
+ "WGS84",
248
+ "NAD27",
249
+ "MHW"
250
+ ],
251
+ "resourceInfo":{
252
+ "citation":{
253
+ "title":"Project Tracking System",
254
+ "date":[
255
+ {
256
+ "date":"2011-11-11",
257
+ "dateType":"publication"
258
+ },
259
+ {
260
+ "date":"2013-03-13T17:30-08:00",
261
+ "dateType":"revision"
262
+ }
263
+ ],
264
+ "edition":"version 1.2.0",
265
+ "responsibleParty":[
266
+ {
267
+ "contactId":"1",
268
+ "role":"originator"
269
+ },
270
+ {
271
+ "contactId":"2",
272
+ "role":"publisher"
273
+ }
274
+ ],
275
+ "presentationForm":"documentDigital",
276
+ "isbn":"HB12365.214",
277
+ "issn":"0ab4-dd983c01"
278
+ },
279
+ "pointOfContact":[
280
+ {
281
+ "contactId":"1",
282
+ "role":"custodian"
283
+ }
284
+ ],
285
+ "abstract":"The Arctic LCC has developed a Project Tracking System(PTS) to assist with the management of projects. The PTS is used to track projects throughout all stages of development, from receipt of proposals through delivery of final products.",
286
+ "status":"onGoing",
287
+ "language":[
288
+ "eng; USA",
289
+ "spa; Spanish; Castilian"
290
+ ],
291
+ "purpose":"The LAS files can be used to create DEMs and also to extract topographic data in software that does not support raster data. Other surface features can also be extracted with custom applications. LiDAR data has a wide range of uses such as earthquake hazard studies, hydrologic modeling, forestry, coastal engineering, roadway and pipeline engineering, flood plain mapping, wetland studies, geologic studies and a variety of analytical and cartographic projects.",
292
+ "credit":[
293
+ "FEMA",
294
+ "Washington DNR and Lewis County",
295
+ "Puget Sound LiDAR Consortium (PSLC) - The PSLC is supported by the Puget Sound Regional Council, the National Aeronautical and Space Administration (NASA), the United States Geological Survey (USGS) and numerous partners in local, state, and tribal government."
296
+ ],
297
+ "spatialRepresentation":[
298
+ "textTable",
299
+ "grid",
300
+ "tin"
301
+ ],
302
+ "topicCategory":[
303
+ "boundaries",
304
+ "environment",
305
+ "climatologyMeteorologyAtmosphere"
306
+ ],
307
+ "environmentalDesc":"Processed datafiles created in a Windows 7 environment, using R x64 2.15.1, Kepler 2.3, pgAdminIII and Postgres 9.1, and ArcInfo 10.2",
308
+ "supplementalInfo":"A footprint of this data set may be viewed in Google Earth at: <ftp://ftp.csc.noaa.gov/pub/crs/beachmap/qa_docs/wa/pslc2012/wa2012_pslc_chehalis_footprint.KMZ> A Lidar Report from the vendor for this data set may be viewed here: <ftp://ftp.csc.noaa.gov/pub/crs/beachmap/qa_docs/wa/pslc2012/wa2012_pslc_chehalis_lidarreport.pdf>",
309
+ "resourceNativeFormat":[
310
+ {
311
+ "formatName":"ExtJS",
312
+ "version":"4.0.7"
313
+ },
314
+ {
315
+ "formatName":"PostgreSQL",
316
+ "version":"9.1"
317
+ },
318
+ {
319
+ "formatName":"",
320
+ "version":"5.3"
321
+ }
322
+ ],
323
+ "keywords":[
324
+ {
325
+ "keyword":[
326
+ "Oceans > Ocean temperature > Thermocline",
327
+ "Oceans > Ocean Temperature > Water Temperature",
328
+ "Oceans > Ocean Heat Budget > Heat Flux"
329
+ ],
330
+ "keywordType":"theme",
331
+ "thesaurus":{
332
+ "thesaurusLink":"http://gcmdservices.gsfc.nasa.gov/static/kms/sciencekeywords/sciencekeywords.csv",
333
+ "citation":{
334
+ "title":"NASA/Global Change Master Directory (GCMD) Earth Science Keywords.",
335
+ "date":[
336
+ {
337
+ "date":"2013-09-19",
338
+ "dateType":"revision"
339
+ }
340
+ ],
341
+ "edition":"Version 8.0.0.0.0",
342
+ "responsibleParty":[
343
+ {
344
+ "contactId":"1",
345
+ "role":"originator"
346
+ },
347
+ {
348
+ "contactId":"2",
349
+ "role":"owner"
350
+ }
351
+ ],
352
+ "presentationForm":"documentDigital",
353
+ "isbn":"HB12365.214",
354
+ "issn":"0ab4-dd983c01"
355
+ }
356
+ }
357
+ },
358
+ {
359
+ "keyword":[
360
+ "In Situ/Laboratory Instruments > Temperature/Humidity Sensors > Thermometers"
361
+ ],
362
+ "keywordType":"instrument",
363
+ "thesaurus":{
364
+ "citation":{
365
+ "title":"NASA/Global Change Master Directory (GCMD) Earth Science Keywords Version 7.0.0."
366
+ }
367
+ }
368
+ },
369
+ {
370
+ "keyword":[
371
+ "thermocline",
372
+ "sea surface temperature"
373
+ ]
374
+ }
375
+ ],
376
+ "resourceMaintenance":[
377
+ {
378
+ "maintenanceFrequency":"fortnightly"
379
+ },
380
+ {
381
+ "maintenanceFrequency":"annually",
382
+ "maintenanceNote":["Updates to data are generally in available November after the season's field data has been validated"]
383
+ },
384
+ {
385
+ "maintenanceNote":["Test of missing frequency code"]
386
+ }
387
+ ],
388
+ "resourceSpecificUsage":[
389
+ {
390
+ "specificUsage":"Developed for land use planning.",
391
+ "userDeterminedLimitation":"Not suitable for use for navigation.",
392
+ "userContactInfo":[
393
+ {
394
+ "contactId":"3",
395
+ "role":"publisher"
396
+ },
397
+ {
398
+ "contactId":"3",
399
+ "role":"author"
400
+ }
401
+ ]
402
+ },
403
+ {
404
+ "specificUsage":"Bathymetry datasets developed for modeling physical oceanographic conditions in the Barrow Straight.",
405
+ "userContactInfo":[
406
+ {
407
+ "contactId":"1",
408
+ "role":"custodian"
409
+ }
410
+ ]
411
+ }
412
+ ],
413
+ "graphicOverview":[
414
+ {
415
+ "fileName":"allRecs_callCounts_bowhead_2010.jpg",
416
+ "fileDescription":"This image is a spectraplot visualizing the density of Bowhead whale calls in the Northeast Chukchi Sea, AMAR recorder locations, and industry lease areas.",
417
+ "fileType":"JPEG",
418
+ "fileLink":"http://aoos.org/aoos-data-resources/bowhead_images2010_0114.jpg"
419
+ },
420
+ {
421
+ "fileName":"cross_section_perc_sommer_2010.png",
422
+ "fileDescription":"."
423
+ },
424
+ {
425
+ "fileName":"pln40_perc_2010_01.png",
426
+ "fileType":"PNG"
427
+ },
428
+ {
429
+ "fileName":"pln40_spec_summer_2010.png"
430
+ }
431
+ ],
432
+ "useLimitations":[
433
+ "not for suitable for navigation",
434
+ "draft version",
435
+ "not intended for general use",
436
+ "don't be a jerk"
437
+ ],
438
+ "legalConstraint":[
439
+ {
440
+ "accessConstraint":[
441
+ "patentPending",
442
+ "restricted"
443
+ ],
444
+ "useConstraint":[
445
+ "restricted"
446
+ ],
447
+ "otherConstraint":[
448
+ "Legally barred from use for navigation."
449
+ ]
450
+ },
451
+ {
452
+ "accessConstraint":[
453
+ "otherRestrictions"
454
+ ],
455
+ "useConstraint":[
456
+ "otherRestrictions"
457
+ ],
458
+ "otherConstraint":[
459
+ "Access Constraint: No one else. Use Constraint: None"
460
+ ]
461
+ },
462
+ {
463
+ "accessConstraint":[
464
+ "copyright",
465
+ "patent",
466
+ "patentPending",
467
+ "trademark",
468
+ "license",
469
+ "intellectualPropertyRights",
470
+ "restricted",
471
+ "otherRestrictions"
472
+ ]
473
+ }
474
+ ],
475
+ "securityConstraint":[
476
+ {
477
+ "classification":"unclassified",
478
+ "userNote":"security clearance not required",
479
+ "classSystem":"none",
480
+ "handlingDescription":"this is how to handle things..."
481
+ },
482
+ {
483
+ "classification":"intellectualPropertyRights"
484
+ },
485
+ {
486
+ "classification":"secret",
487
+ "userNote":"shhhhh"
488
+ }
489
+ ],
490
+ "taxonomy":{
491
+ "classSystem":[
492
+ {
493
+ "title":"Otter Record Survey",
494
+ "date":[
495
+ {
496
+ "date":"2000",
497
+ "dateType":"publication"
498
+ }
499
+ ],
500
+ "responsibleParty":[
501
+ {
502
+ "contactId":"2",
503
+ "role":"publisher"
504
+ }
505
+ ]
506
+ }
507
+ ],
508
+ "taxonGeneralScope":"The otters observed were identified to the subspecies criterion and identified as southern sea otters.",
509
+ "observer":[
510
+ {
511
+ "contactId":"1",
512
+ "role":"principalInvestigator"
513
+ },
514
+ {
515
+ "contactId":"2",
516
+ "role":"pointOfContact"
517
+ }
518
+ ],
519
+ "taxonomicProcedure":"volunteers observed sea otters using binoculars in pairs",
520
+ "voucher":{
521
+ "specimen":"weathered skull found on beach",
522
+ "repository":{
523
+ "contactId":"2",
524
+ "role":"publisher"
525
+ }
526
+ },
527
+ "taxonClass":[
528
+ {
529
+ "taxonRank":"Kingdom",
530
+ "taxonValue":"Animalia"
531
+ },
532
+ {
533
+ "taxonRank":"Phylum",
534
+ "taxonValue":"Chordata"
535
+ },
536
+ {
537
+ "taxonRank":"Subphylum",
538
+ "taxonValue":"Vertebrata"
539
+ },
540
+ {
541
+ "taxonRank":"Class",
542
+ "taxonValue":"Mammalia"
543
+ },
544
+ {
545
+ "taxonRank":"Subclass",
546
+ "taxonValue":"Theria"
547
+ },
548
+ {
549
+ "taxonRank":"Infraclass",
550
+ "taxonValue":"Eutheria"
551
+ },
552
+ {
553
+ "taxonRank":"Order",
554
+ "taxonValue":"Carnivora"
555
+ },
556
+ {
557
+ "taxonRank":"Suborder",
558
+ "taxonValue":"Caniformia"
559
+ },
560
+ {
561
+ "taxonRank":"Family",
562
+ "taxonValue":"Mustilidae"
563
+ },
564
+ {
565
+ "taxonRank":"Subfamily",
566
+ "taxonValue":"Lutrinae"
567
+ },
568
+ {
569
+ "taxonRank":"Genus",
570
+ "taxonValue":"Enhydra"
571
+ },
572
+ {
573
+ "common":"Sea Otter",
574
+ "taxonRank":"Species",
575
+ "taxonValue":"Enhydra lutris"
576
+ },
577
+ {
578
+ "common":"Southern Sea Otter",
579
+ "taxonRank":"Subspecies",
580
+ "taxonValue":"Enhydra"
581
+ }
582
+ ]
583
+ },
584
+ "spatialResolution":[
585
+ {
586
+ "equivalentScale":45000
587
+ },
588
+ {
589
+ "distance":45,
590
+ "uom":"kilometers"
591
+ }
592
+ ],
593
+ "extent":[
594
+ {
595
+ "description":"Single Points, multiple elements",
596
+ "geographicElement":[
597
+ {
598
+ "type":"Feature",
599
+ "id":"point1",
600
+ "properties":{
601
+ "identifier":"PNT-12345",
602
+ "idAuthority":"http://www.gtnp.org",
603
+ "name":"BS7882",
604
+ "description":"Sea buoy BS7882 location"
605
+ },
606
+ "geometry":{
607
+ "type":"Point",
608
+ "coordinates":[
609
+ -164.87402357161,
610
+ 59.165040850639
611
+ ]
612
+ },
613
+ "crs":{
614
+ "type":"name",
615
+ "properties":{
616
+ "name":"urn:ogc:def:crs:OGC:1.3:CRS84"
617
+ }
618
+ }
619
+ },
620
+ {
621
+ "type":"Feature",
622
+ "id":"point100",
623
+ "properties":{
624
+ "identifier":"PNT-12346",
625
+ "idAuthority":"http://www.gtnp.org",
626
+ "name":"BS999",
627
+ "description":"Sea buoy BS999 location"
628
+ },
629
+ "geometry":{
630
+ "type":"Point",
631
+ "coordinates":[
632
+ -164.87302357161,
633
+ 59.145040850639
634
+ ]
635
+ },
636
+ "crs":{
637
+ "type":"name",
638
+ "properties":{
639
+ "name":"urn:ogc:def:crs:OGC:1.3:CRS84"
640
+ }
641
+ }
642
+ }
643
+ ]
644
+ },
645
+ {
646
+ "description":"List of Points",
647
+ "geographicElement":[
648
+ {
649
+ "type":"Feature",
650
+ "bbox":[
651
+ -164.88550989974,
652
+ 59.159712874412,
653
+ -164.86353724349,
654
+ 59.169368826866
655
+ ],
656
+ "id":"pointlist1",
657
+ "properties":{
658
+ "name":"Fishin' spots",
659
+ "description":"These points have shared attributes",
660
+ "includesData":true
661
+ },
662
+ "geometry":{
663
+ "type":"MultiPoint",
664
+ "coordinates":[
665
+ [
666
+ -164.87402357161,
667
+ 59.165040850639
668
+ ],
669
+ [
670
+ -164.87502357161,
671
+ 59.164040850639
672
+ ],
673
+ [
674
+ -164.88387053359,
675
+ 59.161207759012
676
+ ]
677
+ ]
678
+ },
679
+ "crs":{
680
+ "type":"name",
681
+ "properties":{
682
+ "name":"urn:ogc:def:crs:OGC:1.3:CRS84"
683
+ }
684
+ }
685
+ }
686
+ ]
687
+ },
688
+ {
689
+ "description":"List of Points with attributes",
690
+ "geographicElement":[
691
+ {
692
+ "type":"FeatureCollection",
693
+ "id":"multiPt1",
694
+ "bbox":[
695
+ -164.88550989974,
696
+ 59.159712874412,
697
+ -164.86353724349,
698
+ 59.169368826866
699
+ ],
700
+ "properties":{
701
+ "name":"A FeatureCollection(points)",
702
+ "description":"represents GML MultiGeometry"
703
+ },
704
+ "crs":{
705
+ "type":"name",
706
+ "properties":{
707
+ "name":"urn:ogc:def:crs:OGC:1.3:CRS84"
708
+ }
709
+ },
710
+ "features":[
711
+ {
712
+ "type":"Feature",
713
+ "id":"point010",
714
+ "properties":{
715
+ "identifier":"PNT-12345",
716
+ "idAuthority":"http://www.gtnp.org",
717
+ "name":"BS7882",
718
+ "description":"point valid on or after a specific date",
719
+ "temporalElement":{
720
+ "date":[
721
+ "2011-09-15",
722
+ "2012-08-14"
723
+ ]
724
+ }
725
+ },
726
+ "geometry":{
727
+ "type":"Point",
728
+ "coordinates":[
729
+ -164.88550989974,
730
+ 59.179712874412
731
+ ]
732
+ }
733
+ },
734
+ {
735
+ "type":"Feature",
736
+ "id":"point012",
737
+ "properties":{
738
+ "description":"point valid on or after a specific date",
739
+ "temporalElement":{
740
+ "timeInstant":[
741
+ {
742
+ "description":"ground condition",
743
+ "timePosition":"2012-07-15T08:05:00-09:00"
744
+ }
745
+ ]
746
+ }
747
+ },
748
+ "geometry":{
749
+ "type":"Point",
750
+ "coordinates":[
751
+ -164.87550989974,
752
+ 59.209712874412
753
+ ]
754
+ }
755
+ },
756
+ {
757
+ "type":"Feature",
758
+ "id":"point013",
759
+ "properties":{
760
+ "description":"point valid over a time period",
761
+ "temporalElement":{
762
+ "timePeriod":[
763
+ {
764
+ "beginPosition":"2013-08-24T08:05:00",
765
+ "endPosition":"2013-10-04"
766
+ }
767
+ ]
768
+ }
769
+ },
770
+ "geometry":{
771
+ "type":"Point",
772
+ "coordinates":[
773
+ -164.89650989974,
774
+ 59.249712874412
775
+ ]
776
+ }
777
+ }
778
+ ]
779
+ }
780
+ ]
781
+ },
782
+ {
783
+ "description":"Single Line",
784
+ "geographicElement":[
785
+ {
786
+ "type":"Feature",
787
+ "id":"line1",
788
+ "properties":{
789
+ "name":"Summer 2012 Bering Sea Survey Track",
790
+ "description":"Coordinates of ship track"
791
+ },
792
+ "geometry":{
793
+ "type":"LineString",
794
+ "coordinates":[
795
+ [
796
+ -157.0702509848438,
797
+ 71.10933136359692
798
+ ],
799
+ [
800
+ -154.6526281903968,
801
+ 70.40820968995817
802
+ ],
803
+ [
804
+ -150.7617407589279,
805
+ 70.02201223417278
806
+ ],
807
+ [
808
+ -150.8371960238169,
809
+ 70.43210058905156
810
+ ],
811
+ [
812
+ -152.2049884417053,
813
+ 70.87235618158296
814
+ ],
815
+ [
816
+ -154.5708878990441,
817
+ 71.04082324476376
818
+ ]
819
+ ]
820
+ },
821
+ "crs":{
822
+ "type":"name",
823
+ "properties":{
824
+ "name":"urn:ogc:def:crs:OGC:1.3:CRS84"
825
+ }
826
+ }
827
+ }
828
+ ]
829
+ },
830
+ {
831
+ "description":"List of Lines",
832
+ "geographicElement":[
833
+ {
834
+ "type":"Feature",
835
+ "bbox":[
836
+ -157.07025098484,
837
+ 70.022012234173,
838
+ 35.2,
839
+ -150.76174075893,
840
+ 71.109331363597,
841
+ 125.8
842
+ ],
843
+ "id":"linelist1",
844
+ "properties":{
845
+ "name":"Lines",
846
+ "description":"These lines have shared attributes",
847
+ "includesData":true
848
+ },
849
+ "geometry":{
850
+ "type":"MultiLineString",
851
+ "coordinates":[
852
+ [
853
+ [
854
+ -157.0702509848438,
855
+ 71.10933136359692,
856
+ 35.2
857
+ ],
858
+ [
859
+ -154.6526281903968,
860
+ 70.40820968995817,
861
+ 68.1
862
+ ],
863
+ [
864
+ -150.7617407589279,
865
+ 70.02201223417278,
866
+ 84.7
867
+ ],
868
+ [
869
+ -150.8371960238169,
870
+ 70.43210058905156,
871
+ 125.8
872
+ ],
873
+ [
874
+ -152.2049884417053,
875
+ 70.87235618158296,
876
+ 116.0
877
+ ]
878
+ ],
879
+ [
880
+ [
881
+ -154.5708878990441,
882
+ 71.04082324476376,
883
+ 36.9
884
+ ],
885
+ [
886
+ -150.7617407589279,
887
+ 70.02201223417278,
888
+ 84.7
889
+ ],
890
+ [
891
+ -154.6526281903968,
892
+ 70.40820968995817,
893
+ 68.1
894
+ ],
895
+ [
896
+ -157.0702509848438,
897
+ 71.10933136359692,
898
+ 35.2
899
+ ]
900
+ ],
901
+ [
902
+ [
903
+ -150.7617407589279,
904
+ 70.02201223417278,
905
+ 84.7
906
+ ],
907
+ [
908
+ -154.6526281903968,
909
+ 70.40820968995817,
910
+ 68.1
911
+ ]
912
+ ]
913
+ ]
914
+ },
915
+ "crs":{
916
+ "type":"name",
917
+ "properties":{
918
+ "name":"urn:ogc:def:crs:OGC:1.3:CRS84"
919
+ }
920
+ }
921
+ }
922
+ ]
923
+ },
924
+ {
925
+ "description":"List of Lines with attributes",
926
+ "geographicElement":[
927
+ {
928
+ "type":"FeatureCollection",
929
+ "id":"multiline1",
930
+ "bbox":[
931
+ -157.07025098484,
932
+ 70.022012234173,
933
+ 35.2,
934
+ -150.76174075893,
935
+ 71.109331363597,
936
+ 125.8
937
+ ],
938
+ "properties":{
939
+ "name":"A FeatureCollection(lines)",
940
+ "description":"represents GML MultiGeometry"
941
+ },
942
+ "crs":{
943
+ "type":"name",
944
+ "properties":{
945
+ "name":"urn:ogc:def:crs:OGC:1.3:CRS84"
946
+ }
947
+ },
948
+ "features":[
949
+ {
950
+ "type":"Feature",
951
+ "id":"multiLine001",
952
+ "properties":{
953
+ "name":"Josh",
954
+ "description":"First line in multiline object",
955
+ "temporalElement":{
956
+ "date":[
957
+ "2011-09-15",
958
+ "2012-08-13",
959
+ "2013-08-05"
960
+ ]
961
+ }
962
+ },
963
+ "geometry":{
964
+ "type":"LineString",
965
+ "coordinates":[
966
+ [
967
+ -157.0702509848438,
968
+ 71.10933136359692,
969
+ 35.2
970
+ ],
971
+ [
972
+ -154.6526281903968,
973
+ 70.40820968995817,
974
+ 68.1
975
+ ],
976
+ [
977
+ -150.7617407589279,
978
+ 70.02201223417278,
979
+ 84.7
980
+ ],
981
+ [
982
+ -150.8371960238169,
983
+ 70.43210058905156,
984
+ 125.8
985
+ ],
986
+ [
987
+ -152.2049884417053,
988
+ 70.87235618158296,
989
+ 116.0
990
+ ]
991
+ ]
992
+ }
993
+ },
994
+ {
995
+ "type":"Feature",
996
+ "id":"multiLine002",
997
+ "properties":{
998
+ "name":"Chris",
999
+ "description":"Second line in multiline object",
1000
+ "temporalElement":{
1001
+ "date":[
1002
+ "2011-09-15",
1003
+ "2012-08-13",
1004
+ "2013-08-05"
1005
+ ],
1006
+ "timeInstant":[
1007
+ {
1008
+ "id":"ti-035",
1009
+ "description":"the moment I realized I was lost",
1010
+ "timePosition":"1968-12-15T08:05:00.0+09:00"
1011
+ }
1012
+ ]
1013
+ }
1014
+ },
1015
+ "geometry":{
1016
+ "type":"LineString",
1017
+ "coordinates":[
1018
+ [
1019
+ -154.5708878990441,
1020
+ 71.04082324476376,
1021
+ 36.9
1022
+ ],
1023
+ [
1024
+ -150.7617407589279,
1025
+ 70.02201223417278,
1026
+ 84.7
1027
+ ],
1028
+ [
1029
+ -154.6526281903968,
1030
+ 70.40820968995817,
1031
+ 68.1
1032
+ ],
1033
+ [
1034
+ -157.0702509848438,
1035
+ 71.10933136359692,
1036
+ 35.2
1037
+ ]
1038
+ ]
1039
+ }
1040
+ },
1041
+ {
1042
+ "type":"Feature",
1043
+ "id":"multiLine003",
1044
+ "properties":{
1045
+ "name":"Allison",
1046
+ "description":"Third line in multiline object"
1047
+ },
1048
+ "geometry":{
1049
+ "type":"LineString",
1050
+ "coordinates":[
1051
+ [
1052
+ -150.7617407589279,
1053
+ 70.02201223417278,
1054
+ 84.7
1055
+ ],
1056
+ [
1057
+ -154.6526281903968,
1058
+ 70.40820968995817,
1059
+ 68.1
1060
+ ]
1061
+ ]
1062
+ }
1063
+ }
1064
+ ]
1065
+ }
1066
+ ]
1067
+ },
1068
+ {
1069
+ "description":"BBOX only",
1070
+ "geographicElement":[
1071
+ {
1072
+ "type":"Feature",
1073
+ "bbox":[
1074
+ -148.1764,
1075
+ 57.01428,
1076
+ -132.821,
1077
+ 60.917
1078
+ ],
1079
+ "geometry":null,
1080
+ "properties":{
1081
+ "includesData":true,
1082
+ "description":"Gulf of Alaska"
1083
+ },
1084
+ "crs":{
1085
+ "type":"link",
1086
+ "properties":{
1087
+ "href":"http://spatialreference.org/ref/epsg/4326/proj4/",
1088
+ "type":"proj4"
1089
+ }
1090
+ }
1091
+ }
1092
+ ],
1093
+ "temporalElement":{
1094
+ "timeInstant":[
1095
+ {
1096
+ "id":"ti-001",
1097
+ "description":"ground condition",
1098
+ "timePosition":"2012-07-15T08:05:00.0+09:00"
1099
+ }
1100
+ ]
1101
+ },
1102
+ "verticalElement":[
1103
+ {
1104
+ "minimumValue":-500,
1105
+ "maximumValue":0,
1106
+ "verticalCRSTitle":"NAVD88 depth",
1107
+ "verticalCRSLink":"http://www.epsg-registry.org/export.htm?gml=urn:ogc:def:crs:EPSG::6357"
1108
+ }
1109
+ ]
1110
+ },
1111
+ {
1112
+ "description":"Polygon with BBOX",
1113
+ "geographicElement":[
1114
+ {
1115
+ "type":"Feature",
1116
+ "id":"unique1",
1117
+ "bbox":[
1118
+ -148.1764,
1119
+ 57.01428,
1120
+ -132.821,
1121
+ 60.917
1122
+ ],
1123
+ "geometry":{
1124
+ "type":"Polygon",
1125
+ "coordinates":[
1126
+ [
1127
+ [
1128
+ -139.388046,
1129
+ 59.828561
1130
+ ],
1131
+ [
1132
+ -140.882186,
1133
+ 59.839602
1134
+ ],
1135
+ [
1136
+ -143.101425,
1137
+ 60.22375
1138
+ ],
1139
+ [
1140
+ -147.056503,
1141
+ 60.829147
1142
+ ],
1143
+ [
1144
+ -148.902206,
1145
+ 59.982807
1146
+ ],
1147
+ [
1148
+ -148.792343,
1149
+ 57.944338
1150
+ ],
1151
+ [
1152
+ -134.576034,
1153
+ 57.663361
1154
+ ]
1155
+ ]
1156
+ ]
1157
+ },
1158
+ "properties":{
1159
+ "includesData":true,
1160
+ "description":"Gulf of Alaska"
1161
+ },
1162
+ "crs":{
1163
+ "type":"name",
1164
+ "properties":{
1165
+ "name":"urn:ogc:def:crs:OGC:1.3:CRS84"
1166
+ }
1167
+ }
1168
+ },
1169
+ {
1170
+ "type":"Feature",
1171
+ "id":"unique101",
1172
+ "bbox":[
1173
+ -97.067240989074,
1174
+ 18.556394455134,
1175
+ -80.807475364074,
1176
+ 29.366941330134
1177
+ ],
1178
+ "geometry":{
1179
+ "type":"Polygon",
1180
+ "coordinates":[
1181
+ [
1182
+ [
1183
+ -84.059428489074,
1184
+ 29.366941330134
1185
+ ],
1186
+ [
1187
+ -97.067240989074,
1188
+ 28.048581955134
1189
+ ],
1190
+ [
1191
+ -95.397319114074,
1192
+ 18.556394455134
1193
+ ],
1194
+ [
1195
+ -80.895365989074,
1196
+ 24.620847580134
1197
+ ],
1198
+ [
1199
+ -80.807475364074,
1200
+ 24.708738205134
1201
+ ],
1202
+ [
1203
+ -84.059428489074,
1204
+ 29.366941330134
1205
+ ]
1206
+ ]
1207
+ ]
1208
+ },
1209
+ "properties":{
1210
+ "includesData":false,
1211
+ "description":"Gulf of Mexico",
1212
+ "text":"Whatever I want."
1213
+ },
1214
+ "crs":{
1215
+ "type":"name",
1216
+ "properties":{
1217
+ "name":"urn:ogc:def:crs:OGC:1.3:CRS84"
1218
+ }
1219
+ }
1220
+ }
1221
+ ],
1222
+ "temporalElement":{
1223
+ "timePeriod":[
1224
+ {
1225
+ "id":"tp-001",
1226
+ "description":"Ground Condition",
1227
+ "beginPosition":"1987-05-16T16:05:00",
1228
+ "endPosition":"2011-12"
1229
+ },
1230
+ {
1231
+ "id":"tp-101",
1232
+ "description":"Below Ground Condition",
1233
+ "beginPosition":"1987-08-13T16:05:00",
1234
+ "endPosition":"2012-12-12"
1235
+ }
1236
+ ]
1237
+ },
1238
+ "verticalElement":[
1239
+ {
1240
+ "minimumValue":0,
1241
+ "maximumValue":1000,
1242
+ "verticalCRSTitle":"NAVD88 height",
1243
+ "verticalCRSLink":"http://www.epsg-registry.org/export.htm?gml=urn:ogc:def:crs:EPSG::5703"
1244
+ },
1245
+ {
1246
+ "minimumValue":1500,
1247
+ "maximumValue":0,
1248
+ "verticalCRSTitle":"NAVD88 depth",
1249
+ "verticalCRSLink":"http://www.epsg-registry.org/export.htm?gml=urn:ogc:def:crs:EPSG::6357"
1250
+ }
1251
+ ]
1252
+ },
1253
+ {
1254
+ "description":"A feature collection with just polygons",
1255
+ "geographicElement":[
1256
+ {
1257
+ "type":"FeatureCollection",
1258
+ "id":"unique2",
1259
+ "bbox":[
1260
+ -149.89603182812,
1261
+ 61.215716023773,
1262
+ -149.87405917187,
1263
+ 61.225371976227
1264
+ ],
1265
+ "properties":{
1266
+ "name":"A FeatureCollection(polygons)",
1267
+ "description":"represents GML MultiGeometry",
1268
+ "includesData":true
1269
+ },
1270
+ "crs":{
1271
+ "type":"name",
1272
+ "properties":{
1273
+ "name":"urn:ogc:def:crs:OGC:1.3:CRS84"
1274
+ }
1275
+ },
1276
+ "features":[
1277
+ {
1278
+ "type":"Feature",
1279
+ "id":"unique3",
1280
+ "geometry":{
1281
+ "type":"Polygon",
1282
+ "coordinates":[
1283
+ [
1284
+ [
1285
+ -149.880796,
1286
+ 61.21988
1287
+ ],
1288
+ [
1289
+ -149.880625,
1290
+ 61.221305
1291
+ ],
1292
+ [
1293
+ -149.889386,
1294
+ 61.221346
1295
+ ],
1296
+ [
1297
+ -149.880796,
1298
+ 61.21988
1299
+ ]
1300
+ ],
1301
+ [
1302
+ [
1303
+ -149.8807,
1304
+ 61.21990
1305
+ ],
1306
+ [
1307
+ -149.880627,
1308
+ 61.221300
1309
+ ],
1310
+ [
1311
+ -149.8809,
1312
+ 61.221300
1313
+ ],
1314
+ [
1315
+ -149.8807,
1316
+ 61.21990
1317
+ ]
1318
+ ],
1319
+ [
1320
+ [
1321
+ -149.889300,
1322
+ 61.221300
1323
+ ],
1324
+ [
1325
+ -149.889382,
1326
+ 61.221345
1327
+ ],
1328
+ [
1329
+ -149.889382,
1330
+ 61.221445
1331
+ ],
1332
+ [
1333
+ -149.889300,
1334
+ 61.221300
1335
+ ]
1336
+ ]
1337
+ ]
1338
+ },
1339
+ "properties":{
1340
+ "name":"Buttress Park sampling location",
1341
+ "description":"Boundary of area in downtown Anchorage where sampling occurred"
1342
+ }
1343
+ },
1344
+ {
1345
+ "type":"Feature",
1346
+ "id":"unique4",
1347
+ "geometry":{
1348
+ "type":"Polygon",
1349
+ "coordinates":[
1350
+ [
1351
+ [
1352
+ -149.888221,
1353
+ 61.219643
1354
+ ],
1355
+ [
1356
+ -149.889466,
1357
+ 61.219643
1358
+ ],
1359
+ [
1360
+ -149.889251,
1361
+ 61.219973
1362
+ ],
1363
+ [
1364
+ -149.887835,
1365
+ 61.219952
1366
+ ],
1367
+ [
1368
+ -149.888221,
1369
+ 61.219643
1370
+ ]
1371
+ ]
1372
+ ]
1373
+ },
1374
+ "properties":{
1375
+ "includesData":false,
1376
+ "name":"Equipment staging area",
1377
+ "description":"Area where sampling equipment was stored, no sampling occurred (Note:includesData should be ignored here. Would need to move this feature into another geographicElement.)"
1378
+ }
1379
+ }
1380
+ ]
1381
+ }
1382
+ ],
1383
+ "temporalElement":{
1384
+ "timePeriod":[
1385
+ {
1386
+ "id":"tp-002",
1387
+ "beginPosition":"2013-08-24T08:05:00",
1388
+ "endPosition":"2013-10-04"
1389
+ },
1390
+ {
1391
+ "id":"tp-004",
1392
+ "beginPosition":"2010-08-24T08:05:00",
1393
+ "endPosition":"2014-10-04",
1394
+ "description":"The best days of my life"
1395
+ }
1396
+ ],
1397
+ "timeInstant":[
1398
+ {
1399
+ "id":"ti-002",
1400
+ "description":"below ground condition",
1401
+ "timePosition":"2012-07-15T08:05:00.0+09:00"
1402
+ },
1403
+ {
1404
+ "id":"ti-003",
1405
+ "description":"below ground condition",
1406
+ "timePosition":"2012-08-16T08:06:00.0+09:00"
1407
+ }
1408
+ ]
1409
+ },
1410
+ "verticalElement":[
1411
+ {
1412
+ "minimumValue":60.5,
1413
+ "maximumValue":110.68,
1414
+ "verticalCRSTitle":"NAVD88 height (ftUS)",
1415
+ "verticalCRSLink":"http://www.epsg-registry.org/export.htm?gml=urn:ogc:def:axis-name:EPSG::9904"
1416
+ }
1417
+ ]
1418
+ }
1419
+ ]
1420
+ },
1421
+ "distributionInfo":[
1422
+ {
1423
+ "distributorContact":{
1424
+ "contactId":"4",
1425
+ "role":"custodian"
1426
+ },
1427
+ "distributionOrderProcess":[
1428
+ {
1429
+ "fees":"0.00USD",
1430
+ "plannedAvailabilityDateTime":"2013-06-21T00:00:00-08:00",
1431
+ "orderingInstructions":"Call 555-1212 and yell at the operator",
1432
+ "turnaround":"up to 3 hours"
1433
+ },
1434
+ {
1435
+ "fees":"3.00USD",
1436
+ "turnaround":"immediate"
1437
+ }
1438
+ ],
1439
+ "distributorFormat":[
1440
+ {
1441
+ "name":"netCDF",
1442
+ "version":"4.0"
1443
+ },
1444
+ {
1445
+ "name":"Excel Spreadsheet",
1446
+ "version":"xlsx"
1447
+ }
1448
+ ],
1449
+ "distributorTransferOptions":[
1450
+ {
1451
+ "online":[
1452
+ {
1453
+ "linkage":"http://aoos.org/aoos-data-resources",
1454
+ "name":"AOOS Data Resources",
1455
+ "description":"This page provides links to interactive maps and data discovery tools.",
1456
+ "function":"information"
1457
+ },
1458
+ {
1459
+ "linkage":"http://aoos.org/fake_resource_location"
1460
+ }
1461
+ ],
1462
+ "offline":{
1463
+ "name":"dvd",
1464
+ "mediumFormat":"iso9660",
1465
+ "mediumNote":"To receive a dvd in the mail, contact the distributor POC."
1466
+ }
1467
+ }
1468
+ ]
1469
+ },
1470
+ {
1471
+ "distributorContact":{
1472
+ "contactId":"5",
1473
+ "role":"distributor"
1474
+ }
1475
+ }
1476
+ ],
1477
+ "dataQualityInfo":[
1478
+ {
1479
+ "scope":"dataset",
1480
+ "lineage":{
1481
+ "statement":"derived from that other dataset",
1482
+ "processStep":[
1483
+ {
1484
+ "stepId":"135b",
1485
+ "description":"Manually combed through to find obvious junk data values, changed value to 999999999999999999999",
1486
+ "rationale":"It had to be done!",
1487
+ "dateTime":"2011-08-23",
1488
+ "processor":[
1489
+ {
1490
+ "contactId":"3",
1491
+ "role":"processor"
1492
+ },
1493
+ {
1494
+ "contactId":"2",
1495
+ "role":"publisher"
1496
+ }
1497
+ ]
1498
+ },
1499
+ {
1500
+ "description":"changed junk data value to 9999",
1501
+ "rationale":"Way too many 9's that first time.",
1502
+ "dateTime":"2013-08-28",
1503
+ "processor":[
1504
+ {
1505
+ "contactId":"4",
1506
+ "role":"processor"
1507
+ }
1508
+ ]
1509
+ }
1510
+ ],
1511
+ "source":[
1512
+ {
1513
+ "description":"For this work, a mesoscale numerical model (WRF) will be initialized using the National Centers for Environmental Prediction (NCEP) North American Regional Reanalysis (NARR) output at 32-km resolution. The NARR data provides the “best-guess” analysis of atmospheric conditions for use in historical studies. The NARR domain covers all of North and Central America, much of the northeastern Pacific and northern Atlantic Oceans, including Alaska and Hawaii. Ten years of NARR data will be used (1 Jan 2000 – 31 Dec 2009).",
1514
+ "citation":{
1515
+ "title":"Very High-Resolution Dynamic Downscaling of Regional Climate and Hydrology",
1516
+ "date":[
1517
+ {
1518
+ "date":"2000-01-21",
1519
+ "dateType":"publication"
1520
+ }
1521
+ ],
1522
+ "edition":"version 1.2.0",
1523
+ "responsibleParty":[
1524
+ {
1525
+ "contactId":"1",
1526
+ "role":"originator"
1527
+ }
1528
+ ],
1529
+ "presentationForm":"documentDigital",
1530
+ "isbn":"HB12365.214",
1531
+ "issn":"0ab4-dd983c01"
1532
+ },
1533
+ "processStep":[
1534
+ {
1535
+ "stepId":"135bc",
1536
+ "description":"The NARR data will be used to initialize the WRF model. The NARR data cannot be used by the WRF directly. Instead, WRF-required initial data and lateral data will be created from the NARR data using the WRF Preprocessing System (WPS) utilities. In addition, the 32-km grid resolution of the NARR data will be objectively analyzed to the WRF 4-km grid. ",
1537
+ "rationale":"It had to be done!",
1538
+ "dateTime":"2013-08-13",
1539
+ "processor":[
1540
+ {
1541
+ "contactId":"3",
1542
+ "role":"processor"
1543
+ }
1544
+ ]
1545
+ },
1546
+ {
1547
+ "stepId":"135bd",
1548
+ "description":"The Hawaii Forest Bird Survey Vegetation Database includes data for over 40,400 vegetation plots that were sampled on the island of Hawaii in 1977. This database records with cover data that can be used for modeling their distribution abundance.",
1549
+ "rationale":"It had to be done!",
1550
+ "dateTime":"2013-08-13",
1551
+ "processor":[
1552
+ {
1553
+ "contactId":"3",
1554
+ "role":"processor"
1555
+ }
1556
+ ]
1557
+ }
1558
+ ]
1559
+ },
1560
+ {
1561
+ "description":"We got this dataset from those guys in Fairbanks."
1562
+ }
1563
+ ]
1564
+ }
1565
+ },
1566
+ {
1567
+ "scope":"dataset",
1568
+ "lineage":{
1569
+ "statement":"This is that other dataset that you might have heard about.",
1570
+ "source":[
1571
+ {
1572
+ "description":"This dataset came from somewhere. It was collected by so and so.",
1573
+ "citation":{
1574
+ "title":"Example_dataset_20111009_turner_v1-12.csv",
1575
+ "date":[
1576
+ {
1577
+ "date":"2011-10-09",
1578
+ "dateType": "creation"
1579
+ }
1580
+ ]
1581
+ }
1582
+ }
1583
+ ]
1584
+ }
1585
+ },
1586
+ {
1587
+ "scope":"series",
1588
+ "lineage":{
1589
+ "statement":"This series is made up of those datasets."
1590
+ }
1591
+ },
1592
+ {
1593
+ "scope":"dataset",
1594
+ "lineage":{
1595
+ "statement":"This another ctd datas from the GAK1 location.",
1596
+ "processStep":[
1597
+ {
1598
+ "description":"This is how this dataset was processed."
1599
+ }
1600
+ ]
1601
+ }
1602
+ },
1603
+ {
1604
+ "scope":"dataset",
1605
+ "lineage":{
1606
+ "statement":"This series is made up of those datasets.",
1607
+ "source":[
1608
+ {
1609
+ "description":"We got this dataset from those guys in Fairbanks."
1610
+ }
1611
+ ]
1612
+ }
1613
+ }
1614
+ ],
1615
+ "metadataMaintenance":{
1616
+ "maintenanceFrequency":"annually",
1617
+ "maintenanceNote": ["metadata is updated each year after data from that year has been added to the datasest"],
1618
+ "maintenanceContact": [
1619
+ {
1620
+ "contactId": "4",
1621
+ "role": "custodian"
1622
+ }, {
1623
+ "contactId": "2",
1624
+ "role": "owner"
1625
+ }
1626
+ ]
1627
+ }
1628
+ }
1629
+ }