Dates

From TNG_Wiki
Jump to navigation Jump to search
 
Dates are a vital part of family research, so accurate reporting of dates is very important. TNG follows the internationally accepted standards for date entry and the use of date modifiers to clarify uncertain dates.

If you enter a person into your TNG database, you must have some sort of evidence that they existed and should enter at least a birthdate, and a death date if you know they are no longer alive. No matter how uncertain you are of those dates, date modifiers allow you to frame the boundaries of your uncertainty.

For example, you know your Dad had a Mom, but have no idea when this Grandma of yours was born or when she died. You do know the year your Dad was born, 1931. Well, Grandma must have been at least ten years old when your Dad was born, so you can state her birthdate was before 1921 (BEF 1921). She died either in the same year your Dad was born or in the years after, so you give her death date as after 1930 (AFT 1930).

TNG Dates

Always enter dates in the standard genealogical format, DD MMM YYYY (for example, 22 Mar 2011).
Internally, TNG keeps dates in 50 character strings, allowing for date 'modifiers'.

Date Modifiers

TNG allows the use of the eight standard genealogy date modifiers as prescribed in the GEDCOM 5.5 release|:  ABT, CAL, EST, AFT, BEF, BET, FROM, TO and the term Y. (See below.)
(For date and date modifier abbreviations in German see Inputting Dates - Eingabemoeglichkeiten)

Upper / Lower Case in Dates

When entering event dates in TNG, the letters used for the month and the date modifiers may be any combination of upper and lower case letters (for example, Aug, Cal, aug, cal, AUG, CAL).
When displaying event dates TNG leaves the letters in the case in which you originally entered them, but always converts the letters to all capitals when performing internal calculations.
If you are considering creating new TNG php procedures which involve handling dates, be sure to wrap them in the php UCASE function (for example, UCASE(birthdate)).

Uncertain Dates

If you are sure an event occurred, but not sure of the exact date on which that event occurred, you may qualify the date you supply with one of the date approximation modifiers:  ABT, CAL, or EST (for example, Abt 12 Nov 1891; or, Abt Nov 1891; or, Abt 1891).
If you are sure an event occurred, are not sure of the exact date, but are sure of the range of dates, you may supply the known range by enclosing dates using BET date AND date (for example, BET 1845 AND 1851).

Ongoing Dates

Dates are sometimes used to describe ongoing conditions or circumstances occurring over more than one specific day. These dates may be entered using the FROM and/or TO date modifiers (for example, FROM 3 Apr 1901 TO 31 Mar 1911).
These date modifiers also allow for open-ended dating (for example, FROM 1835).

Calendar Changes

The calendar changed from the "Old Style" Julian Calendar to today's Gregorian Calendar starting 1582 ('mainland' Europe) and 1752 (Britain and North America).
If the event you are entering occurred during or before 1752 (Britain and North America) or 1582 (Europe) you must be very careful when entering the date; spend some time researching the Gregorian Calendar first.

Date Unknown

unknown is not acceptable as a date modifier when entering dates in any standard genealogical context, including the TNG environment. Don't use it when asked for a date in TNG. In every case you should be able to choose a suitable date modifier as described above, even if it's as wildly vague as BEF 2011!
If you're absolutely unable to estimate a date, but know the event happened, the designers of the GEDCOM standard suggest you use the date modifier Y as explained in the following excerpt:

The meaning of a GEDCOM tag without a value on its line depends on its subordinate context for any assertions intended by the researcher. For example, In an event structure, a subordinate DATE and/or PLACe value imply that an event happened. However, a subordinate NOTE or SOURce context by themselves do not imply that the event took place. For a researcher to indicate that an event took place without knowing a date or a place requires that a Y(es) value be added to the event tag line. Using this convention protects GEDCOM processors which may remove (prune) lines that have no value and also no subordinate lines. A N(o) value must not be used on an event tag line to assert that the event never happened.

There is some doubt that the procedures that examine and work with dates in the current version of TNG (8.1) recognize Y in its 'null' date modifier role.

GEDCOM Date Modifier Descriptions

excerpted from http: // www. gedcom . net/0g/gedcom55/55gcint.htm (site deleted):

DATE APPROXIMATED

ABT date
CAL date
EST date

Where:

