Project

General

Profile

Cdm FAQ » History » Version 8

Andreas Müller, 03/25/2008 07:05 PM

1 1 Markus Döring
{{>toc}}
2
3
4
5
6
# CDM FAQs
7
8
9
### Where are basionym authorteams?
10
11 2 Markus Döring
Year of publication and/or basionym authorteams of a scientific name might be known although the nomenclatural reference or the basionym itself is not known. A “dummy” reference and/or a “dummy” basionym will be created that keeps this data to enforce consistency. See #125
12 3 Markus Döring
13
14
15
### How can plain lists of literature references be attached to a taxon?
16
17 5 Markus Döring
The recommended way is to create an empty Cdm:description:TaxonDescription for each literature resource and use the source property to hold the reference.
18 3 Markus Döring
19
20
21
### Taxon relations vs Name relations
22
23
The [[CdmLibrary]] logic does not cross the border between names and taxa. So if you create a new basionym relationship between two names NO homotypic synonym relationship is created automatically. On the contrary if a basionym relationship exists between two names, but no synonym relationship between 2 taxon concepts  with the respective names, the 2 taxa are not considered synonyms!
24 6 Andreas Müller
25
26
27
### Original Source ID
28
=
29
30 7 Andreas Müller
For importing data from an other source you have to add the an original source ()
31
32 8 Andreas Müller
~~~
33 7 Andreas Müller
IdentifiableEntity idEntity;
34
ReferenceBase ref;
35
int originalId;
36
OriginalSource originalSource = new OriginalSource();
37
originalSource.setIdInSource(String.valueOf(originalId));
38
originalSource.setCitation(ref);
39
idEntity.addSource(originalSource); 
40 8 Andreas Müller
~~~