datacite-mapping 0.2.4 → 0.4.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (82) hide show
  1. checksums.yaml +5 -5
  2. data/.rubocop.yml +27 -11
  3. data/.ruby-version +1 -1
  4. data/CHANGES.md +25 -0
  5. data/Gemfile +2 -0
  6. data/LICENSE.md +1 -1
  7. data/README.md +10 -5
  8. data/Rakefile +5 -3
  9. data/datacite-mapping.gemspec +10 -9
  10. data/examples/reading.rb +1 -1
  11. data/examples/writing.rb +1 -0
  12. data/lib/datacite/mapping/affiliation.rb +44 -0
  13. data/lib/datacite/mapping/alternate_identifier.rb +6 -2
  14. data/lib/datacite/mapping/contributor.rb +35 -7
  15. data/lib/datacite/mapping/contributor_name.rb +42 -0
  16. data/lib/datacite/mapping/creator.rb +43 -9
  17. data/lib/datacite/mapping/creator_name.rb +42 -0
  18. data/lib/datacite/mapping/date.rb +17 -5
  19. data/lib/datacite/mapping/date_value.rb +10 -2
  20. data/lib/datacite/mapping/description.rb +10 -4
  21. data/lib/datacite/mapping/empty_filtering_nodes.rb +3 -0
  22. data/lib/datacite/mapping/funding_reference.rb +31 -10
  23. data/lib/datacite/mapping/geo_location.rb +8 -1
  24. data/lib/datacite/mapping/geo_location_box.rb +17 -10
  25. data/lib/datacite/mapping/geo_location_node.rb +12 -8
  26. data/lib/datacite/mapping/geo_location_point.rb +11 -6
  27. data/lib/datacite/mapping/geo_location_polygon.rb +13 -2
  28. data/lib/datacite/mapping/identifier.rb +18 -14
  29. data/lib/datacite/mapping/module_info.rb +5 -3
  30. data/lib/datacite/mapping/name_identifier.rb +12 -6
  31. data/lib/datacite/mapping/name_type.rb +18 -0
  32. data/lib/datacite/mapping/namespace_extensions.rb +2 -0
  33. data/lib/datacite/mapping/publisher.rb +42 -0
  34. data/lib/datacite/mapping/read_only_nodes.rb +9 -3
  35. data/lib/datacite/mapping/related_identifier.rb +43 -4
  36. data/lib/datacite/mapping/resource.rb +37 -21
  37. data/lib/datacite/mapping/resource_type.rb +7 -1
  38. data/lib/datacite/mapping/rights.rb +35 -6
  39. data/lib/datacite/mapping/subject.rb +7 -4
  40. data/lib/datacite/mapping/title.rb +7 -4
  41. data/lib/datacite/mapping.rb +3 -1
  42. data/spec/.rubocop.yml +3 -0
  43. data/spec/data/datacite4/{datacite-example-Box_dateCollected_DataCollector-v4.0.xml → datacite-example-Box_dateCollected_DataCollector-v4.xml} +9 -11
  44. data/spec/data/datacite4/{datacite-example-GeoLocation-v4.0.xml → datacite-example-GeoLocation-v4.xml} +11 -10
  45. data/spec/data/datacite4/{datacite-example-HasMetadata-v4.0.xml → datacite-example-HasMetadata-v4.xml} +18 -13
  46. data/spec/data/datacite4/{datacite-example-ResearchGroup_Methods-v4.0.xml → datacite-example-ResearchGroup_Methods-v4.xml} +14 -12
  47. data/spec/data/datacite4/{datacite-example-ResourceTypeGeneral_Collection-v4.0.xml → datacite-example-ResourceTypeGeneral_Collection-v4.xml} +9 -9
  48. data/spec/data/datacite4/datacite-example-affiliation-v4.xml +114 -0
  49. data/spec/data/datacite4/{datacite-example-complicated-v4.0.xml → datacite-example-complicated-v4.xml} +14 -11
  50. data/spec/data/datacite4/datacite-example-datapaper-v4.xml +32 -0
  51. data/spec/data/datacite4/{datacite-example-dataset-v4.0.xml → datacite-example-dataset-v4.xml} +20 -14
  52. data/spec/data/datacite4/datacite-example-full-v4.xml +114 -0
  53. data/spec/data/datacite4/{datacite-example-fundingReference-v.4.0.xml → datacite-example-fundingReference-v4.xml} +16 -13
  54. data/spec/data/datacite4/datacite-example-polygon-advanced-v4.xml +141 -0
  55. data/spec/data/datacite4/datacite-example-polygon-v4.xml +161 -0
  56. data/spec/data/datacite4/{datacite-example-relationTypeIsIdenticalTo-v4.0.xml → datacite-example-relationTypeIsIdenticalTo-v4.xml} +17 -17
  57. data/spec/data/datacite4/datacite-example-software-v4.xml +66 -0
  58. data/spec/data/datacite4/{datacite-example-video-v4.0.xml → datacite-example-video-v4.xml} +7 -7
  59. data/spec/data/datacite4/{datacite-example-workflow-v4.0.xml → datacite-example-workflow-v4.xml} +13 -11
  60. data/spec/data/datacite4/metadata.xsd +102 -57
  61. data/spec/rspec_custom_matchers.rb +11 -8
  62. data/spec/spec_helper.rb +2 -0
  63. data/spec/unit/datacite/mapping/alternate_identifier_spec.rb +2 -0
  64. data/spec/unit/datacite/mapping/contributor_spec.rb +9 -1
  65. data/spec/unit/datacite/mapping/creator_spec.rb +11 -3
  66. data/spec/unit/datacite/mapping/date_spec.rb +2 -0
  67. data/spec/unit/datacite/mapping/date_value_spec.rb +2 -0
  68. data/spec/unit/datacite/mapping/description_spec.rb +2 -0
  69. data/spec/unit/datacite/mapping/funding_reference_spec.rb +13 -1
  70. data/spec/unit/datacite/mapping/geo_location_box_spec.rb +2 -0
  71. data/spec/unit/datacite/mapping/geo_location_point_spec.rb +2 -0
  72. data/spec/unit/datacite/mapping/geo_location_polygon_spec.rb +22 -20
  73. data/spec/unit/datacite/mapping/geo_location_spec.rb +24 -22
  74. data/spec/unit/datacite/mapping/identifier_spec.rb +8 -6
  75. data/spec/unit/datacite/mapping/name_identifier_spec.rb +2 -0
  76. data/spec/unit/datacite/mapping/related_identifier_spec.rb +2 -0
  77. data/spec/unit/datacite/mapping/resource_spec.rb +34 -33
  78. data/spec/unit/datacite/mapping/rights_spec.rb +3 -14
  79. data/spec/unit/datacite/mapping/subject_spec.rb +2 -0
  80. data/spec/unit/datacite/mapping/title_spec.rb +2 -0
  81. metadata +74 -60
  82. data/spec/data/datacite4/datacite-example-full-v4.0.xml +0 -71