ABT =About, meaning the date is not exact.
CAL =Calculated mathematically, for example, from an event date and age.
EST =Estimated based on an algorithm using some other event date.

Examples:

ABT 1871
CAL 21 Sep 1799
EST Apr 1913

DATE PERIOD

FROM date
TO date
FROM startdate TO enddate

Where:

FROM =Indicates the beginning of a happening or state.
TO =Indicates the ending of a happening or state.

Examples:

From 1904 to 1915 =The state of some attribute existed from 1904 to 1915 inclusive.
FROM 1904 =The state of the attribute began in 1904 but the end date is unknown.
TO 1915 =The state ended in 1915 but the begin date is unknown.

DATE RANGE

BEF date
AFT date
BET startdate AND enddate

Where:

AFT =Event happened after the given date.
BEF =Event happened before the given date.
BET =Event happened some time between date 1 AND date 2. For example, bet 1904 and 1915 indicates that the event state (perhaps a single day) existed somewhere between 1904 and 1915 inclusive.
The date range differs from the date period in that the date range is an estimate that an event happened on a single date somewhere in the date range specified. The following are equivalent and interchangeable:
Short form  Long Form
----------  ---------
1852        BET 1 JAN 1852 AND 31 DEC 1852
1852        BET 1 JAN 1852 AND DEC 1852
1852        BET JAN 1852 AND 31 DEC 1852
1852        BET JAN 1852 AND DEC 1852
JAN 1920    BET 1 JAN 1920 AND 31 JAN 1920

If you enter dates directly in the TNG Admin screens instead of importing a GEDCOM file, you will see a note that dates should be entered in DD MON YYYY format. The nuanced GEDCOM date modifiers can be hard to remember so you may find it useful to add an explanation.

Snag 2c467b71.png

Add this entry to cust_text.php in language file

//Add info about GEDCOM modifiers to date notes.  Everything before the first <ul> is standard TNG text and the rest is custom.  Line breaks added for clarity here
$admtext['datenote'] = "<strong>Note:</strong> When entering dates, please use the standard genealogical format DD MMM YYYY. For example, 10 Apr 2004.
<ul>
<li>You may omit the day, or the day and month
<li>You may add GEDCOM modifiers in upper or sentence case e.g. ABT or Abt:
<ul><strong>SINGLE DATES</strong>
<li><strong>ABT</strong> for About e.g. <strong>ABT 1900</strong> when the date is unknown and none fothe following modifiers applies
<li><strong>AFT</strong> for After e.g. <strong>AFT 06 APR 1900</strong> when you know that an unknown date follows another, such as a burial date following a death
<li><strong>BEF</strong> for Before e.g. <strong>BEF 06 APR 1900</strong> when you know that an unknown date precedes another, such as a birth date preceding a christening
<li><strong>CAL</strong> for Calculated e.g. <strong>CAL 1900</strong> when you can infer a date from two or more other facts, such as a person being eleven years old on the 1911 Census
<li><strong>EST</strong> for Estimated e.g. <strong>EST 1900</strong> when you extrapolate a date from another, such as estimating the birth date of a parent from the birth date of their first child
<li><strong>FROM</strong> e.g. <strong>FROM APR 1900</strong> when an event such as residence occurs from a known date (also see FROM ...  TO)
<li><strong>INT</strong> for Interpreted e.g. <strong>INT 29 SEP 1900</strong> when a date can be derived from date phrase such as 'Michaelmas Day 1900.'  INT is rare and you could simply enter this as a pure date without a modifier.  Either way, you should add the actual date phrase as a note to the date.  
<li><strong>TO</strong> e.g. <strong>TO 1900</strong> when an event such as residence occurs up to a known date (also see FROM ...  TO)</li>
<strong>DATE RANGES</strong>
<li><strong>BET ... AND</strong> e.g. <strong>BET APR 1900 AND JUN 1900</strong> when a one-off event such as birth occurs between two dates.  The classic use for this is to represent British quarter dates for entries in the BMD registers
<li><strong>FROM ... TO</strong> e.g. <strong>FROM APR 1900 TO MAR 1901</strong> when a continuous event such as residence occurs from one date to another
</ul></ul>";  

Inputting Dates in Multi-Language Environment

See Inputting Dates - Eingabemoeglichkeiten on guidelines for inputting dates in a multi-language environment.