-
Notifications
You must be signed in to change notification settings - Fork 0
/
eml.js
75 lines (67 loc) · 2.02 KB
/
eml.js
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
module.exports = pubDate => `<eml:eml xmlns:eml="eml://ecoinformatics.org/eml-2.1.1"
xmlns:dc="http://purl.org/dc/terms/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="eml://ecoinformatics.org/eml-2.1.1 http://rs.gbif.org/schema/eml-gbif-profile/1.1/eml.xsd"
packageId="e7483e65-9c47-4b18-9349-1e036fa8a22d/v1.8" system="http://gbif.org" scope="system"
xml:lang="eng">
<dataset>
<title xml:lang="eng">Index Fungorum - API crawl</title>
<creator>
<individualName>
<givenName>Thomas Stjernegaard</givenName>
<surName>Jeppesen</surName>
</individualName>
<organizationName>GBIF</organizationName>
<address>
<deliveryPoint>Universitetsparken 15</deliveryPoint>
<city>Copenhagen</city>
<postalCode>2100</postalCode>
<country>DK</country>
</address>
<electronicMailAddress>tsjeppesen@gbif.org</electronicMailAddress>
<userId directory="http://orcid.org/">0000-0003-1691-239X</userId>
</creator>
<pubDate>
${pubDate}
</pubDate>
<language>en</language>
<abstract>
<para>Testing API crawler for Index Fungorum</para>
</abstract>
<distribution scope="document">
<online>
<url function="information">http://www.indexfungorum.org/</url>
</online>
</distribution>
<coverage>
<taxonomicCoverage>
<taxonomicClassification>
<taxonRankName>kingdom</taxonRankName>
<taxonRankValue>Fungi</taxonRankValue>
<commonName>Fungi</commonName>
</taxonomicClassification>
</taxonomicCoverage>
</coverage>
<maintenance>
<description>
<para></para>
</description>
<maintenanceUpdateFrequency>asNeeded</maintenanceUpdateFrequency>
</maintenance>
<contact>
<individualName>
<givenName>Thomas Stjernegaard</givenName>
<surName>Jeppesen</surName>
</individualName>
<organizationName>GBIF</organizationName>
<address>
<deliveryPoint>Universitetsparken 15</deliveryPoint>
<city>Copenhagen</city>
<postalCode>2100</postalCode>
<country>DK</country>
</address>
<electronicMailAddress>tsjeppesen@gbif.org</electronicMailAddress>
<userId directory="http://orcid.org/">0000-0003-1691-239X</userId>
</contact>
</dataset>
</eml:eml>`