Visar inlägg med etikett Wikitree. Visa alla inlägg
Visar inlägg med etikett Wikitree. Visa alla inlägg
fredag 6 april 2018
lördag 16 juli 2016
WikiTree "fields" in WikiData
WikiTree "fields" in WikiData
# WikiTree "fields" in WikiData## WikiTreeID wdt:P2949
## GivenName wdt:P735
## Birth Name wdt:P1477
## Family Name wdt:P734
## Name in native language wdt:P1559
## BirthDate wdt:P569
## BirthLocation wdt:P19
## Father wdt:P22
## Stepfather wdt:P43
## Mother wdt:P25
## Spouse wdt:P26
## Sister wdt:P9
## Brother wdt:P7
## Children wdt:P40
## Relatives wdt:P1038
## DeathDate wdt:P570
## DeathLocation wdt:P20
## PlaceofBurial wdt:P119
Select
?person
?personLabel
?personDescription
?WikiTree
?BirthName
?BirthDate
?BirthLocationLabel
?MotherLabel ?Mother
?FatherLabel ?Father
?SpouseLabel ?Spouse
?DeathDate
?DeathLocationLabel
?FindAGraveID
?pic
where
{
?person wdt:P2949 ?WikiTreeID . # All item with WikiTreeID
OPTIONAL { ?person wdt:P569 ?BirthDate} # P569 Birth
OPTIONAL { ?person wdt:P19 ?BirthLocation .} # P19 Place of Birth
OPTIONAL { ?person wdt:P22 ?Father .} # P22 father
OPTIONAL { ?person wdt:P25 ?Mother .} # P25 mother
OPTIONAL { ?person wdt:P26 ?Spouse .} # P26 spuse
OPTIONAL { ?person wdt:P570 ?DeathDate .} # P570 Death date
OPTIONAL { ?person wdt:P20 ?DeathLocation .} # P20 Place of Death
# OPTIONAL { ?person wdt:P119 ?PlaceofBurial .} # P119 Place of Burial
OPTIONAL { ?person wdt:P18 ?pic .} # If Wikidata has a illustration
OPTIONAL { ?person wdt:P535 ?FindAGrave .} # FindAGrave
BIND (URI(CONCAT("http://www.wikitree.com/wiki/",?WikiTreeID)) AS ?WikiTree)
BIND (URI(CONCAT("http://www.findagrave.com/cgi-bin/fg.cgi?page=gr&df=all&GRid=",?FindAGrave)) AS ?FindAGravef)
SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}
limit 10
Former countries timeline
Timeline tool
- Former countries (take some time)
claim[31:(TREE[3024240][][279])] AND CLAIM[571]
==>
Claim 31
Claim 571 - Former Countries content Asia
fredag 15 juli 2016
People with citizenship in Indonesia
* Query URL
* Query Image gallery of people in Wikidata Indonesia and also have WikiTree P2949 attribute set - Result - URL query
# People with citizenship in Indonesia on a map with Birth Death and burial locations
# If Wikitree property set you will have a link
#defaultView:Map
Select ?person ?personLabel ?WikiTreeIDf ?pic ?coord ?coord2 ?coord3 ?BirthDate ?DeathDate {
?person wdt:P27 wd:Q252 # P27 country of citizenship Q252 Indonesia
OPTIONAL {?person wdt:P2949 ?WikiTreeID} # P2949 all Wikidata articles with WikiTree id set
BIND (URI(CONCAT("http://www.wikitree.com/wiki/",?WikiTreeID)) AS ?WikiTreeIDf)
OPTIONAL {?person wdt:P18 ?pic}
OPTIONAL { ?person wdt:P19 ?loc . # P19 Place of Birth
?loc wdt:P625 ?coord } . # Get coordinates from Place of Birth
OPTIONAL { ?person wdt:P20 ?loc2 . # P19 Place of Death
?loc2 wdt:P625 ?coord2 } . # Get coordinates from Place of Death
OPTIONAL { ?person wdt:P119 ?loc3 . # P19 Place of Burial
?loc3 wdt:P625 ?coord3 } . # Get coordinates from Place of Burial
OPTIONAL {?person wdt:P569 ?BirthDate}
OPTIONAL {?person wdt:P570 ?DeathDate}
SERVICE wikibase:label {bd:serviceParam wikibase:language "en" }
}
ORDER BY ?BirthDate
Same search but people with a picture are displayed with pictures
Another search https://goo.gl/7BXiyo
Countries in Asia
Query URL - Result
Locator Image - Result
Alternative names - Result
# Query countries in Asia
#
SELECT DISTINCT ?country ?countryLabel ?head ?headLabel ?founded
WHERE
{
?country wdt:P31 wd:Q6256 . # countries
?country wdt:P30 wd:Q48 . # part of continent Asia
# ?country wdt:P1549 ?demony .
# SERVICE wikibase:label { bd:serviceParam wikibase:language "en". } #English
?country wdt:P35 ?head
OPTIONAL { ?country wdt:P571 ?founded}
SERVICE wikibase:label { bd:serviceParam wikibase:language "fr". } #Frensch
}
Order By ?countryLabel
LIMIT 100
----
List geographical features in WikiData
Locator Image - Result
Alternative names - Result
# Query countries in Asia
#
SELECT DISTINCT ?country ?countryLabel ?head ?headLabel ?founded
WHERE
{
?country wdt:P31 wd:Q6256 . # countries
?country wdt:P30 wd:Q48 . # part of continent Asia
# ?country wdt:P1549 ?demony .
# SERVICE wikibase:label { bd:serviceParam wikibase:language "en". } #English
?country wdt:P35 ?head
OPTIONAL { ?country wdt:P571 ?founded}
SERVICE wikibase:label { bd:serviceParam wikibase:language "fr". } #Frensch
}
Order By ?countryLabel
LIMIT 100
----
List geographical features in WikiData
- Africa Q15 continent
- Asia Q48 continent
- Europe Q46 continent
- North America Q49 continent
- Ocianien Q538 continent
- South America Q18 continent
- All countries query - result with WikiTree profile if available of head of state
Getting award for Best director
Query URL
# Directors that have received prize for best director
SELECT DISTINCT ?item ?itemLabel ?pWikiTreeID ?awardLabel ?time
WHERE {
?item wdt:P106/wdt:P279* wd:Q3455803 . # Items with the Occupation(P106) of Director(Q3455803) or a subclass(P279)
?item p:P166 ?awardStat . # ... with an awarded(P166) statement
?awardStat ps:P166 wd:Q103360 . # ... that has the value Academy Award for Best Director(Q103360)
SERVICE wikibase:label { # ... include the labels
bd:serviceParam wikibase:language "en" .
}
?awardStat pq:P805 ?award . # Get the award (which is "subject of" XXth Academy Awards)
?award rdfs:label ?awardLabel filter (lang(?awardLabel) = "en") . # ... and its label
?award wdt:P585 ?time . # the "point of time" of the Academy Award
OPTIONAL{ ?item wdt:P2949 ?pWikiTreeID .}
BIND (URI(CONCAT("http://www.wikitree.com/wiki/",?WikiTreeID)) AS ?WikiTreeIDf)
}
ORDER BY DESC(?time)
# Directors that have received prize for best director
SELECT DISTINCT ?item ?itemLabel ?pWikiTreeID ?awardLabel ?time
WHERE {
?item wdt:P106/wdt:P279* wd:Q3455803 . # Items with the Occupation(P106) of Director(Q3455803) or a subclass(P279)
?item p:P166 ?awardStat . # ... with an awarded(P166) statement
?awardStat ps:P166 wd:Q103360 . # ... that has the value Academy Award for Best Director(Q103360)
SERVICE wikibase:label { # ... include the labels
bd:serviceParam wikibase:language "en" .
}
?awardStat pq:P805 ?award . # Get the award (which is "subject of" XXth Academy Awards)
?award rdfs:label ?awardLabel filter (lang(?awardLabel) = "en") . # ... and its label
?award wdt:P585 ?time . # the "point of time" of the Academy Award
OPTIONAL{ ?item wdt:P2949 ?pWikiTreeID .}
BIND (URI(CONCAT("http://www.wikitree.com/wiki/",?WikiTreeID)) AS ?WikiTreeIDf)
}
ORDER BY DESC(?time)
torsdag 14 juli 2016
House of Windsor P53 Noble family Q81589 House of Windsor
Some queries on the house of Windsor
Query URL
# People in the House Of Windsor on a map with Birth Death and burial locations
# If Wikitree property set you will have a link
#defaultView:Map
Select ?person ?personLabel ?WikiTreeIDf ?pic ?coord ?coord2 ?coord3 {
?person wdt:P53 wd:Q81589 # P53 Noble family Q81589 House of Windsor
OPTIONAL {?person wdt:P2949 ?WikiTreeID} # P2949 all Wikidata articles with WikiTree id set
BIND (URI(CONCAT("http://www.wikitree.com/wiki/",?WikiTreeID)) AS ?WikiTreeIDf)
OPTIONAL {?person wdt:P18 ?pic}
OPTIONAL { ?person wdt:P19 ?loc . # P19 Place of Birth
?loc wdt:P625 ?coord } . # Get coordinates from Place of Birth
OPTIONAL { ?person wdt:P20 ?loc2 . # P20 Place of Death
?loc2 wdt:P625 ?coord2 } . # Get coordinates from Place of Death
OPTIONAL { ?person wdt:P119 ?loc3 . # P119 Place of Burial
?loc3 wdt:P625 ?coord3 } . # Get coordinates from Place of Burial
SERVICE wikibase:label {bd:serviceParam wikibase:language "en" }
}
ORDER BY DESC(?WikiTreeIDf)
- Number of people in Wikipedia set up belonging to House of Windsor
- ?person wdt:P53 wd:Q81589
- House of Windsor 49 members today in Wikidata
- Connected to Wikitree are 47 profiles
- Profiles in Wikidata not connected to WikiTree are 2 people
Query URL
# People in the House Of Windsor on a map with Birth Death and burial locations
# If Wikitree property set you will have a link
#defaultView:Map
Select ?person ?personLabel ?WikiTreeIDf ?pic ?coord ?coord2 ?coord3 {
?person wdt:P53 wd:Q81589 # P53 Noble family Q81589 House of Windsor
OPTIONAL {?person wdt:P2949 ?WikiTreeID} # P2949 all Wikidata articles with WikiTree id set
BIND (URI(CONCAT("http://www.wikitree.com/wiki/",?WikiTreeID)) AS ?WikiTreeIDf)
OPTIONAL {?person wdt:P18 ?pic}
OPTIONAL { ?person wdt:P19 ?loc . # P19 Place of Birth
?loc wdt:P625 ?coord } . # Get coordinates from Place of Birth
OPTIONAL { ?person wdt:P20 ?loc2 . # P20 Place of Death
?loc2 wdt:P625 ?coord2 } . # Get coordinates from Place of Death
OPTIONAL { ?person wdt:P119 ?loc3 . # P119 Place of Burial
?loc3 wdt:P625 ?coord3 } . # Get coordinates from Place of Burial
SERVICE wikibase:label {bd:serviceParam wikibase:language "en" }
}
ORDER BY DESC(?WikiTreeIDf)
WikiData people with Australia citizenship
Query URL
# People with citizenship in Australia on a map with Birth Death and burial locations
# If Wikitree property set you will have a link
#defaultView:Map
Select ?person ?personLabel ?WikiTreeIDf ?pic ?coord ?coord2 ?coord3 ?BirthDate ?DeathDate {
?person wdt:P27 wd:Q408 # P27 country of citizenship Q408 Australia
OPTIONAL {?person wdt:P2949 ?WikiTreeID} # P2949 all Wikidata articles with WikiTree id set
BIND (URI(CONCAT("http://www.wikitree.com/wiki/",?WikiTreeID)) AS ?WikiTreeIDf)
OPTIONAL {?person wdt:P18 ?pic}
OPTIONAL { ?person wdt:P19 ?loc . # P19 Place of Birth
?loc wdt:P625 ?coord } . # Get coordinates from Place of Birth
OPTIONAL { ?person wdt:P20 ?loc2 . # P19 Place of Death
?loc2 wdt:P625 ?coord2 } . # Get coordinates from Place of Death
OPTIONAL { ?person wdt:P119 ?loc3 . # P19 Place of Burial
?loc3 wdt:P625 ?coord3 } . # Get coordinates from Place of Burial
OPTIONAL {?person wdt:P569 ?BirthDate}
OPTIONAL {?person wdt:P570 ?DeathDate}
SERVICE wikibase:label {bd:serviceParam wikibase:language "en" }
}
ORDER BY ?BirthDate
?person wdt:P463 wd:Q266063 #People member of Slovenian Academy of Science and Art
Query URL
People member of Slovenian Academy of Science and Art
# People member of the Slovenian Acedemy of Science and Art on a map with Birth Death and burial locations
# If Wikitree property set you will have a link
#defaultView:Map
Select ?person ?personLabel ?WikiTreeIDf ?pic ?coord ?coord2 ?coord3 ?BirthDate ?DeathDate {
?person wdt:P463 wd:Q266063 # P463 member of Q266063 Slovenien Academi of Science and Art
OPTIONAL {?person wdt:P2949 ?WikiTreeID} # P2949 all Wikidata articles with WikiTree id set
BIND (URI(CONCAT("http://www.wikitree.com/wiki/",?WikiTreeID)) AS ?WikiTreeIDf)
OPTIONAL {?person wdt:P18 ?pic}
OPTIONAL { ?person wdt:P19 ?loc . # P19 Place of Birth
?loc wdt:P625 ?coord } . # Get coordinates from Place of Birth
OPTIONAL { ?person wdt:P20 ?loc2 . # P19 Place of Death
?loc2 wdt:P625 ?coord2 } . # Get coordinates from Place of Death
OPTIONAL { ?person wdt:P119 ?loc3 . # P19 Place of Burial
?loc3 wdt:P625 ?coord3 } . # Get coordinates from Place of Burial
OPTIONAL {?person wdt:P569 ?BirthDate}
OPTIONAL {?person wdt:P570 ?DeathDate}
SERVICE wikibase:label {bd:serviceParam wikibase:language "en" }
}
ORDER BY ?BirthDate
Query people with Slovenien citizenship in WikiData = ?person wdt:P27 wd:Q215
People member of Slovenian Academy of Science and Art
# People member of the Slovenian Acedemy of Science and Art on a map with Birth Death and burial locations
# If Wikitree property set you will have a link
#defaultView:Map
Select ?person ?personLabel ?WikiTreeIDf ?pic ?coord ?coord2 ?coord3 ?BirthDate ?DeathDate {
?person wdt:P463 wd:Q266063 # P463 member of Q266063 Slovenien Academi of Science and Art
OPTIONAL {?person wdt:P2949 ?WikiTreeID} # P2949 all Wikidata articles with WikiTree id set
BIND (URI(CONCAT("http://www.wikitree.com/wiki/",?WikiTreeID)) AS ?WikiTreeIDf)
OPTIONAL {?person wdt:P18 ?pic}
OPTIONAL { ?person wdt:P19 ?loc . # P19 Place of Birth
?loc wdt:P625 ?coord } . # Get coordinates from Place of Birth
OPTIONAL { ?person wdt:P20 ?loc2 . # P19 Place of Death
?loc2 wdt:P625 ?coord2 } . # Get coordinates from Place of Death
OPTIONAL { ?person wdt:P119 ?loc3 . # P19 Place of Burial
?loc3 wdt:P625 ?coord3 } . # Get coordinates from Place of Burial
OPTIONAL {?person wdt:P569 ?BirthDate}
OPTIONAL {?person wdt:P570 ?DeathDate}
SERVICE wikibase:label {bd:serviceParam wikibase:language "en" }
}
ORDER BY ?BirthDate
Query people with Slovenien citizenship in WikiData = ?person wdt:P27 wd:Q215
Etiketter:
WikiData SPARQL,
WikiDataMap,
Wikitree
måndag 28 september 2015
Using Personal Categories in Wikitree
One challenge with genealogy is to get some structure of your work.
I have started to use wikitree for my research which is a free family tree with one tree. In this tool you get a lot of profiles and as always its easy that you dont "find back" when you should do some specific research like Military research or you are at a place were you have access to a specific database. By using categories I can mark the wikitree profiles that this profile should be followed up when I do military research etc...
See video
I use on all profiles I work with that have a person who has visit prison
Category:Sälgö-1_To_Do_List_PrisonRecords
I use on all profiles I work with that have a person who has been a soldier
Category:Sälgö-1_To_Do_List_MilitaryRecords
==> When I next week will visit the war archive in Stockholm, Sweden it will be easy to find all profiles that are interested to do more research on in this archive
See video above
All my subcategories
http://www.wikitree.com/wiki/Category:S%C3%A4lg%C3%B6-1_To_Do_List
I have started to use wikitree for my research which is a free family tree with one tree. In this tool you get a lot of profiles and as always its easy that you dont "find back" when you should do some specific research like Military research or you are at a place were you have access to a specific database. By using categories I can mark the wikitree profiles that this profile should be followed up when I do military research etc...
See video
I use on all profiles I work with that have a person who has visit prison
Category:Sälgö-1_To_Do_List_PrisonRecords
I use on all profiles I work with that have a person who has been a soldier
Category:Sälgö-1_To_Do_List_MilitaryRecords
==> When I next week will visit the war archive in Stockholm, Sweden it will be easy to find all profiles that are interested to do more research on in this archive
See video above
All my subcategories
http://www.wikitree.com/wiki/Category:S%C3%A4lg%C3%B6-1_To_Do_List
onsdag 17 juni 2015
Wikitree sections
Use a Timeline - swedish Tidslinje
Makes it easier to follow the life of the person and also to add the references to the correct event
From profile West_Euren-1

