Module gedcom.tags
GEDCOM tags.
Expand source code
# -*- coding: utf-8 -*-
# Python GEDCOM Parser
#
# Copyright (C) 2018 Damon Brodie (damon.brodie at gmail.com)
# Copyright (C) 2018-2019 Nicklas Reincke (contact at reynke.com)
# Copyright (C) 2016 Andreas Oberritter
# Copyright (C) 2012 Madeleine Price Ball
# Copyright (C) 2005 Daniel Zappala (zappala at cs.byu.edu)
# Copyright (C) 2005 Brigham Young University
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Further information about the license: http://www.gnu.org/licenses/gpl-2.0.html
"""
GEDCOM tags.
"""
GEDCOM_PROGRAM_DEFINED_TAG_MREL = "_MREL"
"""Value: `_MREL`
Relationship to a mother."""
GEDCOM_PROGRAM_DEFINED_TAG_FREL = "_FREL"
"""Value: `_FREL`
Relationship to a father."""
GEDCOM_TAG_BIRTH = "BIRT"
"""Value: `BIRT`
The event of entering into life."""
GEDCOM_TAG_BURIAL = "BURI"
"""Value: `BURI`
The event of the proper disposing of the mortal remains of a deceased person."""
GEDCOM_TAG_CENSUS = "CENS"
"""Value: `CENS`.
The event of the periodic count of the population for a designated locality, such as a national or state Census."""
GEDCOM_TAG_CHANGE = "CHAN"
"""Value: `CHAN`
Indicates a change, correction, or modification. Typically used in connection
with a `gedcom.tags.GEDCOM_TAG_DATE` to specify when a change in information occurred."""
GEDCOM_TAG_CHILD = "CHIL"
"""Value: `CHIL`
The natural, adopted, or sealed (LDS) child of a father and a mother."""
GEDCOM_TAG_CONCATENATION = "CONC"
"""Value: `CONC`
An indicator that additional data belongs to the superior value. The information from the `CONC` value is to
be connected to the value of the superior preceding line without a space and without a carriage return and/or
new line character. Values that are split for a `CONC` tag must always be split at a non-space. If the value is
split on a space the space will be lost when concatenation takes place. This is because of the treatment that
spaces get as a GEDCOM delimiter, many GEDCOM values are trimmed of trailing spaces and some systems look for
the first non-space starting after the tag to determine the beginning of the value."""
GEDCOM_TAG_CONTINUED = "CONT"
"""Value: `CONT`
An indicator that additional data belongs to the superior value. The information from the `CONT` value is to be
connected to the value of the superior preceding line with a carriage return and/or new line character.
Leading spaces could be important to the formatting of the resultant text. When importing values from `CONT` lines
the reader should assume only one delimiter character following the `CONT` tag. Assume that the rest of the leading
spaces are to be a part of the value."""
GEDCOM_TAG_DATE = "DATE"
"""Value: `DATE`
The time of an event in a calendar format."""
GEDCOM_TAG_DEATH = "DEAT"
"""Value: `DEAT`
The event when mortal life terminates."""
GEDCOM_TAG_FAMILY = "FAM"
"""Value: `FAM`.
Identifies a legal, common law, or other customary relationship of man and woman and their children,
if any, or a family created by virtue of the birth of a child to its biological father and mother."""
GEDCOM_TAG_FAMILY_CHILD = "FAMC"
"""Value: `FAMC`
Identifies the family in which an individual appears as a child."""
GEDCOM_TAG_FAMILY_SPOUSE = "FAMS"
"""Value: `FAMS`
Identifies the family in which an individual appears as a spouse."""
GEDCOM_TAG_FILE = "FILE"
"""Value: `FILE`
An information storage place that is ordered and arranged for preservation and reference."""
GEDCOM_TAG_GIVEN_NAME = "GIVN"
"""Value: `GIVN`
A given or earned name used for official identification of a person."""
GEDCOM_TAG_HUSBAND = "HUSB"
"""Value: `HUSB`
An individual in the family role of a married man or father."""
GEDCOM_TAG_INDIVIDUAL = "INDI"
"""Value: `INDI`
A person."""
GEDCOM_TAG_MARRIAGE = "MARR"
"""Value: `MARR`.
A legal, common-law, or customary event of creating a family unit of a man and a woman as husband and wife."""
GEDCOM_TAG_NAME = "NAME"
"""Value: `NAME`.
A word or combination of words used to help identify an individual, title, or other item.
More than one NAME line should be used for people who were known by multiple names."""
GEDCOM_TAG_OBJECT = "OBJE"
"""Value: `OBJE`
Pertaining to a grouping of attributes used in describing something. Usually referring to the data required
to represent a multimedia object, such an audio recording, a photograph of a person, or an image of a document."""
GEDCOM_TAG_OCCUPATION = "OCCU"
"""Value: `OCCU`
The type of work or profession of an individual."""
GEDCOM_TAG_PLACE = "PLAC"
"""Value: `PLAC`
A jurisdictional name to identify the place or location of an event."""
GEDCOM_TAG_PRIVATE = "PRIV"
"""Value: `PRIV`
Flag for private address or event."""
GEDCOM_TAG_SEX = "SEX"
"""Value: `SEX`
Indicates the sex of an individual--male or female."""
GEDCOM_TAG_SOURCE = "SOUR"
"""Value: `SOUR`
The initial or original material from which information was obtained."""
GEDCOM_TAG_SURNAME = "SURN"
"""Value: `SURN`
A family name passed on or used by members of a family."""
GEDCOM_TAG_WIFE = "WIFE"
"""Value: `WIFE`
An individual in the role as a mother and/or married woman."""
Global variables
-
Value:
_FREL
Relationship to a father.
-
Value:
_MREL
Relationship to a mother.
-
Value:
BIRT
The event of entering into life.
-
Value:
BURI
The event of the proper disposing of the mortal remains of a deceased person.
-
Value:
CENS
.The event of the periodic count of the population for a designated locality, such as a national or state Census.
-
Value:
CHAN
Indicates a change, correction, or modification. Typically used in connection with a
GEDCOM_TAG_DATE
to specify when a change in information occurred. -
Value:
CHIL
The natural, adopted, or sealed (LDS) child of a father and a mother.
-
Value:
CONC
An indicator that additional data belongs to the superior value. The information from the
CONC
value is to be connected to the value of the superior preceding line without a space and without a carriage return and/or new line character. Values that are split for aCONC
tag must always be split at a non-space. If the value is split on a space the space will be lost when concatenation takes place. This is because of the treatment that spaces get as a GEDCOM delimiter, many GEDCOM values are trimmed of trailing spaces and some systems look for the first non-space starting after the tag to determine the beginning of the value. -
Value:
CONT
An indicator that additional data belongs to the superior value. The information from the
CONT
value is to be connected to the value of the superior preceding line with a carriage return and/or new line character. Leading spaces could be important to the formatting of the resultant text. When importing values fromCONT
lines the reader should assume only one delimiter character following theCONT
tag. Assume that the rest of the leading spaces are to be a part of the value. -
Value:
DATE
The time of an event in a calendar format.
-
Value:
DEAT
The event when mortal life terminates.
-
Value:
FAM
.Identifies a legal, common law, or other customary relationship of man and woman and their children, if any, or a family created by virtue of the birth of a child to its biological father and mother.
-
Value:
FAMC
Identifies the family in which an individual appears as a child.
-
Value:
FAMS
Identifies the family in which an individual appears as a spouse.
-
Value:
FILE
An information storage place that is ordered and arranged for preservation and reference.
-
Value:
GIVN
A given or earned name used for official identification of a person.
-
Value:
HUSB
An individual in the family role of a married man or father.
-
Value:
INDI
A person.
-
Value:
MARR
.A legal, common-law, or customary event of creating a family unit of a man and a woman as husband and wife.
-
Value:
NAME
.A word or combination of words used to help identify an individual, title, or other item. More than one NAME line should be used for people who were known by multiple names.
-
Value:
OBJE
Pertaining to a grouping of attributes used in describing something. Usually referring to the data required to represent a multimedia object, such an audio recording, a photograph of a person, or an image of a document.
-
Value:
OCCU
The type of work or profession of an individual.
-
Value:
PLAC
A jurisdictional name to identify the place or location of an event.
-
Value:
PRIV
Flag for private address or event.
-
Value:
SEX
Indicates the sex of an individual–male or female.
-
Value:
SOUR
The initial or original material from which information was obtained.
-
Value:
SURN
A family name passed on or used by members of a family.
-
Value:
WIFE
An individual in the role as a mother and/or married woman.