Adding new build source files and a reference template

This commit is contained in:
Markus Döring 2015-01-13 00:35:17 +01:00 committed by Peter Desmet
parent 8295235e70
commit 212f893f13
5 changed files with 88 additions and 0 deletions

2
build/README.md Normal file
View File

@ -0,0 +1,2 @@
add DOI explanations

9
build/dc.yaml Normal file
View File

@ -0,0 +1,9 @@
type:
definition: 'The nature or genre of the resource. For Darwin Core, recommended best practice is to use the name of the class that defines the root of the record.'
comment: 'Examples: "StillImage", "MovingImage", "Sound", "PhysicalObject", "Event", "Text". For discussion see http://terms.tdwg.org/wiki/dwc:type'
details: http://dublincore.org/usage/terms/history/#typeT-001
references:
definition: 'A related resource that is referenced, cited, or otherwise pointed to by the described resource.'
comment: 'Examples: "http://mvzarctos.berkeley.edu/guid/MVZ:Mamm:165861"; "http://www.catalogueoflife.org/annual-checklist/show_species_details.php?record_id=6197868". For discussion see http://terms.tdwg.org/wiki/dwc:references'
details: http://dublincore.org/usage/terms/history/#references-003

76
build/recommended.tmpl Normal file
View File

@ -0,0 +1,76 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<title>Darwin Core Terms: A quick reference guide</title>
<link rel="stylesheet" href="bootstrap.min.css">
</head>
<body>
<div class="container">
<div class="jumbotron">
<h1>Darwin Core Term Reference</h1>
</div>
#for $group in $groups
#if $group.uri is not None
<h4><a href="#$group.name">$group.name</a></h4>
#else
<h4>$group.name</h4>
#end if
<p>
#set $sep = ''
#for $term in $group.terms
$sep <a href="#$term.name">$term.name</a>
#set $sep = '|'
#end for
</p>
#end for
<hr/>
#def showTerm($t)
#if $t.uri is not None
<a name="$t.name"></a>
<dl class="dl-horizontal">
<dt>Name</dt>
<dd><strong>$t.name</strong></dd>
<dt>Identifier</dt>
<dd>$t.uri</dd>
#if $t.class is not None
<dt>Class</dt>
<dd>$t.class</dd>
#end if
<dt>Definition</dt>
<dd>$t.definition</dd>
<dt>Comment</dt>
<dd>$t.comment</dd>
<dt>Details</dt>
<dd><a href="$t.version">$t.version</a></dd>
</dl>
<hr/>
#end if
#end def
#for $t in $groups
$showTerm(t)
#end for
#for $group in $groups
#for $t in $group.terms
$showTerm(t)
#end for
#end for
</div> <!-- /container -->
</body>
</html>

1
build/term_order.yaml Normal file
View File

@ -0,0 +1 @@
- Record-level Terms: - DC_type - DC_modified - DC_language - DC_license - DC_rightsHolder - DC_accessRights - DC_bibliographicCitation - DC_references - institutionID - collectionID - datasetID - institutionCode - collectionCode - datasetName - ownerInstitutionCode - basisOfRecord - informationWithheld - dataGeneralizations - dynamicProperties - Occurrence: - occurrenceID - catalogNumber - recordNumber - recordedBy - individualCount - sex - lifeStage - reproductiveCondition - behavior - establishmentMeans - occurrenceStatus - preparations - disposition - associatedMedia - associatedReferences - associatedSequences - associatedTaxa - otherCatalogNumbers - occurrenceRemarks - Organism: - organismID - organismName - organismScope - associatedOccurrences - associatedOrganisms - previousIdentifications - organismRemarks - MaterialSample: - materialSampleID - Event: - eventID - fieldNumber - eventDate - eventTime - startDayOfYear - endDayOfYear - year - month - day - verbatimEventDate - habitat - samplingProtocol - samplingEffort - fieldNotes - eventRemarks - DC_Location: - locationID - higherGeographyID - higherGeography - continent - waterBody - islandGroup - island - country - countryCode - stateProvince - county - municipality - locality - verbatimLocality - minimumElevationInMeters - maximumElevationInMeters - verbatimElevation - minimumDepthInMeters - maximumDepthInMeters - verbatimDepth - minimumDistanceAboveSurfaceInMeters - maximumDistanceAboveSurfaceInMeters - locationAccordingTo - locationRemarks - decimalLatitude - decimalLongitude - geodeticDatum - coordinateUncertaintyInMeters - coordinatePrecision - pointRadiusSpatialFit - verbatimCoordinates - verbatimLatitude - verbatimLongitude - verbatimCoordinateSystem - verbatimSRS - footprintWKT - footprintSRS - footprintSpatialFit - georeferencedBy - georeferencedDate - georeferenceProtocol - georeferenceSources - georeferenceVerificationStatus - georeferenceRemarks - GeologicalContext: - geologicalContextID - earliestEonOrLowestEonothem - latestEonOrHighestEonothem - earliestEraOrLowestErathem - latestEraOrHighestErathem - earliestPeriodOrLowestSystem - latestPeriodOrHighestSystem - earliestEpochOrLowestSeries - latestEpochOrHighestSeries - earliestAgeOrLowestStage - latestAgeOrHighestStage - lowestBiostratigraphicZone - highestBiostratigraphicZone - lithostratigraphicTerms - group - formation - member - bed - Identification: - identificationID - identificationQualifier - typeStatus - identifiedBy - dateIdentified - identificationReferences - identificationVerificationStatus - identificationRemarks - Taxon: - taxonID - scientificNameID - acceptedNameUsageID - parentNameUsageID - originalNameUsageID - nameAccordingToID - namePublishedInID - taxonConceptID - scientificName - acceptedNameUsage - parentNameUsage - originalNameUsage - nameAccordingTo - namePublishedIn - namePublishedInYear - higherClassification - kingdom - phylum - class - order - family - genus - subgenus - specificEpithet - infraspecificEpithet - taxonRank - verbatimTaxonRank - scientificNameAuthorship - vernacularName - nomenclaturalCode - taxonomicStatus - nomenclaturalStatus - taxonRemarks - ResourceRelationship: - resourceRelationshipID - resourceID - relatedResourceID - relationshipOfResource - relationshipAccordingTo - relationshipEstablishedDate - relationshipRemarks - MeasurementOrFact: - measurementID - measurementType - measurementValue - measurementAccuracy - measurementUnit - measurementDeterminedBy - measurementDeterminedDate - measurementMethod - measurementRemarks

View File