@@ -0,0 +1,141 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <resource xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://datacite.org/schema/kernel-4" xsi:schemaLocation="http://datacite.org/schema/kernel-4 http://schema.datacite.org/meta/kernel-4/metadata.xsd">
3
+ <identifier identifierType="DOI">10.5072/example-polygon-advanced</identifier>
4
+ <creators>
5
+ <creator>
6
+ <creatorName nameType="Personal">Stefan Jakobsson</creatorName>
7
+ <givenName>Stefan</givenName>
8
+ <familyName>Jakobsson</familyName>
9
+ <affiliation>Swedish National Data Service</affiliation>
10
+ </creator>
11
+ </creators>
12
+ <titles>
13
+ <title xml:lang="en">Advanced DataCite polygon example</title>
14
+ </titles>
15
+ <publisher>DataCite</publisher>
16
+ <publicationYear>2017</publicationYear>
17
+ <resourceType resourceTypeGeneral="Software">XML</resourceType>
18
+ <version>4.1</version>
19
+ <geoLocations>
20
+ <geoLocation>
21
+ <!--
22
+ Tavenui Island crosses the 180th meridian and is therefore represented by
23
+ two polygons
24
+ -->
25
+ <geoLocationPlace>Taveuni Island</geoLocationPlace>
26
+ <geoLocationPolygons>
27
+ <geoLocationPolygon>
28
+ <polygonPoint>
29
+ <pointLongitude>-179.84834</pointLongitude>
30
+ <pointLatitude>-16.75655</pointLatitude>
31
+ </polygonPoint>
32
+ <polygonPoint>
33
+ <pointLongitude>-179.85125</pointLongitude>
34
+ <pointLatitude>-16.70427</pointLatitude>
35
+ </polygonPoint>
36
+ <polygonPoint>
37
+ <pointLongitude>-179.88026</pointLongitude>
38
+ <pointLatitude>-16.6625</pointLatitude>
39
+ </polygonPoint>
40
+ <polygonPoint>
41
+ <pointLongitude>-179.99999</pointLongitude>
42
+ <pointLatitude>-16.774761</pointLatitude>
43
+ </polygonPoint>
44
+ <polygonPoint>
45
+ <pointLongitude>-179.99999</pointLongitude>
46
+ <pointLatitude>-16.987368</pointLatitude>
47
+ </polygonPoint>
48
+ <polygonPoint>
49
+ <pointLongitude>-179.81332</pointLongitude>
50
+ <pointLatitude>-16.79501</pointLatitude>
51
+ </polygonPoint>
52
+ <polygonPoint>
53
+ <pointLongitude>-179.84834</pointLongitude>
54
+ <pointLatitude>-16.75655</pointLatitude>
55
+ </polygonPoint>
56
+ </geoLocationPolygon>
57
+ <geoLocationPolygon>
58
+ <polygonPoint>
59
+ <pointLongitude>179.99999</pointLongitude>
60
+ <pointLatitude>-16.774761</pointLatitude>
61
+ </polygonPoint>
62
+ <polygonPoint>
63
+ <pointLongitude>179.97324</pointLongitude>
64
+ <pointLatitude>-16.79985</pointLatitude>
65
+ </polygonPoint>
66
+ <polygonPoint>
67
+ <pointLongitude>179.87342</pointLongitude>
68
+ <pointLatitude>-16.97126</pointLatitude>
69
+ </polygonPoint>
70
+ <polygonPoint>
71
+ <pointLongitude>179.91126</pointLongitude>
72
+ <pointLatitude>-17.01977</pointLatitude>
73
+ </polygonPoint>
74
+ <polygonPoint>
75
+ <pointLongitude>179.9858</pointLongitude>
76
+ <pointLatitude>-17.002</pointLatitude>
77
+ </polygonPoint>
78
+ <polygonPoint>
79
+ <pointLongitude>179.99999</pointLongitude>
80
+ <pointLatitude>-16.987368</pointLatitude>
81
+ </polygonPoint>
82
+ <polygonPoint>
83
+ <pointLongitude>179.99999</pointLongitude>
84
+ <pointLatitude>-16.774761</pointLatitude>
85
+ </polygonPoint>
86
+ </geoLocationPolygon>
87
+ </geoLocationPolygons>
88
+ </geoLocation>
89
+ <geoLocation>
90
+ <geoLocationPlace>Almost the entire earth</geoLocationPlace>
91
+ <geoLocationPolygons>
92
+ <!--
93
+ This polygon is larger than half the earth, inPolygonPoint is therefore
94
+ used to indicate the inside of the polygon
95
+ -->
96
+ <geoLocationPolygon>
97
+ <polygonPoint>
98
+ <pointLongitude>-165.01</pointLongitude>
99
+ <pointLatitude>85.01</pointLatitude>
100
+ </polygonPoint>
101
+ <polygonPoint>
102
+ <pointLongitude>-175.01</pointLongitude>
103
+ <pointLatitude>75.01</pointLatitude>
104
+ </polygonPoint>
105
+ <polygonPoint>
106
+ <pointLongitude>-175.01</pointLongitude>
107
+ <pointLatitude>-75.01</pointLatitude>
108
+ </polygonPoint>
109
+ <polygonPoint>
110
+ <pointLongitude>-165.01</pointLongitude>
111
+ <pointLatitude>-85.01</pointLatitude>
112
+ </polygonPoint>
113
+ <polygonPoint>
114
+ <pointLongitude>165.01</pointLongitude>
115
+ <pointLatitude>-85.01</pointLatitude>
116
+ </polygonPoint>
117
+ <polygonPoint>
118
+ <pointLongitude>175.01</pointLongitude>
119
+ <pointLatitude>-75.01</pointLatitude>
120
+ </polygonPoint>
121
+ <polygonPoint>
122
+ <pointLongitude>175.01</pointLongitude>
123
+ <pointLatitude>75.01</pointLatitude>
124
+ </polygonPoint>
125
+ <polygonPoint>
126
+ <pointLongitude>165.01</pointLongitude>
127
+ <pointLatitude>85.01</pointLatitude>
128
+ </polygonPoint>
129
+ <polygonPoint>
130
+ <pointLongitude>-165.01</pointLongitude>
131
+ <pointLatitude>85.01</pointLatitude>
132
+ </polygonPoint>
133
+ <inPolygonPoint>
134
+ <pointLongitude>0.01</pointLongitude>
135
+ <pointLatitude>0.01</pointLatitude>
136
+ </inPolygonPoint>
137
+ </geoLocationPolygon>
138
+ </geoLocationPolygons>
139
+ </geoLocation>
140
+ </geoLocations>
141
+ </resource>
@@ -0,0 +1,161 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <resource xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://datacite.org/schema/kernel-4" xsi:schemaLocation="http://datacite.org/schema/kernel-4 http://schema.datacite.org/meta/kernel-4/metadata.xsd">
3
+ <identifier identifierType="DOI">10.5072/example-polygon</identifier>
4
+ <creators>
5
+ <creator>
6
+ <creatorName nameType="Personal">den Heijer, C</creatorName>
7
+ </creator>
8
+ </creators>
9
+ <titles>
10
+ <title xml:lang="en">Meteo measurements at the Sand Motor</title>
11
+ </titles>
12
+ <publisher xml:lang="en">4TU.Centre for Research Data</publisher>
13
+ <publicationYear>2017</publicationYear>
14
+ <resourceType resourceTypeGeneral="Dataset">Dataset</resourceType>
15
+ <formats>
16
+ <format>application/x-netcdf</format>
17
+ </formats>
18
+ <geoLocations>
19
+ <geoLocation>
20
+ <geoLocationPlace>Zandmotor, sand suppletion area on the Dutch coast.</geoLocationPlace>
21
+ <geoLocationPolygon>
22
+ <polygonPoint>
23
+ <pointLongitude>4.1738852605822</pointLongitude>
24
+ <pointLatitude>52.03913926329928</pointLatitude>
25
+ </polygonPoint>
26
+ <polygonPoint>
27
+ <pointLongitude>4.177180694215117</pointLongitude>
28
+ <pointLatitude>52.04164225918711</pointLatitude>
29
+ </polygonPoint>
30
+ <polygonPoint>
31
+ <pointLongitude>4.180535246850687</pointLongitude>
32
+ <pointLatitude>52.04399625464452</pointLatitude>
33
+ </polygonPoint>
34
+ <polygonPoint>
35
+ <pointLongitude>4.184849833488133</pointLongitude>
36
+ <pointLatitude>52.04692936720903</pointLatitude>
37
+ </polygonPoint>
38
+ <polygonPoint>
39
+ <pointLongitude>4.188676339698225</pointLongitude>
40
+ <pointLatitude>52.04967415251541</pointLatitude>
41
+ </polygonPoint>
42
+ <polygonPoint>
43
+ <pointLongitude>4.191534369184121</pointLongitude>
44
+ <pointLatitude>52.05170714064434</pointLatitude>
45
+ </polygonPoint>
46
+ <polygonPoint>
47
+ <pointLongitude>4.194175770686163</pointLongitude>
48
+ <pointLatitude>52.05334245636797</pointLatitude>
49
+ </polygonPoint>
50
+ <polygonPoint>
51
+ <pointLongitude>4.195777670597483</pointLongitude>
52
+ <pointLatitude>52.05421289062893</pointLatitude>
53
+ </polygonPoint>
54
+ <polygonPoint>
55
+ <pointLongitude>4.197318856770764</pointLongitude>
56
+ <pointLatitude>52.05560708986616</pointLatitude>
57
+ </polygonPoint>
58
+ <polygonPoint>
59
+ <pointLongitude>4.197244535290235</pointLongitude>
60
+ <pointLatitude>52.05647414552436</pointLatitude>
61
+ </polygonPoint>
62
+ <polygonPoint>
63
+ <pointLongitude>4.194878372206108</pointLongitude>
64
+ <pointLatitude>52.05558026532434</pointLatitude>
65
+ </polygonPoint>
66
+ <polygonPoint>
67
+ <pointLongitude>4.192275513207293</pointLongitude>
68
+ <pointLatitude>52.0540037664795</pointLatitude>
69
+ </polygonPoint>
70
+ <polygonPoint>
71
+ <pointLongitude>4.190139539757181</pointLongitude>
72
+ <pointLatitude>52.05338309097328</pointLatitude>
73
+ </polygonPoint>
74
+ <polygonPoint>
75
+ <pointLongitude>4.188563539343029</pointLongitude>
76
+ <pointLatitude>52.05409113125509</pointLatitude>
77
+ </polygonPoint>
78
+ <polygonPoint>
79
+ <pointLongitude>4.188843259016792</pointLongitude>
80
+ <pointLatitude>52.05555708237333</pointLatitude>
81
+ </polygonPoint>
82
+ <polygonPoint>
83
+ <pointLongitude>4.190440325374933</pointLongitude>
84
+ <pointLatitude>52.05648630398393</pointLatitude>
85
+ </polygonPoint>
86
+ <polygonPoint>
87
+ <pointLongitude>4.193486805620985</pointLongitude>
88
+ <pointLatitude>52.05721863750948</pointLatitude>
89
+ </polygonPoint>
90
+ <polygonPoint>
91
+ <pointLongitude>4.195782715369962</pointLongitude>
92
+ <pointLatitude>52.05905125521555</pointLatitude>
93
+ </polygonPoint>
94
+ <polygonPoint>
95
+ <pointLongitude>4.196042562042681</pointLongitude>
96
+ <pointLatitude>52.0603024859894</pointLatitude>
97
+ </polygonPoint>
98
+ <polygonPoint>
99
+ <pointLongitude>4.194522303279684</pointLongitude>
100
+ <pointLatitude>52.06042019458354</pointLatitude>
101
+ </polygonPoint>
102
+ <polygonPoint>
103
+ <pointLongitude>4.191569341305619</pointLongitude>
104
+ <pointLatitude>52.05985079275935</pointLatitude>
105
+ </polygonPoint>
106
+ <polygonPoint>
107
+ <pointLongitude>4.188970128279688</pointLongitude>
108
+ <pointLatitude>52.05933203100292</pointLatitude>
109
+ </polygonPoint>
110
+ <polygonPoint>
111
+ <pointLongitude>4.185846614849885</pointLongitude>
112
+ <pointLatitude>52.05849919443985</pointLatitude>
113
+ </polygonPoint>
114
+ <polygonPoint>
115
+ <pointLongitude>4.183766834165052</pointLongitude>
116
+ <pointLatitude>52.05768273662148</pointLatitude>
117
+ </polygonPoint>
118
+ <polygonPoint>
119
+ <pointLongitude>4.182190558076597</pointLongitude>
120
+ <pointLatitude>52.05665770545129</pointLatitude>
121
+ </polygonPoint>
122
+ <polygonPoint>
123
+ <pointLongitude>4.180730516454513</pointLongitude>
124
+ <pointLatitude>52.05512223937299</pointLatitude>
125
+ </polygonPoint>
126
+ <polygonPoint>
127
+ <pointLongitude>4.179642892536666</pointLongitude>
128
+ <pointLatitude>52.05335222714644</pointLatitude>
129
+ </polygonPoint>
130
+ <polygonPoint>
131
+ <pointLongitude>4.178442502618839</pointLongitude>
132
+ <pointLatitude>52.05152018985662</pointLatitude>
133
+ </polygonPoint>
134
+ <polygonPoint>
135
+ <pointLongitude>4.1774713992764</pointLongitude>
136
+ <pointLatitude>52.04954999812316</pointLatitude>
137
+ </polygonPoint>
138
+ <polygonPoint>
139
+ <pointLongitude>4.176346178024046</pointLongitude>
140
+ <pointLatitude>52.04728138670279</pointLatitude>
141
+ </polygonPoint>
142
+ <polygonPoint>
143
+ <pointLongitude>4.175182683314049</pointLongitude>
144
+ <pointLatitude>52.04497104660534</pointLatitude>
145
+ </polygonPoint>
146
+ <polygonPoint>
147
+ <pointLongitude>4.173373650824841</pointLongitude>
148
+ <pointLatitude>52.04226286332442</pointLatitude>
149
+ </polygonPoint>
150
+ <polygonPoint>
151
+ <pointLongitude>4.173204764844041</pointLongitude>
152
+ <pointLatitude>52.04016615926179</pointLatitude>
153
+ </polygonPoint>
154
+ <polygonPoint>
155
+ <pointLongitude>4.1738852605822</pointLongitude>
156
+ <pointLatitude>52.03913926329928</pointLatitude>
157
+ </polygonPoint>
158
+ </geoLocationPolygon>
159
+ </geoLocation>
160
+ </geoLocations>
161
+ </resource>
@@ -3,46 +3,46 @@
3
3
  <identifier identifierType="DOI">10.5072/10.CPoS-example</identifier>
