Maria-Edgeworth-Letters-Project / me-tei

Repository holding TEI XML and documentation for MELP.
Other
1 stars 4 forks source link

Add collective names to personography #35

Closed mlhale7 closed 7 months ago

mlhale7 commented 8 months ago

Research needs to be done to see how family names and other collective names might be added to the personography. This does not include corporate names for businesses, etc.

@elizawilcox suggested looking at <orgName> They came across this need in Edgeworth_Bodleian_696_10_29 with "the Hopes".

For reference, here's how a family entry is formatted according to Library of Congress standards - http://id.loc.gov/authorities/names/no2019175102

For non-familial collectives, we could consider https://tei-c.org/release/doc/tei-p5-doc/en/html/ND.html#NDPERSREL

All should feel free to comment with suggestions. I'll share possibilities as I make them.

mlhale7 commented 7 months ago

@s-egenolf @aelagrand @hilaryhavens @elizawilcox

Wanted to include additional examples here we could adopt. The Map of Early Modern London includes <note> within <person> for additional information. See for instance:

<person xml:id="FRAN4" sex="2">
      <persName type="hist">
            <reg>Elizabeth Francis</reg>
            <forename>Elizabeth</forename>
            <surname>Francis</surname>
</persName>
<death cert="low" when-custom="1450" datingMethod="mol:julianSic"/>
      <note>
            <p>
                  Wife of
                  <name ref="mol:FRAN3">John Francis</name>
                  . Monument at
                  <ref target="mol:STJO6">St. John Zachary</ref>
                  .
            </p>
      </note>
</person>

Also:

<person xml:id="FITZ28" sex="1">
  <persName type="hist">
    <reg>Sir Walter Fitzwalter</reg>
    <roleName>Sir</roleName>
    <forename>Walter</forename>
    <surname>Fitzwalter</surname>
    <addName>
      <nameLink>fitz</nameLink>
       Robert
    </addName>
  </persName>
  <death when-custom="1258" datingMethod="mol:julianSic"/>
  <note>
    <p>
    Son of
    <name ref="mol:FITZ68">Robert Fitzwalter</name>
    . Father of
    <name ref="mol:FITZ13">Lord Robert Fitzwalter</name>
    . See related
    <ref target="https://doi.org/10.1093/ref:odnb/54522">
      <title level="m">ODNB</title>
    entry
    </ref>
    for the Fitzwalter family.
  </p>
</note>
</person>
mlhale7 commented 7 months ago

This article has ideas to consider in 3.3 and 3.4 - https://journals.openedition.org/jtei/1365#tocfrom2n4

mlhale7 commented 7 months ago

Yellow Nineties has relationship info represented in triples - https://lincsproject.ca/docs/explore-data/project-datasets/yellow-nineties/yellow-nineties-application-profile#relationships

elizawilcox commented 7 months ago

I think the Early Modern England Map might be helpful for places where we have fewer identifying characteristics as well, like "sister of Mrs. Irwin" might look like this

<p>
  I talked to <person>
      <persName ref="./Personography.xml#IrwiX2">
          Mrs. Irwin's</persName>
      <persName ref="./Personography.xml#Anon1">
          <p>
              <note ref="./Personography.xml#IrwiX2">sister
              </note>
          </p>
      </persName>
  </person>  
</p>

This validates, but I'm not sure if it does what we want in corpora. I think the Yellow Nineties would be a good model for reciprocality as well, I just don't know how to do TTL to TEI.

For the orgName, I played around and came up with this:

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<p>
  I talked to the <person><persName><persName>ref="./Personography.xml#BailJ1"><persName ref="./Personography.xml#BailM1"></persName>
      <orgName ref="./Orgography.xml#BailX1">
      Baillies</orgName>
  </persName></persName>
</person>
</p>

It's messy, but what I was trying to retain was how to insert an orgName (collective) that would still pull up when searched collectively AND individually. We probably need something more streamlined than this, but that's what I've been working on/brainstorming, and it does validate in oXygen.

mlhale7 commented 7 months ago

I think adding something like this below to the personography might work and be a bit more structured than the Maps of London example:

         <listRelation>
             <relation ref="https://dbpedia.org/ontology/parent" active="#EdgeR1" passive="#EdgeM1"/>
         </listRelation>

The issue would be figuring out all of the relationships we'd want to represent (here I just have parent).

elizawilcox commented 7 months ago

I think that would be less chaotic, and I think it might help in the long run if we are thinking about data visualization, or using this to create networks of people.

On Thursday, March 7, 2024, mlhale7 @.***> wrote:

I think adding something like this below to the personography might work and be a bit more structured than the Maps of London example:

     <listRelation>
         <relation ref="https://dbpedia.org/ontology/parent" active="#EdgeR1" passive="#EdgeM1"/>
     </listRelation>

The issue would be figuring out all of the relationships we'd want to represent (here I just have parent).

— Reply to this email directly, view it on GitHub https://github.com/Maria-Edgeworth-Letters-Project/me-tei/issues/35#issuecomment-1984145830, or unsubscribe https://github.com/notifications/unsubscribe-auth/AX4F26243T6OKNXUMRZMCNLYXCUSFAVCNFSM6AAAAABDVSUG3KVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTSOBUGE2DKOBTGA . You are receiving this because you were mentioned.Message ID: @.***>

-- Eliza Alexander Wilcox, M.A. Pronouns: they/she Graduate Teaching Associate My work day may look different from your work day. Please do not feel obligated to respond outside of your normal working hours.

mlhale7 commented 7 months ago

Something like https://dbpedia.org/ontology/familyMember might be better for us to use than specifying specific family relationships (parent, sibling, etc.)

elizawilcox commented 7 months ago

That would definitely simplify things but still leave it open to more detail later down the road if that's wanted/warranted

mlhale7 commented 7 months ago

We decided in our meeting we'll use https://tei-c.org/release/doc/tei-p5-doc/en/html/ref-personGrp.html

<relation> doesn't meet the need of having a unique ID for the collective (and requires a lot of work).

hilaryhavens commented 7 months ago

That is correct - thank you very much, Meredith!