to "reuse" a source use the name tag ==>
<ref name="v4419.b22.s15">Järn AI:14 (1861-1865) Image 22 / page 15 (AID: v4419.b22.s15, NAD: SE/GLA/13264)</ref>
to "reuse" the source then
<ref name="v4419.b22.s15"/>
Use a Research Notes section
Intention is to tell what has been done and what are still open issuesTo Do section
Explain whats next to do
Personal Categories
Used to mark profiles where more work is needed or they are part of DNA research or is a Free space
- Add [[Category:Sälgö-1]] to your profile
where Sälgö-1 is my Wikitree ID
See http://www.wikitree.com/wiki/Category:S%C3%A4lg%C3%B6-1 - Add subcategories for e.g.
- To Do [[Category:Sälgö-1_ToDo]]
- DNA research [[Category:Sälgö-1_DNA]]
- Free space profiles [[Category:Sälgö-1_space_started]]
- Then add subcategories for TODO e.g.
- To Do Check Military Records [[Category:Sälgö-1_To_Do_List_Check_MilitaryRecords]]
tisdag 2 juni 2015
Wikitree api
Found the API fro Wikitree
söndag 19 oktober 2014
Ancestry -> Wikitree
Har haft Ancestry abonnemang World de Lux i allt för många år och flyttar trädet till Wikitree
Bra med Ancestry
Ärendehistorik Svar Visa e-post (Tor)
2014-10-24 07:49 AM
Hej Magnus,
Tack för att du kontaktat oss på Ancestry angående vårt erbjudande.
Vi skickar ut erbjudanden till personer med pågående abonnemang en inte särskilt ofta. Om man har ett aktivt abonnemang har man ofta inte särskilt mycket nytta av att få rabatt på en annan sorts abonnemang.
Vi hoppas kunna få DNA-tester till Sverige och jobbar för att göra detta, jag kan dock inte säga när detta kan komma att ske. Anledningen till detta är mest att det är mycket tillstånd och liknande som krävs för att vi ska kunna införa det i nya länder i Europa.
Om det finns något ytterligare som vi kan hjälpa dig med kontakta oss gärna. Du kan nå oss på telefonnummer 020-0910203, vardagar mellan 10-17.
Bra med Ancestry
- Iphone och Android appen - mycket trevlig
- Crista Cowens filmer
- FTM 2014 bra men inte ovärderlig plus känns mer rätt med wikitree och delade träd
- Finns en del svenska källor men
Dåligt med aktivitet hos Ancestry.se (mitt senaste inlägg om DNA testande)
- Ingen aktivitet mer än God Helg på FB sidorna eller vilka TV program som visas på TV. Bästa föredraget görs just av Crista om hur vi kan använda Ancestry
- Dålig aktivitet på Ancestry.com forum. Har ställt en del frågor men inga svar som hjälper
- Har som svensk dålig nytta av Ancestry. Får träffar på andra träd saknar 90% källor eller analys så det känns värdelöst.... några kul träffar är funna se blog Andra släktforskare i trädet
- 90% av min svenska forskning görs hos Arkiv Digital
- Enormt svårt att få köpa 2014 av FTM som är den bättre versionen lyckades via helpdesk på Irland förstå att man kan köpa den via England se blog
SUCK det blir billigare då man inte längre vill ha Ancestry.se och då får man email och anledningen för att man skall släktforska är ett program på TV SUCK.....
"Hej Magnus,
Nu är det dags för en ny säsong av TV-programmet Allt för Sverige där svenskättlingar från USA kommer till Sverige för att söka information om sina rötter och hitta sina släktingar.
Vill du söka efter uppgifter om släktingar som emigrerade till USA och kanske hitta nu levande ättlingar till emigranterna? Vi erbjuder dig just nu 50 % rabatt på World Deluxe-abonnemang och du betalar endast 997,50 kr* för ett år (ordinarie pris 1 995 kr/år)."
|
WikiTree
embeddable family tree updated live from WikiTree
Svar Ancestry 2014 oktober
Ingen jag pratat med kan peka på vilka tillståndÄrendehistorik Svar Visa e-post (Tor)
2014-10-24 07:49 AM
Hej Magnus,
Tack för att du kontaktat oss på Ancestry angående vårt erbjudande.
Vi skickar ut erbjudanden till personer med pågående abonnemang en inte särskilt ofta. Om man har ett aktivt abonnemang har man ofta inte särskilt mycket nytta av att få rabatt på en annan sorts abonnemang.
Vi hoppas kunna få DNA-tester till Sverige och jobbar för att göra detta, jag kan dock inte säga när detta kan komma att ske. Anledningen till detta är mest att det är mycket tillstånd och liknande som krävs för att vi ska kunna införa det i nya länder i Europa.
Om det finns något ytterligare som vi kan hjälpa dig med kontakta oss gärna. Du kan nå oss på telefonnummer 020-0910203, vardagar mellan 10-17.
Detta är ett kostnadsfritt nummer.
Med vänliga hälsningar,
Tor
Kundtjänst
Ancestry
http://ancestryse.custhelp.com/
Med vänliga hälsningar,
Tor
Kundtjänst
Ancestry
http://ancestryse.custhelp.com/
måndag 6 oktober 2014
Wikitree och autosomalt DNA
Tittar på hur långt tillbaka wikitree tycker man kan hitta autosomala kopplingar
Tittar vi på mig Magnus Sälgö och Stockhaus så är det
6 Generationer till Per
Tittar vi på mig Magnus Sälgö och Stockhaus så är det
6 Generationer till Per
onsdag 20 augusti 2014
DNA wikitree
See also article wikitree and DNA
http://www.wikitree.com/index.php?title=Special:DNATests&u=7340000
(1930's - 2010's)
Karl Fride Israel Sälgö
(23 Dec 1895 - 10 Oct 1961)
Karl August Johansson
(10 Apr 1865 - 09 Feb 1948)
Johan Erik Lindgren
(02 May 1824 - 04 Dec 1901)
[G-G-G-Grandfather Unknown]
[G-G-G-G-Grandfather Unknown]
[G-G-G-G-G-Grandfather Unknown]
[G-G-G-G-G-G-Grandfather Unknown]
[G-G-G-G-G-G-G-Grandfather Unknown]
(1920's - 1990's)
Hilma Charlotta Elisabeth Sjöstrand
(16 May 1903 - 06 Feb 1979)
Elin Ottilia Bernhardina Bildt
(31 Aug 1880 - 23 Sep 1930)
Klara Elisabeth Svensdotter
(19 Sep 1850 - 25 Oct 1934)
[G-G-G-Grandmother Unknown]
[G-G-G-G-Grandmother Unknown]
[G-G-G-G-G-Grandmother Unknown]
[G-G-G-G-G-G-Grandmother Unknown]
[G-G-G-G-G-G-G-Grandmother Unknown]
(1920's - 1990's)
50% — Momcilo Petrowitz
(22 Jan 1900 - )
50% — Sofi Unknown
(abt 1875 - )
25% — [G-G-Grandfather Unknown]
25% — [G-G-G-Grandmother Unknown]
12.5% — [G-G-G-G-Grandfather Unknown]
12.5% — [G-G-G-G-G-Grandmother Unknown]
12.5% — [G-G-G-G-Grandmother Unknown]
6.25% — [G-G-G-G-G-Grandfather Unknown]
6.25% — [G-G-G-G-G-Grandmother Unknown]
25% — [G-G-Grandmother Unknown]
12.5% — [G-G-G-Grandfather Unknown]
12.5% — [G-G-G-G-Grandmother Unknown]
6.25% — [G-G-G-G-G-Grandfather Unknown]
6.25% — [G-G-G-G-G-Grandmother Unknown]
12.5% — [G-G-G-Grandmother Unknown]
6.25% — [G-G-G-G-Grandfather Unknown]
6.25% — [G-G-G-G-G-Grandmother Unknown]
6.25% — [G-G-G-G-Grandmother Unknown]
3.125% — [G-G-G-G-G-Grandfather Unknown]
3.125% — [G-G-G-G-G-Grandmother Unknown]
50% — Hilma Charlotta Elisabeth Sjöstrand
(16 May 1903 - 06 Feb 1979)
25% — Anton Rudolf Ludvig Johansson
(07 Oct 1873 - 26 Jul 1961)
25% — Maja Kajsa Carlsdotter
(22 Feb 1847 - 20 Feb 1903)
12.5% — [G-G-G-Grandfather Unknown]
12.5% — [G-G-G-G-Grandmother Unknown]
6.25% — [G-G-G-G-G-Grandfather Unknown]
6.25% — [G-G-G-G-G-Grandmother Unknown]
12.5% — [G-G-G-Grandmother Unknown]
6.25% — [G-G-G-G-Grandfather Unknown]
6.25% — [G-G-G-G-G-Grandmother Unknown]
6.25% — [G-G-G-G-Grandmother Unknown]
3.125% — [G-G-G-G-G-Grandfather Unknown]
3.125% — [G-G-G-G-G-Grandmother Unknown]
25% — Elin Ottilia Bernhardina Bildt
(31 Aug 1880 - 23 Sep 1930)
12.5% — Nils Bildt Johansson
(18 Dec 1847 - 15 Mar 1905)
12.5% — [G-G-G-Grandmother Unknown]
6.25% — [G-G-G-G-Grandfather Unknown]
6.25% — [G-G-G-G-G-Grandmother Unknown]
6.25% — [G-G-G-G-Grandmother Unknown]
3.125% — [G-G-G-G-G-Grandfather Unknown]
3.125% — [G-G-G-G-G-Grandmother Unknown]
12.5% — Klara Elisabeth Svensdotter
(19 Sep 1850 - 25 Oct 1934)
6.25% — [G-G-G-Grandfather Unknown]
6.25% — [G-G-G-G-Grandmother Unknown]
3.125% — [G-G-G-G-G-Grandfather Unknown]
3.125% — [G-G-G-G-G-Grandmother Unknown]
6.25% — [G-G-G-Grandmother Unknown]
3.125% — [G-G-G-G-Grandfather Unknown]
3.125% — [G-G-G-G-G-Grandmother Unknown]
3.125% — [G-G-G-G-Grandmother Unknown]
1.5625% — [G-G-G-G-G-Grandfather Unknown]
1.5625% — [G-G-G-G-G-Grandmother Unknown]
Wikitree - DNA Confirmation
http://www.wikitree.com/index.php?title=Special:DNATests&u=7340000
Wikitree - DNA Tests page
http://www.wikitree.com/index.php?title=Special:DNATests&u=7340000Wikitree - DNA Ancestors
DNA Ancestors View for Magnus Sälgö
This page illustrates where Magnus Sälgö gets his
Y-chromosome,
X-chromosome and
mitochondrial DNA. For
autosomal DNA see Magnus's family tree. Descendant icons
after names below lead to their DNA descendant lists. See the DNA page for more information on DNA and wiki genealogy.