4
4
  <creators>
5
5
  <creator>
6
- <creatorName>Kreyenfeld, Michaela</creatorName>
6
+ <creatorName nameType="Personal">Kreyenfeld, Michaela</creatorName>
7
7
  <givenName>Michaela</givenName>
8
8
  <familyName>Kreyenfeld</familyName>
9
9
  <nameIdentifier nameIdentifierScheme="ISNI" schemeURI="http://isni.org/isni/">0000000117540116</nameIdentifier>
10
10
  </creator>
11
11
  <creator>
12
- <creatorName>Hornung, Anne</creatorName>
12
+ <creatorName nameType="Personal">Hornung, Anne</creatorName>
13
13
  <givenName>Anne</givenName>
14
14
  <familyName>Hornung</familyName>
15
15
  <nameIdentifier nameIdentifierScheme="VIAF" schemeURI="http://viaf.org/viaf/">304639093</nameIdentifier>
16
16
  </creator>
17
17
  <creator>
18
- <creatorName>Kubisch, Karolin</creatorName>
18
+ <creatorName nameType="Personal">Kubisch, Karolin</creatorName>
19
19
  <givenName>Karolin</givenName>
20
20
  <familyName>Kubisch</familyName>
21
21
  <nameIdentifier nameIdentifierScheme="VIAF" schemeURI="http://viaf.org/viaf/">303937450</nameIdentifier>
