Article    Discussion    Edit    History

Example address book

Jump to: navigation, search

We want to store a transcription of an addressbook. It should be possible to attach a digital image to each page. The idenfitication of the street and place is not part of the transcription.

Here is an example from the addressbook of Lübeck that contains the entry "Rentzau, Hinr., Träger, Böttcherstraße 239" as the 17th entry on page 260.

Image:Addressbook-example1.png


Some real-world data from genealogy.net's database of historic addressbook:

@prefix : <http://addressbook.genealogy.net/dft/> .
@prefix gov: <http://gov.genealogy.net/rdf/> .
@prefix gc: <http://purl.org/net/genealogy-core#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix addr: <http://genealogy.net/dft/address#> .
@prefix gp: <http://purl.org/net/genealogy-provenance#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

:entry_227512 {
	:person_227512 rdf:type gc:Person .
	:person_227512 gc:lives-in :residence_227512 .
	:person_227512 gc:works-as :occupation_227512 .
	:person_227512 gc:name "Dr. Ludwig Dern" . 
	# we have have to split the name
	
	:residence_227512 rdf:type gc:Residence .
	:residence_227512 gc:date "1937" .
#	:residence_227512 gc:address "Bahnhofstrasse 1" .
#	:residence_227512 gc:place "Ketschdorf" .

	:occupation_227512 rdf:type gc:Occupation .
	:occupation_227512 gc:date "1937" .
#	:occupation_227512 gc:value "prakt. Tierarzt" .
}

:entry_227518 {
  :person_227518 rdf:type gc:Person .
  :person_227518 gc:lives-in :residence_227518 .
  :person_227518 gc:works-as :occupation_227518 .
  :person_227518 gc:name "Willi Scharfenberg" .
 
  :residence_227518 rdf:type gc:Residence .
  :residence_227518 gc:date "1937" .
#  :residence_227518 gc:address "Bolkenhainer Strasse 2" .
#  :residence_227518 gc:place "Ketschdorf" .
  
  :occupation_227518 rdf:type gc:Occupation .
  :occupation_227518 gc:date "1937" .
#  :occupation_227518 gc:value "Kalkarbeiter" .
}

:book_72 {
  :entry_227512 gp:source :book_72_anypage .
  :entry_227518 gp:source :book_72_anypage .
}

:book_72_data {
  :book_72  dc:title  "Adressbuch des Kreises Jauer" .
  :book_72  dc:date "1937" .
}

:address_identification_227512 {
  :residence_227512 addr:address :address_227512 .
  :address_227512 addr:street :street_5515 .
  :address_227512 addr:housenumber "1"^^xsd:int .
  :address_227512 addr:place gov:KETORFJO70XW .
	
  :street_5515 addr:name "Bahnhofstrasse" .
  :street_5515 addr:place gov:KETORFJO70XW .
}

:address_identification_227518 {
  :residence_227518 addr:address :address_227518 .
  :address_227518 addr:street :street_5516 .
  :address_227518 addr:housenumber "2"^^xsd:int .
  :address_227518 addr:place gov:KETORFJO70XW .
  
  :street_5516 addr:name "Bolkenhainer Strasse" .
  :street_5516 addr:place gov:KETORFJO70XW .
}

:address_identification_source {
  :address_identification_227512  gc:creator <mailto:jesper@zedlitz.de> .
  :address_identification_227518  gc:creator <mailto:jesper@zedlitz.de> .
}
Retrieved from "http://www.dftproject.org/wiki/Example_address_book"