Y-Chromosome
The Y-chromosome is passed down from father to son. Here are Magnus's direct paternal line ancestors.
Carl-Eric Sälgö 
Karl Fride Israel Sälgö

Karl August Johansson

Johan Erik Lindgren

[G-G-G-Grandfather Unknown]
[G-G-G-G-Grandfather Unknown]
[G-G-G-G-G-Grandfather Unknown]
[G-G-G-G-G-G-Grandfather Unknown]
[G-G-G-G-G-G-G-Grandfather Unknown]
Mitochondrial DNA
Mitochondrial DNA is passed down from mother to child. Here are Magnus's direct maternal line ancestors.
Mona Sjöstrand 
Hilma Charlotta Elisabeth Sjöstrand

Elin Ottilia Bernhardina Bildt

Klara Elisabeth Svensdotter

[G-G-G-Grandmother Unknown]
[G-G-G-G-Grandmother Unknown]
[G-G-G-G-G-Grandmother Unknown]
[G-G-G-G-G-G-Grandmother Unknown]
[G-G-G-G-G-G-G-Grandmother Unknown]
X-Chromosome
Males inherit one X-chromosome from their mother. Females inherit one X-chromosome from their mother and one X-chromosome from their father. Here are seven generations of ancestors who could have contributed to Magnus's X-chromosome and their approximate average percentage of contribution. These are adapted from Blaine Bettinger's X-DNA charts.
100% — Mona Sjöstrand 
50% — Momcilo Petrowitz