22
22
  </creator>
23
23
  </creators>
24
24
  <titles>
25
- <title>The German Generations and Gender Survey</title>
25
+ <title xml:lang="en">The German Generations and Gender Survey</title>
26
26
  <title xml:lang="en" titleType="Subtitle">Some Critical Reflections on the Validity of Fertility Histories</title>
27
27
  </titles>
28
- <publisher>Federal Institute for Population Research, Germany</publisher>
28
+ <publisher xml:lang="en">Federal Institute for Population Research, Germany</publisher>
29
29
  <publicationYear>2013</publicationYear>
30
30
  <subjects>
31
- <subject>Fertility</subject>
32
- <subject>Marriage</subject>
33
- <subject>Germany</subject>
34
- <subject>Data validation</subject>
35
- <subject>Mikrozensus</subject>
36
- <subject>Gender survey</subject>
37
- <subject schemeURI="http://www.gesis.org/en/services/research/tools-for-searching/classification" subjectScheme="GESIS">10300 Demography, Population Research</subject>
31
+ <subject xml:lang="en">Fertility</subject>
32
+ <subject xml:lang="en">Marriage</subject>
33
+ <subject xml:lang="en">Germany</subject>
34
+ <subject xml:lang="en">Data validation</subject>
35
+ <subject xml:lang="en">Mikrozensus</subject>
36
+ <subject xml:lang="en">Gender survey</subject>
37
+ <subject xml:lang="en" schemeURI="http://www.gesis.org/en/services/research/tools-for-searching/classification" subjectScheme="GESIS">10300 Demography, Population Research</subject>
38
38
  </subjects>
