Temporal coverage
Meaning & purpose
Temporal coverage refers to the time period during which data was collected or observations were made; or a time period that an activity or collection is linked to intellectually or thematically (for example, 1997 to 1998; the 18th century). Temporal coverage is contained within the Coverage element wrapper.
Temporal coverage can be recorded as a date range using the Date child element or it can be entered as text using the Text child element:
- Date - a time period described using dates, for example, 1978 to 1990
- Text - a text description of a time period, for example, 21st century; 1863 to present day
Temporal Coverage attributes
Temporal Coverage Date Type
If Temporal Coverage is described using the Date element, a Date Type is required, preferably from the Temporal Coverage Date Type vocabulary:
Type | Explanation |
---|---|
dateFrom | the start date for a temporal coverage period |
dateTo | the end date for a temporal coverage period |
Date Format attribute
If Temporal Coverage is described using the Date element, a DateFormat attribute is required for each instance of Date Type. A single date or a range of dates can be provided and may include both start and end dates or an open ended date. The W3C Date Time Format (W3CDTF) is the only format specified in the vocabulary.
Use in Research Data Australia
Temporal coverage description using dates supports timeline filtering and display of search results in Research Data Australia.
Temporal coverage is displayed in records using the labels 'From [date]' and 'To [date]'. If only one date is provided, only the appropriate label will be displayed with the date.
Best practice
- The time period that the collection is linked to intellectually or thematically takes priority over the time period during which data was collected or observations made.
- If Temporal Coverage applies to a collection, preferably this is also reflected in the collection Name and/or Description.
- If Temporal Coverage Type "date" was chosen, specify Date Type and DateFormat.
- If multiple date periods are needed, use a separate Coverage element for each pair of "dateFrom" and "dateTo" dates, otherwise Research Data Australia will not be able to display the date pairs correctly.
- Some collections may have only a starting date or only an end date. This is common for cultural collections such as those held by museums, where, for example, a collection is still being added to on an ongoing basis. In these cases, use only "dateFrom" or "dateTo" as appropriate.
- Do not use Temporal Coverage to provide start and finish dates of activities (a project about the First World War should not have a temporal coverage of 2007-2009). Use ExistenceDates instead.
- Temporal Coverage is not relevant to parties. Do not use for party records.
XML encoding examples
Temporal coverage using W3C date format:
<coverage>
<temporal>
<date type="dateFrom" dateFormat="W3CDTF">2001</date>
<date type="dateTo" dateFormat="W3CDTF">2004</date>
</temporal>
</coverage>
<coverage>
<temporal>
<date type="dateFrom" dateFormat="W3CDTF">2001-01-12T19:20:30.45Z</date>
<date type="dateTo" dateFormat="W3CDTF">2004-03-12T09:14:10.00Z</date>
</temporal>
</coverage>
Temporal coverage using text format:
<coverage>
<temporal>
<text>18th century</text>
</temporal>
</coverage>
Temporal coverage for an open-ended collection - Date option:
<coverage>
<temporal>
<date type="dateFrom" dateFormat="W3CDTF">1863</date>
</temporal>
</coverage>
Temporal coverage for an open-ended collection - Text option:
<coverage>
<temporal>
<text>1863 to present day</text>
</temporal>
</coverage>
Change history