50% — Sofi Unknown

25% — [G-G-Grandfather Unknown]
25% — [G-G-G-Grandmother Unknown]
12.5% — [G-G-G-G-Grandfather Unknown]
12.5% — [G-G-G-G-G-Grandmother Unknown]
12.5% — [G-G-G-G-Grandmother Unknown]
6.25% — [G-G-G-G-G-Grandfather Unknown]
6.25% — [G-G-G-G-G-Grandmother Unknown]
25% — [G-G-Grandmother Unknown]
12.5% — [G-G-G-Grandfather Unknown]
12.5% — [G-G-G-G-Grandmother Unknown]
6.25% — [G-G-G-G-G-Grandfather Unknown]
6.25% — [G-G-G-G-G-Grandmother Unknown]
12.5% — [G-G-G-Grandmother Unknown]
6.25% — [G-G-G-G-Grandfather Unknown]
6.25% — [G-G-G-G-G-Grandmother Unknown]
6.25% — [G-G-G-G-Grandmother Unknown]
3.125% — [G-G-G-G-G-Grandfather Unknown]
3.125% — [G-G-G-G-G-Grandmother Unknown]
50% — Hilma Charlotta Elisabeth Sjöstrand

25% — Anton Rudolf Ludvig Johansson

25% — Maja Kajsa Carlsdotter