39
39
  <contributors>
40
40
  <contributor contributorType="Editor">
41
- <contributorName>Federal Institute for Population Research</contributorName>
41
+ <contributorName xml:lang="en" nameType="Organizational">Federal Institute for Population Research</contributorName>
42
42
  <nameIdentifier nameIdentifierScheme="ISNI" schemeURI="http://isni.org/isni/">0000000094455866</nameIdentifier>
43
43
  </contributor>
44
44
  </contributors>
45
- <language>eng</language>
45
+ <language>en</language>
46
46
  <resourceType resourceTypeGeneral="Text">Article</resourceType>
47
47
  <alternateIdentifiers>
48
48
  <alternateIdentifier alternateIdentifierType="internal ID">da|ra.14.103</alternateIdentifier>
@@ -56,10 +56,10 @@
56
56
  </formats>
57
57
  <version>1</version>
58
58
  <rightsList>
59
- <rights rightsURI="http://creativecommons.org/licenses/by-nc-nd/3.0/deed">Creative Commons License: Attribution-NonCommercial-NoDerivs 3.0 Unported</rights>
59
+ <rights xml:lang="en-US" schemeURI="https://spdx.org/licenses/" rightsIdentifierScheme="SPDX" rightsIdentifier="CC-BY-NC-ND-3.0" rightsURI="http://creativecommons.org/licenses/by-nc-nd/3.0/deed">Creative Commons License: Attribution-NonCommercial-NoDerivs 3.0 Unported</rights>
60
60
  </rightsList>
