Browse Source

Add information for publishing with DataCite

Stefan Glasauer 4 years ago
parent
commit
1c6d85f3ef
1 changed files with 77 additions and 0 deletions
  1. 77 0
      datacite.yml

+ 77 - 0
datacite.yml

@@ -0,0 +1,77 @@
+# Metadata for DOI registration according to DataCite Metadata Schema 4.1.
+# For detailed schema description see https://doi.org/10.5438/0014
+
+## Required fields
+
+# The main researchers involved. Include digital identifier (e.g., ORCID)
+# if possible, including the prefix to indicate its type.
+authors:
+  -
+    firstname: "Frederike"
+    lastname: "Petzschner"
+    affiliation: "ETH Zurich"
+    id: "ORCID:0000-0003-4108-2105"
+  -
+    firstname: "Stefan"
+    lastname: "Glasauer"
+    affiliation: "Brandenburg University of Technology Cottbus-Senftenberg"
+    id: "ORCID:0000-0002-4313-6210"
+ 
+# A title to describe the published resource.
+title: "Magnitude Estimation Data"
+
+# Additional information about the resource, e.g., a brief abstract.
+description: |
+  Data is stored in two Matlab files. 
+  AE_all.mat contains the raw angular estimation data, 
+  DE_all.mat the raw distance estimation data for all participants. 
+  Each structure in the cell array Data is for one participant 
+  and contains pdata (produced distance or angle, that’s the stimulus) 
+  and rdata (re-produced distance or angle, the response). 
+  There are 3x180 values, first dimension are the three ranges used, 
+  so Data{1}.pdata(1,:) contains the stimuli for participant 1 
+  and the short range in the angular estimation experiment (given you loaded AE_all.mat). 
+  Call
+  load('AE_all.mat')
+  plot(Data{1}.pdata',Data{1}.rdata','.')
+  xlabel('stimulus (deg)'),ylabel('reproduction (deg)')
+  to plot the angular estimation data for participant one with each range shown in a different color.
+
+# List of keywords the resource should be associated with.
+# Give as many keywords as possible, to make the resource findable.
+keywords:
+  - Neuroscience
+  - Psychophysics
+  - Distance Estimation
+  - Perception
+  - Magnitude
+
+# License information for this resource. Please provide the license name and/or a link to the license.
+# Please add also a corresponding LICENSE file to the repository.
+license:
+  name: "Creative Commons Attribution-ShareAlike 4.0 International Public License"
+  url: "https://creativecommons.org/licenses/by-sa/4.0/legalcode"
+
+
+
+## Optional Fields
+
+# Funding information for this resource.
+# Separate funder name and grant number by comma.
+funding:
+  - "BMBF, BCCN 01GQ0440"
+
+
+# Related publications. reftype might be: IsSupplementTo, IsDescribedBy, IsReferencedBy.
+# Please provide digital identifier (e.g., DOI) if possible.
+# Add a prefix to the ID, separated by a colon, to indicate the source.
+# Supported sources are: DOI, arXiv, PMID
+references:
+  -
+    id: "doi:10.1523/JNEUROSCI.2028-11.2011"
+    reftype: "IsSupplementTo"
+    name: "Petzschner FH, Glasauer S (2011) Iterative Bayesian Estimation as an Explanation for Range and Regression Effects: A Study on Human Path Integration. J Neurosci 31(47):17220 –17229."
+
+
+# Resource type. Default is Dataset, other possible values are Software, DataPaper, Image, Text.
+resourcetype: Dataset