12.5% — [G-G-G-Grandfather Unknown]
12.5% — [G-G-G-G-Grandmother Unknown]
6.25% — [G-G-G-G-G-Grandfather Unknown]
6.25% — [G-G-G-G-G-Grandmother Unknown]
12.5% — [G-G-G-Grandmother Unknown]
6.25% — [G-G-G-G-Grandfather Unknown]
6.25% — [G-G-G-G-G-Grandmother Unknown]
6.25% — [G-G-G-G-Grandmother Unknown]
3.125% — [G-G-G-G-G-Grandfather Unknown]
3.125% — [G-G-G-G-G-Grandmother Unknown]
25% — Elin Ottilia Bernhardina Bildt

12.5% — Nils Bildt Johansson

12.5% — [G-G-G-Grandmother Unknown]
6.25% — [G-G-G-G-Grandfather Unknown]
6.25% — [G-G-G-G-G-Grandmother Unknown]
6.25% — [G-G-G-G-Grandmother Unknown]
3.125% — [G-G-G-G-G-Grandfather Unknown]
3.125% — [G-G-G-G-G-Grandmother Unknown]
12.5% — Klara Elisabeth Svensdotter

6.25% — [G-G-G-Grandfather Unknown]
6.25% — [G-G-G-G-Grandmother Unknown]
3.125% — [G-G-G-G-G-Grandfather Unknown]
3.125% — [G-G-G-G-G-Grandmother Unknown]
6.25% — [G-G-G-Grandmother Unknown]
3.125% — [G-G-G-G-Grandfather Unknown]
3.125% — [G-G-G-G-G-Grandmother Unknown]
3.125% — [G-G-G-G-Grandmother Unknown]
1.5625% — [G-G-G-G-G-Grandfather Unknown]
1.5625% — [G-G-G-G-G-Grandmother Unknown]
Prenumerera på:
Inlägg (Atom)