61
61
  <descriptions>
62
- <description descriptionType="SeriesInformation">Comparative Population Studies Vol 38, No 1 (2013)</description>
63
- <description descriptionType="Abstract">This paper validates the fertility histories of the German Generations and Gender Survey (GGS). Focusing on the cohorts 1930-69 of West German women, the total number of children, the parity distribution and the parity progression ratios are comparedto external sources. One major result from this validation is that the German GGS understates the fertility for the older cohorts and overstates it for the younger ones.</description>
62
+ <description xml:lang="en" descriptionType="SeriesInformation">Comparative Population Studies Vol 38, No 1 (2013)</description>
63
+ <description xml:lang="en" descriptionType="Abstract">This paper validates the fertility histories of the German Generations and Gender Survey (GGS). Focusing on the cohorts 1930-69 of West German women, the total number of children, the parity distribution and the parity progression ratios are comparedto external sources. One major result from this validation is that the German GGS understates the fertility for the older cohorts and overstates it for the younger ones.</description>
64
64
  </descriptions>
65
65
  </resource>
@@ -0,0 +1,66 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <resource xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://datacite.org/schema/kernel-4" xsi:schemaLocation="http://datacite.org/schema/kernel-4 http://schema.datacite.org/meta/kernel-4/metadata.xsd">
3
+ <identifier identifierType="DOI">10.5072/example-software-2.0</identifier>
4
+ <creators>
5
+ <creator>
6
+ <creatorName nameType="Personal">Zielinski, AT</creatorName>
7
+ <nameIdentifier schemeURI="http://orcid.org" nameIdentifierScheme="ORCID">0000-0002-2997-2175</nameIdentifier>
8
+ </creator>
9
+ <creator>
10
+ <creatorName nameType="Personal">Kalberer, M</creatorName>
11
+ </creator>
12
+ <creator>
13
+ <creatorName nameType="Personal">Bortolini, C</creatorName>
14
+ </creator>
15
+ <creator>
16
+ <creatorName nameType="Personal">Giorio, C</creatorName>
17
+ </creator>
18
+ <creator>
19
+ <creatorName nameType="Personal">Fuller, SJ</creatorName>
20
+ </creator>
21
+ <creator>
22
+ <creatorName nameType="Personal">Kourtchev, I</creatorName>
23
+ </creator>
24
+ <creator>
25
+ <creatorName nameType="Personal">Popoola, O</creatorName>
26
+ </creator>
27
+ </creators>
28
+ <titles>
29
+ <title xml:lang="en">Code supporting "A new processing scheme for ultra-high resolution direct infusion mass spectrometry data"</title>
30
+ </titles>
31
+ <publisher>Apollo - University of Cambridge Repository</publisher>
32
+ <publicationYear>2017</publicationYear>
33
+ <subjects>
34
+ <subject>UHRMS</subject>
35
+ <subject>ESI</subject>
36
+ <subject>APPI</subject>
37
+ <subject>Environmental samples</subject>
38
+ <subject>direct infusion</subject>
39
+ <subject>Orbitrap</subject>
40
+ </subjects>
41
+ <contributors>
42
+ <contributor contributorType="HostingInstitution">
43
+ <contributorName xml:lang="en" nameType="Organizational">Apollo - University of Cambridge Repository</contributorName>
44
+ </contributor>
45
+ </contributors>
46
+ <dates>
47
+ <date dateType="Issued">2017-05-08</date>
48
+ <date dateType="Available">2017-05-08</date>
49
+ </dates>
50
+ <language>en</language>
51
+ <resourceType resourceTypeGeneral="Software">Software</resourceType>
52
+ <relatedIdentifiers>
53
+ <relatedIdentifier relationType="IsNewVersionOf" relatedIdentifierType="DOI">doi:10.5072/example-software-1.0</relatedIdentifier>
54
+ <relatedIdentifier relationType="IsVersionOf" relatedIdentifierType="DOI">doi:10.5072/example-software-repository</relatedIdentifier>
55
+ </relatedIdentifiers>
56
+ <formats>
57
+ <format>application/ld+json</format>
58
+ </formats>
59
+ <version>2.0</version>
60
+ <rightsList>
61
+ <rights xml:lang="en-US" schemeURI="https://spdx.org/licenses/" rightsIdentifierScheme="SPDX" rightsIdentifier="GPL-3.0-only" rightsURI="https://opensource.org/licenses/GPL-3.0">GNU General Public License version 3</rights></rightsList>
62
+ <descriptions>
63
+ <description xml:lang="en" descriptionType="Abstract">Set of scripts used to process direct infusion mass spectrometry data as described in the associated paper</description>
64
+ <description xml:lang="en" descriptionType="TechnicalInfo">Scripts written and run using Wolfram Mathematica (confirmed with versions 10.2 to 11.1). Assumes raw data matches format produced by a LTQ Orbitrap Velos mass spectrometer and exported by the proprietary software (Xcalibur) to a comma-separated values (.csv) file. The .csv files are the expected input into the Mathematica scripts.</description>
65
+ </descriptions>
66
+ </resource>
@@ -3,27 +3,27 @@
3
3
  <identifier identifierType="DOI">10.5072/1153992</identifier>
4
4
  <creators>
5
5
  <creator>
6
- <creatorName>Lynn, Briscoe</creatorName>
6
+ <creatorName nameType="Personal">Lynn, Briscoe</creatorName>
7
7
  <givenName>Briscoe</givenName>
8
8
  <familyName>Lynn</familyName>
9
9
  </creator>
10
10
  </creators>
11
11
  <titles>
12
- <title>Walking Your Space, Evaluating Your Home</title>
13
- <title titleType="Subtitle">Making Energy Efficiency Work for You</title>
12
+ <title xml:lang="en">Walking Your Space, Evaluating Your Home</title>
13
+ <title xml:lang="en" titleType="Subtitle">Making Energy Efficiency Work for You</title>
14
14
  </titles>
15
- <publisher>Photovoltaic Institute</publisher>
15
+ <publisher xml:lang="en">Photovoltaic Institute</publisher>
16
16
  <publicationYear>2013</publicationYear>
17
17
  <subjects>
18
- <subject>Solar Energy</subject>
18
+ <subject xml:lang="en">Solar Energy</subject>
19
19
  </subjects>
20
- <language>eng</language>
20
+ <language>en</language>
21
21
  <resourceType resourceTypeGeneral="Audiovisual">narrated video</resourceType>
22
22
  <formats>
23
23
  <format>MP4</format>
24
24
  </formats>
25
25
  <descriptions>
26
- <description descriptionType="Abstract">
26
+ <description xml:lang="en" descriptionType="Abstract">
27
27
  This hour-long video features John Halter as the narrator. Mr. Halter is best known as a journalist rather than a TV star, and here he plays that role as he does an "expose" type of walkthrough a new home. The home has been advertised as a house with
28
28
  the very latest in state-of-the art energy efficiency, especially solar. Mr. Halter puts the home through an investigation and determines that it can, indeed, live up to its claims.
29
29
  </description>
@@ -3,33 +3,33 @@
3
3
  <identifier identifierType="DOI">10.5072/100044</identifier>
4
4
  <creators>
5
5
  <creator>
6
- <creatorName>Luo, R</creatorName>
6
+ <creatorName nameType="Personal">Luo, R</creatorName>
7
7
  </creator>
8
8
  <creator>
9
- <creatorName>Liu, B</creatorName>
9
+ <creatorName nameType="Personal">Liu, B</creatorName>
10
10
  </creator>
11
11
  <creator>
12
- <creatorName>Xie, Y</creatorName>
12
+ <creatorName nameType="Personal">Xie, Y</creatorName>
13
13
  </creator>
14
14
  <creator>
15
- <creatorName>Li, Z</creatorName>
15
+ <creatorName nameType="Personal">Li, Z</creatorName>
16
16
  </creator>
17
17
  </creators>
18
18
  <titles>
19
- <title>
19
+ <title xml:lang="en">
20
20
  Software and supporting material for "SOAPdenovo2: An empirically improved memory-efficient short read de novo assembly"
21
21
  </title>
22
22
  </titles>
23
- <publisher>GigaScience Database</publisher>
23
+ <publisher xml:lang="en">GigaScience Database</publisher>
24
24
  <publicationYear>2012</publicationYear>
25
25
  <subjects>
26
- <subject>DNA (Genetics)</subject>
27
- <subject>Computer Program</subject>
26
+ <subject xml:lang="en">DNA (Genetics)</subject>
27
+ <subject xml:lang="en">Computer Program</subject>
28
28
  </subjects>
29
29
  <dates>
30
30
  <date dateType="Available">2012-12-13</date>
31
31
  </dates>
32
- <language>eng</language>
32
+ <language>en</language>
33
33
  <resourceType resourceTypeGeneral="Workflow">Software</resourceType>
34
34
  <relatedIdentifiers>
35
35
  <relatedIdentifier relatedIdentifierType="DOI" relationType="IsReferencedBy">10.5072/2047-217X-1-1</relatedIdentifier>
@@ -39,10 +39,12 @@
39
39
  <size>31 MB</size>
40
40
  </sizes>
41
41
  <rightsList>
42
- <rights rightsURI="http://creativecommons.org/publicdomain/zero/1.0/">CC0 1.0 Universal</rights>
42
+ <rights rightsIdentifier="CC0 1.0" xml:lang="en-US"
43
+ schemeURI="https://spdx.org/licenses/" rightsIdentifierScheme="SPDX"
44
+ rightsURI="http://creativecommons.org/publicdomain/zero/1.0/" />
43
45
  </rightsList>
44
46
  <descriptions>
45
- <description descriptionType="Abstract">
47
+ <description xml:lang="en" descriptionType="Abstract">
46
48
  SOAPdenovo2 is the latest de novo genome assembly package from BGI's SOAP (short oligonucleotide analysis package) suite of tools (homepage here: http://soap.genomics.org.cn/). Compared to SOAPdenovo1, this new version has the advantage of a new
47
49
  algorithm design that reduces memory consumption in graph construction, resolves more repeat regions in contig assembly, increases coverage and length in scaffold construction, improves gap closure, and is optimized for large genomes. Using new
48
50
  sequencing data from the YH (Homo sapiens) diploid genome - the first sequenced Han Chinese individual, an updated assembly was produced (see dataset here: doi:10.5524/100038), with the N50 scores for the contig and scaffold being 3-fold and 50-fold