<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.tei-c.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Andreas+Kuczera</id>
	<title>TEIWiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.tei-c.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Andreas+Kuczera"/>
	<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=Special:Contributions/Andreas_Kuczera"/>
	<updated>2026-04-21T17:16:32Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.32.0</generator>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=Cypher&amp;diff=16884</id>
		<title>Cypher</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=Cypher&amp;diff=16884"/>
		<updated>2022-03-03T11:55:11Z</updated>

		<summary type="html">&lt;p&gt;Andreas Kuczera: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;code&amp;gt;&lt;br /&gt;
 // Export TEI-Graph to Standoff-Property-JSON-Format by Stefan Armbruster&lt;br /&gt;
 match path=(d:XmlDocument)-[:NE*]-&amp;gt;(e:XmlCharacters)&lt;br /&gt;
 where not (e)-[:NE]-&amp;gt;()&lt;br /&gt;
 with tail(nodes(path)) as words, d&lt;br /&gt;
 with reduce(s=&amp;quot;&amp;quot;, x in words| s + x.text ) as allText, d&lt;br /&gt;
 call apoc.path.expandConfig(d,{&lt;br /&gt;
 relationshipFilter: '&amp;lt;IS_CHILD_OF',&lt;br /&gt;
 labelFilter: 'XmlTag',&lt;br /&gt;
 bfs: false,&lt;br /&gt;
 minLevel: 1&lt;br /&gt;
 }) yield path&lt;br /&gt;
 with allText, path, nodes(path)[-1] as this&lt;br /&gt;
 MATCH p=(this)-[:NEXT*]-&amp;gt;(x)&lt;br /&gt;
 where (x)-[:LAST_CHILD_OF*]-&amp;gt;(this) and any(x in nodes(p) WHERE x:XmlCharacters)&lt;br /&gt;
 with allText, this, collect(p)[-1] as longest&lt;br /&gt;
 with allText, this, [x in nodes(longest) where x:XmlCharacters] as xmlCharacters&lt;br /&gt;
 with allText, this, &lt;br /&gt;
 apoc.coll.min([x in xmlCharacters | x.startIndex]) as min, &lt;br /&gt;
 apoc.coll.max([x in xmlCharacters | x.endIndex]) as max, &lt;br /&gt;
 apoc.text.join([x in xmlCharacters | x.text], &amp;quot;&amp;quot;) as text&lt;br /&gt;
 with allText, {&lt;br /&gt;
 index:id(this), &lt;br /&gt;
 startIndex: min, &lt;br /&gt;
 endIndex: max,&lt;br /&gt;
 text: text,&lt;br /&gt;
 type: this._name,&lt;br /&gt;
 attributes: apoc.map.fromPairs([x in keys(this) WHERE not x starts with &amp;quot;_&amp;quot; | [x, this[x]] ])&lt;br /&gt;
 } as standoffProperty&lt;br /&gt;
 return {text: allText, properties: collect(standoffProperty)};&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;/div&gt;</summary>
		<author><name>Andreas Kuczera</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=Cypher&amp;diff=16883</id>
		<title>Cypher</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=Cypher&amp;diff=16883"/>
		<updated>2022-03-03T11:54:55Z</updated>

		<summary type="html">&lt;p&gt;Andreas Kuczera: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
 // Export TEI-Graph to Standoff-Property-JSON-Format by Stefan Armbruster&lt;br /&gt;
&lt;br /&gt;
 match path=(d:XmlDocument)-[:NE*]-&amp;gt;(e:XmlCharacters)&lt;br /&gt;
&lt;br /&gt;
 where not (e)-[:NE]-&amp;gt;()&lt;br /&gt;
 with tail(nodes(path)) as words, d&lt;br /&gt;
 with reduce(s=&amp;quot;&amp;quot;, x in words| s + x.text ) as allText, d&lt;br /&gt;
 call apoc.path.expandConfig(d,{&lt;br /&gt;
 relationshipFilter: '&amp;lt;IS_CHILD_OF',&lt;br /&gt;
 labelFilter: 'XmlTag',&lt;br /&gt;
 bfs: false,&lt;br /&gt;
 minLevel: 1&lt;br /&gt;
 }) yield path&lt;br /&gt;
 with allText, path, nodes(path)[-1] as this&lt;br /&gt;
 MATCH p=(this)-[:NEXT*]-&amp;gt;(x)&lt;br /&gt;
 where (x)-[:LAST_CHILD_OF*]-&amp;gt;(this) and any(x in nodes(p) WHERE x:XmlCharacters)&lt;br /&gt;
 with allText, this, collect(p)[-1] as longest&lt;br /&gt;
 with allText, this, [x in nodes(longest) where x:XmlCharacters] as xmlCharacters&lt;br /&gt;
 with allText, this, &lt;br /&gt;
 apoc.coll.min([x in xmlCharacters | x.startIndex]) as min, &lt;br /&gt;
 apoc.coll.max([x in xmlCharacters | x.endIndex]) as max, &lt;br /&gt;
 apoc.text.join([x in xmlCharacters | x.text], &amp;quot;&amp;quot;) as text&lt;br /&gt;
 with allText, {&lt;br /&gt;
 index:id(this), &lt;br /&gt;
 startIndex: min, &lt;br /&gt;
 endIndex: max,&lt;br /&gt;
 text: text,&lt;br /&gt;
 type: this._name,&lt;br /&gt;
 attributes: apoc.map.fromPairs([x in keys(this) WHERE not x starts with &amp;quot;_&amp;quot; | [x, this[x]] ])&lt;br /&gt;
 } as standoffProperty&lt;br /&gt;
 return {text: allText, properties: collect(standoffProperty)};&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;/div&gt;</summary>
		<author><name>Andreas Kuczera</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=Cypher&amp;diff=16882</id>
		<title>Cypher</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=Cypher&amp;diff=16882"/>
		<updated>2022-03-03T11:54:45Z</updated>

		<summary type="html">&lt;p&gt;Andreas Kuczera: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
 // Export TEI-Graph to Standoff-Property-JSON-Format by Stefan Armbruster&lt;br /&gt;
 match path=(d:XmlDocument)-[:NE*]-&amp;gt;(e:XmlCharacters)&lt;br /&gt;
 where not (e)-[:NE]-&amp;gt;()&lt;br /&gt;
 with tail(nodes(path)) as words, d&lt;br /&gt;
 with reduce(s=&amp;quot;&amp;quot;, x in words| s + x.text ) as allText, d&lt;br /&gt;
 call apoc.path.expandConfig(d,{&lt;br /&gt;
 relationshipFilter: '&amp;lt;IS_CHILD_OF',&lt;br /&gt;
 labelFilter: 'XmlTag',&lt;br /&gt;
 bfs: false,&lt;br /&gt;
 minLevel: 1&lt;br /&gt;
 }) yield path&lt;br /&gt;
 with allText, path, nodes(path)[-1] as this&lt;br /&gt;
 MATCH p=(this)-[:NEXT*]-&amp;gt;(x)&lt;br /&gt;
 where (x)-[:LAST_CHILD_OF*]-&amp;gt;(this) and any(x in nodes(p) WHERE x:XmlCharacters)&lt;br /&gt;
 with allText, this, collect(p)[-1] as longest&lt;br /&gt;
 with allText, this, [x in nodes(longest) where x:XmlCharacters] as xmlCharacters&lt;br /&gt;
 with allText, this, &lt;br /&gt;
 apoc.coll.min([x in xmlCharacters | x.startIndex]) as min, &lt;br /&gt;
 apoc.coll.max([x in xmlCharacters | x.endIndex]) as max, &lt;br /&gt;
 apoc.text.join([x in xmlCharacters | x.text], &amp;quot;&amp;quot;) as text&lt;br /&gt;
 with allText, {&lt;br /&gt;
 index:id(this), &lt;br /&gt;
 startIndex: min, &lt;br /&gt;
 endIndex: max,&lt;br /&gt;
 text: text,&lt;br /&gt;
 type: this._name,&lt;br /&gt;
 attributes: apoc.map.fromPairs([x in keys(this) WHERE not x starts with &amp;quot;_&amp;quot; | [x, this[x]] ])&lt;br /&gt;
 } as standoffProperty&lt;br /&gt;
 return {text: allText, properties: collect(standoffProperty)};&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;/div&gt;</summary>
		<author><name>Andreas Kuczera</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=SIG:GraphTechnologies&amp;diff=16881</id>
		<title>SIG:GraphTechnologies</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=SIG:GraphTechnologies&amp;diff=16881"/>
		<updated>2022-03-03T11:52:21Z</updated>

		<summary type="html">&lt;p&gt;Andreas Kuczera: /* Convert DTA-XML with neo4j to Standoff Property JSON */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Andreas Kuczera, Iian Neill, Stefan Armbruster&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
&lt;br /&gt;
As TEI is not a format, though many people think it is. It's a de facto standard that specifies Guidelines for document interchange. Actually the Guidelines are based on the XML but this is only one possible technical way of expressing the phenomenons.&lt;br /&gt;
&lt;br /&gt;
'''The aim of the Graph-SIG is to find a way of expressing the language phenomenons of the TEI in Graphs.''' &lt;br /&gt;
&lt;br /&gt;
* In the graph you can use multi-hierarchical annotations layers.&lt;br /&gt;
* Graph models are very easy to read and understand. So DH-People and “normal” scientists have a level of discussion in common.&lt;br /&gt;
* A Graph can be expressed as RDF so the step from a Graph to linked open data is easy to make.&lt;br /&gt;
&lt;br /&gt;
The main goal of the TEI-Graph-SIG is to model the textual phenomenons of the TEI in a Graph and to develop routines to import TEI-encoded XML-files into graph databases.&lt;br /&gt;
&lt;br /&gt;
== Convert DTA-XML with neo4j to Standoff Property JSON ==&lt;br /&gt;
&lt;br /&gt;
In a first step we import a small xml-example into a [https://neo4j.com neo4j] instance using [https://neo4j.com/labs/apoc/4.4/import/xml/ apoc.import.xml]&lt;br /&gt;
&lt;br /&gt;
The example is a [https://seafile.rlp.net/f/6282a26504cc4f079ab9/?dl=1 page] from the [https://www.deutschestextarchiv.de DTA]. Here you can find the [[XML-Testfile]] and this is the [http://www.deutschestextarchiv.de/book/view/patzig_msgermfol841842_1828/?hl=welcher;p=11 Link] to the DTA-Version.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
&amp;lt;TEI&amp;gt;&lt;br /&gt;
  &amp;lt;text&amp;gt;&lt;br /&gt;
    &amp;lt;body&amp;gt;&lt;br /&gt;
      &amp;lt;div xml:id=&amp;quot;Ms_germ_fol_841&amp;quot; next=&amp;quot;#Ms_germ_fol_842&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;div type=&amp;quot;session&amp;quot; n=&amp;quot;1&amp;quot;&amp;gt;&lt;br /&gt;
          &amp;lt;p&amp;gt;&amp;lt;pb facs=&amp;quot;#f0011&amp;quot; n=&amp;quot;7.&amp;quot;/&amp;gt;&lt;br /&gt;
            erblicken wir einen großen Unter&amp;amp;#x017F;chied zwi-&amp;lt;lb/&amp;gt;&lt;br /&gt;
            &amp;amp;#x017F;chen den entferntern u. nähern Planeten&amp;lt;lb/&amp;gt;&lt;br /&gt;
            &amp;lt;note place=&amp;quot;left&amp;quot;&amp;gt;&lt;br /&gt;
              &amp;lt;hi rendition=&amp;quot;#u&amp;quot;&amp;gt;Zwei be&amp;amp;#x017F;ondere Planeten-Sy&amp;amp;#x017F;teme&amp;lt;/hi&amp;gt;&amp;lt;lb/&amp;gt;&amp;lt;/note&amp;gt;von der Son&amp;amp;#x0303;e.&lt;br /&gt;
            &amp;lt;hi rendition=&amp;quot;#u&amp;quot;&amp;gt;Dies giebt zwei be&amp;amp;#x017F;ondre&amp;lt;lb/&amp;gt;&lt;br /&gt;
              Sÿ&amp;amp;#x017F;teme&amp;lt;/hi&amp;gt;. Die Scheide machen die kleinern&amp;lt;lb/&amp;gt;&lt;br /&gt;
            Körper die &amp;amp;#x017F;ich zwi&amp;amp;#x017F;chen Mars u. Jupiter&amp;lt;lb/&amp;gt;&lt;br /&gt;
            bewegen, die ein ganz eignes Sy&amp;amp;#x017F;tem&amp;lt;lb/&amp;gt;&lt;br /&gt;
            bilden, von denen die Ve&amp;amp;#x017F;ta als die&amp;lt;lb/&amp;gt;&lt;br /&gt;
            &amp;lt;hi rendition=&amp;quot;#u&amp;quot; hand=&amp;quot;#pencil&amp;quot;&amp;gt;größte&amp;lt;/hi&amp;gt;&lt;br /&gt;
            &amp;lt;choice&amp;gt;&lt;br /&gt;
              &amp;lt;sic&amp;gt;ungefahr&amp;lt;/sic&amp;gt;&lt;br /&gt;
              &amp;lt;corr resp=&amp;quot;#CT&amp;quot;&amp;gt;ungefähr&amp;lt;/corr&amp;gt;&lt;br /&gt;
            &amp;lt;/choice&amp;gt;&lt;br /&gt;
            die&lt;br /&gt;
            &amp;lt;choice&amp;gt;&lt;br /&gt;
              &amp;lt;abbr&amp;gt;Oberfl.&amp;lt;/abbr&amp;gt;&lt;br /&gt;
              &amp;lt;expan resp=&amp;quot;#CT&amp;quot;&amp;gt;Oberfläche&amp;lt;/expan&amp;gt;&lt;br /&gt;
            &amp;lt;/choice&amp;gt;&lt;br /&gt;
            von Deut&amp;amp;#x017F;ch-&amp;lt;lb/&amp;gt;&lt;br /&gt;
            land hat. Sie haben eine translative Be-&amp;lt;lb/&amp;gt;&lt;br /&gt;
            wegung von We&amp;amp;#x017F;ten nach O&amp;amp;#x017F;ten, &amp;amp;#x017F;ind ihrer&amp;lt;lb/&amp;gt;&lt;br /&gt;
            Stellung nach ähnlich den&lt;br /&gt;
            &amp;lt;choice&amp;gt;&lt;br /&gt;
              &amp;lt;sic&amp;gt;Com&amp;amp;#x0303;eten&amp;lt;/sic&amp;gt;&lt;br /&gt;
              &amp;lt;corr resp=&amp;quot;#BF&amp;quot;&amp;gt;Cometen&amp;lt;/corr&amp;gt;&lt;br /&gt;
            &amp;lt;/choice&amp;gt;; obgleich&amp;lt;lb/&amp;gt;&lt;br /&gt;
            doch keine A&amp;lt;subst&amp;gt;&lt;br /&gt;
              &amp;lt;del rendition=&amp;quot;#ow&amp;quot;&amp;gt;&amp;lt;gap reason=&amp;quot;illegible&amp;quot; unit=&amp;quot;chars&amp;quot; quantity=&amp;quot;1&amp;quot;/&amp;gt;&amp;lt;/del&amp;gt;&lt;br /&gt;
              &amp;lt;add place=&amp;quot;across&amp;quot;&amp;gt;e&amp;lt;/add&amp;gt;&lt;br /&gt;
            &amp;lt;/subst&amp;gt;hnlichkeit anderweit zwi&amp;amp;#x017F;chen&amp;lt;lb/&amp;gt;&lt;br /&gt;
            ihnen u. den&lt;br /&gt;
            &amp;lt;choice&amp;gt;&lt;br /&gt;
              &amp;lt;abbr&amp;gt;&lt;br /&gt;
                &amp;lt;choice&amp;gt;&lt;br /&gt;
                  &amp;lt;sic&amp;gt;Com&amp;amp;#x0303;et&amp;amp;#xFFFC;&amp;lt;/sic&amp;gt;&lt;br /&gt;
                  &amp;lt;corr resp=&amp;quot;#BF&amp;quot;&amp;gt;Comet&amp;amp;#xFFFC;&amp;lt;/corr&amp;gt;&lt;br /&gt;
                &amp;lt;/choice&amp;gt;&lt;br /&gt;
              &amp;lt;/abbr&amp;gt;&lt;br /&gt;
              &amp;lt;expan resp=&amp;quot;#BF&amp;quot;&amp;gt;&lt;br /&gt;
                &amp;lt;choice&amp;gt;&lt;br /&gt;
                  &amp;lt;sic&amp;gt;Com&amp;amp;#x0303;eten&amp;lt;/sic&amp;gt;&lt;br /&gt;
                  &amp;lt;corr resp=&amp;quot;#BF&amp;quot;&amp;gt;Cometen&amp;lt;/corr&amp;gt;&lt;br /&gt;
                &amp;lt;/choice&amp;gt;&lt;br /&gt;
              &amp;lt;/expan&amp;gt;&lt;br /&gt;
            &amp;lt;/choice&amp;gt;&lt;br /&gt;
            i&amp;amp;#x017F;t, wie überhaupt&amp;lt;lb/&amp;gt;&lt;br /&gt;
            kein Uebergang zwi&amp;amp;#x017F;chen Planeten u. Co-&amp;lt;lb/&amp;gt;&lt;br /&gt;
            meten gefunden wird u. keine po&amp;amp;#x017F;itive&amp;lt;lb/&amp;gt;&lt;br /&gt;
            &amp;lt;note place=&amp;quot;left&amp;quot;&amp;gt;&lt;br /&gt;
              &amp;lt;hi rendition=&amp;quot;#u&amp;quot;&amp;gt;Er&amp;amp;#x017F;tes Sy&amp;amp;#x017F;tem&amp;lt;lb/&amp;gt;&lt;br /&gt;
                characteri&amp;amp;#x017F;t. Merkmale&amp;lt;/hi&amp;gt;&amp;lt;lb/&amp;gt;&amp;lt;/note&amp;gt;Aehnlichkeit.&lt;br /&gt;
            &amp;lt;hi rendition=&amp;quot;#u&amp;quot;&amp;gt;Jn die&amp;amp;#x017F;em doppelten Sy&amp;amp;#x017F;tem&amp;lt;lb/&amp;gt;&lt;br /&gt;
              der Planeten gehören zu&amp;amp;#x017F;am&amp;amp;#x0303;en: Merkur,&amp;lt;lb/&amp;gt;&lt;br /&gt;
              Venus, Erde, Mars.&amp;lt;/hi&amp;gt;&lt;br /&gt;
            Sie haben das&amp;lt;lb/&amp;gt;&lt;br /&gt;
            gemein&amp;amp;#x017F;ame der be&amp;amp;#x017F;ondern Dichtigkeit,&amp;lt;lb/&amp;gt;&lt;br /&gt;
            wie&lt;br /&gt;
            &amp;lt;hi rendition=&amp;quot;#aq&amp;quot;&amp;gt;Platina&amp;lt;/hi&amp;gt;, Magnet&amp;amp;#x017F;tein u. dgl.; &amp;amp;#x017F;ie&amp;lt;lb/&amp;gt;&lt;br /&gt;
            &amp;lt;subst&amp;gt;&lt;br /&gt;
              &amp;lt;del rendition=&amp;quot;#s&amp;quot;&amp;gt;rotiren&amp;lt;/del&amp;gt;&lt;br /&gt;
              &amp;lt;add place=&amp;quot;superlinear&amp;quot;&amp;gt;bewegen &amp;amp;#x017F;ich&amp;lt;/add&amp;gt;&lt;br /&gt;
            &amp;lt;/subst&amp;gt;&lt;br /&gt;
            viel ge&amp;amp;#x017F;chwinder&lt;br /&gt;
            &amp;lt;metamark/&amp;gt;&lt;br /&gt;
            &amp;lt;add place=&amp;quot;superlinear&amp;quot;&amp;gt;um die Son&amp;amp;#x0303;e&amp;lt;/add&amp;gt;, &amp;amp;#x017F;ind mond-&amp;lt;lb/&amp;gt;&lt;br /&gt;
            armer |: bloß die Erde hat einen&lt;br /&gt;
            &amp;lt;choice&amp;gt;&lt;br /&gt;
              &amp;lt;abbr&amp;gt;Trabant&amp;amp;#xFFFC;&amp;lt;/abbr&amp;gt;&lt;br /&gt;
              &amp;lt;expan resp=&amp;quot;#BF&amp;quot;&amp;gt;Trabanten&amp;lt;/expan&amp;gt;&lt;br /&gt;
            &amp;lt;/choice&amp;gt;&lt;br /&gt;
            :|,&amp;lt;lb/&amp;gt;&lt;br /&gt;
            an den Polen abgeplattet. Anders&amp;lt;lb/&amp;gt;&lt;br /&gt;
            verhält es &amp;amp;#x017F;ich mit den Planeten auf der&amp;lt;lb/&amp;gt;&lt;br /&gt;
            Bahn jen&amp;amp;#x017F;eits der kleinen Planeten.&amp;lt;/p&amp;gt;&amp;lt;lb/&amp;gt;&lt;br /&gt;
        &amp;lt;/div&amp;gt;&lt;br /&gt;
      &amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;/body&amp;gt;&lt;br /&gt;
  &amp;lt;/text&amp;gt;&lt;br /&gt;
&amp;lt;/TEI&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Import into neo4j ==&lt;br /&gt;
&lt;br /&gt;
The import into neo4j runs with:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
 // Import xml-example from DTA to neo4j&lt;br /&gt;
 call apoc.import.xml('https://seafile.rlp.net/f/6282a26504cc4f079ab9/?dl=1', {connectCharacters: true, charactersForTag:{lb:' '}, filterLeadingWhitespace: true}) yield node &lt;br /&gt;
 return node;&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the next picture you can see a small set of the Graph:&lt;br /&gt;
&lt;br /&gt;
[[image:TEI-Graph.png|center|800px|x]]&lt;br /&gt;
&lt;br /&gt;
== Export from neo4j to Standoff Property JSON ==&lt;br /&gt;
&lt;br /&gt;
The next step is to export the data with some [[cypher]] to the Standoff-Property JSON-Format.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
 // Export TEI-Graph to Standoff-Property-JSON-Format by Stefan Armbruster&lt;br /&gt;
 match path=(d:XmlDocument)-[:NE*]-&amp;gt;(e:XmlCharacters)&lt;br /&gt;
 where not (e)-[:NE]-&amp;gt;()&lt;br /&gt;
 with tail(nodes(path)) as words, d&lt;br /&gt;
 with reduce(s=&amp;quot;&amp;quot;, x in words| s + x.text ) as allText, d&lt;br /&gt;
 call apoc.path.expandConfig(d,{&lt;br /&gt;
 relationshipFilter: '&amp;lt;IS_CHILD_OF',&lt;br /&gt;
 labelFilter: 'XmlTag',&lt;br /&gt;
 bfs: false,&lt;br /&gt;
 minLevel: 1&lt;br /&gt;
 }) yield path&lt;br /&gt;
 with allText, path, nodes(path)[-1] as this&lt;br /&gt;
 MATCH p=(this)-[:NEXT*]-&amp;gt;(x)&lt;br /&gt;
 where (x)-[:LAST_CHILD_OF*]-&amp;gt;(this) and any(x in nodes(p) WHERE x:XmlCharacters)&lt;br /&gt;
 with allText, this, collect(p)[-1] as longest&lt;br /&gt;
 with allText, this, [x in nodes(longest) where x:XmlCharacters] as xmlCharacters&lt;br /&gt;
 with allText, this, &lt;br /&gt;
 apoc.coll.min([x in xmlCharacters | x.startIndex]) as min, &lt;br /&gt;
 apoc.coll.max([x in xmlCharacters | x.endIndex]) as max, &lt;br /&gt;
 apoc.text.join([x in xmlCharacters | x.text], &amp;quot;&amp;quot;) as text&lt;br /&gt;
 with allText, {&lt;br /&gt;
 index:id(this), &lt;br /&gt;
 startIndex: min, &lt;br /&gt;
 endIndex: max,&lt;br /&gt;
 text: text,&lt;br /&gt;
 type: this._name,&lt;br /&gt;
 attributes: apoc.map.fromPairs([x in keys(this) WHERE not x starts with &amp;quot;_&amp;quot; | [x, this[x]] ])&lt;br /&gt;
 } as standoffProperty&lt;br /&gt;
 return {text: allText, properties: collect(standoffProperty)};&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This [[json]] can then be imported in the [[https://github.com/argimenes/standoff-properties-editor SPEEDy]] Standoff Property Editor which can be found on [[https://github.com/argimenes/standoff-properties-editor GitHub]].&lt;br /&gt;
&lt;br /&gt;
At the end of the README-Section you can find a [[https://argimenes.github.io/standoff-properties-editor/ Link]] to Test-Istance hosted on [[https://argimenes.github.io/standoff-properties-editor/ Github-Pages]].&lt;br /&gt;
&lt;br /&gt;
Just copy the JSON-Export in the window below the UNBIND-Button of SPEEDy and press BIND.&lt;br /&gt;
&lt;br /&gt;
The next picture shows SPEEDy with the test.json. You can choose the example file in the top selection box of SPEEDy as well.&lt;br /&gt;
&lt;br /&gt;
[[image:TEIinSPEEDy.png|center|800px|x]]&lt;br /&gt;
&lt;br /&gt;
I want to say thanks to Stefan Armbruster from neo4j for the export-cypher-query and the implementation of the XML-Import functions to [https://neo4j.com/labs/apoc/4.4/import/xml/ apoc.import.xml apoc] and Iian Neill for his work on [https://argimenes.github.io/standoff-properties-editor/ SPEEDy].&lt;/div&gt;</summary>
		<author><name>Andreas Kuczera</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=SIG:GraphTechnologies&amp;diff=16880</id>
		<title>SIG:GraphTechnologies</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=SIG:GraphTechnologies&amp;diff=16880"/>
		<updated>2022-03-03T11:45:43Z</updated>

		<summary type="html">&lt;p&gt;Andreas Kuczera: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Andreas Kuczera, Iian Neill, Stefan Armbruster&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
&lt;br /&gt;
As TEI is not a format, though many people think it is. It's a de facto standard that specifies Guidelines for document interchange. Actually the Guidelines are based on the XML but this is only one possible technical way of expressing the phenomenons.&lt;br /&gt;
&lt;br /&gt;
'''The aim of the Graph-SIG is to find a way of expressing the language phenomenons of the TEI in Graphs.''' &lt;br /&gt;
&lt;br /&gt;
* In the graph you can use multi-hierarchical annotations layers.&lt;br /&gt;
* Graph models are very easy to read and understand. So DH-People and “normal” scientists have a level of discussion in common.&lt;br /&gt;
* A Graph can be expressed as RDF so the step from a Graph to linked open data is easy to make.&lt;br /&gt;
&lt;br /&gt;
The main goal of the TEI-Graph-SIG is to model the textual phenomenons of the TEI in a Graph and to develop routines to import TEI-encoded XML-files into graph databases.&lt;br /&gt;
&lt;br /&gt;
== Convert DTA-XML with neo4j to Standoff Property JSON ==&lt;br /&gt;
&lt;br /&gt;
In a first step we import a small xml-example into a [https://neo4j.com neo4j] instance using [https://neo4j.com/labs/apoc/4.4/import/xml/ apoc.import.xml]&lt;br /&gt;
&lt;br /&gt;
The example is a [https://seafile.rlp.net/f/6282a26504cc4f079ab9/?dl=1 page] from the [https://www.deutschestextarchiv.de DTA]. Here you can find the [[XML-Testfile]] and this is the [http://www.deutschestextarchiv.de/book/view/patzig_msgermfol841842_1828/?hl=welcher;p=11 Link] to the DTA-Version.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
&amp;lt;TEI&amp;gt;&lt;br /&gt;
  &amp;lt;text&amp;gt;&lt;br /&gt;
    &amp;lt;body&amp;gt;&lt;br /&gt;
      &amp;lt;div xml:id=&amp;quot;Ms_germ_fol_841&amp;quot; next=&amp;quot;#Ms_germ_fol_842&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;div type=&amp;quot;session&amp;quot; n=&amp;quot;1&amp;quot;&amp;gt;&lt;br /&gt;
          &amp;lt;p&amp;gt;&amp;lt;pb facs=&amp;quot;#f0011&amp;quot; n=&amp;quot;7.&amp;quot;/&amp;gt;&lt;br /&gt;
erblicken wir einen großen Unter&amp;amp;#x017F;chied zwi-&amp;lt;lb/&amp;gt;&lt;br /&gt;
&amp;amp;#x017F;chen den entferntern u. nähern Planeten&amp;lt;lb/&amp;gt;&amp;lt;note place=&amp;quot;left&amp;quot;&amp;gt;&amp;lt;hi rendition=&amp;quot;#u&amp;quot;&amp;gt;Zwei be&amp;amp;#x017F;ondere Planeten-Sy&amp;amp;#x017F;teme&amp;lt;/hi&amp;gt;&amp;lt;lb/&amp;gt;&amp;lt;/note&amp;gt;von der Son&amp;amp;#x0303;e. &amp;lt;hi rendition=&amp;quot;#u&amp;quot;&amp;gt;Dies giebt zwei be&amp;amp;#x017F;ondre&amp;lt;lb/&amp;gt;&lt;br /&gt;
Sÿ&amp;amp;#x017F;teme&amp;lt;/hi&amp;gt;. Die Scheide machen die kleinern&amp;lt;lb/&amp;gt;&lt;br /&gt;
Körper die &amp;amp;#x017F;ich zwi&amp;amp;#x017F;chen Mars u. Jupiter&amp;lt;lb/&amp;gt;&lt;br /&gt;
bewegen, die ein ganz eignes Sy&amp;amp;#x017F;tem&amp;lt;lb/&amp;gt;&lt;br /&gt;
bilden, von denen die Ve&amp;amp;#x017F;ta als die&amp;lt;lb/&amp;gt;&amp;lt;hi rendition=&amp;quot;#u&amp;quot; hand=&amp;quot;#pencil&amp;quot;&amp;gt;größte&amp;lt;/hi&amp;gt; &amp;lt;choice&amp;gt;&amp;lt;sic&amp;gt;ungefahr&amp;lt;/sic&amp;gt;&amp;lt;corr resp=&amp;quot;#CT&amp;quot;&amp;gt;ungefähr&amp;lt;/corr&amp;gt;&amp;lt;/choice&amp;gt; die &amp;lt;choice&amp;gt;&amp;lt;abbr&amp;gt;Oberfl.&amp;lt;/abbr&amp;gt;&amp;lt;expan resp=&amp;quot;#CT&amp;quot;&amp;gt;Oberfläche&amp;lt;/expan&amp;gt;&amp;lt;/choice&amp;gt; von Deut&amp;amp;#x017F;ch-&amp;lt;lb/&amp;gt;&lt;br /&gt;
land hat. Sie haben eine translative Be-&amp;lt;lb/&amp;gt;&lt;br /&gt;
wegung von We&amp;amp;#x017F;ten nach O&amp;amp;#x017F;ten, &amp;amp;#x017F;ind ihrer&amp;lt;lb/&amp;gt;&lt;br /&gt;
Stellung nach ähnlich den &amp;lt;choice&amp;gt;&amp;lt;sic&amp;gt;Com&amp;amp;#x0303;eten&amp;lt;/sic&amp;gt;&amp;lt;corr resp=&amp;quot;#BF&amp;quot;&amp;gt;Cometen&amp;lt;/corr&amp;gt;&amp;lt;/choice&amp;gt;; obgleich&amp;lt;lb/&amp;gt;&lt;br /&gt;
doch keine A&amp;lt;subst&amp;gt;&amp;lt;del rendition=&amp;quot;#ow&amp;quot;&amp;gt;&amp;lt;gap reason=&amp;quot;illegible&amp;quot; unit=&amp;quot;chars&amp;quot; quantity=&amp;quot;1&amp;quot;/&amp;gt;&amp;lt;/del&amp;gt;&amp;lt;add place=&amp;quot;across&amp;quot;&amp;gt;e&amp;lt;/add&amp;gt;&amp;lt;/subst&amp;gt;hnlichkeit anderweit zwi&amp;amp;#x017F;chen&amp;lt;lb/&amp;gt;&lt;br /&gt;
ihnen u. den &amp;lt;choice&amp;gt;&amp;lt;abbr&amp;gt;&amp;lt;choice&amp;gt;&amp;lt;sic&amp;gt;Com&amp;amp;#x0303;et&amp;amp;#xFFFC;&amp;lt;/sic&amp;gt;&amp;lt;corr resp=&amp;quot;#BF&amp;quot;&amp;gt;Comet&amp;amp;#xFFFC;&amp;lt;/corr&amp;gt;&amp;lt;/choice&amp;gt;&amp;lt;/abbr&amp;gt;&amp;lt;expan resp=&amp;quot;#BF&amp;quot;&amp;gt;&amp;lt;choice&amp;gt;&amp;lt;sic&amp;gt;Com&amp;amp;#x0303;eten&amp;lt;/sic&amp;gt;&amp;lt;corr resp=&amp;quot;#BF&amp;quot;&amp;gt;Cometen&amp;lt;/corr&amp;gt;&amp;lt;/choice&amp;gt;&amp;lt;/expan&amp;gt;&amp;lt;/choice&amp;gt; i&amp;amp;#x017F;t, wie überhaupt&amp;lt;lb/&amp;gt;&lt;br /&gt;
kein Uebergang zwi&amp;amp;#x017F;chen Planeten u. Co-&amp;lt;lb/&amp;gt;&lt;br /&gt;
meten gefunden wird u. keine po&amp;amp;#x017F;itive&amp;lt;lb/&amp;gt;&amp;lt;note place=&amp;quot;left&amp;quot;&amp;gt;&amp;lt;hi rendition=&amp;quot;#u&amp;quot;&amp;gt;Er&amp;amp;#x017F;tes Sy&amp;amp;#x017F;tem&amp;lt;lb/&amp;gt;&lt;br /&gt;
characteri&amp;amp;#x017F;t. Merkmale&amp;lt;/hi&amp;gt;&amp;lt;lb/&amp;gt;&amp;lt;/note&amp;gt;Aehnlichkeit. &amp;lt;hi rendition=&amp;quot;#u&amp;quot;&amp;gt;Jn die&amp;amp;#x017F;em doppelten Sy&amp;amp;#x017F;tem&amp;lt;lb/&amp;gt;&lt;br /&gt;
der Planeten gehören zu&amp;amp;#x017F;am&amp;amp;#x0303;en: Merkur,&amp;lt;lb/&amp;gt;&lt;br /&gt;
Venus, Erde, Mars.&amp;lt;/hi&amp;gt; Sie haben das&amp;lt;lb/&amp;gt;&lt;br /&gt;
gemein&amp;amp;#x017F;ame der be&amp;amp;#x017F;ondern Dichtigkeit,&amp;lt;lb/&amp;gt;&lt;br /&gt;
wie &amp;lt;hi rendition=&amp;quot;#aq&amp;quot;&amp;gt;Platina&amp;lt;/hi&amp;gt;, Magnet&amp;amp;#x017F;tein u. dgl.; &amp;amp;#x017F;ie&amp;lt;lb/&amp;gt;&amp;lt;subst&amp;gt;&amp;lt;del rendition=&amp;quot;#s&amp;quot;&amp;gt;rotiren&amp;lt;/del&amp;gt;&amp;lt;add place=&amp;quot;superlinear&amp;quot;&amp;gt;bewegen &amp;amp;#x017F;ich&amp;lt;/add&amp;gt;&amp;lt;/subst&amp;gt; viel ge&amp;amp;#x017F;chwinder &amp;lt;metamark/&amp;gt;&amp;lt;add place=&amp;quot;superlinear&amp;quot;&amp;gt;um die Son&amp;amp;#x0303;e&amp;lt;/add&amp;gt;, &amp;amp;#x017F;ind mond-&amp;lt;lb/&amp;gt;&lt;br /&gt;
armer |: bloß die Erde hat einen &amp;lt;choice&amp;gt;&amp;lt;abbr&amp;gt;Trabant&amp;amp;#xFFFC;&amp;lt;/abbr&amp;gt;&amp;lt;expan resp=&amp;quot;#BF&amp;quot;&amp;gt;Trabanten&amp;lt;/expan&amp;gt;&amp;lt;/choice&amp;gt; :|,&amp;lt;lb/&amp;gt;&lt;br /&gt;
an den Polen abgeplattet. Anders&amp;lt;lb/&amp;gt;&lt;br /&gt;
verhält es &amp;amp;#x017F;ich mit den Planeten auf der&amp;lt;lb/&amp;gt;&lt;br /&gt;
Bahn jen&amp;amp;#x017F;eits der kleinen Planeten.&amp;lt;/p&amp;gt;&amp;lt;lb/&amp;gt;&lt;br /&gt;
        &amp;lt;/div&amp;gt;&lt;br /&gt;
      &amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;/body&amp;gt;&lt;br /&gt;
  &amp;lt;/text&amp;gt;&lt;br /&gt;
&amp;lt;/TEI&amp;gt;&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Import into neo4j ==&lt;br /&gt;
&lt;br /&gt;
The import into neo4j runs with:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
 // Import xml-example from DTA to neo4j&lt;br /&gt;
 call apoc.import.xml('https://seafile.rlp.net/f/6282a26504cc4f079ab9/?dl=1', {connectCharacters: true, charactersForTag:{lb:' '}, filterLeadingWhitespace: true}) yield node &lt;br /&gt;
 return node;&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the next picture you can see a small set of the Graph:&lt;br /&gt;
&lt;br /&gt;
[[image:TEI-Graph.png|center|800px|x]]&lt;br /&gt;
&lt;br /&gt;
== Export from neo4j to Standoff Property JSON ==&lt;br /&gt;
&lt;br /&gt;
The next step is to export the data with some [[cypher]] to the Standoff-Property JSON-Format.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
 // Export TEI-Graph to Standoff-Property-JSON-Format by Stefan Armbruster&lt;br /&gt;
 match path=(d:XmlDocument)-[:NE*]-&amp;gt;(e:XmlCharacters)&lt;br /&gt;
 where not (e)-[:NE]-&amp;gt;()&lt;br /&gt;
 with tail(nodes(path)) as words, d&lt;br /&gt;
 with reduce(s=&amp;quot;&amp;quot;, x in words| s + x.text ) as allText, d&lt;br /&gt;
 call apoc.path.expandConfig(d,{&lt;br /&gt;
 relationshipFilter: '&amp;lt;IS_CHILD_OF',&lt;br /&gt;
 labelFilter: 'XmlTag',&lt;br /&gt;
 bfs: false,&lt;br /&gt;
 minLevel: 1&lt;br /&gt;
 }) yield path&lt;br /&gt;
 with allText, path, nodes(path)[-1] as this&lt;br /&gt;
 MATCH p=(this)-[:NEXT*]-&amp;gt;(x)&lt;br /&gt;
 where (x)-[:LAST_CHILD_OF*]-&amp;gt;(this) and any(x in nodes(p) WHERE x:XmlCharacters)&lt;br /&gt;
 with allText, this, collect(p)[-1] as longest&lt;br /&gt;
 with allText, this, [x in nodes(longest) where x:XmlCharacters] as xmlCharacters&lt;br /&gt;
 with allText, this, &lt;br /&gt;
 apoc.coll.min([x in xmlCharacters | x.startIndex]) as min, &lt;br /&gt;
 apoc.coll.max([x in xmlCharacters | x.endIndex]) as max, &lt;br /&gt;
 apoc.text.join([x in xmlCharacters | x.text], &amp;quot;&amp;quot;) as text&lt;br /&gt;
 with allText, {&lt;br /&gt;
 index:id(this), &lt;br /&gt;
 startIndex: min, &lt;br /&gt;
 endIndex: max,&lt;br /&gt;
 text: text,&lt;br /&gt;
 type: this._name,&lt;br /&gt;
 attributes: apoc.map.fromPairs([x in keys(this) WHERE not x starts with &amp;quot;_&amp;quot; | [x, this[x]] ])&lt;br /&gt;
 } as standoffProperty&lt;br /&gt;
 return {text: allText, properties: collect(standoffProperty)};&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This [[json]] can then be imported in the [[https://github.com/argimenes/standoff-properties-editor SPEEDy]] Standoff Property Editor which can be found on [[https://github.com/argimenes/standoff-properties-editor GitHub]].&lt;br /&gt;
&lt;br /&gt;
At the end of the README-Section you can find a [[https://argimenes.github.io/standoff-properties-editor/ Link]] to Test-Istance hosted on [[https://argimenes.github.io/standoff-properties-editor/ Github-Pages]].&lt;br /&gt;
&lt;br /&gt;
Just copy the JSON-Export in the window below the UNBIND-Button of SPEEDy and press BIND.&lt;br /&gt;
&lt;br /&gt;
The next picture shows SPEEDy with the test.json. You can choose the example file in the top selection box of SPEEDy as well.&lt;br /&gt;
&lt;br /&gt;
[[image:TEIinSPEEDy.png|center|800px|x]]&lt;br /&gt;
&lt;br /&gt;
I want to say thanks to Stefan Armbruster from neo4j for the export-cypher-query and the implementation of the XML-Import functions to [https://neo4j.com/labs/apoc/4.4/import/xml/ apoc.import.xml apoc] and Iian Neill for his work on [https://argimenes.github.io/standoff-properties-editor/ SPEEDy].&lt;/div&gt;</summary>
		<author><name>Andreas Kuczera</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=SIG:GraphTechnologies&amp;diff=16879</id>
		<title>SIG:GraphTechnologies</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=SIG:GraphTechnologies&amp;diff=16879"/>
		<updated>2022-03-03T10:19:27Z</updated>

		<summary type="html">&lt;p&gt;Andreas Kuczera: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Andreas Kuczera, Iian Neill, Stefan Armbruster&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
&lt;br /&gt;
As TEI is not a format, though many people think it is. It's a de facto standard that specifies Guidelines for document interchange. Actually the Guidelines are based on the XML but this is only one possible technical way of expressing the phenomenons.&lt;br /&gt;
&lt;br /&gt;
'''The aim of the Graph-SIG is to find a way of expressing the language phenomenons of the TEI in Graphs.''' &lt;br /&gt;
&lt;br /&gt;
* In the graph you can use multi-hierarchical annotations layers.&lt;br /&gt;
* Graph models are very easy to read and understand. So DH-People and “normal” scientists have a level of discussion in common.&lt;br /&gt;
* A Graph can be expressed as RDF so the step from a Graph to linked open data is easy to make.&lt;br /&gt;
&lt;br /&gt;
The main goal of the TEI-Graph-SIG is to model the textual phenomenons of the TEI in a Graph and to develop routines to import TEI-encoded XML-files into graph databases.&lt;br /&gt;
&lt;br /&gt;
== Convert DTA-XML with neo4j to Standoff Property JSON ==&lt;br /&gt;
&lt;br /&gt;
In a first step we import a small xml-example into a [https://neo4j.com neo4j] instance using [https://neo4j.com/labs/apoc/4.4/import/xml/ apoc.import.xml]&lt;br /&gt;
&lt;br /&gt;
The example is a [https://seafile.rlp.net/f/6282a26504cc4f079ab9/?dl=1 page] from the [https://www.deutschestextarchiv.de DTA]. Here you can find the [[XML-Testfile]] and this is the [http://www.deutschestextarchiv.de/book/view/patzig_msgermfol841842_1828/?hl=welcher;p=11 Link] to the DTA-Version.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
&amp;lt;TEI&amp;gt;&lt;br /&gt;
  &amp;lt;text&amp;gt;&lt;br /&gt;
    &amp;lt;body&amp;gt;&lt;br /&gt;
      &amp;lt;div xml:id=&amp;quot;Ms_germ_fol_841&amp;quot; next=&amp;quot;#Ms_germ_fol_842&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;div type=&amp;quot;session&amp;quot; n=&amp;quot;1&amp;quot;&amp;gt;&lt;br /&gt;
          &amp;lt;p&amp;gt;&amp;lt;pb facs=&amp;quot;#f0011&amp;quot; n=&amp;quot;7.&amp;quot;/&amp;gt;&lt;br /&gt;
erblicken wir einen großen Unter&amp;amp;#x017F;chied zwi-&amp;lt;lb/&amp;gt;&lt;br /&gt;
&amp;amp;#x017F;chen den entferntern u. nähern Planeten&amp;lt;lb/&amp;gt;&amp;lt;note place=&amp;quot;left&amp;quot;&amp;gt;&amp;lt;hi rendition=&amp;quot;#u&amp;quot;&amp;gt;Zwei be&amp;amp;#x017F;ondere Planeten-Sy&amp;amp;#x017F;teme&amp;lt;/hi&amp;gt;&amp;lt;lb/&amp;gt;&amp;lt;/note&amp;gt;von der Son&amp;amp;#x0303;e. &amp;lt;hi rendition=&amp;quot;#u&amp;quot;&amp;gt;Dies giebt zwei be&amp;amp;#x017F;ondre&amp;lt;lb/&amp;gt;&lt;br /&gt;
Sÿ&amp;amp;#x017F;teme&amp;lt;/hi&amp;gt;. Die Scheide machen die kleinern&amp;lt;lb/&amp;gt;&lt;br /&gt;
Körper die &amp;amp;#x017F;ich zwi&amp;amp;#x017F;chen Mars u. Jupiter&amp;lt;lb/&amp;gt;&lt;br /&gt;
bewegen, die ein ganz eignes Sy&amp;amp;#x017F;tem&amp;lt;lb/&amp;gt;&lt;br /&gt;
bilden, von denen die Ve&amp;amp;#x017F;ta als die&amp;lt;lb/&amp;gt;&amp;lt;hi rendition=&amp;quot;#u&amp;quot; hand=&amp;quot;#pencil&amp;quot;&amp;gt;größte&amp;lt;/hi&amp;gt; &amp;lt;choice&amp;gt;&amp;lt;sic&amp;gt;ungefahr&amp;lt;/sic&amp;gt;&amp;lt;corr resp=&amp;quot;#CT&amp;quot;&amp;gt;ungefähr&amp;lt;/corr&amp;gt;&amp;lt;/choice&amp;gt; die &amp;lt;choice&amp;gt;&amp;lt;abbr&amp;gt;Oberfl.&amp;lt;/abbr&amp;gt;&amp;lt;expan resp=&amp;quot;#CT&amp;quot;&amp;gt;Oberfläche&amp;lt;/expan&amp;gt;&amp;lt;/choice&amp;gt; von Deut&amp;amp;#x017F;ch-&amp;lt;lb/&amp;gt;&lt;br /&gt;
land hat. Sie haben eine translative Be-&amp;lt;lb/&amp;gt;&lt;br /&gt;
wegung von We&amp;amp;#x017F;ten nach O&amp;amp;#x017F;ten, &amp;amp;#x017F;ind ihrer&amp;lt;lb/&amp;gt;&lt;br /&gt;
Stellung nach ähnlich den &amp;lt;choice&amp;gt;&amp;lt;sic&amp;gt;Com&amp;amp;#x0303;eten&amp;lt;/sic&amp;gt;&amp;lt;corr resp=&amp;quot;#BF&amp;quot;&amp;gt;Cometen&amp;lt;/corr&amp;gt;&amp;lt;/choice&amp;gt;; obgleich&amp;lt;lb/&amp;gt;&lt;br /&gt;
doch keine A&amp;lt;subst&amp;gt;&amp;lt;del rendition=&amp;quot;#ow&amp;quot;&amp;gt;&amp;lt;gap reason=&amp;quot;illegible&amp;quot; unit=&amp;quot;chars&amp;quot; quantity=&amp;quot;1&amp;quot;/&amp;gt;&amp;lt;/del&amp;gt;&amp;lt;add place=&amp;quot;across&amp;quot;&amp;gt;e&amp;lt;/add&amp;gt;&amp;lt;/subst&amp;gt;hnlichkeit anderweit zwi&amp;amp;#x017F;chen&amp;lt;lb/&amp;gt;&lt;br /&gt;
ihnen u. den &amp;lt;choice&amp;gt;&amp;lt;abbr&amp;gt;&amp;lt;choice&amp;gt;&amp;lt;sic&amp;gt;Com&amp;amp;#x0303;et&amp;amp;#xFFFC;&amp;lt;/sic&amp;gt;&amp;lt;corr resp=&amp;quot;#BF&amp;quot;&amp;gt;Comet&amp;amp;#xFFFC;&amp;lt;/corr&amp;gt;&amp;lt;/choice&amp;gt;&amp;lt;/abbr&amp;gt;&amp;lt;expan resp=&amp;quot;#BF&amp;quot;&amp;gt;&amp;lt;choice&amp;gt;&amp;lt;sic&amp;gt;Com&amp;amp;#x0303;eten&amp;lt;/sic&amp;gt;&amp;lt;corr resp=&amp;quot;#BF&amp;quot;&amp;gt;Cometen&amp;lt;/corr&amp;gt;&amp;lt;/choice&amp;gt;&amp;lt;/expan&amp;gt;&amp;lt;/choice&amp;gt; i&amp;amp;#x017F;t, wie überhaupt&amp;lt;lb/&amp;gt;&lt;br /&gt;
kein Uebergang zwi&amp;amp;#x017F;chen Planeten u. Co-&amp;lt;lb/&amp;gt;&lt;br /&gt;
meten gefunden wird u. keine po&amp;amp;#x017F;itive&amp;lt;lb/&amp;gt;&amp;lt;note place=&amp;quot;left&amp;quot;&amp;gt;&amp;lt;hi rendition=&amp;quot;#u&amp;quot;&amp;gt;Er&amp;amp;#x017F;tes Sy&amp;amp;#x017F;tem&amp;lt;lb/&amp;gt;&lt;br /&gt;
characteri&amp;amp;#x017F;t. Merkmale&amp;lt;/hi&amp;gt;&amp;lt;lb/&amp;gt;&amp;lt;/note&amp;gt;Aehnlichkeit. &amp;lt;hi rendition=&amp;quot;#u&amp;quot;&amp;gt;Jn die&amp;amp;#x017F;em doppelten Sy&amp;amp;#x017F;tem&amp;lt;lb/&amp;gt;&lt;br /&gt;
der Planeten gehören zu&amp;amp;#x017F;am&amp;amp;#x0303;en: Merkur,&amp;lt;lb/&amp;gt;&lt;br /&gt;
Venus, Erde, Mars.&amp;lt;/hi&amp;gt; Sie haben das&amp;lt;lb/&amp;gt;&lt;br /&gt;
gemein&amp;amp;#x017F;ame der be&amp;amp;#x017F;ondern Dichtigkeit,&amp;lt;lb/&amp;gt;&lt;br /&gt;
wie &amp;lt;hi rendition=&amp;quot;#aq&amp;quot;&amp;gt;Platina&amp;lt;/hi&amp;gt;, Magnet&amp;amp;#x017F;tein u. dgl.; &amp;amp;#x017F;ie&amp;lt;lb/&amp;gt;&amp;lt;subst&amp;gt;&amp;lt;del rendition=&amp;quot;#s&amp;quot;&amp;gt;rotiren&amp;lt;/del&amp;gt;&amp;lt;add place=&amp;quot;superlinear&amp;quot;&amp;gt;bewegen &amp;amp;#x017F;ich&amp;lt;/add&amp;gt;&amp;lt;/subst&amp;gt; viel ge&amp;amp;#x017F;chwinder &amp;lt;metamark/&amp;gt;&amp;lt;add place=&amp;quot;superlinear&amp;quot;&amp;gt;um die Son&amp;amp;#x0303;e&amp;lt;/add&amp;gt;, &amp;amp;#x017F;ind mond-&amp;lt;lb/&amp;gt;&lt;br /&gt;
armer |: bloß die Erde hat einen &amp;lt;choice&amp;gt;&amp;lt;abbr&amp;gt;Trabant&amp;amp;#xFFFC;&amp;lt;/abbr&amp;gt;&amp;lt;expan resp=&amp;quot;#BF&amp;quot;&amp;gt;Trabanten&amp;lt;/expan&amp;gt;&amp;lt;/choice&amp;gt; :|,&amp;lt;lb/&amp;gt;&lt;br /&gt;
an den Polen abgeplattet. Anders&amp;lt;lb/&amp;gt;&lt;br /&gt;
verhält es &amp;amp;#x017F;ich mit den Planeten auf der&amp;lt;lb/&amp;gt;&lt;br /&gt;
Bahn jen&amp;amp;#x017F;eits der kleinen Planeten.&amp;lt;/p&amp;gt;&amp;lt;lb/&amp;gt;&lt;br /&gt;
        &amp;lt;/div&amp;gt;&lt;br /&gt;
      &amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;/body&amp;gt;&lt;br /&gt;
  &amp;lt;/text&amp;gt;&lt;br /&gt;
&amp;lt;/TEI&amp;gt;&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Import into neo4j ==&lt;br /&gt;
&lt;br /&gt;
The import into neo4j runs with:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
 // Import xml-example from DTA to neo4j&lt;br /&gt;
 call apoc.import.xml('https://seafile.rlp.net/f/6282a26504cc4f079ab9/?dl=1', {connectCharacters: true, charactersForTag:{lb:' '}, filterLeadingWhitespace: true}) yield node &lt;br /&gt;
 return node;&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the next picture you can see a small set of the Graph:&lt;br /&gt;
&lt;br /&gt;
[[image:TEI-Graph.png|center|800px|x]]&lt;br /&gt;
&lt;br /&gt;
== Export from neo4j to Standoff Property JSON ==&lt;br /&gt;
&lt;br /&gt;
The next step is to export the data with some [[cypher]] to the Standoff-Property JSON-Format.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
 // Export TEI-Graph to Standoff-Property-JSON-Format by Stefan Armbruster&lt;br /&gt;
 match path=(d:XmlDocument)-[:NE*]-&amp;gt;(e:XmlCharacters)&lt;br /&gt;
 where not (e)-[:NE]-&amp;gt;()&lt;br /&gt;
 with tail(nodes(path)) as words, d&lt;br /&gt;
 with reduce(s=&amp;quot;&amp;quot;, x in words| s + x.text ) as allText, d&lt;br /&gt;
 call apoc.path.expandConfig(d,{&lt;br /&gt;
 relationshipFilter: '&amp;lt;IS_CHILD_OF',&lt;br /&gt;
 labelFilter: 'XmlTag',&lt;br /&gt;
 bfs: false,&lt;br /&gt;
 minLevel: 1&lt;br /&gt;
 }) yield path&lt;br /&gt;
 with allText, path, nodes(path)[-1] as this&lt;br /&gt;
 MATCH p=(this)-[:NEXT*]-&amp;gt;(x)&lt;br /&gt;
 where (x)-[:LAST_CHILD_OF*]-&amp;gt;(this) and any(x in nodes(p) WHERE x:XmlCharacters)&lt;br /&gt;
 with allText, this, collect(p)[-1] as longest&lt;br /&gt;
 with allText, this, [x in nodes(longest) where x:XmlCharacters] as xmlCharacters&lt;br /&gt;
 with allText, this, &lt;br /&gt;
 apoc.coll.min([x in xmlCharacters | x.startIndex]) as min, &lt;br /&gt;
 apoc.coll.max([x in xmlCharacters | x.endIndex]) as max, &lt;br /&gt;
 apoc.text.join([x in xmlCharacters | x.text], &amp;quot;&amp;quot;) as text&lt;br /&gt;
 with allText, {&lt;br /&gt;
 index:id(this), &lt;br /&gt;
 startIndex: min, &lt;br /&gt;
 endIndex: max,&lt;br /&gt;
 text: text,&lt;br /&gt;
 type: this._name,&lt;br /&gt;
 attributes: apoc.map.fromPairs([x in keys(this) WHERE not x starts with &amp;quot;_&amp;quot; | [x, this[x]] ])&lt;br /&gt;
 } as standoffProperty&lt;br /&gt;
 return {text: allText, properties: collect(standoffProperty)};&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This [[json]] can then be imported in the [[https://github.com/argimenes/standoff-properties-editor SPEEDy]] Standoff Property Editor which can be found on [[https://github.com/argimenes/standoff-properties-editor GitHub]].&lt;br /&gt;
&lt;br /&gt;
At the end of the README-Section you can find a [[https://argimenes.github.io/standoff-properties-editor/ Link]] to Test-Istance hosted on [[https://argimenes.github.io/standoff-properties-editor/ Github-Pages]].&lt;br /&gt;
&lt;br /&gt;
Just copy the JSON-Export in the window below the UNBIND-Button of SPEEDy and press BIND.&lt;br /&gt;
&lt;br /&gt;
The next picture shows SPEEDy with the test.json. You can choose the example file in the top selection box of SPEEDy as well.&lt;br /&gt;
&lt;br /&gt;
[[image:TEIinSPEEDy.png|center|800px|x]]&lt;br /&gt;
&lt;br /&gt;
I want to say thanks to Stefan Armbruster from neo4j for the export-cypher-query and the implementation of the XML-Import functions to [https://github.com/neo4j-contrib/neo4j-apoc-procedures-function apoc] and Iian Neill for his work on [https://argimenes.github.io/standoff-properties-editor/ SPEEDy].&lt;/div&gt;</summary>
		<author><name>Andreas Kuczera</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=SIG:GraphTechnologies&amp;diff=16878</id>
		<title>SIG:GraphTechnologies</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=SIG:GraphTechnologies&amp;diff=16878"/>
		<updated>2022-03-03T10:06:38Z</updated>

		<summary type="html">&lt;p&gt;Andreas Kuczera: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Andreas Kuczera, Iian Neill, Stefan Armbruster&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
&lt;br /&gt;
As TEI is not a format, though many people think it is. It's a de facto standard that specifies Guidelines for document interchange. Actually the Guidelines are based on the XML but this is only one possible technical way of expressing the phenomenons.&lt;br /&gt;
&lt;br /&gt;
'''The aim of the Graph-SIG is to find a way of expressing the language phenomenons of the TEI in Graphs.''' &lt;br /&gt;
&lt;br /&gt;
* In the graph you can use multi-hierarchical annotations layers.&lt;br /&gt;
* Graph models are very easy to read and understand. So DH-People and “normal” scientists have a level of discussion in common.&lt;br /&gt;
* A Graph can be expressed as RDF so the step from a Graph to linked open data is easy to make.&lt;br /&gt;
&lt;br /&gt;
The main goal of the TEI-Graph-SIG is to model the textual phenomenons of the TEI in a Graph and to develop routines to import TEI-encoded XML-files into graph databases.&lt;br /&gt;
&lt;br /&gt;
== Convert DTA-XML with neo4j to Standoff Property JSON ==&lt;br /&gt;
&lt;br /&gt;
In a first step we import a small xml-example into a [https://neo4j.com neo4j] instance using [https://neo4j.com/labs/apoc/4.4/import/xml/ apoc.import.xml]&lt;br /&gt;
&lt;br /&gt;
The example is a [https://seafile.rlp.net/f/6282a26504cc4f079ab9/?dl=1 page] from the [https://www.deutschestextarchiv.de DTA]. Here you can find the [[XML-Testfile]] and this is the [http://www.deutschestextarchiv.de/book/view/patzig_msgermfol841842_1828/?hl=welcher;p=11 Link] to the DTA-Version.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
&amp;lt;TEI&amp;gt;&lt;br /&gt;
  &amp;lt;text&amp;gt;&lt;br /&gt;
    &amp;lt;body&amp;gt;&lt;br /&gt;
      &amp;lt;div xml:id=&amp;quot;Ms_germ_fol_841&amp;quot; next=&amp;quot;#Ms_germ_fol_842&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;div type=&amp;quot;session&amp;quot; n=&amp;quot;1&amp;quot;&amp;gt;&lt;br /&gt;
          &amp;lt;p&amp;gt;&amp;lt;pb facs=&amp;quot;#f0011&amp;quot; n=&amp;quot;7.&amp;quot;/&amp;gt;&lt;br /&gt;
erblicken wir einen großen Unter&amp;amp;#x017F;chied zwi-&amp;lt;lb/&amp;gt;&lt;br /&gt;
&amp;amp;#x017F;chen den entferntern u. nähern Planeten&amp;lt;lb/&amp;gt;&amp;lt;note place=&amp;quot;left&amp;quot;&amp;gt;&amp;lt;hi rendition=&amp;quot;#u&amp;quot;&amp;gt;Zwei be&amp;amp;#x017F;ondere Planeten-Sy&amp;amp;#x017F;teme&amp;lt;/hi&amp;gt;&amp;lt;lb/&amp;gt;&amp;lt;/note&amp;gt;von der Son&amp;amp;#x0303;e. &amp;lt;hi rendition=&amp;quot;#u&amp;quot;&amp;gt;Dies giebt zwei be&amp;amp;#x017F;ondre&amp;lt;lb/&amp;gt;&lt;br /&gt;
Sÿ&amp;amp;#x017F;teme&amp;lt;/hi&amp;gt;. Die Scheide machen die kleinern&amp;lt;lb/&amp;gt;&lt;br /&gt;
Körper die &amp;amp;#x017F;ich zwi&amp;amp;#x017F;chen Mars u. Jupiter&amp;lt;lb/&amp;gt;&lt;br /&gt;
bewegen, die ein ganz eignes Sy&amp;amp;#x017F;tem&amp;lt;lb/&amp;gt;&lt;br /&gt;
bilden, von denen die Ve&amp;amp;#x017F;ta als die&amp;lt;lb/&amp;gt;&amp;lt;hi rendition=&amp;quot;#u&amp;quot; hand=&amp;quot;#pencil&amp;quot;&amp;gt;größte&amp;lt;/hi&amp;gt; &amp;lt;choice&amp;gt;&amp;lt;sic&amp;gt;ungefahr&amp;lt;/sic&amp;gt;&amp;lt;corr resp=&amp;quot;#CT&amp;quot;&amp;gt;ungefähr&amp;lt;/corr&amp;gt;&amp;lt;/choice&amp;gt; die &amp;lt;choice&amp;gt;&amp;lt;abbr&amp;gt;Oberfl.&amp;lt;/abbr&amp;gt;&amp;lt;expan resp=&amp;quot;#CT&amp;quot;&amp;gt;Oberfläche&amp;lt;/expan&amp;gt;&amp;lt;/choice&amp;gt; von Deut&amp;amp;#x017F;ch-&amp;lt;lb/&amp;gt;&lt;br /&gt;
land hat. Sie haben eine translative Be-&amp;lt;lb/&amp;gt;&lt;br /&gt;
wegung von We&amp;amp;#x017F;ten nach O&amp;amp;#x017F;ten, &amp;amp;#x017F;ind ihrer&amp;lt;lb/&amp;gt;&lt;br /&gt;
Stellung nach ähnlich den &amp;lt;choice&amp;gt;&amp;lt;sic&amp;gt;Com&amp;amp;#x0303;eten&amp;lt;/sic&amp;gt;&amp;lt;corr resp=&amp;quot;#BF&amp;quot;&amp;gt;Cometen&amp;lt;/corr&amp;gt;&amp;lt;/choice&amp;gt;; obgleich&amp;lt;lb/&amp;gt;&lt;br /&gt;
doch keine A&amp;lt;subst&amp;gt;&amp;lt;del rendition=&amp;quot;#ow&amp;quot;&amp;gt;&amp;lt;gap reason=&amp;quot;illegible&amp;quot; unit=&amp;quot;chars&amp;quot; quantity=&amp;quot;1&amp;quot;/&amp;gt;&amp;lt;/del&amp;gt;&amp;lt;add place=&amp;quot;across&amp;quot;&amp;gt;e&amp;lt;/add&amp;gt;&amp;lt;/subst&amp;gt;hnlichkeit anderweit zwi&amp;amp;#x017F;chen&amp;lt;lb/&amp;gt;&lt;br /&gt;
ihnen u. den &amp;lt;choice&amp;gt;&amp;lt;abbr&amp;gt;&amp;lt;choice&amp;gt;&amp;lt;sic&amp;gt;Com&amp;amp;#x0303;et&amp;amp;#xFFFC;&amp;lt;/sic&amp;gt;&amp;lt;corr resp=&amp;quot;#BF&amp;quot;&amp;gt;Comet&amp;amp;#xFFFC;&amp;lt;/corr&amp;gt;&amp;lt;/choice&amp;gt;&amp;lt;/abbr&amp;gt;&amp;lt;expan resp=&amp;quot;#BF&amp;quot;&amp;gt;&amp;lt;choice&amp;gt;&amp;lt;sic&amp;gt;Com&amp;amp;#x0303;eten&amp;lt;/sic&amp;gt;&amp;lt;corr resp=&amp;quot;#BF&amp;quot;&amp;gt;Cometen&amp;lt;/corr&amp;gt;&amp;lt;/choice&amp;gt;&amp;lt;/expan&amp;gt;&amp;lt;/choice&amp;gt; i&amp;amp;#x017F;t, wie überhaupt&amp;lt;lb/&amp;gt;&lt;br /&gt;
kein Uebergang zwi&amp;amp;#x017F;chen Planeten u. Co-&amp;lt;lb/&amp;gt;&lt;br /&gt;
meten gefunden wird u. keine po&amp;amp;#x017F;itive&amp;lt;lb/&amp;gt;&amp;lt;note place=&amp;quot;left&amp;quot;&amp;gt;&amp;lt;hi rendition=&amp;quot;#u&amp;quot;&amp;gt;Er&amp;amp;#x017F;tes Sy&amp;amp;#x017F;tem&amp;lt;lb/&amp;gt;&lt;br /&gt;
characteri&amp;amp;#x017F;t. Merkmale&amp;lt;/hi&amp;gt;&amp;lt;lb/&amp;gt;&amp;lt;/note&amp;gt;Aehnlichkeit. &amp;lt;hi rendition=&amp;quot;#u&amp;quot;&amp;gt;Jn die&amp;amp;#x017F;em doppelten Sy&amp;amp;#x017F;tem&amp;lt;lb/&amp;gt;&lt;br /&gt;
der Planeten gehören zu&amp;amp;#x017F;am&amp;amp;#x0303;en: Merkur,&amp;lt;lb/&amp;gt;&lt;br /&gt;
Venus, Erde, Mars.&amp;lt;/hi&amp;gt; Sie haben das&amp;lt;lb/&amp;gt;&lt;br /&gt;
gemein&amp;amp;#x017F;ame der be&amp;amp;#x017F;ondern Dichtigkeit,&amp;lt;lb/&amp;gt;&lt;br /&gt;
wie &amp;lt;hi rendition=&amp;quot;#aq&amp;quot;&amp;gt;Platina&amp;lt;/hi&amp;gt;, Magnet&amp;amp;#x017F;tein u. dgl.; &amp;amp;#x017F;ie&amp;lt;lb/&amp;gt;&amp;lt;subst&amp;gt;&amp;lt;del rendition=&amp;quot;#s&amp;quot;&amp;gt;rotiren&amp;lt;/del&amp;gt;&amp;lt;add place=&amp;quot;superlinear&amp;quot;&amp;gt;bewegen &amp;amp;#x017F;ich&amp;lt;/add&amp;gt;&amp;lt;/subst&amp;gt; viel ge&amp;amp;#x017F;chwinder &amp;lt;metamark/&amp;gt;&amp;lt;add place=&amp;quot;superlinear&amp;quot;&amp;gt;um die Son&amp;amp;#x0303;e&amp;lt;/add&amp;gt;, &amp;amp;#x017F;ind mond-&amp;lt;lb/&amp;gt;&lt;br /&gt;
armer |: bloß die Erde hat einen &amp;lt;choice&amp;gt;&amp;lt;abbr&amp;gt;Trabant&amp;amp;#xFFFC;&amp;lt;/abbr&amp;gt;&amp;lt;expan resp=&amp;quot;#BF&amp;quot;&amp;gt;Trabanten&amp;lt;/expan&amp;gt;&amp;lt;/choice&amp;gt; :|,&amp;lt;lb/&amp;gt;&lt;br /&gt;
an den Polen abgeplattet. Anders&amp;lt;lb/&amp;gt;&lt;br /&gt;
verhält es &amp;amp;#x017F;ich mit den Planeten auf der&amp;lt;lb/&amp;gt;&lt;br /&gt;
Bahn jen&amp;amp;#x017F;eits der kleinen Planeten.&amp;lt;/p&amp;gt;&amp;lt;lb/&amp;gt;&lt;br /&gt;
        &amp;lt;/div&amp;gt;&lt;br /&gt;
      &amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;/body&amp;gt;&lt;br /&gt;
  &amp;lt;/text&amp;gt;&lt;br /&gt;
&amp;lt;/TEI&amp;gt;&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Import into neo4j ==&lt;br /&gt;
&lt;br /&gt;
The import into neo4j runs with:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
 // Import xml-example from DTA to neo4j&lt;br /&gt;
 call apoc.import.xml('https://seafile.rlp.net/f/6282a26504cc4f079ab9/?dl=1', {connectCharacters: true, charactersForTag:{lb:' '}, filterLeadingWhitespace: true}) yield node &lt;br /&gt;
 return node;&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the next picture you can see a small set of the Graph:&lt;br /&gt;
&lt;br /&gt;
[[image:TEI-Graph.png|center|800px|x]]&lt;br /&gt;
&lt;br /&gt;
== Export from neo4j to Standoff Property JSON ==&lt;br /&gt;
&lt;br /&gt;
The next step is to export the data with some [[cypher]] to the Standoff-Property JSON-Format.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
 // Export TEI-Graph to Standoff-Property-JSON-Format by Stefan Armbruster&lt;br /&gt;
 match path=(d:XmlDocument)-[:NE*]-&amp;gt;(e:XmlCharacters)&lt;br /&gt;
 where not (e)-[:NE]-&amp;gt;()&lt;br /&gt;
 with tail(nodes(path)) as words, d&lt;br /&gt;
 with reduce(s=&amp;quot;&amp;quot;, x in words| s + x.text ) as allText, d&lt;br /&gt;
 call apoc.path.expandConfig(d,{&lt;br /&gt;
 relationshipFilter: '&amp;lt;IS_CHILD_OF',&lt;br /&gt;
 labelFilter: 'XmlTag',&lt;br /&gt;
 bfs: false,&lt;br /&gt;
 minLevel: 1&lt;br /&gt;
 }) yield path&lt;br /&gt;
 with allText, path, nodes(path)[-1] as this&lt;br /&gt;
 MATCH p=(this)-[:NEXT*]-&amp;gt;(x)&lt;br /&gt;
 where (x)-[:LAST_CHILD_OF*]-&amp;gt;(this) and any(x in nodes(p) WHERE x:XmlCharacters)&lt;br /&gt;
 with allText, this, collect(p)[-1] as longest&lt;br /&gt;
 with allText, this, [x in nodes(longest) where x:XmlCharacters] as xmlCharacters&lt;br /&gt;
 with allText, this, &lt;br /&gt;
 apoc.coll.min([x in xmlCharacters | x.startIndex]) as min, &lt;br /&gt;
 apoc.coll.max([x in xmlCharacters | x.endIndex]) as max, &lt;br /&gt;
 apoc.text.join([x in xmlCharacters | x.text], &amp;quot;&amp;quot;) as text&lt;br /&gt;
 with allText, {&lt;br /&gt;
 index:id(this), &lt;br /&gt;
 startIndex: min, &lt;br /&gt;
 endIndex: max,&lt;br /&gt;
 text: text,&lt;br /&gt;
 type: this._name,&lt;br /&gt;
 attributes: apoc.map.fromPairs([x in keys(this) WHERE not x starts with &amp;quot;_&amp;quot; | [x, this[x]] ])&lt;br /&gt;
 } as standoffProperty&lt;br /&gt;
 return {text: allText, properties: collect(standoffProperty)};&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This [[json]] can then be imported in the [[https://github.com/argimenes/standoff-properties-editor SPEEDy]] Standoff Property Editor which can be found on [[https://github.com/argimenes/standoff-properties-editor GitHub]].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
{&lt;br /&gt;
 &amp;quot;text&amp;quot;: &amp;quot;erblicken wir einen großen Unterſchied zwi- ſchen den entferntern u. nähern Planeten Zwei beſondere Planeten-Syſteme von der Soñe. Dies giebt zwei beſondre Sÿſteme. Die Scheide machen die kleinern Körper die ſich zwiſchen Mars u. Jupiter bewegen, die ein ganz eignes Syſtem bilden, von denen die Veſta als die größte ungefahrungefähr die Oberfl.Oberfläche von Deutſch- land hat. Sie haben eine translative Be- wegung von Weſten nach Oſten, ſind ihrer Stellung nach ähnlich den Com̃etenCometen; obgleich doch keine Aehnlichkeit anderweit zwiſchen ihnen u. den Com̃et￼Comet￼Com̃etenCometen iſt, wie überhaupt kein Uebergang zwiſchen Planeten u. Co- meten gefunden wird u. keine poſitive Erſtes Syſtem characteriſt. Merkmale Aehnlichkeit. Jn dieſem doppelten Syſtem der Planeten gehören zuſam̃en: Merkur, Venus, Erde, Mars. Sie haben das gemeinſame der beſondern Dichtigkeit, wie Platina, Magnetſtein u. dgl.; ſie rotirenbewegen ſich viel geſchwinder um die Soñe, ſind mond- armer |: bloß die Erde hat einen Trabant￼Trabanten :|, an den Polen abgeplattet. Anders verhält es ſich mit den Planeten auf der Bahn jenſeits der kleinen Planeten. &amp;quot;,&lt;br /&gt;
 &amp;quot;properties&amp;quot;: [&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 0,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 1138,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 1,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {},&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;erblicken wir einen großen Unterſchied zwi- ſchen den entferntern u. nähern Planeten Zwei beſondere Planeten-Syſteme von der Soñe. Dies giebt zwei beſondre Sÿſteme. Die Scheide machen die kleinern Körper die ſich zwiſchen Mars u. Jupiter bewegen, die ein ganz eignes Syſtem bilden, von denen die Veſta als die größte ungefahrungefähr die Oberfl.Oberfläche von Deutſch- land hat. Sie haben eine translative Be- wegung von Weſten nach Oſten, ſind ihrer Stellung nach ähnlich den Com̃etenCometen; obgleich doch keine Aehnlichkeit anderweit zwiſchen ihnen u. den Com̃et￼Comet￼Com̃etenCometen iſt, wie überhaupt kein Uebergang zwiſchen Planeten u. Co- meten gefunden wird u. keine poſitive Erſtes Syſtem characteriſt. Merkmale Aehnlichkeit. Jn dieſem doppelten Syſtem der Planeten gehören zuſam̃en: Merkur, Venus, Erde, Mars. Sie haben das gemeinſame der beſondern Dichtigkeit, wie Platina, Magnetſtein u. dgl.; ſie rotirenbewegen ſich viel geſchwinder um die Soñe, ſind mond- armer |: bloß die Erde hat einen Trabant￼Trabanten :|, an den Polen abgeplattet. Anders verhält es ſich mit den Planeten auf der Bahn jenſeits der kleinen Planeten. &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;TEI&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 0,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 1138,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 2,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {},&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;erblicken wir einen großen Unterſchied zwi- ſchen den entferntern u. nähern Planeten Zwei beſondere Planeten-Syſteme von der Soñe. Dies giebt zwei beſondre Sÿſteme. Die Scheide machen die kleinern Körper die ſich zwiſchen Mars u. Jupiter bewegen, die ein ganz eignes Syſtem bilden, von denen die Veſta als die größte ungefahrungefähr die Oberfl.Oberfläche von Deutſch- land hat. Sie haben eine translative Be- wegung von Weſten nach Oſten, ſind ihrer Stellung nach ähnlich den Com̃etenCometen; obgleich doch keine Aehnlichkeit anderweit zwiſchen ihnen u. den Com̃et￼Comet￼Com̃etenCometen iſt, wie überhaupt kein Uebergang zwiſchen Planeten u. Co- meten gefunden wird u. keine poſitive Erſtes Syſtem characteriſt. Merkmale Aehnlichkeit. Jn dieſem doppelten Syſtem der Planeten gehören zuſam̃en: Merkur, Venus, Erde, Mars. Sie haben das gemeinſame der beſondern Dichtigkeit, wie Platina, Magnetſtein u. dgl.; ſie rotirenbewegen ſich viel geſchwinder um die Soñe, ſind mond- armer |: bloß die Erde hat einen Trabant￼Trabanten :|, an den Polen abgeplattet. Anders verhält es ſich mit den Planeten auf der Bahn jenſeits der kleinen Planeten. &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;text&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 0,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 1138,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 3,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {},&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;erblicken wir einen großen Unterſchied zwi- ſchen den entferntern u. nähern Planeten Zwei beſondere Planeten-Syſteme von der Soñe. Dies giebt zwei beſondre Sÿſteme. Die Scheide machen die kleinern Körper die ſich zwiſchen Mars u. Jupiter bewegen, die ein ganz eignes Syſtem bilden, von denen die Veſta als die größte ungefahrungefähr die Oberfl.Oberfläche von Deutſch- land hat. Sie haben eine translative Be- wegung von Weſten nach Oſten, ſind ihrer Stellung nach ähnlich den Com̃etenCometen; obgleich doch keine Aehnlichkeit anderweit zwiſchen ihnen u. den Com̃et￼Comet￼Com̃etenCometen iſt, wie überhaupt kein Uebergang zwiſchen Planeten u. Co- meten gefunden wird u. keine poſitive Erſtes Syſtem characteriſt. Merkmale Aehnlichkeit. Jn dieſem doppelten Syſtem der Planeten gehören zuſam̃en: Merkur, Venus, Erde, Mars. Sie haben das gemeinſame der beſondern Dichtigkeit, wie Platina, Magnetſtein u. dgl.; ſie rotirenbewegen ſich viel geſchwinder um die Soñe, ſind mond- armer |: bloß die Erde hat einen Trabant￼Trabanten :|, an den Polen abgeplattet. Anders verhält es ſich mit den Planeten auf der Bahn jenſeits der kleinen Planeten. &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;body&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 0,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 1138,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 4,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
       &amp;quot;next&amp;quot;: &amp;quot;#Ms_germ_fol_842&amp;quot;,&lt;br /&gt;
       &amp;quot;id&amp;quot;: &amp;quot;Ms_germ_fol_841&amp;quot;&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;erblicken wir einen großen Unterſchied zwi- ſchen den entferntern u. nähern Planeten Zwei beſondere Planeten-Syſteme von der Soñe. Dies giebt zwei beſondre Sÿſteme. Die Scheide machen die kleinern Körper die ſich zwiſchen Mars u. Jupiter bewegen, die ein ganz eignes Syſtem bilden, von denen die Veſta als die größte ungefahrungefähr die Oberfl.Oberfläche von Deutſch- land hat. Sie haben eine translative Be- wegung von Weſten nach Oſten, ſind ihrer Stellung nach ähnlich den Com̃etenCometen; obgleich doch keine Aehnlichkeit anderweit zwiſchen ihnen u. den Com̃et￼Comet￼Com̃etenCometen iſt, wie überhaupt kein Uebergang zwiſchen Planeten u. Co- meten gefunden wird u. keine poſitive Erſtes Syſtem characteriſt. Merkmale Aehnlichkeit. Jn dieſem doppelten Syſtem der Planeten gehören zuſam̃en: Merkur, Venus, Erde, Mars. Sie haben das gemeinſame der beſondern Dichtigkeit, wie Platina, Magnetſtein u. dgl.; ſie rotirenbewegen ſich viel geſchwinder um die Soñe, ſind mond- armer |: bloß die Erde hat einen Trabant￼Trabanten :|, an den Polen abgeplattet. Anders verhält es ſich mit den Planeten auf der Bahn jenſeits der kleinen Planeten. &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;div&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 0,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 1138,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 5,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
       &amp;quot;type&amp;quot;: &amp;quot;session&amp;quot;,&lt;br /&gt;
       &amp;quot;n&amp;quot;: &amp;quot;1&amp;quot;&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;erblicken wir einen großen Unterſchied zwi- ſchen den entferntern u. nähern Planeten Zwei beſondere Planeten-Syſteme von der Soñe. Dies giebt zwei beſondre Sÿſteme. Die Scheide machen die kleinern Körper die ſich zwiſchen Mars u. Jupiter bewegen, die ein ganz eignes Syſtem bilden, von denen die Veſta als die größte ungefahrungefähr die Oberfl.Oberfläche von Deutſch- land hat. Sie haben eine translative Be- wegung von Weſten nach Oſten, ſind ihrer Stellung nach ähnlich den Com̃etenCometen; obgleich doch keine Aehnlichkeit anderweit zwiſchen ihnen u. den Com̃et￼Comet￼Com̃etenCometen iſt, wie überhaupt kein Uebergang zwiſchen Planeten u. Co- meten gefunden wird u. keine poſitive Erſtes Syſtem characteriſt. Merkmale Aehnlichkeit. Jn dieſem doppelten Syſtem der Planeten gehören zuſam̃en: Merkur, Venus, Erde, Mars. Sie haben das gemeinſame der beſondern Dichtigkeit, wie Platina, Magnetſtein u. dgl.; ſie rotirenbewegen ſich viel geſchwinder um die Soñe, ſind mond- armer |: bloß die Erde hat einen Trabant￼Trabanten :|, an den Polen abgeplattet. Anders verhält es ſich mit den Planeten auf der Bahn jenſeits der kleinen Planeten. &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;div&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 1138,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 1138,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 414,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {},&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 0,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 1137,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 6,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {},&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;erblicken wir einen großen Unterſchied zwi- ſchen den entferntern u. nähern Planeten Zwei beſondere Planeten-Syſteme von der Soñe. Dies giebt zwei beſondre Sÿſteme. Die Scheide machen die kleinern Körper die ſich zwiſchen Mars u. Jupiter bewegen, die ein ganz eignes Syſtem bilden, von denen die Veſta als die größte ungefahrungefähr die Oberfl.Oberfläche von Deutſch- land hat. Sie haben eine translative Be- wegung von Weſten nach Oſten, ſind ihrer Stellung nach ähnlich den Com̃etenCometen; obgleich doch keine Aehnlichkeit anderweit zwiſchen ihnen u. den Com̃et￼Comet￼Com̃etenCometen iſt, wie überhaupt kein Uebergang zwiſchen Planeten u. Co- meten gefunden wird u. keine poſitive Erſtes Syſtem characteriſt. Merkmale Aehnlichkeit. Jn dieſem doppelten Syſtem der Planeten gehören zuſam̃en: Merkur, Venus, Erde, Mars. Sie haben das gemeinſame der beſondern Dichtigkeit, wie Platina, Magnetſtein u. dgl.; ſie rotirenbewegen ſich viel geſchwinder um die Soñe, ſind mond- armer |: bloß die Erde hat einen Trabant￼Trabanten :|, an den Polen abgeplattet. Anders verhält es ſich mit den Planeten auf der Bahn jenſeits der kleinen Planeten.&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;p&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 197,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 197,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 71,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {},&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 84,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 84,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 32,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 516,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 516,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 191,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;e&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;subst&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 516,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 516,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 194,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
       &amp;quot;place&amp;quot;: &amp;quot;across&amp;quot;&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;e&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;add&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 311,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 316,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 116,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
       &amp;quot;rendition&amp;quot;: &amp;quot;#u&amp;quot;,&lt;br /&gt;
       &amp;quot;hand&amp;quot;: &amp;quot;#pencil&amp;quot;&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;größte&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;hi&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 949,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 960,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 341,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
       &amp;quot;place&amp;quot;: &amp;quot;superlinear&amp;quot;&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;um die Soñe&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;add&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 1061,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 1061,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 386,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 410,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 410,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 151,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 274,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 274,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 99,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 1102,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 1102,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 403,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 546,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 546,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 201,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 1007,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 1023,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 368,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;Trabant￼Trabanten&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;choice&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 1007,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 1014,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 369,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;Trabant￼&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;abbr&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 1015,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 1023,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 371,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
       &amp;quot;resp&amp;quot;: &amp;quot;#BF&amp;quot;&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;Trabanten&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;expan&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 737,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 820,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 270,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
       &amp;quot;rendition&amp;quot;: &amp;quot;#u&amp;quot;&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;Jn dieſem doppelten Syſtem der Planeten gehören zuſam̃en: Merkur, Venus, Erde, Mars.&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;hi&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 763,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 763,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 278,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 802,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 802,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 289,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 451,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 451,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 166,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 835,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 835,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 302,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 911,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 911,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 326,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 478,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 492,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 176,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;Com̃etenCometen&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;choice&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 486,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 492,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 179,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
       &amp;quot;resp&amp;quot;: &amp;quot;#BF&amp;quot;&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;Cometen&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;corr&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 478,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 485,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 177,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;Com̃eten&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;sic&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 973,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 973,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 352,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 503,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 503,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 184,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 647,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 647,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 241,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 132,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 163,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 49,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
       &amp;quot;rendition&amp;quot;: &amp;quot;#u&amp;quot;&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;Dies giebt zwei beſondre Sÿſteme&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;hi&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 156,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 156,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 57,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 43,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 43,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 19,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 685,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 685,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 254,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 686,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 722,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 256,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
       &amp;quot;place&amp;quot;: &amp;quot;left&amp;quot;&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;Erſtes Syſtem characteriſt. Merkmale &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;note&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 722,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 722,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 266,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 686,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 721,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 257,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
       &amp;quot;rendition&amp;quot;: &amp;quot;#u&amp;quot;&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;Erſtes Syſtem characteriſt. Merkmale&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;hi&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 699,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 699,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 261,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 369,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 369,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 136,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 878,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 884,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 315,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
       &amp;quot;rendition&amp;quot;: &amp;quot;#aq&amp;quot;&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;Platina&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;hi&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 873,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 873,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 311,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 607,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 607,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 228,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 85,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 116,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 34,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
       &amp;quot;place&amp;quot;: &amp;quot;left&amp;quot;&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;Zwei beſondere Planeten-Syſteme &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;note&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 85,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 115,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 35,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
       &amp;quot;rendition&amp;quot;: &amp;quot;#u&amp;quot;&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;Zwei beſondere Planeten-Syſteme&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;hi&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 116,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 116,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 41,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 1028,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 1028,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 375,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 560,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 587,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 209,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;Com̃et￼Comet￼Com̃etenCometen&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;choice&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 560,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 572,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 210,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;Com̃et￼Comet￼&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;abbr&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 560,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 572,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 211,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;Com̃et￼Comet￼&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;choice&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 560,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 566,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 212,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;Com̃et￼&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;sic&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 567,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 572,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 214,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
       &amp;quot;resp&amp;quot;: &amp;quot;#BF&amp;quot;&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;Comet￼&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;corr&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 573,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 587,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 216,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
       &amp;quot;resp&amp;quot;: &amp;quot;#BF&amp;quot;&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;Com̃etenCometen&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;expan&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 573,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 587,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 217,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;Com̃etenCometen&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;choice&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 581,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 587,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 220,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
       &amp;quot;resp&amp;quot;: &amp;quot;#BF&amp;quot;&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;Cometen&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;corr&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 573,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 580,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 218,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;Com̃eten&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;sic&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 310,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 310,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 114,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 238,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 238,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 86,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 318,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 333,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 119,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;ungefahrungefähr&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;choice&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 318,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 325,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 120,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;ungefahr&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;sic&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 326,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 333,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 122,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
       &amp;quot;resp&amp;quot;: &amp;quot;#CT&amp;quot;&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;ungefähr&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;corr&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 912,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 930,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 328,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;rotirenbewegen ſich&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;subst&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 919,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 930,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 331,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
       &amp;quot;place&amp;quot;: &amp;quot;superlinear&amp;quot;&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;bewegen ſich&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;add&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 912,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 918,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 329,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
       &amp;quot;rendition&amp;quot;: &amp;quot;#s&amp;quot;&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;rotiren&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;del&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 339,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 355,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 127,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;Oberfl.Oberfläche&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;choice&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 339,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 345,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 128,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;Oberfl.&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;abbr&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 346,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 355,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 130,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
       &amp;quot;resp&amp;quot;: &amp;quot;#CT&amp;quot;&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;Oberfläche&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;expan&amp;quot;&lt;br /&gt;
   }&lt;br /&gt;
 ]&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
At the end of the README-Section you can find a [[https://argimenes.github.io/standoff-properties-editor/ Link]] to Test-Istance hosted on [[https://argimenes.github.io/standoff-properties-editor/ Github-Pages]].&lt;br /&gt;
&lt;br /&gt;
Just copy the JSON-Export in the window below the UNBIND-Button of SPEEDy and press BIND.&lt;br /&gt;
&lt;br /&gt;
The next picture shows SPEEDy with the test.json. You can choose the example file in the top selection box of SPEEDy as well.&lt;br /&gt;
&lt;br /&gt;
[[image:TEIinSPEEDy.png|center|800px|x]]&lt;br /&gt;
&lt;br /&gt;
I want to say thanks to Stefan Armbruster from neo4j for the export-cypher-query and the implementation of the XML-Import functions to [https://github.com/neo4j-contrib/neo4j-apoc-procedures-function apoc] and Iian Neill for his work on [https://argimenes.github.io/standoff-properties-editor/ SPEEDy].&lt;/div&gt;</summary>
		<author><name>Andreas Kuczera</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=Json&amp;diff=16877</id>
		<title>Json</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=Json&amp;diff=16877"/>
		<updated>2022-03-03T10:05:27Z</updated>

		<summary type="html">&lt;p&gt;Andreas Kuczera: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;code&amp;gt;&lt;br /&gt;
{&lt;br /&gt;
 &amp;quot;text&amp;quot;: &amp;quot;erblicken wir einen großen Unterſchied zwi- ſchen den entferntern u. nähern Planeten Zwei beſondere Planeten-Syſteme von der Soñe. Dies giebt zwei beſondre Sÿſteme. Die Scheide machen die kleinern Körper die ſich zwiſchen Mars u. Jupiter bewegen, die ein ganz eignes Syſtem bilden, von denen die Veſta als die größte ungefahrungefähr die Oberfl.Oberfläche von Deutſch- land hat. Sie haben eine translative Be- wegung von Weſten nach Oſten, ſind ihrer Stellung nach ähnlich den Com̃etenCometen; obgleich doch keine Aehnlichkeit anderweit zwiſchen ihnen u. den Com̃et￼Comet￼Com̃etenCometen iſt, wie überhaupt kein Uebergang zwiſchen Planeten u. Co- meten gefunden wird u. keine poſitive Erſtes Syſtem characteriſt. Merkmale Aehnlichkeit. Jn dieſem doppelten Syſtem der Planeten gehören zuſam̃en: Merkur, Venus, Erde, Mars. Sie haben das gemeinſame der beſondern Dichtigkeit, wie Platina, Magnetſtein u. dgl.; ſie rotirenbewegen ſich viel geſchwinder um die Soñe, ſind mond- armer |: bloß die Erde hat einen Trabant￼Trabanten :|, an den Polen abgeplattet. Anders verhält es ſich mit den Planeten auf der Bahn jenſeits der kleinen Planeten. &amp;quot;,&lt;br /&gt;
 &amp;quot;properties&amp;quot;: [&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 0,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 1138,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 1,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {},&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;erblicken wir einen großen Unterſchied zwi- ſchen den entferntern u. nähern Planeten Zwei beſondere Planeten-Syſteme von der Soñe. Dies giebt zwei beſondre Sÿſteme. Die Scheide machen die kleinern Körper die ſich zwiſchen Mars u. Jupiter bewegen, die ein ganz eignes Syſtem bilden, von denen die Veſta als die größte ungefahrungefähr die Oberfl.Oberfläche von Deutſch- land hat. Sie haben eine translative Be- wegung von Weſten nach Oſten, ſind ihrer Stellung nach ähnlich den Com̃etenCometen; obgleich doch keine Aehnlichkeit anderweit zwiſchen ihnen u. den Com̃et￼Comet￼Com̃etenCometen iſt, wie überhaupt kein Uebergang zwiſchen Planeten u. Co- meten gefunden wird u. keine poſitive Erſtes Syſtem characteriſt. Merkmale Aehnlichkeit. Jn dieſem doppelten Syſtem der Planeten gehören zuſam̃en: Merkur, Venus, Erde, Mars. Sie haben das gemeinſame der beſondern Dichtigkeit, wie Platina, Magnetſtein u. dgl.; ſie rotirenbewegen ſich viel geſchwinder um die Soñe, ſind mond- armer |: bloß die Erde hat einen Trabant￼Trabanten :|, an den Polen abgeplattet. Anders verhält es ſich mit den Planeten auf der Bahn jenſeits der kleinen Planeten. &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;TEI&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 0,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 1138,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 2,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {},&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;erblicken wir einen großen Unterſchied zwi- ſchen den entferntern u. nähern Planeten Zwei beſondere Planeten-Syſteme von der Soñe. Dies giebt zwei beſondre Sÿſteme. Die Scheide machen die kleinern Körper die ſich zwiſchen Mars u. Jupiter bewegen, die ein ganz eignes Syſtem bilden, von denen die Veſta als die größte ungefahrungefähr die Oberfl.Oberfläche von Deutſch- land hat. Sie haben eine translative Be- wegung von Weſten nach Oſten, ſind ihrer Stellung nach ähnlich den Com̃etenCometen; obgleich doch keine Aehnlichkeit anderweit zwiſchen ihnen u. den Com̃et￼Comet￼Com̃etenCometen iſt, wie überhaupt kein Uebergang zwiſchen Planeten u. Co- meten gefunden wird u. keine poſitive Erſtes Syſtem characteriſt. Merkmale Aehnlichkeit. Jn dieſem doppelten Syſtem der Planeten gehören zuſam̃en: Merkur, Venus, Erde, Mars. Sie haben das gemeinſame der beſondern Dichtigkeit, wie Platina, Magnetſtein u. dgl.; ſie rotirenbewegen ſich viel geſchwinder um die Soñe, ſind mond- armer |: bloß die Erde hat einen Trabant￼Trabanten :|, an den Polen abgeplattet. Anders verhält es ſich mit den Planeten auf der Bahn jenſeits der kleinen Planeten. &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;text&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 0,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 1138,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 3,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {},&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;erblicken wir einen großen Unterſchied zwi- ſchen den entferntern u. nähern Planeten Zwei beſondere Planeten-Syſteme von der Soñe. Dies giebt zwei beſondre Sÿſteme. Die Scheide machen die kleinern Körper die ſich zwiſchen Mars u. Jupiter bewegen, die ein ganz eignes Syſtem bilden, von denen die Veſta als die größte ungefahrungefähr die Oberfl.Oberfläche von Deutſch- land hat. Sie haben eine translative Be- wegung von Weſten nach Oſten, ſind ihrer Stellung nach ähnlich den Com̃etenCometen; obgleich doch keine Aehnlichkeit anderweit zwiſchen ihnen u. den Com̃et￼Comet￼Com̃etenCometen iſt, wie überhaupt kein Uebergang zwiſchen Planeten u. Co- meten gefunden wird u. keine poſitive Erſtes Syſtem characteriſt. Merkmale Aehnlichkeit. Jn dieſem doppelten Syſtem der Planeten gehören zuſam̃en: Merkur, Venus, Erde, Mars. Sie haben das gemeinſame der beſondern Dichtigkeit, wie Platina, Magnetſtein u. dgl.; ſie rotirenbewegen ſich viel geſchwinder um die Soñe, ſind mond- armer |: bloß die Erde hat einen Trabant￼Trabanten :|, an den Polen abgeplattet. Anders verhält es ſich mit den Planeten auf der Bahn jenſeits der kleinen Planeten. &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;body&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 0,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 1138,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 4,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
       &amp;quot;next&amp;quot;: &amp;quot;#Ms_germ_fol_842&amp;quot;,&lt;br /&gt;
       &amp;quot;id&amp;quot;: &amp;quot;Ms_germ_fol_841&amp;quot;&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;erblicken wir einen großen Unterſchied zwi- ſchen den entferntern u. nähern Planeten Zwei beſondere Planeten-Syſteme von der Soñe. Dies giebt zwei beſondre Sÿſteme. Die Scheide machen die kleinern Körper die ſich zwiſchen Mars u. Jupiter bewegen, die ein ganz eignes Syſtem bilden, von denen die Veſta als die größte ungefahrungefähr die Oberfl.Oberfläche von Deutſch- land hat. Sie haben eine translative Be- wegung von Weſten nach Oſten, ſind ihrer Stellung nach ähnlich den Com̃etenCometen; obgleich doch keine Aehnlichkeit anderweit zwiſchen ihnen u. den Com̃et￼Comet￼Com̃etenCometen iſt, wie überhaupt kein Uebergang zwiſchen Planeten u. Co- meten gefunden wird u. keine poſitive Erſtes Syſtem characteriſt. Merkmale Aehnlichkeit. Jn dieſem doppelten Syſtem der Planeten gehören zuſam̃en: Merkur, Venus, Erde, Mars. Sie haben das gemeinſame der beſondern Dichtigkeit, wie Platina, Magnetſtein u. dgl.; ſie rotirenbewegen ſich viel geſchwinder um die Soñe, ſind mond- armer |: bloß die Erde hat einen Trabant￼Trabanten :|, an den Polen abgeplattet. Anders verhält es ſich mit den Planeten auf der Bahn jenſeits der kleinen Planeten. &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;div&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 0,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 1138,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 5,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
       &amp;quot;type&amp;quot;: &amp;quot;session&amp;quot;,&lt;br /&gt;
       &amp;quot;n&amp;quot;: &amp;quot;1&amp;quot;&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;erblicken wir einen großen Unterſchied zwi- ſchen den entferntern u. nähern Planeten Zwei beſondere Planeten-Syſteme von der Soñe. Dies giebt zwei beſondre Sÿſteme. Die Scheide machen die kleinern Körper die ſich zwiſchen Mars u. Jupiter bewegen, die ein ganz eignes Syſtem bilden, von denen die Veſta als die größte ungefahrungefähr die Oberfl.Oberfläche von Deutſch- land hat. Sie haben eine translative Be- wegung von Weſten nach Oſten, ſind ihrer Stellung nach ähnlich den Com̃etenCometen; obgleich doch keine Aehnlichkeit anderweit zwiſchen ihnen u. den Com̃et￼Comet￼Com̃etenCometen iſt, wie überhaupt kein Uebergang zwiſchen Planeten u. Co- meten gefunden wird u. keine poſitive Erſtes Syſtem characteriſt. Merkmale Aehnlichkeit. Jn dieſem doppelten Syſtem der Planeten gehören zuſam̃en: Merkur, Venus, Erde, Mars. Sie haben das gemeinſame der beſondern Dichtigkeit, wie Platina, Magnetſtein u. dgl.; ſie rotirenbewegen ſich viel geſchwinder um die Soñe, ſind mond- armer |: bloß die Erde hat einen Trabant￼Trabanten :|, an den Polen abgeplattet. Anders verhält es ſich mit den Planeten auf der Bahn jenſeits der kleinen Planeten. &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;div&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 1138,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 1138,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 414,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {},&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 0,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 1137,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 6,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {},&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;erblicken wir einen großen Unterſchied zwi- ſchen den entferntern u. nähern Planeten Zwei beſondere Planeten-Syſteme von der Soñe. Dies giebt zwei beſondre Sÿſteme. Die Scheide machen die kleinern Körper die ſich zwiſchen Mars u. Jupiter bewegen, die ein ganz eignes Syſtem bilden, von denen die Veſta als die größte ungefahrungefähr die Oberfl.Oberfläche von Deutſch- land hat. Sie haben eine translative Be- wegung von Weſten nach Oſten, ſind ihrer Stellung nach ähnlich den Com̃etenCometen; obgleich doch keine Aehnlichkeit anderweit zwiſchen ihnen u. den Com̃et￼Comet￼Com̃etenCometen iſt, wie überhaupt kein Uebergang zwiſchen Planeten u. Co- meten gefunden wird u. keine poſitive Erſtes Syſtem characteriſt. Merkmale Aehnlichkeit. Jn dieſem doppelten Syſtem der Planeten gehören zuſam̃en: Merkur, Venus, Erde, Mars. Sie haben das gemeinſame der beſondern Dichtigkeit, wie Platina, Magnetſtein u. dgl.; ſie rotirenbewegen ſich viel geſchwinder um die Soñe, ſind mond- armer |: bloß die Erde hat einen Trabant￼Trabanten :|, an den Polen abgeplattet. Anders verhält es ſich mit den Planeten auf der Bahn jenſeits der kleinen Planeten.&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;p&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 197,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 197,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 71,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {},&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 84,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 84,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 32,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 516,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 516,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 191,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;e&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;subst&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 516,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 516,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 194,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
       &amp;quot;place&amp;quot;: &amp;quot;across&amp;quot;&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;e&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;add&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 311,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 316,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 116,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
       &amp;quot;rendition&amp;quot;: &amp;quot;#u&amp;quot;,&lt;br /&gt;
       &amp;quot;hand&amp;quot;: &amp;quot;#pencil&amp;quot;&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;größte&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;hi&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 949,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 960,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 341,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
       &amp;quot;place&amp;quot;: &amp;quot;superlinear&amp;quot;&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;um die Soñe&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;add&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 1061,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 1061,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 386,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 410,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 410,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 151,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 274,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 274,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 99,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 1102,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 1102,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 403,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 546,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 546,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 201,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 1007,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 1023,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 368,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;Trabant￼Trabanten&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;choice&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 1007,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 1014,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 369,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;Trabant￼&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;abbr&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 1015,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 1023,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 371,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
       &amp;quot;resp&amp;quot;: &amp;quot;#BF&amp;quot;&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;Trabanten&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;expan&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 737,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 820,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 270,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
       &amp;quot;rendition&amp;quot;: &amp;quot;#u&amp;quot;&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;Jn dieſem doppelten Syſtem der Planeten gehören zuſam̃en: Merkur, Venus, Erde, Mars.&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;hi&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 763,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 763,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 278,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 802,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 802,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 289,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 451,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 451,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 166,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 835,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 835,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 302,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 911,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 911,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 326,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 478,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 492,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 176,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;Com̃etenCometen&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;choice&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 486,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 492,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 179,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
       &amp;quot;resp&amp;quot;: &amp;quot;#BF&amp;quot;&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;Cometen&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;corr&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 478,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 485,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 177,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;Com̃eten&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;sic&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 973,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 973,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 352,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 503,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 503,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 184,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 647,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 647,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 241,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 132,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 163,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 49,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
       &amp;quot;rendition&amp;quot;: &amp;quot;#u&amp;quot;&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;Dies giebt zwei beſondre Sÿſteme&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;hi&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 156,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 156,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 57,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 43,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 43,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 19,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 685,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 685,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 254,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 686,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 722,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 256,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
       &amp;quot;place&amp;quot;: &amp;quot;left&amp;quot;&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;Erſtes Syſtem characteriſt. Merkmale &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;note&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 722,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 722,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 266,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 686,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 721,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 257,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
       &amp;quot;rendition&amp;quot;: &amp;quot;#u&amp;quot;&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;Erſtes Syſtem characteriſt. Merkmale&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;hi&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 699,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 699,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 261,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 369,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 369,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 136,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 878,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 884,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 315,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
       &amp;quot;rendition&amp;quot;: &amp;quot;#aq&amp;quot;&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;Platina&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;hi&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 873,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 873,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 311,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 607,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 607,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 228,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 85,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 116,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 34,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
       &amp;quot;place&amp;quot;: &amp;quot;left&amp;quot;&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;Zwei beſondere Planeten-Syſteme &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;note&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 85,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 115,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 35,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
       &amp;quot;rendition&amp;quot;: &amp;quot;#u&amp;quot;&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;Zwei beſondere Planeten-Syſteme&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;hi&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 116,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 116,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 41,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 1028,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 1028,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 375,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 560,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 587,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 209,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;Com̃et￼Comet￼Com̃etenCometen&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;choice&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 560,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 572,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 210,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;Com̃et￼Comet￼&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;abbr&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 560,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 572,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 211,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;Com̃et￼Comet￼&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;choice&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 560,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 566,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 212,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;Com̃et￼&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;sic&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 567,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 572,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 214,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
       &amp;quot;resp&amp;quot;: &amp;quot;#BF&amp;quot;&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;Comet￼&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;corr&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 573,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 587,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 216,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
       &amp;quot;resp&amp;quot;: &amp;quot;#BF&amp;quot;&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;Com̃etenCometen&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;expan&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 573,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 587,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 217,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;Com̃etenCometen&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;choice&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 581,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 587,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 220,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
       &amp;quot;resp&amp;quot;: &amp;quot;#BF&amp;quot;&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;Cometen&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;corr&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 573,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 580,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 218,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;Com̃eten&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;sic&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 310,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 310,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 114,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 238,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 238,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 86,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 318,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 333,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 119,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;ungefahrungefähr&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;choice&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 318,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 325,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 120,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;ungefahr&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;sic&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 326,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 333,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 122,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
       &amp;quot;resp&amp;quot;: &amp;quot;#CT&amp;quot;&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;ungefähr&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;corr&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 912,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 930,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 328,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;rotirenbewegen ſich&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;subst&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 919,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 930,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 331,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
       &amp;quot;place&amp;quot;: &amp;quot;superlinear&amp;quot;&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;bewegen ſich&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;add&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 912,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 918,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 329,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
       &amp;quot;rendition&amp;quot;: &amp;quot;#s&amp;quot;&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;rotiren&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;del&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 339,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 355,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 127,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;Oberfl.Oberfläche&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;choice&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 339,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 345,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 128,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;Oberfl.&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;abbr&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 346,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 355,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 130,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
       &amp;quot;resp&amp;quot;: &amp;quot;#CT&amp;quot;&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;Oberfläche&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;expan&amp;quot;&lt;br /&gt;
   }&lt;br /&gt;
 ]&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;/div&gt;</summary>
		<author><name>Andreas Kuczera</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=SIG:GraphTechnologies&amp;diff=16876</id>
		<title>SIG:GraphTechnologies</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=SIG:GraphTechnologies&amp;diff=16876"/>
		<updated>2022-03-03T10:02:21Z</updated>

		<summary type="html">&lt;p&gt;Andreas Kuczera: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Andreas Kuczera, Iian Neill, Stefan Armbruster&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
&lt;br /&gt;
As TEI is not a format, though many people think it is. It's a de facto standard that specifies Guidelines for document interchange. Actually the Guidelines are based on the XML but this is only one possible technical way of expressing the phenomenons.&lt;br /&gt;
&lt;br /&gt;
'''The aim of the Graph-SIG is to find a way of expressing the language phenomenons of the TEI in Graphs.''' &lt;br /&gt;
&lt;br /&gt;
* In the graph you can use multi-hierarchical annotations layers.&lt;br /&gt;
* Graph models are very easy to read and understand. So DH-People and “normal” scientists have a level of discussion in common.&lt;br /&gt;
* A Graph can be expressed as RDF so the step from a Graph to linked open data is easy to make.&lt;br /&gt;
&lt;br /&gt;
The main goal of the TEI-Graph-SIG is to model the textual phenomenons of the TEI in a Graph and to develop routines to import TEI-encoded XML-files into graph databases.&lt;br /&gt;
&lt;br /&gt;
== Convert DTA-XML with neo4j to Standoff Property JSON ==&lt;br /&gt;
&lt;br /&gt;
In a first step we import a small xml-example into a [https://neo4j.com neo4j] instance using [https://neo4j.com/labs/apoc/4.4/import/xml/ apoc.import.xml]&lt;br /&gt;
&lt;br /&gt;
The example is a [https://seafile.rlp.net/f/6282a26504cc4f079ab9/?dl=1 page] from the [https://www.deutschestextarchiv.de DTA]. Here you can find the [[XML-Testfile]] and this is the [http://www.deutschestextarchiv.de/book/view/patzig_msgermfol841842_1828/?hl=welcher;p=11 Link] to the DTA-Version.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
&amp;lt;TEI&amp;gt;&lt;br /&gt;
  &amp;lt;text&amp;gt;&lt;br /&gt;
    &amp;lt;body&amp;gt;&lt;br /&gt;
      &amp;lt;div xml:id=&amp;quot;Ms_germ_fol_841&amp;quot; next=&amp;quot;#Ms_germ_fol_842&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;div type=&amp;quot;session&amp;quot; n=&amp;quot;1&amp;quot;&amp;gt;&lt;br /&gt;
          &amp;lt;p&amp;gt;&amp;lt;pb facs=&amp;quot;#f0011&amp;quot; n=&amp;quot;7.&amp;quot;/&amp;gt;&lt;br /&gt;
erblicken wir einen großen Unter&amp;amp;#x017F;chied zwi-&amp;lt;lb/&amp;gt;&lt;br /&gt;
&amp;amp;#x017F;chen den entferntern u. nähern Planeten&amp;lt;lb/&amp;gt;&amp;lt;note place=&amp;quot;left&amp;quot;&amp;gt;&amp;lt;hi rendition=&amp;quot;#u&amp;quot;&amp;gt;Zwei be&amp;amp;#x017F;ondere Planeten-Sy&amp;amp;#x017F;teme&amp;lt;/hi&amp;gt;&amp;lt;lb/&amp;gt;&amp;lt;/note&amp;gt;von der Son&amp;amp;#x0303;e. &amp;lt;hi rendition=&amp;quot;#u&amp;quot;&amp;gt;Dies giebt zwei be&amp;amp;#x017F;ondre&amp;lt;lb/&amp;gt;&lt;br /&gt;
Sÿ&amp;amp;#x017F;teme&amp;lt;/hi&amp;gt;. Die Scheide machen die kleinern&amp;lt;lb/&amp;gt;&lt;br /&gt;
Körper die &amp;amp;#x017F;ich zwi&amp;amp;#x017F;chen Mars u. Jupiter&amp;lt;lb/&amp;gt;&lt;br /&gt;
bewegen, die ein ganz eignes Sy&amp;amp;#x017F;tem&amp;lt;lb/&amp;gt;&lt;br /&gt;
bilden, von denen die Ve&amp;amp;#x017F;ta als die&amp;lt;lb/&amp;gt;&amp;lt;hi rendition=&amp;quot;#u&amp;quot; hand=&amp;quot;#pencil&amp;quot;&amp;gt;größte&amp;lt;/hi&amp;gt; &amp;lt;choice&amp;gt;&amp;lt;sic&amp;gt;ungefahr&amp;lt;/sic&amp;gt;&amp;lt;corr resp=&amp;quot;#CT&amp;quot;&amp;gt;ungefähr&amp;lt;/corr&amp;gt;&amp;lt;/choice&amp;gt; die &amp;lt;choice&amp;gt;&amp;lt;abbr&amp;gt;Oberfl.&amp;lt;/abbr&amp;gt;&amp;lt;expan resp=&amp;quot;#CT&amp;quot;&amp;gt;Oberfläche&amp;lt;/expan&amp;gt;&amp;lt;/choice&amp;gt; von Deut&amp;amp;#x017F;ch-&amp;lt;lb/&amp;gt;&lt;br /&gt;
land hat. Sie haben eine translative Be-&amp;lt;lb/&amp;gt;&lt;br /&gt;
wegung von We&amp;amp;#x017F;ten nach O&amp;amp;#x017F;ten, &amp;amp;#x017F;ind ihrer&amp;lt;lb/&amp;gt;&lt;br /&gt;
Stellung nach ähnlich den &amp;lt;choice&amp;gt;&amp;lt;sic&amp;gt;Com&amp;amp;#x0303;eten&amp;lt;/sic&amp;gt;&amp;lt;corr resp=&amp;quot;#BF&amp;quot;&amp;gt;Cometen&amp;lt;/corr&amp;gt;&amp;lt;/choice&amp;gt;; obgleich&amp;lt;lb/&amp;gt;&lt;br /&gt;
doch keine A&amp;lt;subst&amp;gt;&amp;lt;del rendition=&amp;quot;#ow&amp;quot;&amp;gt;&amp;lt;gap reason=&amp;quot;illegible&amp;quot; unit=&amp;quot;chars&amp;quot; quantity=&amp;quot;1&amp;quot;/&amp;gt;&amp;lt;/del&amp;gt;&amp;lt;add place=&amp;quot;across&amp;quot;&amp;gt;e&amp;lt;/add&amp;gt;&amp;lt;/subst&amp;gt;hnlichkeit anderweit zwi&amp;amp;#x017F;chen&amp;lt;lb/&amp;gt;&lt;br /&gt;
ihnen u. den &amp;lt;choice&amp;gt;&amp;lt;abbr&amp;gt;&amp;lt;choice&amp;gt;&amp;lt;sic&amp;gt;Com&amp;amp;#x0303;et&amp;amp;#xFFFC;&amp;lt;/sic&amp;gt;&amp;lt;corr resp=&amp;quot;#BF&amp;quot;&amp;gt;Comet&amp;amp;#xFFFC;&amp;lt;/corr&amp;gt;&amp;lt;/choice&amp;gt;&amp;lt;/abbr&amp;gt;&amp;lt;expan resp=&amp;quot;#BF&amp;quot;&amp;gt;&amp;lt;choice&amp;gt;&amp;lt;sic&amp;gt;Com&amp;amp;#x0303;eten&amp;lt;/sic&amp;gt;&amp;lt;corr resp=&amp;quot;#BF&amp;quot;&amp;gt;Cometen&amp;lt;/corr&amp;gt;&amp;lt;/choice&amp;gt;&amp;lt;/expan&amp;gt;&amp;lt;/choice&amp;gt; i&amp;amp;#x017F;t, wie überhaupt&amp;lt;lb/&amp;gt;&lt;br /&gt;
kein Uebergang zwi&amp;amp;#x017F;chen Planeten u. Co-&amp;lt;lb/&amp;gt;&lt;br /&gt;
meten gefunden wird u. keine po&amp;amp;#x017F;itive&amp;lt;lb/&amp;gt;&amp;lt;note place=&amp;quot;left&amp;quot;&amp;gt;&amp;lt;hi rendition=&amp;quot;#u&amp;quot;&amp;gt;Er&amp;amp;#x017F;tes Sy&amp;amp;#x017F;tem&amp;lt;lb/&amp;gt;&lt;br /&gt;
characteri&amp;amp;#x017F;t. Merkmale&amp;lt;/hi&amp;gt;&amp;lt;lb/&amp;gt;&amp;lt;/note&amp;gt;Aehnlichkeit. &amp;lt;hi rendition=&amp;quot;#u&amp;quot;&amp;gt;Jn die&amp;amp;#x017F;em doppelten Sy&amp;amp;#x017F;tem&amp;lt;lb/&amp;gt;&lt;br /&gt;
der Planeten gehören zu&amp;amp;#x017F;am&amp;amp;#x0303;en: Merkur,&amp;lt;lb/&amp;gt;&lt;br /&gt;
Venus, Erde, Mars.&amp;lt;/hi&amp;gt; Sie haben das&amp;lt;lb/&amp;gt;&lt;br /&gt;
gemein&amp;amp;#x017F;ame der be&amp;amp;#x017F;ondern Dichtigkeit,&amp;lt;lb/&amp;gt;&lt;br /&gt;
wie &amp;lt;hi rendition=&amp;quot;#aq&amp;quot;&amp;gt;Platina&amp;lt;/hi&amp;gt;, Magnet&amp;amp;#x017F;tein u. dgl.; &amp;amp;#x017F;ie&amp;lt;lb/&amp;gt;&amp;lt;subst&amp;gt;&amp;lt;del rendition=&amp;quot;#s&amp;quot;&amp;gt;rotiren&amp;lt;/del&amp;gt;&amp;lt;add place=&amp;quot;superlinear&amp;quot;&amp;gt;bewegen &amp;amp;#x017F;ich&amp;lt;/add&amp;gt;&amp;lt;/subst&amp;gt; viel ge&amp;amp;#x017F;chwinder &amp;lt;metamark/&amp;gt;&amp;lt;add place=&amp;quot;superlinear&amp;quot;&amp;gt;um die Son&amp;amp;#x0303;e&amp;lt;/add&amp;gt;, &amp;amp;#x017F;ind mond-&amp;lt;lb/&amp;gt;&lt;br /&gt;
armer |: bloß die Erde hat einen &amp;lt;choice&amp;gt;&amp;lt;abbr&amp;gt;Trabant&amp;amp;#xFFFC;&amp;lt;/abbr&amp;gt;&amp;lt;expan resp=&amp;quot;#BF&amp;quot;&amp;gt;Trabanten&amp;lt;/expan&amp;gt;&amp;lt;/choice&amp;gt; :|,&amp;lt;lb/&amp;gt;&lt;br /&gt;
an den Polen abgeplattet. Anders&amp;lt;lb/&amp;gt;&lt;br /&gt;
verhält es &amp;amp;#x017F;ich mit den Planeten auf der&amp;lt;lb/&amp;gt;&lt;br /&gt;
Bahn jen&amp;amp;#x017F;eits der kleinen Planeten.&amp;lt;/p&amp;gt;&amp;lt;lb/&amp;gt;&lt;br /&gt;
        &amp;lt;/div&amp;gt;&lt;br /&gt;
      &amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;/body&amp;gt;&lt;br /&gt;
  &amp;lt;/text&amp;gt;&lt;br /&gt;
&amp;lt;/TEI&amp;gt;&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Import into neo4j ==&lt;br /&gt;
&lt;br /&gt;
The import into neo4j runs with:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
 // Import xml-example from DTA to neo4j&lt;br /&gt;
 call apoc.import.xml('https://seafile.rlp.net/f/6282a26504cc4f079ab9/?dl=1', {connectCharacters: true, charactersForTag:{lb:' '}, filterLeadingWhitespace: true}) yield node &lt;br /&gt;
 return node;&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the next picture you can see a small set of the Graph:&lt;br /&gt;
&lt;br /&gt;
[[image:TEI-Graph.png|center|800px|x]]&lt;br /&gt;
&lt;br /&gt;
== Export from neo4j to Standoff Property JSON ==&lt;br /&gt;
&lt;br /&gt;
The next step is to export the data with some [[cypher]] to the Standoff-Property JSON-Format.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
 // Export TEI-Graph to Standoff-Property-JSON-Format by Stefan Armbruster&lt;br /&gt;
 match path=(d:XmlDocument)-[:NE*]-&amp;gt;(e:XmlCharacters)&lt;br /&gt;
 where not (e)-[:NE]-&amp;gt;()&lt;br /&gt;
 with tail(nodes(path)) as words, d&lt;br /&gt;
 with reduce(s=&amp;quot;&amp;quot;, x in words| s + x.text ) as allText, d&lt;br /&gt;
 call apoc.path.expandConfig(d,{&lt;br /&gt;
 relationshipFilter: '&amp;lt;IS_CHILD_OF',&lt;br /&gt;
 labelFilter: 'XmlTag',&lt;br /&gt;
 bfs: false,&lt;br /&gt;
 minLevel: 1&lt;br /&gt;
 }) yield path&lt;br /&gt;
 with allText, path, nodes(path)[-1] as this&lt;br /&gt;
 MATCH p=(this)-[:NEXT*]-&amp;gt;(x)&lt;br /&gt;
 where (x)-[:LAST_CHILD_OF*]-&amp;gt;(this) and any(x in nodes(p) WHERE x:XmlCharacters)&lt;br /&gt;
 with allText, this, collect(p)[-1] as longest&lt;br /&gt;
 with allText, this, [x in nodes(longest) where x:XmlCharacters] as xmlCharacters&lt;br /&gt;
 with allText, this, &lt;br /&gt;
 apoc.coll.min([x in xmlCharacters | x.startIndex]) as min, &lt;br /&gt;
 apoc.coll.max([x in xmlCharacters | x.endIndex]) as max, &lt;br /&gt;
 apoc.text.join([x in xmlCharacters | x.text], &amp;quot;&amp;quot;) as text&lt;br /&gt;
 with allText, {&lt;br /&gt;
 index:id(this), &lt;br /&gt;
 startIndex: min, &lt;br /&gt;
 endIndex: max,&lt;br /&gt;
 text: text,&lt;br /&gt;
 type: this._name,&lt;br /&gt;
 attributes: apoc.map.fromPairs([x in keys(this) WHERE not x starts with &amp;quot;_&amp;quot; | [x, this[x]] ])&lt;br /&gt;
 } as standoffProperty&lt;br /&gt;
 return {text: allText, properties: collect(standoffProperty)};&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This [[json]] can then be imported in the [[https://github.com/argimenes/standoff-properties-editor SPEEDy]] Standoff Property Editor which can be found on [[https://github.com/argimenes/standoff-properties-editor GitHub]].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
[&lt;br /&gt;
  {&lt;br /&gt;
    &amp;quot;{text: allText, properties: collect(standoffProperty)}&amp;quot;: {&lt;br /&gt;
&amp;quot;text&amp;quot;: &amp;quot;erblicken wir einen großen Unterſchied zwi- ſchen den entferntern u. nähern Planeten Zwei beſondere Planeten-Syſteme von der Soñe. Dies giebt zwei beſondre Sÿſteme. Die Scheide machen die kleinern Körper die ſich zwiſchen Mars u. Jupiter bewegen, die ein ganz eignes Syſtem bilden, von denen die Veſta als die größte ungefahrungefähr die Oberfl.Oberfläche von Deutſch- land hat. Sie haben eine translative Be-  &amp;quot;,&lt;br /&gt;
&amp;quot;properties&amp;quot;: [&lt;br /&gt;
        {&lt;br /&gt;
          &amp;quot;startIndex&amp;quot;: 0,&lt;br /&gt;
          &amp;quot;endIndex&amp;quot;: 411,&lt;br /&gt;
          &amp;quot;index&amp;quot;: 4526,&lt;br /&gt;
          &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
          },&lt;br /&gt;
          &amp;quot;text&amp;quot;: &amp;quot;erblicken wir einen großen Unterſchied zwi- ſchen den entferntern u. nähern Planeten Zwei beſondere Planeten-Syſteme von der Soñe. Dies giebt zwei beſondre Sÿſteme. Die Scheide machen die kleinern Körper die ſich zwiſchen Mars u. Jupiter bewegen, die ein ganz eignes Syſtem bilden, von denen die Veſta als die größte ungefahrungefähr die Oberfl.Oberfläche von Deutſch- land hat. Sie haben eine translative Be-  &amp;quot;,&lt;br /&gt;
          &amp;quot;type&amp;quot;: &amp;quot;TEI&amp;quot;&lt;br /&gt;
        },&lt;br /&gt;
        {&lt;br /&gt;
          &amp;quot;startIndex&amp;quot;: 0,&lt;br /&gt;
          &amp;quot;endIndex&amp;quot;: 411,&lt;br /&gt;
          &amp;quot;index&amp;quot;: 4527,&lt;br /&gt;
          &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
          },&lt;br /&gt;
          &amp;quot;text&amp;quot;: &amp;quot;erblicken wir einen großen Unterſchied zwi- ſchen den entferntern u. nähern Planeten Zwei beſondere Planeten-Syſteme von der Soñe. Dies giebt zwei beſondre Sÿſteme. Die Scheide machen die kleinern Körper die ſich zwiſchen Mars u. Jupiter bewegen, die ein ganz eignes Syſtem bilden, von denen die Veſta als die größte ungefahrungefähr die Oberfl.Oberfläche von Deutſch- land hat. Sie haben eine translative Be-  &amp;quot;,&lt;br /&gt;
          &amp;quot;type&amp;quot;: &amp;quot;text&amp;quot;&lt;br /&gt;
        },&lt;br /&gt;
        {&lt;br /&gt;
          &amp;quot;startIndex&amp;quot;: 0,&lt;br /&gt;
          &amp;quot;endIndex&amp;quot;: 411,&lt;br /&gt;
          &amp;quot;index&amp;quot;: 4528,&lt;br /&gt;
          &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
          },&lt;br /&gt;
          &amp;quot;text&amp;quot;: &amp;quot;erblicken wir einen großen Unterſchied zwi- ſchen den entferntern u. nähern Planeten Zwei beſondere Planeten-Syſteme von der Soñe. Dies giebt zwei beſondre Sÿſteme. Die Scheide machen die kleinern Körper die ſich zwiſchen Mars u. Jupiter bewegen, die ein ganz eignes Syſtem bilden, von denen die Veſta als die größte ungefahrungefähr die Oberfl.Oberfläche von Deutſch- land hat. Sie haben eine translative Be-  &amp;quot;,&lt;br /&gt;
          &amp;quot;type&amp;quot;: &amp;quot;body&amp;quot;&lt;br /&gt;
        },&lt;br /&gt;
        {&lt;br /&gt;
          &amp;quot;startIndex&amp;quot;: 0,&lt;br /&gt;
          &amp;quot;endIndex&amp;quot;: 411,&lt;br /&gt;
          &amp;quot;index&amp;quot;: 4529,&lt;br /&gt;
          &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&amp;quot;next&amp;quot;: &amp;quot;#Ms_germ_fol_842&amp;quot;,&lt;br /&gt;
&amp;quot;id&amp;quot;: &amp;quot;Ms_germ_fol_841&amp;quot;&lt;br /&gt;
          },&lt;br /&gt;
          &amp;quot;text&amp;quot;: &amp;quot;erblicken wir einen großen Unterſchied zwi- ſchen den entferntern u. nähern Planeten Zwei beſondere Planeten-Syſteme von der Soñe. Dies giebt zwei beſondre Sÿſteme. Die Scheide machen die kleinern Körper die ſich zwiſchen Mars u. Jupiter bewegen, die ein ganz eignes Syſtem bilden, von denen die Veſta als die größte ungefahrungefähr die Oberfl.Oberfläche von Deutſch- land hat. Sie haben eine translative Be-  &amp;quot;,&lt;br /&gt;
          &amp;quot;type&amp;quot;: &amp;quot;div&amp;quot;&lt;br /&gt;
        },&lt;br /&gt;
        {&lt;br /&gt;
          &amp;quot;startIndex&amp;quot;: 0,&lt;br /&gt;
          &amp;quot;endIndex&amp;quot;: 411,&lt;br /&gt;
          &amp;quot;index&amp;quot;: 4530,&lt;br /&gt;
          &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&amp;quot;type&amp;quot;: &amp;quot;session&amp;quot;,&lt;br /&gt;
&amp;quot;n&amp;quot;: &amp;quot;1&amp;quot;&lt;br /&gt;
          },&lt;br /&gt;
          &amp;quot;text&amp;quot;: &amp;quot;erblicken wir einen großen Unterſchied zwi- ſchen den entferntern u. nähern Planeten Zwei beſondere Planeten-Syſteme von der Soñe. Dies giebt zwei beſondre Sÿſteme. Die Scheide machen die kleinern Körper die ſich zwiſchen Mars u. Jupiter bewegen, die ein ganz eignes Syſtem bilden, von denen die Veſta als die größte ungefahrungefähr die Oberfl.Oberfläche von Deutſch- land hat. Sie haben eine translative Be-  &amp;quot;,&lt;br /&gt;
          &amp;quot;type&amp;quot;: &amp;quot;div&amp;quot;&lt;br /&gt;
        },&lt;br /&gt;
        {&lt;br /&gt;
          &amp;quot;startIndex&amp;quot;: 0,&lt;br /&gt;
          &amp;quot;endIndex&amp;quot;: 410,&lt;br /&gt;
          &amp;quot;index&amp;quot;: 4531,&lt;br /&gt;
          &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
          },&lt;br /&gt;
          &amp;quot;text&amp;quot;: &amp;quot;erblicken wir einen großen Unterſchied zwi- ſchen den entferntern u. nähern Planeten Zwei beſondere Planeten-Syſteme von der Soñe. Dies giebt zwei beſondre Sÿſteme. Die Scheide machen die kleinern Körper die ſich zwiſchen Mars u. Jupiter bewegen, die ein ganz eignes Syſtem bilden, von denen die Veſta als die größte ungefahrungefähr die Oberfl.Oberfläche von Deutſch- land hat. Sie haben eine translative Be- &amp;quot;,&lt;br /&gt;
          &amp;quot;type&amp;quot;: &amp;quot;p&amp;quot;&lt;br /&gt;
        },&lt;br /&gt;
        {&lt;br /&gt;
          &amp;quot;startIndex&amp;quot;: 85,&lt;br /&gt;
          &amp;quot;endIndex&amp;quot;: 116,&lt;br /&gt;
          &amp;quot;index&amp;quot;: 4559,&lt;br /&gt;
          &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&amp;quot;place&amp;quot;: &amp;quot;left&amp;quot;&lt;br /&gt;
          },&lt;br /&gt;
          &amp;quot;text&amp;quot;: &amp;quot;Zwei beſondere Planeten-Syſteme &amp;quot;,&lt;br /&gt;
          &amp;quot;type&amp;quot;: &amp;quot;note&amp;quot;&lt;br /&gt;
        },&lt;br /&gt;
        {&lt;br /&gt;
          &amp;quot;startIndex&amp;quot;: 116,&lt;br /&gt;
          &amp;quot;endIndex&amp;quot;: 116,&lt;br /&gt;
          &amp;quot;index&amp;quot;: 4566,&lt;br /&gt;
          &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
          },&lt;br /&gt;
          &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
          &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
        },&lt;br /&gt;
        {&lt;br /&gt;
          &amp;quot;startIndex&amp;quot;: 85,&lt;br /&gt;
          &amp;quot;endIndex&amp;quot;: 115,&lt;br /&gt;
          &amp;quot;index&amp;quot;: 4560,&lt;br /&gt;
          &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&amp;quot;rendition&amp;quot;: &amp;quot;#u&amp;quot;&lt;br /&gt;
          },&lt;br /&gt;
          &amp;quot;text&amp;quot;: &amp;quot;Zwei beſondere Planeten-Syſteme&amp;quot;,&lt;br /&gt;
          &amp;quot;type&amp;quot;: &amp;quot;hi&amp;quot;&lt;br /&gt;
        },&lt;br /&gt;
        {&lt;br /&gt;
          &amp;quot;startIndex&amp;quot;: 274,&lt;br /&gt;
          &amp;quot;endIndex&amp;quot;: 274,&lt;br /&gt;
          &amp;quot;index&amp;quot;: 4624,&lt;br /&gt;
          &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
          },&lt;br /&gt;
          &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
          &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
        },&lt;br /&gt;
        {&lt;br /&gt;
          &amp;quot;startIndex&amp;quot;: 339,&lt;br /&gt;
          &amp;quot;endIndex&amp;quot;: 355,&lt;br /&gt;
          &amp;quot;index&amp;quot;: 4652,&lt;br /&gt;
          &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
          },&lt;br /&gt;
          &amp;quot;text&amp;quot;: &amp;quot;Oberfl.Oberfläche&amp;quot;,&lt;br /&gt;
          &amp;quot;type&amp;quot;: &amp;quot;choice&amp;quot;&lt;br /&gt;
        },&lt;br /&gt;
        {&lt;br /&gt;
          &amp;quot;startIndex&amp;quot;: 346,&lt;br /&gt;
          &amp;quot;endIndex&amp;quot;: 355,&lt;br /&gt;
          &amp;quot;index&amp;quot;: 4655,&lt;br /&gt;
          &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&amp;quot;resp&amp;quot;: &amp;quot;#CT&amp;quot;&lt;br /&gt;
          },&lt;br /&gt;
          &amp;quot;text&amp;quot;: &amp;quot;Oberfläche&amp;quot;,&lt;br /&gt;
          &amp;quot;type&amp;quot;: &amp;quot;expan&amp;quot;&lt;br /&gt;
        },&lt;br /&gt;
        {&lt;br /&gt;
          &amp;quot;startIndex&amp;quot;: 339,&lt;br /&gt;
          &amp;quot;endIndex&amp;quot;: 345,&lt;br /&gt;
          &amp;quot;index&amp;quot;: 4653,&lt;br /&gt;
          &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
          },&lt;br /&gt;
          &amp;quot;text&amp;quot;: &amp;quot;Oberfl.&amp;quot;,&lt;br /&gt;
          &amp;quot;type&amp;quot;: &amp;quot;abbr&amp;quot;&lt;br /&gt;
        },&lt;br /&gt;
        {&lt;br /&gt;
          &amp;quot;startIndex&amp;quot;: 197,&lt;br /&gt;
          &amp;quot;endIndex&amp;quot;: 197,&lt;br /&gt;
          &amp;quot;index&amp;quot;: 4596,&lt;br /&gt;
          &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
          },&lt;br /&gt;
          &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
          &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
        },&lt;br /&gt;
        {&lt;br /&gt;
          &amp;quot;startIndex&amp;quot;: 238,&lt;br /&gt;
          &amp;quot;endIndex&amp;quot;: 238,&lt;br /&gt;
          &amp;quot;index&amp;quot;: 4611,&lt;br /&gt;
          &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
          },&lt;br /&gt;
          &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
          &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
        },&lt;br /&gt;
        {&lt;br /&gt;
          &amp;quot;startIndex&amp;quot;: 369,&lt;br /&gt;
          &amp;quot;endIndex&amp;quot;: 369,&lt;br /&gt;
          &amp;quot;index&amp;quot;: 4661,&lt;br /&gt;
          &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
          },&lt;br /&gt;
          &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
          &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
        },&lt;br /&gt;
        {&lt;br /&gt;
          &amp;quot;startIndex&amp;quot;: 318,&lt;br /&gt;
          &amp;quot;endIndex&amp;quot;: 333,&lt;br /&gt;
          &amp;quot;index&amp;quot;: 4644,&lt;br /&gt;
          &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
          },&lt;br /&gt;
          &amp;quot;text&amp;quot;: &amp;quot;ungefahrungefähr&amp;quot;,&lt;br /&gt;
          &amp;quot;type&amp;quot;: &amp;quot;choice&amp;quot;&lt;br /&gt;
        },&lt;br /&gt;
        {&lt;br /&gt;
          &amp;quot;startIndex&amp;quot;: 318,&lt;br /&gt;
          &amp;quot;endIndex&amp;quot;: 325,&lt;br /&gt;
          &amp;quot;index&amp;quot;: 4645,&lt;br /&gt;
          &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
          },&lt;br /&gt;
          &amp;quot;text&amp;quot;: &amp;quot;ungefahr&amp;quot;,&lt;br /&gt;
          &amp;quot;type&amp;quot;: &amp;quot;sic&amp;quot;&lt;br /&gt;
        },&lt;br /&gt;
        {&lt;br /&gt;
          &amp;quot;startIndex&amp;quot;: 326,&lt;br /&gt;
          &amp;quot;endIndex&amp;quot;: 333,&lt;br /&gt;
          &amp;quot;index&amp;quot;: 4647,&lt;br /&gt;
          &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&amp;quot;resp&amp;quot;: &amp;quot;#CT&amp;quot;&lt;br /&gt;
          },&lt;br /&gt;
          &amp;quot;text&amp;quot;: &amp;quot;ungefähr&amp;quot;,&lt;br /&gt;
          &amp;quot;type&amp;quot;: &amp;quot;corr&amp;quot;&lt;br /&gt;
        },&lt;br /&gt;
        {&lt;br /&gt;
          &amp;quot;startIndex&amp;quot;: 43,&lt;br /&gt;
          &amp;quot;endIndex&amp;quot;: 43,&lt;br /&gt;
          &amp;quot;index&amp;quot;: 4544,&lt;br /&gt;
          &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
          },&lt;br /&gt;
          &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
          &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
        },&lt;br /&gt;
        {&lt;br /&gt;
          &amp;quot;startIndex&amp;quot;: 132,&lt;br /&gt;
          &amp;quot;endIndex&amp;quot;: 163,&lt;br /&gt;
          &amp;quot;index&amp;quot;: 4574,&lt;br /&gt;
          &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&amp;quot;rendition&amp;quot;: &amp;quot;#u&amp;quot;&lt;br /&gt;
          },&lt;br /&gt;
          &amp;quot;text&amp;quot;: &amp;quot;Dies giebt zwei beſondre Sÿſteme&amp;quot;,&lt;br /&gt;
          &amp;quot;type&amp;quot;: &amp;quot;hi&amp;quot;&lt;br /&gt;
        },&lt;br /&gt;
        {&lt;br /&gt;
          &amp;quot;startIndex&amp;quot;: 156,&lt;br /&gt;
          &amp;quot;endIndex&amp;quot;: 156,&lt;br /&gt;
          &amp;quot;index&amp;quot;: 4582,&lt;br /&gt;
          &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
          },&lt;br /&gt;
          &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
          &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
        },&lt;br /&gt;
        {&lt;br /&gt;
          &amp;quot;startIndex&amp;quot;: 84,&lt;br /&gt;
          &amp;quot;endIndex&amp;quot;: 84,&lt;br /&gt;
          &amp;quot;index&amp;quot;: 4557,&lt;br /&gt;
          &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
          },&lt;br /&gt;
          &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
          &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
        },&lt;br /&gt;
        {&lt;br /&gt;
          &amp;quot;startIndex&amp;quot;: 311,&lt;br /&gt;
          &amp;quot;endIndex&amp;quot;: 316,&lt;br /&gt;
          &amp;quot;index&amp;quot;: 4641,&lt;br /&gt;
          &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&amp;quot;rendition&amp;quot;: &amp;quot;#u&amp;quot;,&lt;br /&gt;
&amp;quot;hand&amp;quot;: &amp;quot;#pencil&amp;quot;&lt;br /&gt;
          },&lt;br /&gt;
          &amp;quot;text&amp;quot;: &amp;quot;größte&amp;quot;,&lt;br /&gt;
          &amp;quot;type&amp;quot;: &amp;quot;hi&amp;quot;&lt;br /&gt;
        },&lt;br /&gt;
        {&lt;br /&gt;
          &amp;quot;startIndex&amp;quot;: 310,&lt;br /&gt;
          &amp;quot;endIndex&amp;quot;: 310,&lt;br /&gt;
          &amp;quot;index&amp;quot;: 4639,&lt;br /&gt;
          &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
          },&lt;br /&gt;
          &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
          &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
        },&lt;br /&gt;
        {&lt;br /&gt;
          &amp;quot;startIndex&amp;quot;: 410,&lt;br /&gt;
          &amp;quot;endIndex&amp;quot;: 410,&lt;br /&gt;
          &amp;quot;index&amp;quot;: 4676,&lt;br /&gt;
          &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
          },&lt;br /&gt;
          &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
          &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
        },&lt;br /&gt;
        {&lt;br /&gt;
          &amp;quot;startIndex&amp;quot;: 411,&lt;br /&gt;
          &amp;quot;endIndex&amp;quot;: 411,&lt;br /&gt;
          &amp;quot;index&amp;quot;: 4678,&lt;br /&gt;
          &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
          },&lt;br /&gt;
          &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
          &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
        }&lt;br /&gt;
      ]&lt;br /&gt;
    }&lt;br /&gt;
  }&lt;br /&gt;
]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
At the end of the README-Section you can find a [[https://argimenes.github.io/standoff-properties-editor/ Link]] to Test-Istance hosted on [[https://argimenes.github.io/standoff-properties-editor/ Github-Pages]].&lt;br /&gt;
&lt;br /&gt;
Just copy the JSON-Export in the window below the UNBIND-Button of SPEEDy and press BIND.&lt;br /&gt;
&lt;br /&gt;
The next picture shows SPEEDy with the test.json. You can choose the example file in the top selection box of SPEEDy as well.&lt;br /&gt;
&lt;br /&gt;
[[image:TEIinSPEEDy.png|center|800px|x]]&lt;br /&gt;
&lt;br /&gt;
I want to say thanks to Stefan Armbruster from neo4j for the export-cypher-query and the implementation of the XML-Import functions to [https://github.com/neo4j-contrib/neo4j-apoc-procedures-function apoc] and Iian Neill for his work on [https://argimenes.github.io/standoff-properties-editor/ SPEEDy].&lt;/div&gt;</summary>
		<author><name>Andreas Kuczera</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=SIG:GraphTechnologies&amp;diff=16875</id>
		<title>SIG:GraphTechnologies</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=SIG:GraphTechnologies&amp;diff=16875"/>
		<updated>2022-03-03T10:01:46Z</updated>

		<summary type="html">&lt;p&gt;Andreas Kuczera: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Andreas Kuczera, Iian Neill, Stefan Armbruster&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
&lt;br /&gt;
As TEI is not a format, though many people think it is. It's a de facto standard that specifies Guidelines for document interchange. Actually the Guidelines are based on the XML but this is only one possible technical way of expressing the phenomenons.&lt;br /&gt;
&lt;br /&gt;
'''The aim of the Graph-SIG is to find a way of expressing the language phenomenons of the TEI in Graphs.''' &lt;br /&gt;
&lt;br /&gt;
* In the graph you can use multi-hierarchical annotations layers.&lt;br /&gt;
* Graph models are very easy to read and understand. So DH-People and “normal” scientists have a level of discussion in common.&lt;br /&gt;
* A Graph can be expressed as RDF so the step from a Graph to linked open data is easy to make.&lt;br /&gt;
&lt;br /&gt;
The main goal of the TEI-Graph-SIG is to model the textual phenomenons of the TEI in a Graph and to develop routines to import TEI-encoded XML-files into graph databases.&lt;br /&gt;
&lt;br /&gt;
== Convert DTA-XML with neo4j to Standoff Property JSON ==&lt;br /&gt;
&lt;br /&gt;
In a first step we import a small xml-example into a [https://neo4j.com neo4j] instance using [https://neo4j.com/labs/apoc/4.4/import/xml/ apoc.import.xml]&lt;br /&gt;
&lt;br /&gt;
The example is a [https://seafile.rlp.net/f/6282a26504cc4f079ab9/?dl=1 page] from the [https://www.deutschestextarchiv.de DTA]. Here you can find the [[XML-Testfile]] and this is the [http://www.deutschestextarchiv.de/book/view/patzig_msgermfol841842_1828/?hl=welcher;p=11 Link] to the DTA-Version.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
&amp;lt;TEI&amp;gt;&lt;br /&gt;
  &amp;lt;text&amp;gt;&lt;br /&gt;
    &amp;lt;body&amp;gt;&lt;br /&gt;
      &amp;lt;div xml:id=&amp;quot;Ms_germ_fol_841&amp;quot; next=&amp;quot;#Ms_germ_fol_842&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;div type=&amp;quot;session&amp;quot; n=&amp;quot;1&amp;quot;&amp;gt;&lt;br /&gt;
          &amp;lt;p&amp;gt;&amp;lt;pb facs=&amp;quot;#f0011&amp;quot; n=&amp;quot;7.&amp;quot;/&amp;gt;&lt;br /&gt;
erblicken wir einen großen Unter&amp;amp;#x017F;chied zwi-&amp;lt;lb/&amp;gt;&lt;br /&gt;
&amp;amp;#x017F;chen den entferntern u. nähern Planeten&amp;lt;lb/&amp;gt;&amp;lt;note place=&amp;quot;left&amp;quot;&amp;gt;&amp;lt;hi rendition=&amp;quot;#u&amp;quot;&amp;gt;Zwei be&amp;amp;#x017F;ondere Planeten-Sy&amp;amp;#x017F;teme&amp;lt;/hi&amp;gt;&amp;lt;lb/&amp;gt;&amp;lt;/note&amp;gt;von der Son&amp;amp;#x0303;e. &amp;lt;hi rendition=&amp;quot;#u&amp;quot;&amp;gt;Dies giebt zwei be&amp;amp;#x017F;ondre&amp;lt;lb/&amp;gt;&lt;br /&gt;
Sÿ&amp;amp;#x017F;teme&amp;lt;/hi&amp;gt;. Die Scheide machen die kleinern&amp;lt;lb/&amp;gt;&lt;br /&gt;
Körper die &amp;amp;#x017F;ich zwi&amp;amp;#x017F;chen Mars u. Jupiter&amp;lt;lb/&amp;gt;&lt;br /&gt;
bewegen, die ein ganz eignes Sy&amp;amp;#x017F;tem&amp;lt;lb/&amp;gt;&lt;br /&gt;
bilden, von denen die Ve&amp;amp;#x017F;ta als die&amp;lt;lb/&amp;gt;&amp;lt;hi rendition=&amp;quot;#u&amp;quot; hand=&amp;quot;#pencil&amp;quot;&amp;gt;größte&amp;lt;/hi&amp;gt; &amp;lt;choice&amp;gt;&amp;lt;sic&amp;gt;ungefahr&amp;lt;/sic&amp;gt;&amp;lt;corr resp=&amp;quot;#CT&amp;quot;&amp;gt;ungefähr&amp;lt;/corr&amp;gt;&amp;lt;/choice&amp;gt; die &amp;lt;choice&amp;gt;&amp;lt;abbr&amp;gt;Oberfl.&amp;lt;/abbr&amp;gt;&amp;lt;expan resp=&amp;quot;#CT&amp;quot;&amp;gt;Oberfläche&amp;lt;/expan&amp;gt;&amp;lt;/choice&amp;gt; von Deut&amp;amp;#x017F;ch-&amp;lt;lb/&amp;gt;&lt;br /&gt;
land hat. Sie haben eine translative Be-&amp;lt;lb/&amp;gt;&lt;br /&gt;
wegung von We&amp;amp;#x017F;ten nach O&amp;amp;#x017F;ten, &amp;amp;#x017F;ind ihrer&amp;lt;lb/&amp;gt;&lt;br /&gt;
Stellung nach ähnlich den &amp;lt;choice&amp;gt;&amp;lt;sic&amp;gt;Com&amp;amp;#x0303;eten&amp;lt;/sic&amp;gt;&amp;lt;corr resp=&amp;quot;#BF&amp;quot;&amp;gt;Cometen&amp;lt;/corr&amp;gt;&amp;lt;/choice&amp;gt;; obgleich&amp;lt;lb/&amp;gt;&lt;br /&gt;
doch keine A&amp;lt;subst&amp;gt;&amp;lt;del rendition=&amp;quot;#ow&amp;quot;&amp;gt;&amp;lt;gap reason=&amp;quot;illegible&amp;quot; unit=&amp;quot;chars&amp;quot; quantity=&amp;quot;1&amp;quot;/&amp;gt;&amp;lt;/del&amp;gt;&amp;lt;add place=&amp;quot;across&amp;quot;&amp;gt;e&amp;lt;/add&amp;gt;&amp;lt;/subst&amp;gt;hnlichkeit anderweit zwi&amp;amp;#x017F;chen&amp;lt;lb/&amp;gt;&lt;br /&gt;
ihnen u. den &amp;lt;choice&amp;gt;&amp;lt;abbr&amp;gt;&amp;lt;choice&amp;gt;&amp;lt;sic&amp;gt;Com&amp;amp;#x0303;et&amp;amp;#xFFFC;&amp;lt;/sic&amp;gt;&amp;lt;corr resp=&amp;quot;#BF&amp;quot;&amp;gt;Comet&amp;amp;#xFFFC;&amp;lt;/corr&amp;gt;&amp;lt;/choice&amp;gt;&amp;lt;/abbr&amp;gt;&amp;lt;expan resp=&amp;quot;#BF&amp;quot;&amp;gt;&amp;lt;choice&amp;gt;&amp;lt;sic&amp;gt;Com&amp;amp;#x0303;eten&amp;lt;/sic&amp;gt;&amp;lt;corr resp=&amp;quot;#BF&amp;quot;&amp;gt;Cometen&amp;lt;/corr&amp;gt;&amp;lt;/choice&amp;gt;&amp;lt;/expan&amp;gt;&amp;lt;/choice&amp;gt; i&amp;amp;#x017F;t, wie überhaupt&amp;lt;lb/&amp;gt;&lt;br /&gt;
kein Uebergang zwi&amp;amp;#x017F;chen Planeten u. Co-&amp;lt;lb/&amp;gt;&lt;br /&gt;
meten gefunden wird u. keine po&amp;amp;#x017F;itive&amp;lt;lb/&amp;gt;&amp;lt;note place=&amp;quot;left&amp;quot;&amp;gt;&amp;lt;hi rendition=&amp;quot;#u&amp;quot;&amp;gt;Er&amp;amp;#x017F;tes Sy&amp;amp;#x017F;tem&amp;lt;lb/&amp;gt;&lt;br /&gt;
characteri&amp;amp;#x017F;t. Merkmale&amp;lt;/hi&amp;gt;&amp;lt;lb/&amp;gt;&amp;lt;/note&amp;gt;Aehnlichkeit. &amp;lt;hi rendition=&amp;quot;#u&amp;quot;&amp;gt;Jn die&amp;amp;#x017F;em doppelten Sy&amp;amp;#x017F;tem&amp;lt;lb/&amp;gt;&lt;br /&gt;
der Planeten gehören zu&amp;amp;#x017F;am&amp;amp;#x0303;en: Merkur,&amp;lt;lb/&amp;gt;&lt;br /&gt;
Venus, Erde, Mars.&amp;lt;/hi&amp;gt; Sie haben das&amp;lt;lb/&amp;gt;&lt;br /&gt;
gemein&amp;amp;#x017F;ame der be&amp;amp;#x017F;ondern Dichtigkeit,&amp;lt;lb/&amp;gt;&lt;br /&gt;
wie &amp;lt;hi rendition=&amp;quot;#aq&amp;quot;&amp;gt;Platina&amp;lt;/hi&amp;gt;, Magnet&amp;amp;#x017F;tein u. dgl.; &amp;amp;#x017F;ie&amp;lt;lb/&amp;gt;&amp;lt;subst&amp;gt;&amp;lt;del rendition=&amp;quot;#s&amp;quot;&amp;gt;rotiren&amp;lt;/del&amp;gt;&amp;lt;add place=&amp;quot;superlinear&amp;quot;&amp;gt;bewegen &amp;amp;#x017F;ich&amp;lt;/add&amp;gt;&amp;lt;/subst&amp;gt; viel ge&amp;amp;#x017F;chwinder &amp;lt;metamark/&amp;gt;&amp;lt;add place=&amp;quot;superlinear&amp;quot;&amp;gt;um die Son&amp;amp;#x0303;e&amp;lt;/add&amp;gt;, &amp;amp;#x017F;ind mond-&amp;lt;lb/&amp;gt;&lt;br /&gt;
armer |: bloß die Erde hat einen &amp;lt;choice&amp;gt;&amp;lt;abbr&amp;gt;Trabant&amp;amp;#xFFFC;&amp;lt;/abbr&amp;gt;&amp;lt;expan resp=&amp;quot;#BF&amp;quot;&amp;gt;Trabanten&amp;lt;/expan&amp;gt;&amp;lt;/choice&amp;gt; :|,&amp;lt;lb/&amp;gt;&lt;br /&gt;
an den Polen abgeplattet. Anders&amp;lt;lb/&amp;gt;&lt;br /&gt;
verhält es &amp;amp;#x017F;ich mit den Planeten auf der&amp;lt;lb/&amp;gt;&lt;br /&gt;
Bahn jen&amp;amp;#x017F;eits der kleinen Planeten.&amp;lt;/p&amp;gt;&amp;lt;lb/&amp;gt;&lt;br /&gt;
        &amp;lt;/div&amp;gt;&lt;br /&gt;
      &amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;/body&amp;gt;&lt;br /&gt;
  &amp;lt;/text&amp;gt;&lt;br /&gt;
&amp;lt;/TEI&amp;gt;&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Import into neo4j ==&lt;br /&gt;
&lt;br /&gt;
The import into neo4j runs with:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
 // Import xml-example from DTA to neo4j&lt;br /&gt;
 call apoc.import.xml('https://seafile.rlp.net/f/6282a26504cc4f079ab9/?dl=1', {connectCharacters: true, charactersForTag:{lb:' '}, filterLeadingWhitespace: true}) yield node &lt;br /&gt;
 return node;&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the next picture you can see a small set of the Graph:&lt;br /&gt;
&lt;br /&gt;
[[image:TEI-Graph.png|center|800px|x]]&lt;br /&gt;
&lt;br /&gt;
== Export from neo4j to Standoff Property JSON ==&lt;br /&gt;
&lt;br /&gt;
The next step is to export the data with some [[cypher]] to the Standoff-Property JSON-Format.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
 // Export TEI-Graph to Standoff-Property-JSON-Format by Stefan Armbruster&lt;br /&gt;
 match path=(d:XmlDocument)-[:NE*]-&amp;gt;(e:XmlCharacters)&lt;br /&gt;
 where not (e)-[:NE]-&amp;gt;()&lt;br /&gt;
 with tail(nodes(path)) as words, d&lt;br /&gt;
 with reduce(s=&amp;quot;&amp;quot;, x in words| s + x.text ) as allText, d&lt;br /&gt;
 call apoc.path.expandConfig(d,{&lt;br /&gt;
 relationshipFilter: '&amp;lt;IS_CHILD_OF',&lt;br /&gt;
 labelFilter: 'XmlTag',&lt;br /&gt;
 bfs: false,&lt;br /&gt;
 minLevel: 1&lt;br /&gt;
 }) yield path&lt;br /&gt;
 with allText, path, nodes(path)[-1] as this&lt;br /&gt;
 MATCH p=(this)-[:NEXT*]-&amp;gt;(x)&lt;br /&gt;
 where (x)-[:LAST_CHILD_OF*]-&amp;gt;(this) and any(x in nodes(p) WHERE x:XmlCharacters)&lt;br /&gt;
 with allText, this, collect(p)[-1] as longest&lt;br /&gt;
 with allText, this, [x in nodes(longest) where x:XmlCharacters] as xmlCharacters&lt;br /&gt;
 with allText, this, &lt;br /&gt;
 apoc.coll.min([x in xmlCharacters | x.startIndex]) as min, &lt;br /&gt;
 apoc.coll.max([x in xmlCharacters | x.endIndex]) as max, &lt;br /&gt;
 apoc.text.join([x in xmlCharacters | x.text], &amp;quot;&amp;quot;) as text&lt;br /&gt;
 with allText, {&lt;br /&gt;
 index:id(this), &lt;br /&gt;
 startIndex: min, &lt;br /&gt;
 endIndex: max,&lt;br /&gt;
 text: text,&lt;br /&gt;
 type: this._name,&lt;br /&gt;
 attributes: apoc.map.fromPairs([x in keys(this) WHERE not x starts with &amp;quot;_&amp;quot; | [x, this[x]] ])&lt;br /&gt;
 } as standoffProperty&lt;br /&gt;
 return {text: allText, properties: collect(standoffProperty)};&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This json can then be imported in the [[https://github.com/argimenes/standoff-properties-editor SPEEDy]] Standoff Property Editor which can be found on [[https://github.com/argimenes/standoff-properties-editor GitHub]].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
[&lt;br /&gt;
  {&lt;br /&gt;
    &amp;quot;{text: allText, properties: collect(standoffProperty)}&amp;quot;: {&lt;br /&gt;
&amp;quot;text&amp;quot;: &amp;quot;erblicken wir einen großen Unterſchied zwi- ſchen den entferntern u. nähern Planeten Zwei beſondere Planeten-Syſteme von der Soñe. Dies giebt zwei beſondre Sÿſteme. Die Scheide machen die kleinern Körper die ſich zwiſchen Mars u. Jupiter bewegen, die ein ganz eignes Syſtem bilden, von denen die Veſta als die größte ungefahrungefähr die Oberfl.Oberfläche von Deutſch- land hat. Sie haben eine translative Be-  &amp;quot;,&lt;br /&gt;
&amp;quot;properties&amp;quot;: [&lt;br /&gt;
        {&lt;br /&gt;
          &amp;quot;startIndex&amp;quot;: 0,&lt;br /&gt;
          &amp;quot;endIndex&amp;quot;: 411,&lt;br /&gt;
          &amp;quot;index&amp;quot;: 4526,&lt;br /&gt;
          &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
          },&lt;br /&gt;
          &amp;quot;text&amp;quot;: &amp;quot;erblicken wir einen großen Unterſchied zwi- ſchen den entferntern u. nähern Planeten Zwei beſondere Planeten-Syſteme von der Soñe. Dies giebt zwei beſondre Sÿſteme. Die Scheide machen die kleinern Körper die ſich zwiſchen Mars u. Jupiter bewegen, die ein ganz eignes Syſtem bilden, von denen die Veſta als die größte ungefahrungefähr die Oberfl.Oberfläche von Deutſch- land hat. Sie haben eine translative Be-  &amp;quot;,&lt;br /&gt;
          &amp;quot;type&amp;quot;: &amp;quot;TEI&amp;quot;&lt;br /&gt;
        },&lt;br /&gt;
        {&lt;br /&gt;
          &amp;quot;startIndex&amp;quot;: 0,&lt;br /&gt;
          &amp;quot;endIndex&amp;quot;: 411,&lt;br /&gt;
          &amp;quot;index&amp;quot;: 4527,&lt;br /&gt;
          &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
          },&lt;br /&gt;
          &amp;quot;text&amp;quot;: &amp;quot;erblicken wir einen großen Unterſchied zwi- ſchen den entferntern u. nähern Planeten Zwei beſondere Planeten-Syſteme von der Soñe. Dies giebt zwei beſondre Sÿſteme. Die Scheide machen die kleinern Körper die ſich zwiſchen Mars u. Jupiter bewegen, die ein ganz eignes Syſtem bilden, von denen die Veſta als die größte ungefahrungefähr die Oberfl.Oberfläche von Deutſch- land hat. Sie haben eine translative Be-  &amp;quot;,&lt;br /&gt;
          &amp;quot;type&amp;quot;: &amp;quot;text&amp;quot;&lt;br /&gt;
        },&lt;br /&gt;
        {&lt;br /&gt;
          &amp;quot;startIndex&amp;quot;: 0,&lt;br /&gt;
          &amp;quot;endIndex&amp;quot;: 411,&lt;br /&gt;
          &amp;quot;index&amp;quot;: 4528,&lt;br /&gt;
          &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
          },&lt;br /&gt;
          &amp;quot;text&amp;quot;: &amp;quot;erblicken wir einen großen Unterſchied zwi- ſchen den entferntern u. nähern Planeten Zwei beſondere Planeten-Syſteme von der Soñe. Dies giebt zwei beſondre Sÿſteme. Die Scheide machen die kleinern Körper die ſich zwiſchen Mars u. Jupiter bewegen, die ein ganz eignes Syſtem bilden, von denen die Veſta als die größte ungefahrungefähr die Oberfl.Oberfläche von Deutſch- land hat. Sie haben eine translative Be-  &amp;quot;,&lt;br /&gt;
          &amp;quot;type&amp;quot;: &amp;quot;body&amp;quot;&lt;br /&gt;
        },&lt;br /&gt;
        {&lt;br /&gt;
          &amp;quot;startIndex&amp;quot;: 0,&lt;br /&gt;
          &amp;quot;endIndex&amp;quot;: 411,&lt;br /&gt;
          &amp;quot;index&amp;quot;: 4529,&lt;br /&gt;
          &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&amp;quot;next&amp;quot;: &amp;quot;#Ms_germ_fol_842&amp;quot;,&lt;br /&gt;
&amp;quot;id&amp;quot;: &amp;quot;Ms_germ_fol_841&amp;quot;&lt;br /&gt;
          },&lt;br /&gt;
          &amp;quot;text&amp;quot;: &amp;quot;erblicken wir einen großen Unterſchied zwi- ſchen den entferntern u. nähern Planeten Zwei beſondere Planeten-Syſteme von der Soñe. Dies giebt zwei beſondre Sÿſteme. Die Scheide machen die kleinern Körper die ſich zwiſchen Mars u. Jupiter bewegen, die ein ganz eignes Syſtem bilden, von denen die Veſta als die größte ungefahrungefähr die Oberfl.Oberfläche von Deutſch- land hat. Sie haben eine translative Be-  &amp;quot;,&lt;br /&gt;
          &amp;quot;type&amp;quot;: &amp;quot;div&amp;quot;&lt;br /&gt;
        },&lt;br /&gt;
        {&lt;br /&gt;
          &amp;quot;startIndex&amp;quot;: 0,&lt;br /&gt;
          &amp;quot;endIndex&amp;quot;: 411,&lt;br /&gt;
          &amp;quot;index&amp;quot;: 4530,&lt;br /&gt;
          &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&amp;quot;type&amp;quot;: &amp;quot;session&amp;quot;,&lt;br /&gt;
&amp;quot;n&amp;quot;: &amp;quot;1&amp;quot;&lt;br /&gt;
          },&lt;br /&gt;
          &amp;quot;text&amp;quot;: &amp;quot;erblicken wir einen großen Unterſchied zwi- ſchen den entferntern u. nähern Planeten Zwei beſondere Planeten-Syſteme von der Soñe. Dies giebt zwei beſondre Sÿſteme. Die Scheide machen die kleinern Körper die ſich zwiſchen Mars u. Jupiter bewegen, die ein ganz eignes Syſtem bilden, von denen die Veſta als die größte ungefahrungefähr die Oberfl.Oberfläche von Deutſch- land hat. Sie haben eine translative Be-  &amp;quot;,&lt;br /&gt;
          &amp;quot;type&amp;quot;: &amp;quot;div&amp;quot;&lt;br /&gt;
        },&lt;br /&gt;
        {&lt;br /&gt;
          &amp;quot;startIndex&amp;quot;: 0,&lt;br /&gt;
          &amp;quot;endIndex&amp;quot;: 410,&lt;br /&gt;
          &amp;quot;index&amp;quot;: 4531,&lt;br /&gt;
          &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
          },&lt;br /&gt;
          &amp;quot;text&amp;quot;: &amp;quot;erblicken wir einen großen Unterſchied zwi- ſchen den entferntern u. nähern Planeten Zwei beſondere Planeten-Syſteme von der Soñe. Dies giebt zwei beſondre Sÿſteme. Die Scheide machen die kleinern Körper die ſich zwiſchen Mars u. Jupiter bewegen, die ein ganz eignes Syſtem bilden, von denen die Veſta als die größte ungefahrungefähr die Oberfl.Oberfläche von Deutſch- land hat. Sie haben eine translative Be- &amp;quot;,&lt;br /&gt;
          &amp;quot;type&amp;quot;: &amp;quot;p&amp;quot;&lt;br /&gt;
        },&lt;br /&gt;
        {&lt;br /&gt;
          &amp;quot;startIndex&amp;quot;: 85,&lt;br /&gt;
          &amp;quot;endIndex&amp;quot;: 116,&lt;br /&gt;
          &amp;quot;index&amp;quot;: 4559,&lt;br /&gt;
          &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&amp;quot;place&amp;quot;: &amp;quot;left&amp;quot;&lt;br /&gt;
          },&lt;br /&gt;
          &amp;quot;text&amp;quot;: &amp;quot;Zwei beſondere Planeten-Syſteme &amp;quot;,&lt;br /&gt;
          &amp;quot;type&amp;quot;: &amp;quot;note&amp;quot;&lt;br /&gt;
        },&lt;br /&gt;
        {&lt;br /&gt;
          &amp;quot;startIndex&amp;quot;: 116,&lt;br /&gt;
          &amp;quot;endIndex&amp;quot;: 116,&lt;br /&gt;
          &amp;quot;index&amp;quot;: 4566,&lt;br /&gt;
          &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
          },&lt;br /&gt;
          &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
          &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
        },&lt;br /&gt;
        {&lt;br /&gt;
          &amp;quot;startIndex&amp;quot;: 85,&lt;br /&gt;
          &amp;quot;endIndex&amp;quot;: 115,&lt;br /&gt;
          &amp;quot;index&amp;quot;: 4560,&lt;br /&gt;
          &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&amp;quot;rendition&amp;quot;: &amp;quot;#u&amp;quot;&lt;br /&gt;
          },&lt;br /&gt;
          &amp;quot;text&amp;quot;: &amp;quot;Zwei beſondere Planeten-Syſteme&amp;quot;,&lt;br /&gt;
          &amp;quot;type&amp;quot;: &amp;quot;hi&amp;quot;&lt;br /&gt;
        },&lt;br /&gt;
        {&lt;br /&gt;
          &amp;quot;startIndex&amp;quot;: 274,&lt;br /&gt;
          &amp;quot;endIndex&amp;quot;: 274,&lt;br /&gt;
          &amp;quot;index&amp;quot;: 4624,&lt;br /&gt;
          &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
          },&lt;br /&gt;
          &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
          &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
        },&lt;br /&gt;
        {&lt;br /&gt;
          &amp;quot;startIndex&amp;quot;: 339,&lt;br /&gt;
          &amp;quot;endIndex&amp;quot;: 355,&lt;br /&gt;
          &amp;quot;index&amp;quot;: 4652,&lt;br /&gt;
          &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
          },&lt;br /&gt;
          &amp;quot;text&amp;quot;: &amp;quot;Oberfl.Oberfläche&amp;quot;,&lt;br /&gt;
          &amp;quot;type&amp;quot;: &amp;quot;choice&amp;quot;&lt;br /&gt;
        },&lt;br /&gt;
        {&lt;br /&gt;
          &amp;quot;startIndex&amp;quot;: 346,&lt;br /&gt;
          &amp;quot;endIndex&amp;quot;: 355,&lt;br /&gt;
          &amp;quot;index&amp;quot;: 4655,&lt;br /&gt;
          &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&amp;quot;resp&amp;quot;: &amp;quot;#CT&amp;quot;&lt;br /&gt;
          },&lt;br /&gt;
          &amp;quot;text&amp;quot;: &amp;quot;Oberfläche&amp;quot;,&lt;br /&gt;
          &amp;quot;type&amp;quot;: &amp;quot;expan&amp;quot;&lt;br /&gt;
        },&lt;br /&gt;
        {&lt;br /&gt;
          &amp;quot;startIndex&amp;quot;: 339,&lt;br /&gt;
          &amp;quot;endIndex&amp;quot;: 345,&lt;br /&gt;
          &amp;quot;index&amp;quot;: 4653,&lt;br /&gt;
          &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
          },&lt;br /&gt;
          &amp;quot;text&amp;quot;: &amp;quot;Oberfl.&amp;quot;,&lt;br /&gt;
          &amp;quot;type&amp;quot;: &amp;quot;abbr&amp;quot;&lt;br /&gt;
        },&lt;br /&gt;
        {&lt;br /&gt;
          &amp;quot;startIndex&amp;quot;: 197,&lt;br /&gt;
          &amp;quot;endIndex&amp;quot;: 197,&lt;br /&gt;
          &amp;quot;index&amp;quot;: 4596,&lt;br /&gt;
          &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
          },&lt;br /&gt;
          &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
          &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
        },&lt;br /&gt;
        {&lt;br /&gt;
          &amp;quot;startIndex&amp;quot;: 238,&lt;br /&gt;
          &amp;quot;endIndex&amp;quot;: 238,&lt;br /&gt;
          &amp;quot;index&amp;quot;: 4611,&lt;br /&gt;
          &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
          },&lt;br /&gt;
          &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
          &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
        },&lt;br /&gt;
        {&lt;br /&gt;
          &amp;quot;startIndex&amp;quot;: 369,&lt;br /&gt;
          &amp;quot;endIndex&amp;quot;: 369,&lt;br /&gt;
          &amp;quot;index&amp;quot;: 4661,&lt;br /&gt;
          &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
          },&lt;br /&gt;
          &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
          &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
        },&lt;br /&gt;
        {&lt;br /&gt;
          &amp;quot;startIndex&amp;quot;: 318,&lt;br /&gt;
          &amp;quot;endIndex&amp;quot;: 333,&lt;br /&gt;
          &amp;quot;index&amp;quot;: 4644,&lt;br /&gt;
          &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
          },&lt;br /&gt;
          &amp;quot;text&amp;quot;: &amp;quot;ungefahrungefähr&amp;quot;,&lt;br /&gt;
          &amp;quot;type&amp;quot;: &amp;quot;choice&amp;quot;&lt;br /&gt;
        },&lt;br /&gt;
        {&lt;br /&gt;
          &amp;quot;startIndex&amp;quot;: 318,&lt;br /&gt;
          &amp;quot;endIndex&amp;quot;: 325,&lt;br /&gt;
          &amp;quot;index&amp;quot;: 4645,&lt;br /&gt;
          &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
          },&lt;br /&gt;
          &amp;quot;text&amp;quot;: &amp;quot;ungefahr&amp;quot;,&lt;br /&gt;
          &amp;quot;type&amp;quot;: &amp;quot;sic&amp;quot;&lt;br /&gt;
        },&lt;br /&gt;
        {&lt;br /&gt;
          &amp;quot;startIndex&amp;quot;: 326,&lt;br /&gt;
          &amp;quot;endIndex&amp;quot;: 333,&lt;br /&gt;
          &amp;quot;index&amp;quot;: 4647,&lt;br /&gt;
          &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&amp;quot;resp&amp;quot;: &amp;quot;#CT&amp;quot;&lt;br /&gt;
          },&lt;br /&gt;
          &amp;quot;text&amp;quot;: &amp;quot;ungefähr&amp;quot;,&lt;br /&gt;
          &amp;quot;type&amp;quot;: &amp;quot;corr&amp;quot;&lt;br /&gt;
        },&lt;br /&gt;
        {&lt;br /&gt;
          &amp;quot;startIndex&amp;quot;: 43,&lt;br /&gt;
          &amp;quot;endIndex&amp;quot;: 43,&lt;br /&gt;
          &amp;quot;index&amp;quot;: 4544,&lt;br /&gt;
          &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
          },&lt;br /&gt;
          &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
          &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
        },&lt;br /&gt;
        {&lt;br /&gt;
          &amp;quot;startIndex&amp;quot;: 132,&lt;br /&gt;
          &amp;quot;endIndex&amp;quot;: 163,&lt;br /&gt;
          &amp;quot;index&amp;quot;: 4574,&lt;br /&gt;
          &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&amp;quot;rendition&amp;quot;: &amp;quot;#u&amp;quot;&lt;br /&gt;
          },&lt;br /&gt;
          &amp;quot;text&amp;quot;: &amp;quot;Dies giebt zwei beſondre Sÿſteme&amp;quot;,&lt;br /&gt;
          &amp;quot;type&amp;quot;: &amp;quot;hi&amp;quot;&lt;br /&gt;
        },&lt;br /&gt;
        {&lt;br /&gt;
          &amp;quot;startIndex&amp;quot;: 156,&lt;br /&gt;
          &amp;quot;endIndex&amp;quot;: 156,&lt;br /&gt;
          &amp;quot;index&amp;quot;: 4582,&lt;br /&gt;
          &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
          },&lt;br /&gt;
          &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
          &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
        },&lt;br /&gt;
        {&lt;br /&gt;
          &amp;quot;startIndex&amp;quot;: 84,&lt;br /&gt;
          &amp;quot;endIndex&amp;quot;: 84,&lt;br /&gt;
          &amp;quot;index&amp;quot;: 4557,&lt;br /&gt;
          &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
          },&lt;br /&gt;
          &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
          &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
        },&lt;br /&gt;
        {&lt;br /&gt;
          &amp;quot;startIndex&amp;quot;: 311,&lt;br /&gt;
          &amp;quot;endIndex&amp;quot;: 316,&lt;br /&gt;
          &amp;quot;index&amp;quot;: 4641,&lt;br /&gt;
          &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&amp;quot;rendition&amp;quot;: &amp;quot;#u&amp;quot;,&lt;br /&gt;
&amp;quot;hand&amp;quot;: &amp;quot;#pencil&amp;quot;&lt;br /&gt;
          },&lt;br /&gt;
          &amp;quot;text&amp;quot;: &amp;quot;größte&amp;quot;,&lt;br /&gt;
          &amp;quot;type&amp;quot;: &amp;quot;hi&amp;quot;&lt;br /&gt;
        },&lt;br /&gt;
        {&lt;br /&gt;
          &amp;quot;startIndex&amp;quot;: 310,&lt;br /&gt;
          &amp;quot;endIndex&amp;quot;: 310,&lt;br /&gt;
          &amp;quot;index&amp;quot;: 4639,&lt;br /&gt;
          &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
          },&lt;br /&gt;
          &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
          &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
        },&lt;br /&gt;
        {&lt;br /&gt;
          &amp;quot;startIndex&amp;quot;: 410,&lt;br /&gt;
          &amp;quot;endIndex&amp;quot;: 410,&lt;br /&gt;
          &amp;quot;index&amp;quot;: 4676,&lt;br /&gt;
          &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
          },&lt;br /&gt;
          &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
          &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
        },&lt;br /&gt;
        {&lt;br /&gt;
          &amp;quot;startIndex&amp;quot;: 411,&lt;br /&gt;
          &amp;quot;endIndex&amp;quot;: 411,&lt;br /&gt;
          &amp;quot;index&amp;quot;: 4678,&lt;br /&gt;
          &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
          },&lt;br /&gt;
          &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
          &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
        }&lt;br /&gt;
      ]&lt;br /&gt;
    }&lt;br /&gt;
  }&lt;br /&gt;
]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
At the end of the README-Section you can find a [[https://argimenes.github.io/standoff-properties-editor/ Link]] to Test-Istance hosted on [[https://argimenes.github.io/standoff-properties-editor/ Github-Pages]].&lt;br /&gt;
&lt;br /&gt;
Just copy the JSON-Export in the window below the UNBIND-Button of SPEEDy and press BIND.&lt;br /&gt;
&lt;br /&gt;
The next picture shows SPEEDy with the test.json. You can choose the example file in the top selection box of SPEEDy as well.&lt;br /&gt;
&lt;br /&gt;
[[image:TEIinSPEEDy.png|center|800px|x]]&lt;br /&gt;
&lt;br /&gt;
I want to say thanks to Stefan Armbruster from neo4j for the export-cypher-query and the implementation of the XML-Import functions to [https://github.com/neo4j-contrib/neo4j-apoc-procedures-function apoc] and Iian Neill for his work on [https://argimenes.github.io/standoff-properties-editor/ SPEEDy].&lt;/div&gt;</summary>
		<author><name>Andreas Kuczera</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=SIG:GraphTechnologies&amp;diff=16874</id>
		<title>SIG:GraphTechnologies</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=SIG:GraphTechnologies&amp;diff=16874"/>
		<updated>2022-03-03T09:59:08Z</updated>

		<summary type="html">&lt;p&gt;Andreas Kuczera: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Andreas Kuczera, Iian Neill, Stefan Armbruster&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
&lt;br /&gt;
As TEI is not a format, though many people think it is. It's a de facto standard that specifies Guidelines for document interchange. Actually the Guidelines are based on the XML but this is only one possible technical way of expressing the phenomenons.&lt;br /&gt;
&lt;br /&gt;
'''The aim of the Graph-SIG is to find a way of expressing the language phenomenons of the TEI in Graphs.''' &lt;br /&gt;
&lt;br /&gt;
* In the graph you can use multi-hierarchical annotations layers.&lt;br /&gt;
* Graph models are very easy to read and understand. So DH-People and “normal” scientists have a level of discussion in common.&lt;br /&gt;
* A Graph can be expressed as RDF so the step from a Graph to linked open data is easy to make.&lt;br /&gt;
&lt;br /&gt;
The main goal of the TEI-Graph-SIG is to model the textual phenomenons of the TEI in a Graph and to develop routines to import TEI-encoded XML-files into graph databases.&lt;br /&gt;
&lt;br /&gt;
== Convert DTA-XML with neo4j to Standoff Property JSON ==&lt;br /&gt;
&lt;br /&gt;
In a first step we import a small xml-example into a [https://neo4j.com neo4j] instance using [https://neo4j.com/labs/apoc/4.4/import/xml/ apoc.import.xml]&lt;br /&gt;
&lt;br /&gt;
The example is a [https://seafile.rlp.net/f/6282a26504cc4f079ab9/?dl=1 page] from the [https://www.deutschestextarchiv.de DTA]. Here you can find the [[XML-Testfile]] and this is the [http://www.deutschestextarchiv.de/book/view/patzig_msgermfol841842_1828/?hl=welcher;p=11 Link] to the DTA-Version.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
&amp;lt;TEI&amp;gt;&lt;br /&gt;
  &amp;lt;text&amp;gt;&lt;br /&gt;
    &amp;lt;body&amp;gt;&lt;br /&gt;
      &amp;lt;div xml:id=&amp;quot;Ms_germ_fol_841&amp;quot; next=&amp;quot;#Ms_germ_fol_842&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;div type=&amp;quot;session&amp;quot; n=&amp;quot;1&amp;quot;&amp;gt;&lt;br /&gt;
          &amp;lt;p&amp;gt;&amp;lt;pb facs=&amp;quot;#f0011&amp;quot; n=&amp;quot;7.&amp;quot;/&amp;gt;&lt;br /&gt;
erblicken wir einen großen Unter&amp;amp;#x017F;chied zwi-&amp;lt;lb/&amp;gt;&lt;br /&gt;
&amp;amp;#x017F;chen den entferntern u. nähern Planeten&amp;lt;lb/&amp;gt;&amp;lt;note place=&amp;quot;left&amp;quot;&amp;gt;&amp;lt;hi rendition=&amp;quot;#u&amp;quot;&amp;gt;Zwei be&amp;amp;#x017F;ondere Planeten-Sy&amp;amp;#x017F;teme&amp;lt;/hi&amp;gt;&amp;lt;lb/&amp;gt;&amp;lt;/note&amp;gt;von der Son&amp;amp;#x0303;e. &amp;lt;hi rendition=&amp;quot;#u&amp;quot;&amp;gt;Dies giebt zwei be&amp;amp;#x017F;ondre&amp;lt;lb/&amp;gt;&lt;br /&gt;
Sÿ&amp;amp;#x017F;teme&amp;lt;/hi&amp;gt;. Die Scheide machen die kleinern&amp;lt;lb/&amp;gt;&lt;br /&gt;
Körper die &amp;amp;#x017F;ich zwi&amp;amp;#x017F;chen Mars u. Jupiter&amp;lt;lb/&amp;gt;&lt;br /&gt;
bewegen, die ein ganz eignes Sy&amp;amp;#x017F;tem&amp;lt;lb/&amp;gt;&lt;br /&gt;
bilden, von denen die Ve&amp;amp;#x017F;ta als die&amp;lt;lb/&amp;gt;&amp;lt;hi rendition=&amp;quot;#u&amp;quot; hand=&amp;quot;#pencil&amp;quot;&amp;gt;größte&amp;lt;/hi&amp;gt; &amp;lt;choice&amp;gt;&amp;lt;sic&amp;gt;ungefahr&amp;lt;/sic&amp;gt;&amp;lt;corr resp=&amp;quot;#CT&amp;quot;&amp;gt;ungefähr&amp;lt;/corr&amp;gt;&amp;lt;/choice&amp;gt; die &amp;lt;choice&amp;gt;&amp;lt;abbr&amp;gt;Oberfl.&amp;lt;/abbr&amp;gt;&amp;lt;expan resp=&amp;quot;#CT&amp;quot;&amp;gt;Oberfläche&amp;lt;/expan&amp;gt;&amp;lt;/choice&amp;gt; von Deut&amp;amp;#x017F;ch-&amp;lt;lb/&amp;gt;&lt;br /&gt;
land hat. Sie haben eine translative Be-&amp;lt;lb/&amp;gt;&lt;br /&gt;
wegung von We&amp;amp;#x017F;ten nach O&amp;amp;#x017F;ten, &amp;amp;#x017F;ind ihrer&amp;lt;lb/&amp;gt;&lt;br /&gt;
Stellung nach ähnlich den &amp;lt;choice&amp;gt;&amp;lt;sic&amp;gt;Com&amp;amp;#x0303;eten&amp;lt;/sic&amp;gt;&amp;lt;corr resp=&amp;quot;#BF&amp;quot;&amp;gt;Cometen&amp;lt;/corr&amp;gt;&amp;lt;/choice&amp;gt;; obgleich&amp;lt;lb/&amp;gt;&lt;br /&gt;
doch keine A&amp;lt;subst&amp;gt;&amp;lt;del rendition=&amp;quot;#ow&amp;quot;&amp;gt;&amp;lt;gap reason=&amp;quot;illegible&amp;quot; unit=&amp;quot;chars&amp;quot; quantity=&amp;quot;1&amp;quot;/&amp;gt;&amp;lt;/del&amp;gt;&amp;lt;add place=&amp;quot;across&amp;quot;&amp;gt;e&amp;lt;/add&amp;gt;&amp;lt;/subst&amp;gt;hnlichkeit anderweit zwi&amp;amp;#x017F;chen&amp;lt;lb/&amp;gt;&lt;br /&gt;
ihnen u. den &amp;lt;choice&amp;gt;&amp;lt;abbr&amp;gt;&amp;lt;choice&amp;gt;&amp;lt;sic&amp;gt;Com&amp;amp;#x0303;et&amp;amp;#xFFFC;&amp;lt;/sic&amp;gt;&amp;lt;corr resp=&amp;quot;#BF&amp;quot;&amp;gt;Comet&amp;amp;#xFFFC;&amp;lt;/corr&amp;gt;&amp;lt;/choice&amp;gt;&amp;lt;/abbr&amp;gt;&amp;lt;expan resp=&amp;quot;#BF&amp;quot;&amp;gt;&amp;lt;choice&amp;gt;&amp;lt;sic&amp;gt;Com&amp;amp;#x0303;eten&amp;lt;/sic&amp;gt;&amp;lt;corr resp=&amp;quot;#BF&amp;quot;&amp;gt;Cometen&amp;lt;/corr&amp;gt;&amp;lt;/choice&amp;gt;&amp;lt;/expan&amp;gt;&amp;lt;/choice&amp;gt; i&amp;amp;#x017F;t, wie überhaupt&amp;lt;lb/&amp;gt;&lt;br /&gt;
kein Uebergang zwi&amp;amp;#x017F;chen Planeten u. Co-&amp;lt;lb/&amp;gt;&lt;br /&gt;
meten gefunden wird u. keine po&amp;amp;#x017F;itive&amp;lt;lb/&amp;gt;&amp;lt;note place=&amp;quot;left&amp;quot;&amp;gt;&amp;lt;hi rendition=&amp;quot;#u&amp;quot;&amp;gt;Er&amp;amp;#x017F;tes Sy&amp;amp;#x017F;tem&amp;lt;lb/&amp;gt;&lt;br /&gt;
characteri&amp;amp;#x017F;t. Merkmale&amp;lt;/hi&amp;gt;&amp;lt;lb/&amp;gt;&amp;lt;/note&amp;gt;Aehnlichkeit. &amp;lt;hi rendition=&amp;quot;#u&amp;quot;&amp;gt;Jn die&amp;amp;#x017F;em doppelten Sy&amp;amp;#x017F;tem&amp;lt;lb/&amp;gt;&lt;br /&gt;
der Planeten gehören zu&amp;amp;#x017F;am&amp;amp;#x0303;en: Merkur,&amp;lt;lb/&amp;gt;&lt;br /&gt;
Venus, Erde, Mars.&amp;lt;/hi&amp;gt; Sie haben das&amp;lt;lb/&amp;gt;&lt;br /&gt;
gemein&amp;amp;#x017F;ame der be&amp;amp;#x017F;ondern Dichtigkeit,&amp;lt;lb/&amp;gt;&lt;br /&gt;
wie &amp;lt;hi rendition=&amp;quot;#aq&amp;quot;&amp;gt;Platina&amp;lt;/hi&amp;gt;, Magnet&amp;amp;#x017F;tein u. dgl.; &amp;amp;#x017F;ie&amp;lt;lb/&amp;gt;&amp;lt;subst&amp;gt;&amp;lt;del rendition=&amp;quot;#s&amp;quot;&amp;gt;rotiren&amp;lt;/del&amp;gt;&amp;lt;add place=&amp;quot;superlinear&amp;quot;&amp;gt;bewegen &amp;amp;#x017F;ich&amp;lt;/add&amp;gt;&amp;lt;/subst&amp;gt; viel ge&amp;amp;#x017F;chwinder &amp;lt;metamark/&amp;gt;&amp;lt;add place=&amp;quot;superlinear&amp;quot;&amp;gt;um die Son&amp;amp;#x0303;e&amp;lt;/add&amp;gt;, &amp;amp;#x017F;ind mond-&amp;lt;lb/&amp;gt;&lt;br /&gt;
armer |: bloß die Erde hat einen &amp;lt;choice&amp;gt;&amp;lt;abbr&amp;gt;Trabant&amp;amp;#xFFFC;&amp;lt;/abbr&amp;gt;&amp;lt;expan resp=&amp;quot;#BF&amp;quot;&amp;gt;Trabanten&amp;lt;/expan&amp;gt;&amp;lt;/choice&amp;gt; :|,&amp;lt;lb/&amp;gt;&lt;br /&gt;
an den Polen abgeplattet. Anders&amp;lt;lb/&amp;gt;&lt;br /&gt;
verhält es &amp;amp;#x017F;ich mit den Planeten auf der&amp;lt;lb/&amp;gt;&lt;br /&gt;
Bahn jen&amp;amp;#x017F;eits der kleinen Planeten.&amp;lt;/p&amp;gt;&amp;lt;lb/&amp;gt;&lt;br /&gt;
        &amp;lt;/div&amp;gt;&lt;br /&gt;
      &amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;/body&amp;gt;&lt;br /&gt;
  &amp;lt;/text&amp;gt;&lt;br /&gt;
&amp;lt;/TEI&amp;gt;&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Import into neo4j ==&lt;br /&gt;
&lt;br /&gt;
The import into neo4j runs with:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
 // Import xml-example from DTA to neo4j&lt;br /&gt;
 call apoc.import.xml('https://seafile.rlp.net/f/6282a26504cc4f079ab9/?dl=1', {connectCharacters: true, charactersForTag:{lb:' '}, filterLeadingWhitespace: true}) yield node &lt;br /&gt;
 return node;&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the next picture you can see a small set of the Graph:&lt;br /&gt;
&lt;br /&gt;
[[image:TEI-Graph.png|center|800px|x]]&lt;br /&gt;
&lt;br /&gt;
== Export from neo4j to Standoff Property JSON ==&lt;br /&gt;
&lt;br /&gt;
The next step is to export the data with some [[cypher]] to the Standoff-Property JSON-Format.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
 // Export TEI-Graph to Standoff-Property-JSON-Format by Stefan Armbruster&lt;br /&gt;
 match path=(d:XmlDocument)-[:NE*]-&amp;gt;(e:XmlCharacters)&lt;br /&gt;
 where not (e)-[:NE]-&amp;gt;()&lt;br /&gt;
 with tail(nodes(path)) as words, d&lt;br /&gt;
 with reduce(s=&amp;quot;&amp;quot;, x in words| s + x.text ) as allText, d&lt;br /&gt;
 call apoc.path.expandConfig(d,{&lt;br /&gt;
 relationshipFilter: '&amp;lt;IS_CHILD_OF',&lt;br /&gt;
 labelFilter: 'XmlTag',&lt;br /&gt;
 bfs: false,&lt;br /&gt;
 minLevel: 1&lt;br /&gt;
 }) yield path&lt;br /&gt;
 with allText, path, nodes(path)[-1] as this&lt;br /&gt;
 MATCH p=(this)-[:NEXT*]-&amp;gt;(x)&lt;br /&gt;
 where (x)-[:LAST_CHILD_OF*]-&amp;gt;(this) and any(x in nodes(p) WHERE x:XmlCharacters)&lt;br /&gt;
 with allText, this, collect(p)[-1] as longest&lt;br /&gt;
 with allText, this, [x in nodes(longest) where x:XmlCharacters] as xmlCharacters&lt;br /&gt;
 with allText, this, &lt;br /&gt;
 apoc.coll.min([x in xmlCharacters | x.startIndex]) as min, &lt;br /&gt;
 apoc.coll.max([x in xmlCharacters | x.endIndex]) as max, &lt;br /&gt;
 apoc.text.join([x in xmlCharacters | x.text], &amp;quot;&amp;quot;) as text&lt;br /&gt;
 with allText, {&lt;br /&gt;
 index:id(this), &lt;br /&gt;
 startIndex: min, &lt;br /&gt;
 endIndex: max,&lt;br /&gt;
 text: text,&lt;br /&gt;
 type: this._name,&lt;br /&gt;
 attributes: apoc.map.fromPairs([x in keys(this) WHERE not x starts with &amp;quot;_&amp;quot; | [x, this[x]] ])&lt;br /&gt;
 } as standoffProperty&lt;br /&gt;
 return {text: allText, properties: collect(standoffProperty)};&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This json can then be imported in the [[https://github.com/argimenes/standoff-properties-editor SPEEDy]] Standoff Property Editor which can be found on [[https://github.com/argimenes/standoff-properties-editor GitHub]].&lt;br /&gt;
&lt;br /&gt;
At the end of the README-Section you can find a [[https://argimenes.github.io/standoff-properties-editor/ Link]] to Test-Istance hosted on [[https://argimenes.github.io/standoff-properties-editor/ Github-Pages]].&lt;br /&gt;
&lt;br /&gt;
Just copy the JSON-Export in the window below the UNBIND-Button of SPEEDy and press BIND.&lt;br /&gt;
&lt;br /&gt;
The next picture shows SPEEDy with the test.json. You can choose the example file in the top selection box of SPEEDy as well.&lt;br /&gt;
&lt;br /&gt;
[[image:TEIinSPEEDy.png|center|800px|x]]&lt;br /&gt;
&lt;br /&gt;
I want to say thanks to Stefan Armbruster from neo4j for the export-cypher-query and the implementation of the XML-Import functions to [https://github.com/neo4j-contrib/neo4j-apoc-procedures-function apoc] and Iian Neill for his work on [https://argimenes.github.io/standoff-properties-editor/ SPEEDy].&lt;/div&gt;</summary>
		<author><name>Andreas Kuczera</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=SIG:GraphTechnologies&amp;diff=16873</id>
		<title>SIG:GraphTechnologies</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=SIG:GraphTechnologies&amp;diff=16873"/>
		<updated>2022-03-03T09:55:15Z</updated>

		<summary type="html">&lt;p&gt;Andreas Kuczera: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Andreas Kuczera, Iian Neill, Stefan Armbruster&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
&lt;br /&gt;
As TEI is not a format, though many people think it is. It's a de facto standard that specifies Guidelines for document interchange. Actually the Guidelines are based on the XML but this is only one possible technical way of expressing the phenomenons.&lt;br /&gt;
&lt;br /&gt;
'''The aim of the Graph-SIG is to find a way of expressing the language phenomenons of the TEI in Graphs.''' &lt;br /&gt;
&lt;br /&gt;
* In the graph you can use multi-hierarchical annotations layers.&lt;br /&gt;
* Graph models are very easy to read and understand. So DH-People and “normal” scientists have a level of discussion in common.&lt;br /&gt;
* A Graph can be expressed as RDF so the step from a Graph to linked open data is easy to make.&lt;br /&gt;
&lt;br /&gt;
The main goal of the TEI-Graph-SIG is to model the textual phenomenons of the TEI in a Graph and to develop routines to import TEI-encoded XML-files into graph databases.&lt;br /&gt;
&lt;br /&gt;
== Convert DTA-XML with neo4j to Standoff Property JSON ==&lt;br /&gt;
&lt;br /&gt;
In a first step we import a small xml-example into a [https://neo4j.com neo4j] instance using [https://github.com/neo4j-contrib/neo4j-apoc-procedures-function apoc.import.xml]&lt;br /&gt;
&lt;br /&gt;
The example is a [https://seafile.rlp.net/f/6282a26504cc4f079ab9/?dl=1 page] from the [https://www.deutschestextarchiv.de DTA]. Here you can find the [[XML-Testfile]] and this is the [http://www.deutschestextarchiv.de/book/view/patzig_msgermfol841842_1828/?hl=welcher;p=11 Link] to the DTA-Version.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
&amp;lt;TEI&amp;gt;&lt;br /&gt;
  &amp;lt;text&amp;gt;&lt;br /&gt;
    &amp;lt;body&amp;gt;&lt;br /&gt;
      &amp;lt;div xml:id=&amp;quot;Ms_germ_fol_841&amp;quot; next=&amp;quot;#Ms_germ_fol_842&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;div type=&amp;quot;session&amp;quot; n=&amp;quot;1&amp;quot;&amp;gt;&lt;br /&gt;
          &amp;lt;p&amp;gt;&amp;lt;pb facs=&amp;quot;#f0011&amp;quot; n=&amp;quot;7.&amp;quot;/&amp;gt;&lt;br /&gt;
erblicken wir einen großen Unter&amp;amp;#x017F;chied zwi-&amp;lt;lb/&amp;gt;&lt;br /&gt;
&amp;amp;#x017F;chen den entferntern u. nähern Planeten&amp;lt;lb/&amp;gt;&amp;lt;note place=&amp;quot;left&amp;quot;&amp;gt;&amp;lt;hi rendition=&amp;quot;#u&amp;quot;&amp;gt;Zwei be&amp;amp;#x017F;ondere Planeten-Sy&amp;amp;#x017F;teme&amp;lt;/hi&amp;gt;&amp;lt;lb/&amp;gt;&amp;lt;/note&amp;gt;von der Son&amp;amp;#x0303;e. &amp;lt;hi rendition=&amp;quot;#u&amp;quot;&amp;gt;Dies giebt zwei be&amp;amp;#x017F;ondre&amp;lt;lb/&amp;gt;&lt;br /&gt;
Sÿ&amp;amp;#x017F;teme&amp;lt;/hi&amp;gt;. Die Scheide machen die kleinern&amp;lt;lb/&amp;gt;&lt;br /&gt;
Körper die &amp;amp;#x017F;ich zwi&amp;amp;#x017F;chen Mars u. Jupiter&amp;lt;lb/&amp;gt;&lt;br /&gt;
bewegen, die ein ganz eignes Sy&amp;amp;#x017F;tem&amp;lt;lb/&amp;gt;&lt;br /&gt;
bilden, von denen die Ve&amp;amp;#x017F;ta als die&amp;lt;lb/&amp;gt;&amp;lt;hi rendition=&amp;quot;#u&amp;quot; hand=&amp;quot;#pencil&amp;quot;&amp;gt;größte&amp;lt;/hi&amp;gt; &amp;lt;choice&amp;gt;&amp;lt;sic&amp;gt;ungefahr&amp;lt;/sic&amp;gt;&amp;lt;corr resp=&amp;quot;#CT&amp;quot;&amp;gt;ungefähr&amp;lt;/corr&amp;gt;&amp;lt;/choice&amp;gt; die &amp;lt;choice&amp;gt;&amp;lt;abbr&amp;gt;Oberfl.&amp;lt;/abbr&amp;gt;&amp;lt;expan resp=&amp;quot;#CT&amp;quot;&amp;gt;Oberfläche&amp;lt;/expan&amp;gt;&amp;lt;/choice&amp;gt; von Deut&amp;amp;#x017F;ch-&amp;lt;lb/&amp;gt;&lt;br /&gt;
land hat. Sie haben eine translative Be-&amp;lt;lb/&amp;gt;&lt;br /&gt;
wegung von We&amp;amp;#x017F;ten nach O&amp;amp;#x017F;ten, &amp;amp;#x017F;ind ihrer&amp;lt;lb/&amp;gt;&lt;br /&gt;
Stellung nach ähnlich den &amp;lt;choice&amp;gt;&amp;lt;sic&amp;gt;Com&amp;amp;#x0303;eten&amp;lt;/sic&amp;gt;&amp;lt;corr resp=&amp;quot;#BF&amp;quot;&amp;gt;Cometen&amp;lt;/corr&amp;gt;&amp;lt;/choice&amp;gt;; obgleich&amp;lt;lb/&amp;gt;&lt;br /&gt;
doch keine A&amp;lt;subst&amp;gt;&amp;lt;del rendition=&amp;quot;#ow&amp;quot;&amp;gt;&amp;lt;gap reason=&amp;quot;illegible&amp;quot; unit=&amp;quot;chars&amp;quot; quantity=&amp;quot;1&amp;quot;/&amp;gt;&amp;lt;/del&amp;gt;&amp;lt;add place=&amp;quot;across&amp;quot;&amp;gt;e&amp;lt;/add&amp;gt;&amp;lt;/subst&amp;gt;hnlichkeit anderweit zwi&amp;amp;#x017F;chen&amp;lt;lb/&amp;gt;&lt;br /&gt;
ihnen u. den &amp;lt;choice&amp;gt;&amp;lt;abbr&amp;gt;&amp;lt;choice&amp;gt;&amp;lt;sic&amp;gt;Com&amp;amp;#x0303;et&amp;amp;#xFFFC;&amp;lt;/sic&amp;gt;&amp;lt;corr resp=&amp;quot;#BF&amp;quot;&amp;gt;Comet&amp;amp;#xFFFC;&amp;lt;/corr&amp;gt;&amp;lt;/choice&amp;gt;&amp;lt;/abbr&amp;gt;&amp;lt;expan resp=&amp;quot;#BF&amp;quot;&amp;gt;&amp;lt;choice&amp;gt;&amp;lt;sic&amp;gt;Com&amp;amp;#x0303;eten&amp;lt;/sic&amp;gt;&amp;lt;corr resp=&amp;quot;#BF&amp;quot;&amp;gt;Cometen&amp;lt;/corr&amp;gt;&amp;lt;/choice&amp;gt;&amp;lt;/expan&amp;gt;&amp;lt;/choice&amp;gt; i&amp;amp;#x017F;t, wie überhaupt&amp;lt;lb/&amp;gt;&lt;br /&gt;
kein Uebergang zwi&amp;amp;#x017F;chen Planeten u. Co-&amp;lt;lb/&amp;gt;&lt;br /&gt;
meten gefunden wird u. keine po&amp;amp;#x017F;itive&amp;lt;lb/&amp;gt;&amp;lt;note place=&amp;quot;left&amp;quot;&amp;gt;&amp;lt;hi rendition=&amp;quot;#u&amp;quot;&amp;gt;Er&amp;amp;#x017F;tes Sy&amp;amp;#x017F;tem&amp;lt;lb/&amp;gt;&lt;br /&gt;
characteri&amp;amp;#x017F;t. Merkmale&amp;lt;/hi&amp;gt;&amp;lt;lb/&amp;gt;&amp;lt;/note&amp;gt;Aehnlichkeit. &amp;lt;hi rendition=&amp;quot;#u&amp;quot;&amp;gt;Jn die&amp;amp;#x017F;em doppelten Sy&amp;amp;#x017F;tem&amp;lt;lb/&amp;gt;&lt;br /&gt;
der Planeten gehören zu&amp;amp;#x017F;am&amp;amp;#x0303;en: Merkur,&amp;lt;lb/&amp;gt;&lt;br /&gt;
Venus, Erde, Mars.&amp;lt;/hi&amp;gt; Sie haben das&amp;lt;lb/&amp;gt;&lt;br /&gt;
gemein&amp;amp;#x017F;ame der be&amp;amp;#x017F;ondern Dichtigkeit,&amp;lt;lb/&amp;gt;&lt;br /&gt;
wie &amp;lt;hi rendition=&amp;quot;#aq&amp;quot;&amp;gt;Platina&amp;lt;/hi&amp;gt;, Magnet&amp;amp;#x017F;tein u. dgl.; &amp;amp;#x017F;ie&amp;lt;lb/&amp;gt;&amp;lt;subst&amp;gt;&amp;lt;del rendition=&amp;quot;#s&amp;quot;&amp;gt;rotiren&amp;lt;/del&amp;gt;&amp;lt;add place=&amp;quot;superlinear&amp;quot;&amp;gt;bewegen &amp;amp;#x017F;ich&amp;lt;/add&amp;gt;&amp;lt;/subst&amp;gt; viel ge&amp;amp;#x017F;chwinder &amp;lt;metamark/&amp;gt;&amp;lt;add place=&amp;quot;superlinear&amp;quot;&amp;gt;um die Son&amp;amp;#x0303;e&amp;lt;/add&amp;gt;, &amp;amp;#x017F;ind mond-&amp;lt;lb/&amp;gt;&lt;br /&gt;
armer |: bloß die Erde hat einen &amp;lt;choice&amp;gt;&amp;lt;abbr&amp;gt;Trabant&amp;amp;#xFFFC;&amp;lt;/abbr&amp;gt;&amp;lt;expan resp=&amp;quot;#BF&amp;quot;&amp;gt;Trabanten&amp;lt;/expan&amp;gt;&amp;lt;/choice&amp;gt; :|,&amp;lt;lb/&amp;gt;&lt;br /&gt;
an den Polen abgeplattet. Anders&amp;lt;lb/&amp;gt;&lt;br /&gt;
verhält es &amp;amp;#x017F;ich mit den Planeten auf der&amp;lt;lb/&amp;gt;&lt;br /&gt;
Bahn jen&amp;amp;#x017F;eits der kleinen Planeten.&amp;lt;/p&amp;gt;&amp;lt;lb/&amp;gt;&lt;br /&gt;
        &amp;lt;/div&amp;gt;&lt;br /&gt;
      &amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;/body&amp;gt;&lt;br /&gt;
  &amp;lt;/text&amp;gt;&lt;br /&gt;
&amp;lt;/TEI&amp;gt;&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Import into neo4j ==&lt;br /&gt;
&lt;br /&gt;
The import into neo4j runs with:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
 // Import xml-example from DTA to neo4j&lt;br /&gt;
 call apoc.import.xml('https://seafile.rlp.net/f/6282a26504cc4f079ab9/?dl=1', {connectCharacters: true, charactersForTag:{lb:' '}, filterLeadingWhitespace: true}) yield node &lt;br /&gt;
 return node;&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the next picture you can see a small set of the Graph:&lt;br /&gt;
&lt;br /&gt;
[[image:TEI-Graph.png|center|800px|x]]&lt;br /&gt;
&lt;br /&gt;
== Export from neo4j to Standoff Property JSON ==&lt;br /&gt;
&lt;br /&gt;
The next step is to export the data with some [[cypher]] to the Standoff-Property JSON-Format.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
 // Export TEI-Graph to Standoff-Property-JSON-Format by Stefan Armbruster&lt;br /&gt;
 match path=(d:XmlDocument)-[:NE*]-&amp;gt;(e:XmlCharacters)&lt;br /&gt;
 where not (e)-[:NE]-&amp;gt;()&lt;br /&gt;
 with tail(nodes(path)) as words, d&lt;br /&gt;
 with reduce(s=&amp;quot;&amp;quot;, x in words| s + x.text ) as allText, d&lt;br /&gt;
 call apoc.path.expandConfig(d,{&lt;br /&gt;
 relationshipFilter: '&amp;lt;IS_CHILD_OF',&lt;br /&gt;
 labelFilter: 'XmlTag',&lt;br /&gt;
 bfs: false,&lt;br /&gt;
 minLevel: 1&lt;br /&gt;
 }) yield path&lt;br /&gt;
 with allText, path, nodes(path)[-1] as this&lt;br /&gt;
 MATCH p=(this)-[:NEXT*]-&amp;gt;(x)&lt;br /&gt;
 where (x)-[:LAST_CHILD_OF*]-&amp;gt;(this) and any(x in nodes(p) WHERE x:XmlCharacters)&lt;br /&gt;
 with allText, this, collect(p)[-1] as longest&lt;br /&gt;
 with allText, this, [x in nodes(longest) where x:XmlCharacters] as xmlCharacters&lt;br /&gt;
 with allText, this, &lt;br /&gt;
 apoc.coll.min([x in xmlCharacters | x.startIndex]) as min, &lt;br /&gt;
 apoc.coll.max([x in xmlCharacters | x.endIndex]) as max, &lt;br /&gt;
 apoc.text.join([x in xmlCharacters | x.text], &amp;quot;&amp;quot;) as text&lt;br /&gt;
 with allText, {&lt;br /&gt;
 index:id(this), &lt;br /&gt;
 startIndex: min, &lt;br /&gt;
 endIndex: max,&lt;br /&gt;
 text: text,&lt;br /&gt;
 type: this._name,&lt;br /&gt;
 attributes: apoc.map.fromPairs([x in keys(this) WHERE not x starts with &amp;quot;_&amp;quot; | [x, this[x]] ])&lt;br /&gt;
 } as standoffProperty&lt;br /&gt;
 return {text: allText, properties: collect(standoffProperty)};&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This json can then be imported in the [[https://github.com/argimenes/standoff-properties-editor SPEEDy]] Standoff Property Editor which can be found on [[https://github.com/argimenes/standoff-properties-editor GitHub]].&lt;br /&gt;
&lt;br /&gt;
At the end of the README-Section you can find a [[https://argimenes.github.io/standoff-properties-editor/ Link]] to Test-Istance hosted on [[https://argimenes.github.io/standoff-properties-editor/ Github-Pages]].&lt;br /&gt;
&lt;br /&gt;
Just copy the JSON-Export in the window below the UNBIND-Button of SPEEDy and press BIND.&lt;br /&gt;
&lt;br /&gt;
The next picture shows SPEEDy with the test.json. You can choose the example file in the top selection box of SPEEDy as well.&lt;br /&gt;
&lt;br /&gt;
[[image:TEIinSPEEDy.png|center|800px|x]]&lt;br /&gt;
&lt;br /&gt;
I want to say thanks to Stefan Armbruster from neo4j for the export-cypher-query and the implementation of the XML-Import functions to [https://github.com/neo4j-contrib/neo4j-apoc-procedures-function apoc] and Iian Neill for his work on [https://argimenes.github.io/standoff-properties-editor/ SPEEDy].&lt;/div&gt;</summary>
		<author><name>Andreas Kuczera</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=SIG:GraphTechnologies&amp;diff=16872</id>
		<title>SIG:GraphTechnologies</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=SIG:GraphTechnologies&amp;diff=16872"/>
		<updated>2022-03-02T09:39:56Z</updated>

		<summary type="html">&lt;p&gt;Andreas Kuczera: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Andreas Kuczera, Iian Neill, Stefan Armbruster&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
&lt;br /&gt;
As TEI is not a format, though many people think it is. It's a de facto standard that specifies Guidelines for document interchange. Actually the Guidelines are based on the XML but this is only one possible technical way of expressing the phenomenons.&lt;br /&gt;
&lt;br /&gt;
'''The aim of the Graph-SIG is to find a way of expressing the language phenomenons of the TEI in Graphs.''' &lt;br /&gt;
&lt;br /&gt;
* In the graph you can use multi-hierarchical annotations layers.&lt;br /&gt;
* Graph models are very easy to read and understand. So DH-People and “normal” scientists have a level of discussion in common.&lt;br /&gt;
* A Graph can be expressed as RDF so the step from a Graph to linked open data is easy to make.&lt;br /&gt;
&lt;br /&gt;
The main goal of the TEI-Graph-SIG is to model the textual phenomenons of the TEI in a Graph and to develop routines to import TEI-encoded XML-files into graph databases.&lt;br /&gt;
&lt;br /&gt;
== Convert DTA-XML with neo4j to Standoff Property JSON ==&lt;br /&gt;
&lt;br /&gt;
In a first step we import a small xml-example into a [https://neo4j.com neo4j] instance using [https://github.com/neo4j-contrib/neo4j-apoc-procedures-function apoc.import.xml]&lt;br /&gt;
&lt;br /&gt;
The example is a [https://seafile.rlp.net/f/6282a26504cc4f079ab9/?dl=1 page] from the [https://www.deutschestextarchiv.de DTA]. Here you can find the [[XML-Testfile]] and this is the [http://www.deutschestextarchiv.de/book/view/patzig_msgermfol841842_1828/?hl=welcher;p=11 Link] to the DTA-Version.&lt;br /&gt;
&lt;br /&gt;
== Import into neo4j ==&lt;br /&gt;
&lt;br /&gt;
The import into neo4j runs with:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
 // Import xml-example from DTA to neo4j&lt;br /&gt;
 call apoc.import.xml('https://seafile.rlp.net/f/6282a26504cc4f079ab9/?dl=1', {connectCharacters: true, charactersForTag:{lb:' '}, filterLeadingWhitespace: true}) yield node &lt;br /&gt;
 return node;&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the next picture you can see a small set of the Graph:&lt;br /&gt;
&lt;br /&gt;
[[image:TEI-Graph.png|center|800px|x]]&lt;br /&gt;
&lt;br /&gt;
== Export from neo4j to Standoff Property JSON ==&lt;br /&gt;
&lt;br /&gt;
The next step is to export the data with some [[cypher]] to the Standoff-Property JSON-Format.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
 // Export TEI-Graph to Standoff-Property-JSON-Format by Stefan Armbruster&lt;br /&gt;
 match path=(d:XmlDocument)-[:NE*]-&amp;gt;(e:XmlCharacters)&lt;br /&gt;
 where not (e)-[:NE]-&amp;gt;()&lt;br /&gt;
 with tail(nodes(path)) as words, d&lt;br /&gt;
 with reduce(s=&amp;quot;&amp;quot;, x in words| s + x.text ) as allText, d&lt;br /&gt;
 call apoc.path.expandConfig(d,{&lt;br /&gt;
 relationshipFilter: '&amp;lt;IS_CHILD_OF',&lt;br /&gt;
 labelFilter: 'XmlTag',&lt;br /&gt;
 bfs: false,&lt;br /&gt;
 minLevel: 1&lt;br /&gt;
 }) yield path&lt;br /&gt;
 with allText, path, nodes(path)[-1] as this&lt;br /&gt;
 MATCH p=(this)-[:NEXT*]-&amp;gt;(x)&lt;br /&gt;
 where (x)-[:LAST_CHILD_OF*]-&amp;gt;(this) and any(x in nodes(p) WHERE x:XmlCharacters)&lt;br /&gt;
 with allText, this, collect(p)[-1] as longest&lt;br /&gt;
 with allText, this, [x in nodes(longest) where x:XmlCharacters] as xmlCharacters&lt;br /&gt;
 with allText, this, &lt;br /&gt;
 apoc.coll.min([x in xmlCharacters | x.startIndex]) as min, &lt;br /&gt;
 apoc.coll.max([x in xmlCharacters | x.endIndex]) as max, &lt;br /&gt;
 apoc.text.join([x in xmlCharacters | x.text], &amp;quot;&amp;quot;) as text&lt;br /&gt;
 with allText, {&lt;br /&gt;
 index:id(this), &lt;br /&gt;
 startIndex: min, &lt;br /&gt;
 endIndex: max,&lt;br /&gt;
 text: text,&lt;br /&gt;
 type: this._name,&lt;br /&gt;
 attributes: apoc.map.fromPairs([x in keys(this) WHERE not x starts with &amp;quot;_&amp;quot; | [x, this[x]] ])&lt;br /&gt;
 } as standoffProperty&lt;br /&gt;
 return {text: allText, properties: collect(standoffProperty)};&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This json can then be imported in the [[https://github.com/argimenes/standoff-properties-editor SPEEDy]] Standoff Property Editor which can be found on [[https://github.com/argimenes/standoff-properties-editor GitHub]].&lt;br /&gt;
&lt;br /&gt;
At the end of the README-Section you can find a [[https://argimenes.github.io/standoff-properties-editor/ Link]] to Test-Istance hosted on [[https://argimenes.github.io/standoff-properties-editor/ Github-Pages]].&lt;br /&gt;
&lt;br /&gt;
Just copy the JSON-Export in the window below the UNBIND-Button of SPEEDy and press BIND.&lt;br /&gt;
&lt;br /&gt;
The next picture shows SPEEDy with the test.json. You can choose the example file in the top selection box of SPEEDy as well.&lt;br /&gt;
&lt;br /&gt;
[[image:TEIinSPEEDy.png|center|800px|x]]&lt;br /&gt;
&lt;br /&gt;
I want to say thanks to Stefan Armbruster from neo4j for the export-cypher-query and the implementation of the XML-Import functions to [https://github.com/neo4j-contrib/neo4j-apoc-procedures-function apoc] and Iian Neill for his work on [https://argimenes.github.io/standoff-properties-editor/ SPEEDy].&lt;/div&gt;</summary>
		<author><name>Andreas Kuczera</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=SIG:GraphTechnologies&amp;diff=16869</id>
		<title>SIG:GraphTechnologies</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=SIG:GraphTechnologies&amp;diff=16869"/>
		<updated>2022-02-28T21:32:31Z</updated>

		<summary type="html">&lt;p&gt;Andreas Kuczera: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Andreas Kuczera, Iian Neill, Stefan Armbruster&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
&lt;br /&gt;
As TEI is not a format, though many people think it is. It's a de facto standard that specifies Guidelines for document interchange. Actually the Guidelines are based on the XML but this is only one possible technical way of expressing the phenomenons.&lt;br /&gt;
&lt;br /&gt;
'''The aim of the Graph-SIG is to find a way of expressing the language phenomenons of the TEI in Graphs.''' &lt;br /&gt;
&lt;br /&gt;
* In the graph you can use multi-hierarchical annotations layers.&lt;br /&gt;
* Graph models are very easy to read and understand. So DH-People and “normal” scientists have a level of discussion in common.&lt;br /&gt;
* A Graph can be expressed as RDF so the step from a Graph to linked open data is easy to make.&lt;br /&gt;
&lt;br /&gt;
The main goal of the TEI-Graph-SIG is to model the textual phenomenons of the TEI in a Graph and to develop routines to import TEI-encoded XML-files into graph databases.&lt;br /&gt;
&lt;br /&gt;
== Convert DTA-XML with neo4j to Standoff Property JSON ==&lt;br /&gt;
&lt;br /&gt;
In a first step we import a small xml-example into a [https://neo4j.com neo4j] instance using [https://github.com/neo4j-contrib/neo4j-apoc-procedures-function apoc.import.xml]&lt;br /&gt;
&lt;br /&gt;
The example is a [https://seafile.rlp.net/f/6282a26504cc4f079ab9/?dl=1 page] from the [https://www.deutschestextarchiv.de DTA]. Here you can find the [[XML-Testfile]] and this is the [http://www.deutschestextarchiv.de/book/view/patzig_msgermfol841842_1828/?hl=welcher;p=11 Link] to the DTA-Version.&lt;br /&gt;
&lt;br /&gt;
== Import into neo4j ==&lt;br /&gt;
&lt;br /&gt;
The import into neo4j runs with:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
 // Import xml-example from DTA to neo4j&lt;br /&gt;
 call apoc.import.xml('https://seafile.rlp.net/f/6282a26504cc4f079ab9/?dl=1', {connectCharacters: true, charactersForTag:{lb:' '}, filterLeadingWhitespace: true}) yield node &lt;br /&gt;
 return node;&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the next picture you can see a small set of the Graph:&lt;br /&gt;
&lt;br /&gt;
[[image:TEI-Graph.png|center|800px|x]]&lt;br /&gt;
&lt;br /&gt;
== Export from neo4j to Standoff Property JSON ==&lt;br /&gt;
&lt;br /&gt;
The next step is to export the data with some [[cypher]] to the Standoff-Property JSON-Format.&lt;br /&gt;
This json can then be imported in the [[https://github.com/argimenes/standoff-properties-editor SPEEDy]] Standoff Property Editor which can be found on [[https://github.com/argimenes/standoff-properties-editor GitHub]].&lt;br /&gt;
&lt;br /&gt;
At the end of the README-Section you can find a [[https://argimenes.github.io/standoff-properties-editor/ Link]] to Test-Istance hosted on [[https://argimenes.github.io/standoff-properties-editor/ Github-Pages]].&lt;br /&gt;
&lt;br /&gt;
Just copy the JSON-Export in the window below the UNBIND-Button of SPEEDy and press BIND.&lt;br /&gt;
&lt;br /&gt;
The next picture shows SPEEDy with the test.json. You can choose the example file in the top selection box of SPEEDy as well.&lt;br /&gt;
&lt;br /&gt;
[[image:TEIinSPEEDy.png|center|800px|x]]&lt;br /&gt;
&lt;br /&gt;
I want to say thanks to Stefan Armbruster from neo4j for the export-cypher-query and the implementation of the XML-Import functions to [https://github.com/neo4j-contrib/neo4j-apoc-procedures-function apoc] and Iian Neill for his work on [https://argimenes.github.io/standoff-properties-editor/ SPEEDy].&lt;/div&gt;</summary>
		<author><name>Andreas Kuczera</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=SIG:GraphTechnologies&amp;diff=16863</id>
		<title>SIG:GraphTechnologies</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=SIG:GraphTechnologies&amp;diff=16863"/>
		<updated>2022-02-23T16:11:31Z</updated>

		<summary type="html">&lt;p&gt;Andreas Kuczera: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Andreas Kuczera, Iian Neill, Stefan Armbruster&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
&lt;br /&gt;
As TEI is not a format, though many people think it is. It's a de facto standard that specifies Guidelines for document interchange. Actually the Guidelines are based on the XML but this is only one possible technical way of expressing the phenomenons.&lt;br /&gt;
&lt;br /&gt;
'''The aim of the Graph-SIG is to find a way of expressing the language phenomenons of the TEI in Graphs.''' &lt;br /&gt;
&lt;br /&gt;
* In the graph you can use multi-hierarchical annotations layers.&lt;br /&gt;
* Graph models are very easy to read and understand. So DH-People and “normal” scientists have a level of discussion in common.&lt;br /&gt;
* A Graph can be expressed as RDF so the step from a Graph to linked open data is easy to make.&lt;br /&gt;
&lt;br /&gt;
The main goal of the TEI-Graph-SIG is to model the textual phenomenons of the TEI in a Graph and to develop routines to import TEI-encoded XML-files into graph databases.&lt;br /&gt;
&lt;br /&gt;
== Convert DTA-XML with neo4j to Standoff Property JSON ==&lt;br /&gt;
&lt;br /&gt;
In a first step we import a small xml-example into a [https://neo4j.com neo4j] instance using [https://github.com/neo4j-contrib/neo4j-apoc-procedures-function apoc.import.xml]&lt;br /&gt;
&lt;br /&gt;
The example is a [https://seafile.rlp.net/f/6282a26504cc4f079ab9/?dl=1 page] from the [https://www.deutschestextarchiv.de DTA]. Here you can find the [[XML-Testfile]] and this is the [http://www.deutschestextarchiv.de/book/view/patzig_msgermfol841842_1828/?hl=welcher;p=11 Link] to the DTA-Version.&lt;br /&gt;
&lt;br /&gt;
== Import into neo4j ==&lt;br /&gt;
&lt;br /&gt;
The import into neo4j runs with:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
 // Import xml-example from DTA to neo4j&lt;br /&gt;
 call apoc.import.xml('https://seafile.rlp.net/f/6282a26504cc4f079ab9/?dl=1', {connectCharacters: true, charactersForTag:{lb:' '}, filterLeadingWhitespace: true}) yield node &lt;br /&gt;
 return node;&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the next picture you can see a small set of the Graph:&lt;br /&gt;
&lt;br /&gt;
[[image:TEI-Graph.png|center|800px|x]]&lt;br /&gt;
&lt;br /&gt;
== Export from neo4j to Standoff Property JSON ==&lt;br /&gt;
&lt;br /&gt;
The next step is to export the data with some [[cypher]] to the Standoff-Property JSON-Format.&lt;br /&gt;
This json can then be imported in the [[https://github.com/argimenes/standoff-properties-editor SPEEDy]] Standoff Property Editor which can be found on [[https://github.com/argimenes/standoff-properties-editor GitHub]].&lt;br /&gt;
&lt;br /&gt;
At the end of the README-Section you can find a [[https://argimenes.github.io/standoff-properties-editor/ Link]] to Test-Istance hosted on [[https://argimenes.github.io/standoff-properties-editor/ Github-Pages]].&lt;br /&gt;
&lt;br /&gt;
Just copy the JSON-Export in the window below the UNBIND-Button of SPEEDy and press BIND.&lt;br /&gt;
&lt;br /&gt;
The next picture shows SPEEDy with the test.json. You can choose the example file in the top selection box of SPEEDy as well.&lt;br /&gt;
&lt;br /&gt;
[[image:TEIinSPEEDy.png|center|800px|x]]&lt;br /&gt;
&lt;br /&gt;
I want to say thanks to Stefan Armbruster from neo4j for the export-cypher-query and the implementation of the XML-Import funkctions to [https://github.com/neo4j-contrib/neo4j-apoc-procedures-function apoc] and Iian Neill for his work on [https://argimenes.github.io/standoff-properties-editor/ SPEEDy].&lt;/div&gt;</summary>
		<author><name>Andreas Kuczera</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=SIG:GraphTechnologies&amp;diff=16510</id>
		<title>SIG:GraphTechnologies</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=SIG:GraphTechnologies&amp;diff=16510"/>
		<updated>2019-01-25T18:49:46Z</updated>

		<summary type="html">&lt;p&gt;Andreas Kuczera: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Andreas Kuczera, Iian Neill, Stefan Armbruster&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
&lt;br /&gt;
As TEI is not a format, though many people think it is. It's a de facto standard that specifies Guidelines for document interchange. Actually the Guidelines are based on the XML but this is only one possible technical way of expressing the phenomenons.&lt;br /&gt;
&lt;br /&gt;
'''The aim of the Graph-SIG is to find a way of expressing the language phenomenons of the TEI in Graphs.''' &lt;br /&gt;
&lt;br /&gt;
* In the graph you can use multi-hierarchical annotations layers.&lt;br /&gt;
* Graph models are very easy to read and understand. So DH-People and “normal” scientists have a level of discussion in common.&lt;br /&gt;
* A Graph can be expressed as RDF so the step from a Graph to linked open data is easy to make.&lt;br /&gt;
&lt;br /&gt;
The main goal of the TEI-Graph-SIG is to model the textual phenomenons of the TEI in a Graph and to develop routines to import TEI-encoded XML-files into graph databases.&lt;br /&gt;
&lt;br /&gt;
== Convert DTA-XML with neo4j to Standoff Property JSON ==&lt;br /&gt;
&lt;br /&gt;
In a first step we import a small xml-example into a [https://neo4j.com neo4j] instance using [https://github.com/neo4j-contrib/neo4j-apoc-procedures-function apoc.import.xml]&lt;br /&gt;
&lt;br /&gt;
The example is a [https://seafile.rlp.net/f/6282a26504cc4f079ab9/?dl=1 page] from the [https://www.deutschestextarchiv.de DTA]. Here you can find the [[XML-Testfile]] and this is the [http://www.deutschestextarchiv.de/book/view/patzig_msgermfol841842_1828/?hl=welcher;p=11 Link] to the DTA-Version.&lt;br /&gt;
&lt;br /&gt;
== Import into neo4j ==&lt;br /&gt;
&lt;br /&gt;
The import into neo4j runs with:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
 // Import xml-example from DTA to neo4j&lt;br /&gt;
 call apoc.xml.import('https://seafile.rlp.net/f/6282a26504cc4f079ab9/?dl=1', {connectCharacters: true, charactersForTag:{lb:' '}, filterLeadingWhitespace: true}) yield node &lt;br /&gt;
 return node;&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the next picture you can see a small set of the Graph:&lt;br /&gt;
&lt;br /&gt;
[[image:TEI-Graph.png|center|800px|x]]&lt;br /&gt;
&lt;br /&gt;
== Export from neo4j to Standoff Property JSON ==&lt;br /&gt;
&lt;br /&gt;
The next step is to export the data with some [[cypher]] to the Standoff-Property JSON-Format.&lt;br /&gt;
This json can then be imported in the [[https://github.com/argimenes/standoff-properties-editor SPEEDy]] Standoff Property Editor which can be found on [[https://github.com/argimenes/standoff-properties-editor GitHub]].&lt;br /&gt;
&lt;br /&gt;
At the end of the README-Section you can find a [[https://argimenes.github.io/standoff-properties-editor/ Link]] to Test-Istance hosted on [[https://argimenes.github.io/standoff-properties-editor/ Github-Pages]].&lt;br /&gt;
&lt;br /&gt;
Just copy the JSON-Export in the window below the UNBIND-Button of SPEEDy and press BIND.&lt;br /&gt;
&lt;br /&gt;
The next picture shows SPEEDy with the test.json. You can choose the example file in the top selection box of SPEEDy as well.&lt;br /&gt;
&lt;br /&gt;
[[image:TEIinSPEEDy.png|center|800px|x]]&lt;br /&gt;
&lt;br /&gt;
I want to say thanks to Stefan Armbruster from neo4j for the export-cypher-query and the implementation of the XML-Import funkctions to [https://github.com/neo4j-contrib/neo4j-apoc-procedures-function apoc] and Iian Neill for his work on [https://argimenes.github.io/standoff-properties-editor/ SPEEDy].&lt;/div&gt;</summary>
		<author><name>Andreas Kuczera</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=SIG:GraphTechnologies&amp;diff=16509</id>
		<title>SIG:GraphTechnologies</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=SIG:GraphTechnologies&amp;diff=16509"/>
		<updated>2019-01-25T18:48:22Z</updated>

		<summary type="html">&lt;p&gt;Andreas Kuczera: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Andreas Kuczera, Iian Neill, Stefan Armbruster&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
&lt;br /&gt;
As TEI is not a format, though many people think it is. It's a de facto standard that specifies Guidelines for document interchange. Actually the Guidelines are based on the XML but this is only one possible technical way of expressing the phenomenons.&lt;br /&gt;
&lt;br /&gt;
'''The aim of the Graph-SIG is to find a way of expressing the language phenomenons of the TEI in Graphs.''' &lt;br /&gt;
&lt;br /&gt;
* In the graph you can use multi-hierarchical annotations layers.&lt;br /&gt;
* Graph models are very easy to read and understand. So DH-People and “normal” scientists have a level of discussion in common.&lt;br /&gt;
* A Graph can be expressed as RDF so the step from a Graph to linked open data is easy to make.&lt;br /&gt;
&lt;br /&gt;
The main goal of the TEI-Graph-SIG is to model the textual phenomenons of the TEI in a Graph and to develop routines to import TEI-encoded XML-files into graph databases.&lt;br /&gt;
&lt;br /&gt;
== Convert DTA-XML with neo4j to Standoff Property JSON ==&lt;br /&gt;
&lt;br /&gt;
In a first step we import a small xml-example into a [https://neo4j.com neo4j] instance using [https://github.com/neo4j-contrib/neo4j-apoc-procedures-function apoc.import.xml]&lt;br /&gt;
&lt;br /&gt;
The example is a [https://seafile.rlp.net/f/6282a26504cc4f079ab9/?dl=1 page] from the [https://www.deutschestextarchiv.de DTA]. Here you can find the [[XML-Testfile]] and this is the [http://www.deutschestextarchiv.de/book/view/patzig_msgermfol841842_1828/?hl=welcher;p=11 Link] to the DTA-Version.&lt;br /&gt;
&lt;br /&gt;
== Import into neo4j ==&lt;br /&gt;
&lt;br /&gt;
The import into neo4j runs with:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
 // Import xml-example from DTA to neo4j&lt;br /&gt;
 call apoc.xml.import('https://seafile.rlp.net/f/6282a26504cc4f079ab9/?dl=1', {connectCharacters: true, charactersForTag:{lb:' '}, filterLeadingWhitespace: true}) yield node &lt;br /&gt;
 return node;&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the next picture you can see a small set of the Graph:&lt;br /&gt;
&lt;br /&gt;
[[image:TEI-Graph.png|center|800px|x]]&lt;br /&gt;
&lt;br /&gt;
== Export from neo4j to Standoff Property JSON ==&lt;br /&gt;
&lt;br /&gt;
The next step is to export the data with some [[cypher]] to the Standoff-Property JSON-Format.&lt;br /&gt;
This json can then be imported in the [[https://github.com/argimenes/standoff-properties-editor SPEEDy]] Standoff Property Editor which can be found on [[https://github.com/argimenes/standoff-properties-editor GitHub]].&lt;br /&gt;
&lt;br /&gt;
At the end of the README-Section you can find a [[https://argimenes.github.io/standoff-properties-editor/ Link]] to Test-Istance hosted on [[https://argimenes.github.io/standoff-properties-editor/ Github-Pages]].&lt;br /&gt;
&lt;br /&gt;
Just copy the JSON-Export in the window below the UNBIND-Button of SPEEDy and press BIND.&lt;br /&gt;
&lt;br /&gt;
The next picture shows SPEEDy with the test.json. You can choose the example file in the top selection box of SPEEDy as well.&lt;br /&gt;
&lt;br /&gt;
[[image:TEIinSPEEDy.png|center|800px|x]]&lt;br /&gt;
&lt;br /&gt;
I want to say thanks to Stefan Armbruster from neo4j for the export-cypher-query and the implementation of the XML-Import funkctions to [https://github.com/neo4j-contrib/neo4j-apoc-procedures-function apoc] and Iian Neill for his development work on [https://argimenes.github.io/standoff-properties-editor/ SPEEDy].&lt;/div&gt;</summary>
		<author><name>Andreas Kuczera</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=SIG:GraphTechnologies&amp;diff=16508</id>
		<title>SIG:GraphTechnologies</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=SIG:GraphTechnologies&amp;diff=16508"/>
		<updated>2019-01-25T18:46:55Z</updated>

		<summary type="html">&lt;p&gt;Andreas Kuczera: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Andreas Kuczera, Iian Neill, Stefan Armbruster&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
&lt;br /&gt;
As TEI is not a format, though many people think it is. It's a de facto standard that specifies Guidelines for document interchange. Actually the Guidelines are based on the XML but this is only one possible technical way of expressing the phenomenons.&lt;br /&gt;
&lt;br /&gt;
'''The aim of the Graph-SIG is to find a way of expressing the language phenomenons of the TEI in Graphs.''' &lt;br /&gt;
&lt;br /&gt;
* In the graph you can use multi-hierarchical annotations layers.&lt;br /&gt;
* Graph models are very easy to read and understand. So DH-People and “normal” scientists have a level of discussion in common.&lt;br /&gt;
* A Graph can be expressed as RDF so the step from a Graph to linked open data is easy to make.&lt;br /&gt;
&lt;br /&gt;
The main goal of the TEI-Graph-SIG is to model the textual phenomenons of the TEI in a Graph and to develop routines to import TEI-encoded XML-files into graph databases.&lt;br /&gt;
&lt;br /&gt;
== Convert DTA-XML with neo4j to Standoff Property JSON ==&lt;br /&gt;
&lt;br /&gt;
In a first step we import a small xml-example into a [[https://neo4j.com neo4j]] instance using [[https://github.com/neo4j-contrib/neo4j-apoc-procedures-function apoc.import.xml]]&lt;br /&gt;
&lt;br /&gt;
The example is a [https://seafile.rlp.net/f/6282a26504cc4f079ab9/?dl=1 page] from the [https://www.deutschestextarchiv.de DTA]. Here you can find the [[XML-Testfile]] and this is the [http://www.deutschestextarchiv.de/book/view/patzig_msgermfol841842_1828/?hl=welcher;p=11 Link] to the DTA-Version.&lt;br /&gt;
&lt;br /&gt;
== Import into neo4j ==&lt;br /&gt;
&lt;br /&gt;
The import into neo4j runs with:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
 // Import xml-example from DTA to neo4j&lt;br /&gt;
 call apoc.xml.import('https://seafile.rlp.net/f/6282a26504cc4f079ab9/?dl=1', {connectCharacters: true, charactersForTag:{lb:' '}, filterLeadingWhitespace: true}) yield node &lt;br /&gt;
 return node;&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the next picture you can see a small set of the Graph:&lt;br /&gt;
&lt;br /&gt;
[[image:TEI-Graph.png|center|800px|x]]&lt;br /&gt;
&lt;br /&gt;
== Export from neo4j to Standoff Property JSON ==&lt;br /&gt;
&lt;br /&gt;
The next step is to export the data with some [[cypher]] to the Standoff-Property JSON-Format.&lt;br /&gt;
This json can then be imported in the [[https://github.com/argimenes/standoff-properties-editor SPEEDy]] Standoff Property Editor which can be found on [[https://github.com/argimenes/standoff-properties-editor GitHub]].&lt;br /&gt;
&lt;br /&gt;
At the end of the README-Section you can find a [[https://argimenes.github.io/standoff-properties-editor/ Link]] to Test-Istance hosted on [[https://argimenes.github.io/standoff-properties-editor/ Github-Pages]].&lt;br /&gt;
&lt;br /&gt;
Just copy the [[file:test.json]] in the window below the UNBIND-Button and press BIND.&lt;br /&gt;
&lt;br /&gt;
The next picture shows SPEEDy with the test.json. You can choose the example file in the top selection box of SPEEDy as well.&lt;br /&gt;
&lt;br /&gt;
[[image:TEIinSPEEDy.png|center|800px|x]]&lt;br /&gt;
&lt;br /&gt;
I want to say thanks to Stefan Armbruster from neo4j for the export-cypher-query and the implementation of the XML-Import funkctions to [[https://github.com/neo4j-contrib/neo4j-apoc-procedures-function apoc]] and Iian Neill for his development work on [[https://argimenes.github.io/standoff-properties-editor/ SPEEDy]].&lt;/div&gt;</summary>
		<author><name>Andreas Kuczera</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=File:TEIinSPEEDy.png&amp;diff=16507</id>
		<title>File:TEIinSPEEDy.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=File:TEIinSPEEDy.png&amp;diff=16507"/>
		<updated>2019-01-25T18:36:32Z</updated>

		<summary type="html">&lt;p&gt;Andreas Kuczera: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Andreas Kuczera</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=SIG:GraphTechnologies&amp;diff=16506</id>
		<title>SIG:GraphTechnologies</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=SIG:GraphTechnologies&amp;diff=16506"/>
		<updated>2019-01-25T18:35:06Z</updated>

		<summary type="html">&lt;p&gt;Andreas Kuczera: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Andreas Kuczera, Iian Neill, Stefan Armbruster&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
&lt;br /&gt;
As TEI is not a format, though many people think it is. It's a de facto standard that specifies Guidelines for document interchange. Actually the Guidelines are based on the XML but this is only one possible technical way of expressing the phenomenons.&lt;br /&gt;
&lt;br /&gt;
'''The aim of the Graph-SIG is to find a way of expressing the language phenomenons of the TEI in Graphs.''' &lt;br /&gt;
&lt;br /&gt;
* In the graph you can use multi-hierarchical annotations layers.&lt;br /&gt;
* Graph models are very easy to read and understand. So DH-People and “normal” scientists have a level of discussion in common.&lt;br /&gt;
* A Graph can be expressed as RDF so the step from a Graph to linked open data is easy to make.&lt;br /&gt;
&lt;br /&gt;
The main goal of the TEI-Graph-SIG is to model the textual phenomenons of the TEI in a Graph and to develop routines to import TEI-encoded XML-files into graph databases.&lt;br /&gt;
&lt;br /&gt;
== Convert DTA-XML with neo4j to Standoff Property JSON ==&lt;br /&gt;
&lt;br /&gt;
In a first step we import a small xml-example into a [https://neo4j.com neo4j] instance using [https://github.com/neo4j-contrib/neo4j-apoc-procedures-function apoc.import.xml]&lt;br /&gt;
&lt;br /&gt;
The example is a [https://seafile.rlp.net/f/6282a26504cc4f079ab9/?dl=1 page] from the [https://www.deutschestextarchiv.de DTA]. Here you can find the [[XML-Testfile]] and this is the [http://www.deutschestextarchiv.de/book/view/patzig_msgermfol841842_1828/?hl=welcher;p=11 Link] to the DTA-Version.&lt;br /&gt;
&lt;br /&gt;
== Import into neo4j ==&lt;br /&gt;
&lt;br /&gt;
The import into neo4j runs with:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
 // Import xml-example from DTA to neo4j&lt;br /&gt;
 call apoc.xml.import('https://seafile.rlp.net/f/6282a26504cc4f079ab9/?dl=1', {connectCharacters: true, charactersForTag:{lb:' '}, filterLeadingWhitespace: true}) yield node &lt;br /&gt;
 return node;&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the next picture you can see a small set of the Graph:&lt;br /&gt;
&lt;br /&gt;
[[image:TEI-Graph.png|center|800px|x]]&lt;br /&gt;
&lt;br /&gt;
== Export from neo4j to Standoff Property JSON ==&lt;br /&gt;
&lt;br /&gt;
The next step is to export the data with some [[cypher]] to the Standoff-Property JSON-Format.&lt;br /&gt;
This json can then be imported in the [[https://github.com/argimenes/standoff-properties-editor SPEEDy]] Standoff Property Editor which can be found on [[https://github.com/argimenes/standoff-properties-editor GitHub]].&lt;br /&gt;
&lt;br /&gt;
At the end of the README-Section you can find a [[https://argimenes.github.io/standoff-properties-editor/ Link]] to Test-Istance hosted on [[https://argimenes.github.io/standoff-properties-editor/ Github-Pages]].&lt;br /&gt;
&lt;br /&gt;
Just copy the [[file:test.json]] in the window below the UNBIND-Button and press BIND.&lt;br /&gt;
&lt;br /&gt;
The next picture shows SPEEDy with the test.json.&lt;br /&gt;
&lt;br /&gt;
[[image:TEIinSPEEDy.png|center|800px|x]]&lt;/div&gt;</summary>
		<author><name>Andreas Kuczera</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=SIG:GraphTechnologies&amp;diff=16505</id>
		<title>SIG:GraphTechnologies</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=SIG:GraphTechnologies&amp;diff=16505"/>
		<updated>2019-01-25T18:29:44Z</updated>

		<summary type="html">&lt;p&gt;Andreas Kuczera: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Introduction ==&lt;br /&gt;
&lt;br /&gt;
As TEI is not a format, though many people think it is. It's a de facto standard that specifies Guidelines for document interchange. Actually the Guidelines are based on the XML but this is only one possible technical way of expressing the phenomenons.&lt;br /&gt;
&lt;br /&gt;
'''The aim of the Graph-SIG is to find a way of expressing the language phenomenons of the TEI in Graphs.''' &lt;br /&gt;
&lt;br /&gt;
* In the graph you can use multi-hierarchical annotations layers.&lt;br /&gt;
* Graph models are very easy to read and understand. So DH-People and “normal” scientists have a level of discussion in common.&lt;br /&gt;
* A Graph can be expressed as RDF so the step from a Graph to linked open data is easy to make.&lt;br /&gt;
&lt;br /&gt;
The main goal of the TEI-Graph-SIG is to model the textual phenomenons of the TEI in a Graph and to develop routines to import TEI-encoded XML-files into graph databases.&lt;br /&gt;
&lt;br /&gt;
== Convert DTA-XML with neo4j to Standoff Property JSON ==&lt;br /&gt;
&lt;br /&gt;
In a first step we import a small xml-example into a [https://neo4j.com neo4j] instance using [https://github.com/neo4j-contrib/neo4j-apoc-procedures-function apoc.import.xml]&lt;br /&gt;
&lt;br /&gt;
The example is a [https://seafile.rlp.net/f/6282a26504cc4f079ab9/?dl=1 page] from the [https://www.deutschestextarchiv.de DTA]. Here you can find the [[XML-Testfile]] and this is the [http://www.deutschestextarchiv.de/book/view/patzig_msgermfol841842_1828/?hl=welcher;p=11 Link] to the DTA-Version.&lt;br /&gt;
&lt;br /&gt;
== Import into neo4j ==&lt;br /&gt;
&lt;br /&gt;
The import into neo4j runs with:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
 // Import xml-example from DTA to neo4j&lt;br /&gt;
 call apoc.xml.import('https://seafile.rlp.net/f/6282a26504cc4f079ab9/?dl=1', {connectCharacters: true, charactersForTag:{lb:' '}, filterLeadingWhitespace: true}) yield node &lt;br /&gt;
 return node;&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the next picture you can see a small set of the Graph:&lt;br /&gt;
&lt;br /&gt;
[[image:TEI-Graph.png|center|800px|x]]&lt;br /&gt;
&lt;br /&gt;
== Export from neo4j to Standoff Property JSON ==&lt;br /&gt;
&lt;br /&gt;
The next step is to export the data with some [[cypher]] to the Standoff-Property JSON-Format.&lt;br /&gt;
This json can then be imported in the [[https://github.com/argimenes/standoff-properties-editor SPEEDy]] Standoff Property Editor which can be found on [[https://github.com/argimenes/standoff-properties-editor GitHub]].&lt;br /&gt;
&lt;br /&gt;
At the end of the README-Section you can find a [[https://argimenes.github.io/standoff-properties-editor/ Link]] to Test-Istance hosted on [[https://argimenes.github.io/standoff-properties-editor/ Github-Pages]].&lt;br /&gt;
&lt;br /&gt;
Just copy the [[file:test.json]] in the window below the UNBIND-Button and press BIND.&lt;/div&gt;</summary>
		<author><name>Andreas Kuczera</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=Json&amp;diff=16504</id>
		<title>Json</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=Json&amp;diff=16504"/>
		<updated>2019-01-25T18:23:11Z</updated>

		<summary type="html">&lt;p&gt;Andreas Kuczera: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;code&amp;gt;&lt;br /&gt;
{&lt;br /&gt;
 &amp;quot;text&amp;quot;: &amp;quot;erblicken wir einen großen Unterſchied zwi- ſchen den entferntern u. nähern Planeten Zwei beſondere Planeten-Syſteme von der Soñe. Dies giebt zwei beſondre Sÿſteme. Die Scheide machen die kleinern Körper die ſich zwiſchen Mars u. Jupiter bewegen, die ein ganz eignes Syſtem bilden, von denen die Veſta als die größte ungefahrungefähr die Oberfl.Oberfläche von Deutſch- land hat. Sie haben eine translative Be- wegung von Weſten nach Oſten, ſind ihrer Stellung nach ähnlich den Com̃etenCometen; obgleich doch keine Aehnlichkeit anderweit zwiſchen ihnen u. den Com̃et￼Comet￼Com̃etenCometen iſt, wie überhaupt kein Uebergang zwiſchen Planeten u. Co- meten gefunden wird u. keine poſitive Erſtes Syſtem characteriſt. Merkmale Aehnlichkeit. Jn dieſem doppelten Syſtem der Planeten gehören zuſam̃en: Merkur, Venus, Erde, Mars. Sie haben das gemeinſame der beſondern Dichtigkeit, wie Platina, Magnetſtein u. dgl.; ſie rotirenbewegen ſich viel geſchwinder um die Soñe, ſind mond- armer |: bloß die Erde hat einen Trabant￼Trabanten :|, an den Polen abgeplattet. Anders verhält es ſich mit den Planeten auf der Bahn jenſeits der kleinen Planeten. &amp;quot;,&lt;br /&gt;
 &amp;quot;properties&amp;quot;: [&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 0,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 1138,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 1,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;erblicken wir einen großen Unterſchied zwi- ſchen den entferntern u. nähern Planeten Zwei beſondere Planeten-Syſteme von der Soñe. Dies giebt zwei beſondre Sÿſteme. Die Scheide machen die kleinern Körper die ſich zwiſchen Mars u. Jupiter bewegen, die ein ganz eignes Syſtem bilden, von denen die Veſta als die größte ungefahrungefähr die Oberfl.Oberfläche von Deutſch- land hat. Sie haben eine translative Be- wegung von Weſten nach Oſten, ſind ihrer Stellung nach ähnlich den Com̃etenCometen; obgleich doch keine Aehnlichkeit anderweit zwiſchen ihnen u. den Com̃et￼Comet￼Com̃etenCometen iſt, wie überhaupt kein Uebergang zwiſchen Planeten u. Co- meten gefunden wird u. keine poſitive Erſtes Syſtem characteriſt. Merkmale Aehnlichkeit. Jn dieſem doppelten Syſtem der Planeten gehören zuſam̃en: Merkur, Venus, Erde, Mars. Sie haben das gemeinſame der beſondern Dichtigkeit, wie Platina, Magnetſtein u. dgl.; ſie rotirenbewegen ſich viel geſchwinder um die Soñe, ſind mond- armer |: bloß die Erde hat einen Trabant￼Trabanten :|, an den Polen abgeplattet. Anders verhält es ſich mit den Planeten auf der Bahn jenſeits der kleinen Planeten. &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;TEI&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 0,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 1138,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 2,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;erblicken wir einen großen Unterſchied zwi- ſchen den entferntern u. nähern Planeten Zwei beſondere Planeten-Syſteme von der Soñe. Dies giebt zwei beſondre Sÿſteme. Die Scheide machen die kleinern Körper die ſich zwiſchen Mars u. Jupiter bewegen, die ein ganz eignes Syſtem bilden, von denen die Veſta als die größte ungefahrungefähr die Oberfl.Oberfläche von Deutſch- land hat. Sie haben eine translative Be- wegung von Weſten nach Oſten, ſind ihrer Stellung nach ähnlich den Com̃etenCometen; obgleich doch keine Aehnlichkeit anderweit zwiſchen ihnen u. den Com̃et￼Comet￼Com̃etenCometen iſt, wie überhaupt kein Uebergang zwiſchen Planeten u. Co- meten gefunden wird u. keine poſitive Erſtes Syſtem characteriſt. Merkmale Aehnlichkeit. Jn dieſem doppelten Syſtem der Planeten gehören zuſam̃en: Merkur, Venus, Erde, Mars. Sie haben das gemeinſame der beſondern Dichtigkeit, wie Platina, Magnetſtein u. dgl.; ſie rotirenbewegen ſich viel geſchwinder um die Soñe, ſind mond- armer |: bloß die Erde hat einen Trabant￼Trabanten :|, an den Polen abgeplattet. Anders verhält es ſich mit den Planeten auf der Bahn jenſeits der kleinen Planeten. &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;text&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 0,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 1138,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 3,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;erblicken wir einen großen Unterſchied zwi- ſchen den entferntern u. nähern Planeten Zwei beſondere Planeten-Syſteme von der Soñe. Dies giebt zwei beſondre Sÿſteme. Die Scheide machen die kleinern Körper die ſich zwiſchen Mars u. Jupiter bewegen, die ein ganz eignes Syſtem bilden, von denen die Veſta als die größte ungefahrungefähr die Oberfl.Oberfläche von Deutſch- land hat. Sie haben eine translative Be- wegung von Weſten nach Oſten, ſind ihrer Stellung nach ähnlich den Com̃etenCometen; obgleich doch keine Aehnlichkeit anderweit zwiſchen ihnen u. den Com̃et￼Comet￼Com̃etenCometen iſt, wie überhaupt kein Uebergang zwiſchen Planeten u. Co- meten gefunden wird u. keine poſitive Erſtes Syſtem characteriſt. Merkmale Aehnlichkeit. Jn dieſem doppelten Syſtem der Planeten gehören zuſam̃en: Merkur, Venus, Erde, Mars. Sie haben das gemeinſame der beſondern Dichtigkeit, wie Platina, Magnetſtein u. dgl.; ſie rotirenbewegen ſich viel geſchwinder um die Soñe, ſind mond- armer |: bloß die Erde hat einen Trabant￼Trabanten :|, an den Polen abgeplattet. Anders verhält es ſich mit den Planeten auf der Bahn jenſeits der kleinen Planeten. &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;body&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 0,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 1138,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 4,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
       &amp;quot;next&amp;quot;: &amp;quot;#Ms_germ_fol_842&amp;quot;,&lt;br /&gt;
       &amp;quot;id&amp;quot;: &amp;quot;Ms_germ_fol_841&amp;quot;&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;erblicken wir einen großen Unterſchied zwi- ſchen den entferntern u. nähern Planeten Zwei beſondere Planeten-Syſteme von der Soñe. Dies giebt zwei beſondre Sÿſteme. Die Scheide machen die kleinern Körper die ſich zwiſchen Mars u. Jupiter bewegen, die ein ganz eignes Syſtem bilden, von denen die Veſta als die größte ungefahrungefähr die Oberfl.Oberfläche von Deutſch- land hat. Sie haben eine translative Be- wegung von Weſten nach Oſten, ſind ihrer Stellung nach ähnlich den Com̃etenCometen; obgleich doch keine Aehnlichkeit anderweit zwiſchen ihnen u. den Com̃et￼Comet￼Com̃etenCometen iſt, wie überhaupt kein Uebergang zwiſchen Planeten u. Co- meten gefunden wird u. keine poſitive Erſtes Syſtem characteriſt. Merkmale Aehnlichkeit. Jn dieſem doppelten Syſtem der Planeten gehören zuſam̃en: Merkur, Venus, Erde, Mars. Sie haben das gemeinſame der beſondern Dichtigkeit, wie Platina, Magnetſtein u. dgl.; ſie rotirenbewegen ſich viel geſchwinder um die Soñe, ſind mond- armer |: bloß die Erde hat einen Trabant￼Trabanten :|, an den Polen abgeplattet. Anders verhält es ſich mit den Planeten auf der Bahn jenſeits der kleinen Planeten. &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;div&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 0,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 1138,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 5,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
       &amp;quot;type&amp;quot;: &amp;quot;session&amp;quot;,&lt;br /&gt;
       &amp;quot;n&amp;quot;: &amp;quot;1&amp;quot;&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;erblicken wir einen großen Unterſchied zwi- ſchen den entferntern u. nähern Planeten Zwei beſondere Planeten-Syſteme von der Soñe. Dies giebt zwei beſondre Sÿſteme. Die Scheide machen die kleinern Körper die ſich zwiſchen Mars u. Jupiter bewegen, die ein ganz eignes Syſtem bilden, von denen die Veſta als die größte ungefahrungefähr die Oberfl.Oberfläche von Deutſch- land hat. Sie haben eine translative Be- wegung von Weſten nach Oſten, ſind ihrer Stellung nach ähnlich den Com̃etenCometen; obgleich doch keine Aehnlichkeit anderweit zwiſchen ihnen u. den Com̃et￼Comet￼Com̃etenCometen iſt, wie überhaupt kein Uebergang zwiſchen Planeten u. Co- meten gefunden wird u. keine poſitive Erſtes Syſtem characteriſt. Merkmale Aehnlichkeit. Jn dieſem doppelten Syſtem der Planeten gehören zuſam̃en: Merkur, Venus, Erde, Mars. Sie haben das gemeinſame der beſondern Dichtigkeit, wie Platina, Magnetſtein u. dgl.; ſie rotirenbewegen ſich viel geſchwinder um die Soñe, ſind mond- armer |: bloß die Erde hat einen Trabant￼Trabanten :|, an den Polen abgeplattet. Anders verhält es ſich mit den Planeten auf der Bahn jenſeits der kleinen Planeten. &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;div&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 1138,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 1138,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 414,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 0,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 1137,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 6,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;erblicken wir einen großen Unterſchied zwi- ſchen den entferntern u. nähern Planeten Zwei beſondere Planeten-Syſteme von der Soñe. Dies giebt zwei beſondre Sÿſteme. Die Scheide machen die kleinern Körper die ſich zwiſchen Mars u. Jupiter bewegen, die ein ganz eignes Syſtem bilden, von denen die Veſta als die größte ungefahrungefähr die Oberfl.Oberfläche von Deutſch- land hat. Sie haben eine translative Be- wegung von Weſten nach Oſten, ſind ihrer Stellung nach ähnlich den Com̃etenCometen; obgleich doch keine Aehnlichkeit anderweit zwiſchen ihnen u. den Com̃et￼Comet￼Com̃etenCometen iſt, wie überhaupt kein Uebergang zwiſchen Planeten u. Co- meten gefunden wird u. keine poſitive Erſtes Syſtem characteriſt. Merkmale Aehnlichkeit. Jn dieſem doppelten Syſtem der Planeten gehören zuſam̃en: Merkur, Venus, Erde, Mars. Sie haben das gemeinſame der beſondern Dichtigkeit, wie Platina, Magnetſtein u. dgl.; ſie rotirenbewegen ſich viel geſchwinder um die Soñe, ſind mond- armer |: bloß die Erde hat einen Trabant￼Trabanten :|, an den Polen abgeplattet. Anders verhält es ſich mit den Planeten auf der Bahn jenſeits der kleinen Planeten.&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;p&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 197,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 197,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 71,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 84,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 84,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 32,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 516,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 516,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 191,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;e&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;subst&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 516,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 516,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 194,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
       &amp;quot;place&amp;quot;: &amp;quot;across&amp;quot;&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;e&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;add&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 311,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 316,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 116,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
       &amp;quot;rendition&amp;quot;: &amp;quot;#u&amp;quot;,&lt;br /&gt;
       &amp;quot;hand&amp;quot;: &amp;quot;#pencil&amp;quot;&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;größte&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;hi&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 949,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 960,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 341,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
       &amp;quot;place&amp;quot;: &amp;quot;superlinear&amp;quot;&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;um die Soñe&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;add&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 1061,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 1061,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 386,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 410,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 410,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 151,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 274,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 274,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 99,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 1102,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 1102,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 403,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 546,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 546,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 201,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 1007,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 1023,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 368,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;Trabant￼Trabanten&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;choice&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 1007,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 1014,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 369,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;Trabant￼&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;abbr&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 1015,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 1023,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 371,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
       &amp;quot;resp&amp;quot;: &amp;quot;#BF&amp;quot;&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;Trabanten&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;expan&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 737,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 820,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 270,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
       &amp;quot;rendition&amp;quot;: &amp;quot;#u&amp;quot;&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;Jn dieſem doppelten Syſtem der Planeten gehören zuſam̃en: Merkur, Venus, Erde, Mars.&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;hi&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 763,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 763,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 278,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 802,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 802,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 289,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 451,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 451,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 166,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 835,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 835,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 302,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 911,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 911,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 326,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 478,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 492,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 176,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;Com̃etenCometen&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;choice&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 486,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 492,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 179,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
       &amp;quot;resp&amp;quot;: &amp;quot;#BF&amp;quot;&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;Cometen&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;corr&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 478,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 485,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 177,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;Com̃eten&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;sic&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 973,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 973,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 352,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 503,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 503,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 184,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 647,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 647,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 241,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 132,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 163,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 49,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
       &amp;quot;rendition&amp;quot;: &amp;quot;#u&amp;quot;&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;Dies giebt zwei beſondre Sÿſteme&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;hi&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 156,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 156,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 57,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 43,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 43,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 19,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 685,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 685,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 254,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 686,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 722,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 256,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
       &amp;quot;place&amp;quot;: &amp;quot;left&amp;quot;&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;Erſtes Syſtem characteriſt. Merkmale &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;note&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 722,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 722,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 266,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 686,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 721,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 257,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
       &amp;quot;rendition&amp;quot;: &amp;quot;#u&amp;quot;&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;Erſtes Syſtem characteriſt. Merkmale&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;hi&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 699,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 699,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 261,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 369,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 369,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 136,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 878,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 884,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 315,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
       &amp;quot;rendition&amp;quot;: &amp;quot;#aq&amp;quot;&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;Platina&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;hi&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 873,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 873,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 311,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 607,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 607,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 228,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 85,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 116,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 34,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
       &amp;quot;place&amp;quot;: &amp;quot;left&amp;quot;&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;Zwei beſondere Planeten-Syſteme &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;note&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 85,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 115,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 35,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
       &amp;quot;rendition&amp;quot;: &amp;quot;#u&amp;quot;&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;Zwei beſondere Planeten-Syſteme&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;hi&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 116,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 116,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 41,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 1028,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 1028,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 375,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 560,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 587,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 209,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;Com̃et￼Comet￼Com̃etenCometen&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;choice&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 560,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 572,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 210,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;Com̃et￼Comet￼&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;abbr&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 560,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 572,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 211,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;Com̃et￼Comet￼&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;choice&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 560,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 566,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 212,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;Com̃et￼&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;sic&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 567,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 572,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 214,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
       &amp;quot;resp&amp;quot;: &amp;quot;#BF&amp;quot;&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;Comet￼&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;corr&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 573,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 587,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 216,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
       &amp;quot;resp&amp;quot;: &amp;quot;#BF&amp;quot;&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;Com̃etenCometen&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;expan&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 573,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 587,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 217,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;Com̃etenCometen&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;choice&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 581,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 587,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 220,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
       &amp;quot;resp&amp;quot;: &amp;quot;#BF&amp;quot;&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;Cometen&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;corr&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 573,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 580,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 218,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;Com̃eten&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;sic&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 310,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 310,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 114,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 238,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 238,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 86,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 318,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 333,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 119,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;ungefahrungefähr&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;choice&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 318,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 325,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 120,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;ungefahr&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;sic&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 326,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 333,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 122,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
       &amp;quot;resp&amp;quot;: &amp;quot;#CT&amp;quot;&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;ungefähr&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;corr&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 912,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 930,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 328,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;rotirenbewegen ſich&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;subst&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 919,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 930,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 331,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
       &amp;quot;place&amp;quot;: &amp;quot;superlinear&amp;quot;&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;bewegen ſich&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;add&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 912,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 918,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 329,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
       &amp;quot;rendition&amp;quot;: &amp;quot;#s&amp;quot;&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;rotiren&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;del&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 339,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 355,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 127,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;Oberfl.Oberfläche&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;choice&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 339,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 345,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 128,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;Oberfl.&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;abbr&amp;quot;&lt;br /&gt;
   },&lt;br /&gt;
   {&lt;br /&gt;
     &amp;quot;startIndex&amp;quot;: 346,&lt;br /&gt;
     &amp;quot;endIndex&amp;quot;: 355,&lt;br /&gt;
     &amp;quot;index&amp;quot;: 130,&lt;br /&gt;
     &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
       &amp;quot;resp&amp;quot;: &amp;quot;#CT&amp;quot;&lt;br /&gt;
     },&lt;br /&gt;
     &amp;quot;text&amp;quot;: &amp;quot;Oberfläche&amp;quot;,&lt;br /&gt;
     &amp;quot;type&amp;quot;: &amp;quot;expan&amp;quot;&lt;br /&gt;
   }&lt;br /&gt;
 ]&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;/div&gt;</summary>
		<author><name>Andreas Kuczera</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=Json&amp;diff=16503</id>
		<title>Json</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=Json&amp;diff=16503"/>
		<updated>2019-01-25T18:22:00Z</updated>

		<summary type="html">&lt;p&gt;Andreas Kuczera: Created page with &amp;quot; {   &amp;quot;text&amp;quot;: &amp;quot;erblicken wir einen großen Unterſchied zwi- ſchen den entferntern u. nähern Planeten Zwei beſondere Planeten-Syſteme von der Soñe. Dies giebt zwei beſondre ...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt; {&lt;br /&gt;
  &amp;quot;text&amp;quot;: &amp;quot;erblicken wir einen großen Unterſchied zwi- ſchen den entferntern u. nähern Planeten Zwei beſondere Planeten-Syſteme von der Soñe. Dies giebt zwei beſondre Sÿſteme. Die Scheide machen die kleinern Körper die ſich zwiſchen Mars u. Jupiter bewegen, die ein ganz eignes Syſtem bilden, von denen die Veſta als die größte ungefahrungefähr die Oberfl.Oberfläche von Deutſch- land hat. Sie haben eine translative Be- wegung von Weſten nach Oſten, ſind ihrer Stellung nach ähnlich den Com̃etenCometen; obgleich doch keine Aehnlichkeit anderweit zwiſchen ihnen u. den Com̃et￼Comet￼Com̃etenCometen iſt, wie überhaupt kein Uebergang zwiſchen Planeten u. Co- meten gefunden wird u. keine poſitive Erſtes Syſtem characteriſt. Merkmale Aehnlichkeit. Jn dieſem doppelten Syſtem der Planeten gehören zuſam̃en: Merkur, Venus, Erde, Mars. Sie haben das gemeinſame der beſondern Dichtigkeit, wie Platina, Magnetſtein u. dgl.; ſie rotirenbewegen ſich viel geſchwinder um die Soñe, ſind mond- armer |: bloß die Erde hat einen Trabant￼Trabanten :|, an den Polen abgeplattet. Anders verhält es ſich mit den Planeten auf der Bahn jenſeits der kleinen Planeten. &amp;quot;,&lt;br /&gt;
  &amp;quot;properties&amp;quot;: [&lt;br /&gt;
    {&lt;br /&gt;
      &amp;quot;startIndex&amp;quot;: 0,&lt;br /&gt;
      &amp;quot;endIndex&amp;quot;: 1138,&lt;br /&gt;
      &amp;quot;index&amp;quot;: 1,&lt;br /&gt;
      &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
      },&lt;br /&gt;
      &amp;quot;text&amp;quot;: &amp;quot;erblicken wir einen großen Unterſchied zwi- ſchen den entferntern u. nähern Planeten Zwei beſondere Planeten-Syſteme von der Soñe. Dies giebt zwei beſondre Sÿſteme. Die Scheide machen die kleinern Körper die ſich zwiſchen Mars u. Jupiter bewegen, die ein ganz eignes Syſtem bilden, von denen die Veſta als die größte ungefahrungefähr die Oberfl.Oberfläche von Deutſch- land hat. Sie haben eine translative Be- wegung von Weſten nach Oſten, ſind ihrer Stellung nach ähnlich den Com̃etenCometen; obgleich doch keine Aehnlichkeit anderweit zwiſchen ihnen u. den Com̃et￼Comet￼Com̃etenCometen iſt, wie überhaupt kein Uebergang zwiſchen Planeten u. Co- meten gefunden wird u. keine poſitive Erſtes Syſtem characteriſt. Merkmale Aehnlichkeit. Jn dieſem doppelten Syſtem der Planeten gehören zuſam̃en: Merkur, Venus, Erde, Mars. Sie haben das gemeinſame der beſondern Dichtigkeit, wie Platina, Magnetſtein u. dgl.; ſie rotirenbewegen ſich viel geſchwinder um die Soñe, ſind mond- armer |: bloß die Erde hat einen Trabant￼Trabanten :|, an den Polen abgeplattet. Anders verhält es ſich mit den Planeten auf der Bahn jenſeits der kleinen Planeten. &amp;quot;,&lt;br /&gt;
      &amp;quot;type&amp;quot;: &amp;quot;TEI&amp;quot;&lt;br /&gt;
    },&lt;br /&gt;
    {&lt;br /&gt;
      &amp;quot;startIndex&amp;quot;: 0,&lt;br /&gt;
      &amp;quot;endIndex&amp;quot;: 1138,&lt;br /&gt;
      &amp;quot;index&amp;quot;: 2,&lt;br /&gt;
      &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
      },&lt;br /&gt;
      &amp;quot;text&amp;quot;: &amp;quot;erblicken wir einen großen Unterſchied zwi- ſchen den entferntern u. nähern Planeten Zwei beſondere Planeten-Syſteme von der Soñe. Dies giebt zwei beſondre Sÿſteme. Die Scheide machen die kleinern Körper die ſich zwiſchen Mars u. Jupiter bewegen, die ein ganz eignes Syſtem bilden, von denen die Veſta als die größte ungefahrungefähr die Oberfl.Oberfläche von Deutſch- land hat. Sie haben eine translative Be- wegung von Weſten nach Oſten, ſind ihrer Stellung nach ähnlich den Com̃etenCometen; obgleich doch keine Aehnlichkeit anderweit zwiſchen ihnen u. den Com̃et￼Comet￼Com̃etenCometen iſt, wie überhaupt kein Uebergang zwiſchen Planeten u. Co- meten gefunden wird u. keine poſitive Erſtes Syſtem characteriſt. Merkmale Aehnlichkeit. Jn dieſem doppelten Syſtem der Planeten gehören zuſam̃en: Merkur, Venus, Erde, Mars. Sie haben das gemeinſame der beſondern Dichtigkeit, wie Platina, Magnetſtein u. dgl.; ſie rotirenbewegen ſich viel geſchwinder um die Soñe, ſind mond- armer |: bloß die Erde hat einen Trabant￼Trabanten :|, an den Polen abgeplattet. Anders verhält es ſich mit den Planeten auf der Bahn jenſeits der kleinen Planeten. &amp;quot;,&lt;br /&gt;
      &amp;quot;type&amp;quot;: &amp;quot;text&amp;quot;&lt;br /&gt;
    },&lt;br /&gt;
    {&lt;br /&gt;
      &amp;quot;startIndex&amp;quot;: 0,&lt;br /&gt;
      &amp;quot;endIndex&amp;quot;: 1138,&lt;br /&gt;
      &amp;quot;index&amp;quot;: 3,&lt;br /&gt;
      &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
      },&lt;br /&gt;
      &amp;quot;text&amp;quot;: &amp;quot;erblicken wir einen großen Unterſchied zwi- ſchen den entferntern u. nähern Planeten Zwei beſondere Planeten-Syſteme von der Soñe. Dies giebt zwei beſondre Sÿſteme. Die Scheide machen die kleinern Körper die ſich zwiſchen Mars u. Jupiter bewegen, die ein ganz eignes Syſtem bilden, von denen die Veſta als die größte ungefahrungefähr die Oberfl.Oberfläche von Deutſch- land hat. Sie haben eine translative Be- wegung von Weſten nach Oſten, ſind ihrer Stellung nach ähnlich den Com̃etenCometen; obgleich doch keine Aehnlichkeit anderweit zwiſchen ihnen u. den Com̃et￼Comet￼Com̃etenCometen iſt, wie überhaupt kein Uebergang zwiſchen Planeten u. Co- meten gefunden wird u. keine poſitive Erſtes Syſtem characteriſt. Merkmale Aehnlichkeit. Jn dieſem doppelten Syſtem der Planeten gehören zuſam̃en: Merkur, Venus, Erde, Mars. Sie haben das gemeinſame der beſondern Dichtigkeit, wie Platina, Magnetſtein u. dgl.; ſie rotirenbewegen ſich viel geſchwinder um die Soñe, ſind mond- armer |: bloß die Erde hat einen Trabant￼Trabanten :|, an den Polen abgeplattet. Anders verhält es ſich mit den Planeten auf der Bahn jenſeits der kleinen Planeten. &amp;quot;,&lt;br /&gt;
      &amp;quot;type&amp;quot;: &amp;quot;body&amp;quot;&lt;br /&gt;
    },&lt;br /&gt;
    {&lt;br /&gt;
      &amp;quot;startIndex&amp;quot;: 0,&lt;br /&gt;
      &amp;quot;endIndex&amp;quot;: 1138,&lt;br /&gt;
      &amp;quot;index&amp;quot;: 4,&lt;br /&gt;
      &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
        &amp;quot;next&amp;quot;: &amp;quot;#Ms_germ_fol_842&amp;quot;,&lt;br /&gt;
        &amp;quot;id&amp;quot;: &amp;quot;Ms_germ_fol_841&amp;quot;&lt;br /&gt;
      },&lt;br /&gt;
      &amp;quot;text&amp;quot;: &amp;quot;erblicken wir einen großen Unterſchied zwi- ſchen den entferntern u. nähern Planeten Zwei beſondere Planeten-Syſteme von der Soñe. Dies giebt zwei beſondre Sÿſteme. Die Scheide machen die kleinern Körper die ſich zwiſchen Mars u. Jupiter bewegen, die ein ganz eignes Syſtem bilden, von denen die Veſta als die größte ungefahrungefähr die Oberfl.Oberfläche von Deutſch- land hat. Sie haben eine translative Be- wegung von Weſten nach Oſten, ſind ihrer Stellung nach ähnlich den Com̃etenCometen; obgleich doch keine Aehnlichkeit anderweit zwiſchen ihnen u. den Com̃et￼Comet￼Com̃etenCometen iſt, wie überhaupt kein Uebergang zwiſchen Planeten u. Co- meten gefunden wird u. keine poſitive Erſtes Syſtem characteriſt. Merkmale Aehnlichkeit. Jn dieſem doppelten Syſtem der Planeten gehören zuſam̃en: Merkur, Venus, Erde, Mars. Sie haben das gemeinſame der beſondern Dichtigkeit, wie Platina, Magnetſtein u. dgl.; ſie rotirenbewegen ſich viel geſchwinder um die Soñe, ſind mond- armer |: bloß die Erde hat einen Trabant￼Trabanten :|, an den Polen abgeplattet. Anders verhält es ſich mit den Planeten auf der Bahn jenſeits der kleinen Planeten. &amp;quot;,&lt;br /&gt;
      &amp;quot;type&amp;quot;: &amp;quot;div&amp;quot;&lt;br /&gt;
    },&lt;br /&gt;
    {&lt;br /&gt;
      &amp;quot;startIndex&amp;quot;: 0,&lt;br /&gt;
      &amp;quot;endIndex&amp;quot;: 1138,&lt;br /&gt;
      &amp;quot;index&amp;quot;: 5,&lt;br /&gt;
      &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
        &amp;quot;type&amp;quot;: &amp;quot;session&amp;quot;,&lt;br /&gt;
        &amp;quot;n&amp;quot;: &amp;quot;1&amp;quot;&lt;br /&gt;
      },&lt;br /&gt;
      &amp;quot;text&amp;quot;: &amp;quot;erblicken wir einen großen Unterſchied zwi- ſchen den entferntern u. nähern Planeten Zwei beſondere Planeten-Syſteme von der Soñe. Dies giebt zwei beſondre Sÿſteme. Die Scheide machen die kleinern Körper die ſich zwiſchen Mars u. Jupiter bewegen, die ein ganz eignes Syſtem bilden, von denen die Veſta als die größte ungefahrungefähr die Oberfl.Oberfläche von Deutſch- land hat. Sie haben eine translative Be- wegung von Weſten nach Oſten, ſind ihrer Stellung nach ähnlich den Com̃etenCometen; obgleich doch keine Aehnlichkeit anderweit zwiſchen ihnen u. den Com̃et￼Comet￼Com̃etenCometen iſt, wie überhaupt kein Uebergang zwiſchen Planeten u. Co- meten gefunden wird u. keine poſitive Erſtes Syſtem characteriſt. Merkmale Aehnlichkeit. Jn dieſem doppelten Syſtem der Planeten gehören zuſam̃en: Merkur, Venus, Erde, Mars. Sie haben das gemeinſame der beſondern Dichtigkeit, wie Platina, Magnetſtein u. dgl.; ſie rotirenbewegen ſich viel geſchwinder um die Soñe, ſind mond- armer |: bloß die Erde hat einen Trabant￼Trabanten :|, an den Polen abgeplattet. Anders verhält es ſich mit den Planeten auf der Bahn jenſeits der kleinen Planeten. &amp;quot;,&lt;br /&gt;
      &amp;quot;type&amp;quot;: &amp;quot;div&amp;quot;&lt;br /&gt;
    },&lt;br /&gt;
    {&lt;br /&gt;
      &amp;quot;startIndex&amp;quot;: 1138,&lt;br /&gt;
      &amp;quot;endIndex&amp;quot;: 1138,&lt;br /&gt;
      &amp;quot;index&amp;quot;: 414,&lt;br /&gt;
      &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
      },&lt;br /&gt;
      &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
      &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
    },&lt;br /&gt;
    {&lt;br /&gt;
      &amp;quot;startIndex&amp;quot;: 0,&lt;br /&gt;
      &amp;quot;endIndex&amp;quot;: 1137,&lt;br /&gt;
      &amp;quot;index&amp;quot;: 6,&lt;br /&gt;
      &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
      },&lt;br /&gt;
      &amp;quot;text&amp;quot;: &amp;quot;erblicken wir einen großen Unterſchied zwi- ſchen den entferntern u. nähern Planeten Zwei beſondere Planeten-Syſteme von der Soñe. Dies giebt zwei beſondre Sÿſteme. Die Scheide machen die kleinern Körper die ſich zwiſchen Mars u. Jupiter bewegen, die ein ganz eignes Syſtem bilden, von denen die Veſta als die größte ungefahrungefähr die Oberfl.Oberfläche von Deutſch- land hat. Sie haben eine translative Be- wegung von Weſten nach Oſten, ſind ihrer Stellung nach ähnlich den Com̃etenCometen; obgleich doch keine Aehnlichkeit anderweit zwiſchen ihnen u. den Com̃et￼Comet￼Com̃etenCometen iſt, wie überhaupt kein Uebergang zwiſchen Planeten u. Co- meten gefunden wird u. keine poſitive Erſtes Syſtem characteriſt. Merkmale Aehnlichkeit. Jn dieſem doppelten Syſtem der Planeten gehören zuſam̃en: Merkur, Venus, Erde, Mars. Sie haben das gemeinſame der beſondern Dichtigkeit, wie Platina, Magnetſtein u. dgl.; ſie rotirenbewegen ſich viel geſchwinder um die Soñe, ſind mond- armer |: bloß die Erde hat einen Trabant￼Trabanten :|, an den Polen abgeplattet. Anders verhält es ſich mit den Planeten auf der Bahn jenſeits der kleinen Planeten.&amp;quot;,&lt;br /&gt;
      &amp;quot;type&amp;quot;: &amp;quot;p&amp;quot;&lt;br /&gt;
    },&lt;br /&gt;
    {&lt;br /&gt;
      &amp;quot;startIndex&amp;quot;: 197,&lt;br /&gt;
      &amp;quot;endIndex&amp;quot;: 197,&lt;br /&gt;
      &amp;quot;index&amp;quot;: 71,&lt;br /&gt;
      &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
      },&lt;br /&gt;
      &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
      &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
    },&lt;br /&gt;
    {&lt;br /&gt;
      &amp;quot;startIndex&amp;quot;: 84,&lt;br /&gt;
      &amp;quot;endIndex&amp;quot;: 84,&lt;br /&gt;
      &amp;quot;index&amp;quot;: 32,&lt;br /&gt;
      &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
      },&lt;br /&gt;
      &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
      &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
    },&lt;br /&gt;
    {&lt;br /&gt;
      &amp;quot;startIndex&amp;quot;: 516,&lt;br /&gt;
      &amp;quot;endIndex&amp;quot;: 516,&lt;br /&gt;
      &amp;quot;index&amp;quot;: 191,&lt;br /&gt;
      &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
      },&lt;br /&gt;
      &amp;quot;text&amp;quot;: &amp;quot;e&amp;quot;,&lt;br /&gt;
      &amp;quot;type&amp;quot;: &amp;quot;subst&amp;quot;&lt;br /&gt;
    },&lt;br /&gt;
    {&lt;br /&gt;
      &amp;quot;startIndex&amp;quot;: 516,&lt;br /&gt;
      &amp;quot;endIndex&amp;quot;: 516,&lt;br /&gt;
      &amp;quot;index&amp;quot;: 194,&lt;br /&gt;
      &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
        &amp;quot;place&amp;quot;: &amp;quot;across&amp;quot;&lt;br /&gt;
      },&lt;br /&gt;
      &amp;quot;text&amp;quot;: &amp;quot;e&amp;quot;,&lt;br /&gt;
      &amp;quot;type&amp;quot;: &amp;quot;add&amp;quot;&lt;br /&gt;
    },&lt;br /&gt;
    {&lt;br /&gt;
      &amp;quot;startIndex&amp;quot;: 311,&lt;br /&gt;
      &amp;quot;endIndex&amp;quot;: 316,&lt;br /&gt;
      &amp;quot;index&amp;quot;: 116,&lt;br /&gt;
      &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
        &amp;quot;rendition&amp;quot;: &amp;quot;#u&amp;quot;,&lt;br /&gt;
        &amp;quot;hand&amp;quot;: &amp;quot;#pencil&amp;quot;&lt;br /&gt;
      },&lt;br /&gt;
      &amp;quot;text&amp;quot;: &amp;quot;größte&amp;quot;,&lt;br /&gt;
      &amp;quot;type&amp;quot;: &amp;quot;hi&amp;quot;&lt;br /&gt;
    },&lt;br /&gt;
    {&lt;br /&gt;
      &amp;quot;startIndex&amp;quot;: 949,&lt;br /&gt;
      &amp;quot;endIndex&amp;quot;: 960,&lt;br /&gt;
      &amp;quot;index&amp;quot;: 341,&lt;br /&gt;
      &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
        &amp;quot;place&amp;quot;: &amp;quot;superlinear&amp;quot;&lt;br /&gt;
      },&lt;br /&gt;
      &amp;quot;text&amp;quot;: &amp;quot;um die Soñe&amp;quot;,&lt;br /&gt;
      &amp;quot;type&amp;quot;: &amp;quot;add&amp;quot;&lt;br /&gt;
    },&lt;br /&gt;
    {&lt;br /&gt;
      &amp;quot;startIndex&amp;quot;: 1061,&lt;br /&gt;
      &amp;quot;endIndex&amp;quot;: 1061,&lt;br /&gt;
      &amp;quot;index&amp;quot;: 386,&lt;br /&gt;
      &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
      },&lt;br /&gt;
      &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
      &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
    },&lt;br /&gt;
    {&lt;br /&gt;
      &amp;quot;startIndex&amp;quot;: 410,&lt;br /&gt;
      &amp;quot;endIndex&amp;quot;: 410,&lt;br /&gt;
      &amp;quot;index&amp;quot;: 151,&lt;br /&gt;
      &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
      },&lt;br /&gt;
      &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
      &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
    },&lt;br /&gt;
    {&lt;br /&gt;
      &amp;quot;startIndex&amp;quot;: 274,&lt;br /&gt;
      &amp;quot;endIndex&amp;quot;: 274,&lt;br /&gt;
      &amp;quot;index&amp;quot;: 99,&lt;br /&gt;
      &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
      },&lt;br /&gt;
      &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
      &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
    },&lt;br /&gt;
    {&lt;br /&gt;
      &amp;quot;startIndex&amp;quot;: 1102,&lt;br /&gt;
      &amp;quot;endIndex&amp;quot;: 1102,&lt;br /&gt;
      &amp;quot;index&amp;quot;: 403,&lt;br /&gt;
      &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
      },&lt;br /&gt;
      &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
      &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
    },&lt;br /&gt;
    {&lt;br /&gt;
      &amp;quot;startIndex&amp;quot;: 546,&lt;br /&gt;
      &amp;quot;endIndex&amp;quot;: 546,&lt;br /&gt;
      &amp;quot;index&amp;quot;: 201,&lt;br /&gt;
      &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
      },&lt;br /&gt;
      &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
      &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
    },&lt;br /&gt;
    {&lt;br /&gt;
      &amp;quot;startIndex&amp;quot;: 1007,&lt;br /&gt;
      &amp;quot;endIndex&amp;quot;: 1023,&lt;br /&gt;
      &amp;quot;index&amp;quot;: 368,&lt;br /&gt;
      &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
      },&lt;br /&gt;
      &amp;quot;text&amp;quot;: &amp;quot;Trabant￼Trabanten&amp;quot;,&lt;br /&gt;
      &amp;quot;type&amp;quot;: &amp;quot;choice&amp;quot;&lt;br /&gt;
    },&lt;br /&gt;
    {&lt;br /&gt;
      &amp;quot;startIndex&amp;quot;: 1007,&lt;br /&gt;
      &amp;quot;endIndex&amp;quot;: 1014,&lt;br /&gt;
      &amp;quot;index&amp;quot;: 369,&lt;br /&gt;
      &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
      },&lt;br /&gt;
      &amp;quot;text&amp;quot;: &amp;quot;Trabant￼&amp;quot;,&lt;br /&gt;
      &amp;quot;type&amp;quot;: &amp;quot;abbr&amp;quot;&lt;br /&gt;
    },&lt;br /&gt;
    {&lt;br /&gt;
      &amp;quot;startIndex&amp;quot;: 1015,&lt;br /&gt;
      &amp;quot;endIndex&amp;quot;: 1023,&lt;br /&gt;
      &amp;quot;index&amp;quot;: 371,&lt;br /&gt;
      &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
        &amp;quot;resp&amp;quot;: &amp;quot;#BF&amp;quot;&lt;br /&gt;
      },&lt;br /&gt;
      &amp;quot;text&amp;quot;: &amp;quot;Trabanten&amp;quot;,&lt;br /&gt;
      &amp;quot;type&amp;quot;: &amp;quot;expan&amp;quot;&lt;br /&gt;
    },&lt;br /&gt;
    {&lt;br /&gt;
      &amp;quot;startIndex&amp;quot;: 737,&lt;br /&gt;
      &amp;quot;endIndex&amp;quot;: 820,&lt;br /&gt;
      &amp;quot;index&amp;quot;: 270,&lt;br /&gt;
      &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
        &amp;quot;rendition&amp;quot;: &amp;quot;#u&amp;quot;&lt;br /&gt;
      },&lt;br /&gt;
      &amp;quot;text&amp;quot;: &amp;quot;Jn dieſem doppelten Syſtem der Planeten gehören zuſam̃en: Merkur, Venus, Erde, Mars.&amp;quot;,&lt;br /&gt;
      &amp;quot;type&amp;quot;: &amp;quot;hi&amp;quot;&lt;br /&gt;
    },&lt;br /&gt;
    {&lt;br /&gt;
      &amp;quot;startIndex&amp;quot;: 763,&lt;br /&gt;
      &amp;quot;endIndex&amp;quot;: 763,&lt;br /&gt;
      &amp;quot;index&amp;quot;: 278,&lt;br /&gt;
      &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
      },&lt;br /&gt;
      &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
      &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
    },&lt;br /&gt;
    {&lt;br /&gt;
      &amp;quot;startIndex&amp;quot;: 802,&lt;br /&gt;
      &amp;quot;endIndex&amp;quot;: 802,&lt;br /&gt;
      &amp;quot;index&amp;quot;: 289,&lt;br /&gt;
      &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
      },&lt;br /&gt;
      &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
      &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
    },&lt;br /&gt;
    {&lt;br /&gt;
      &amp;quot;startIndex&amp;quot;: 451,&lt;br /&gt;
      &amp;quot;endIndex&amp;quot;: 451,&lt;br /&gt;
      &amp;quot;index&amp;quot;: 166,&lt;br /&gt;
      &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
      },&lt;br /&gt;
      &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
      &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
    },&lt;br /&gt;
    {&lt;br /&gt;
      &amp;quot;startIndex&amp;quot;: 835,&lt;br /&gt;
      &amp;quot;endIndex&amp;quot;: 835,&lt;br /&gt;
      &amp;quot;index&amp;quot;: 302,&lt;br /&gt;
      &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
      },&lt;br /&gt;
      &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
      &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
    },&lt;br /&gt;
    {&lt;br /&gt;
      &amp;quot;startIndex&amp;quot;: 911,&lt;br /&gt;
      &amp;quot;endIndex&amp;quot;: 911,&lt;br /&gt;
      &amp;quot;index&amp;quot;: 326,&lt;br /&gt;
      &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
      },&lt;br /&gt;
      &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
      &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
    },&lt;br /&gt;
    {&lt;br /&gt;
      &amp;quot;startIndex&amp;quot;: 478,&lt;br /&gt;
      &amp;quot;endIndex&amp;quot;: 492,&lt;br /&gt;
      &amp;quot;index&amp;quot;: 176,&lt;br /&gt;
      &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
      },&lt;br /&gt;
      &amp;quot;text&amp;quot;: &amp;quot;Com̃etenCometen&amp;quot;,&lt;br /&gt;
      &amp;quot;type&amp;quot;: &amp;quot;choice&amp;quot;&lt;br /&gt;
    },&lt;br /&gt;
    {&lt;br /&gt;
      &amp;quot;startIndex&amp;quot;: 486,&lt;br /&gt;
      &amp;quot;endIndex&amp;quot;: 492,&lt;br /&gt;
      &amp;quot;index&amp;quot;: 179,&lt;br /&gt;
      &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
        &amp;quot;resp&amp;quot;: &amp;quot;#BF&amp;quot;&lt;br /&gt;
      },&lt;br /&gt;
      &amp;quot;text&amp;quot;: &amp;quot;Cometen&amp;quot;,&lt;br /&gt;
      &amp;quot;type&amp;quot;: &amp;quot;corr&amp;quot;&lt;br /&gt;
    },&lt;br /&gt;
    {&lt;br /&gt;
      &amp;quot;startIndex&amp;quot;: 478,&lt;br /&gt;
      &amp;quot;endIndex&amp;quot;: 485,&lt;br /&gt;
      &amp;quot;index&amp;quot;: 177,&lt;br /&gt;
      &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
      },&lt;br /&gt;
      &amp;quot;text&amp;quot;: &amp;quot;Com̃eten&amp;quot;,&lt;br /&gt;
      &amp;quot;type&amp;quot;: &amp;quot;sic&amp;quot;&lt;br /&gt;
    },&lt;br /&gt;
    {&lt;br /&gt;
      &amp;quot;startIndex&amp;quot;: 973,&lt;br /&gt;
      &amp;quot;endIndex&amp;quot;: 973,&lt;br /&gt;
      &amp;quot;index&amp;quot;: 352,&lt;br /&gt;
      &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
      },&lt;br /&gt;
      &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
      &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
    },&lt;br /&gt;
    {&lt;br /&gt;
      &amp;quot;startIndex&amp;quot;: 503,&lt;br /&gt;
      &amp;quot;endIndex&amp;quot;: 503,&lt;br /&gt;
      &amp;quot;index&amp;quot;: 184,&lt;br /&gt;
      &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
      },&lt;br /&gt;
      &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
      &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
    },&lt;br /&gt;
    {&lt;br /&gt;
      &amp;quot;startIndex&amp;quot;: 647,&lt;br /&gt;
      &amp;quot;endIndex&amp;quot;: 647,&lt;br /&gt;
      &amp;quot;index&amp;quot;: 241,&lt;br /&gt;
      &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
      },&lt;br /&gt;
      &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
      &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
    },&lt;br /&gt;
    {&lt;br /&gt;
      &amp;quot;startIndex&amp;quot;: 132,&lt;br /&gt;
      &amp;quot;endIndex&amp;quot;: 163,&lt;br /&gt;
      &amp;quot;index&amp;quot;: 49,&lt;br /&gt;
      &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
        &amp;quot;rendition&amp;quot;: &amp;quot;#u&amp;quot;&lt;br /&gt;
      },&lt;br /&gt;
      &amp;quot;text&amp;quot;: &amp;quot;Dies giebt zwei beſondre Sÿſteme&amp;quot;,&lt;br /&gt;
      &amp;quot;type&amp;quot;: &amp;quot;hi&amp;quot;&lt;br /&gt;
    },&lt;br /&gt;
    {&lt;br /&gt;
      &amp;quot;startIndex&amp;quot;: 156,&lt;br /&gt;
      &amp;quot;endIndex&amp;quot;: 156,&lt;br /&gt;
      &amp;quot;index&amp;quot;: 57,&lt;br /&gt;
      &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
      },&lt;br /&gt;
      &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
      &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
    },&lt;br /&gt;
    {&lt;br /&gt;
      &amp;quot;startIndex&amp;quot;: 43,&lt;br /&gt;
      &amp;quot;endIndex&amp;quot;: 43,&lt;br /&gt;
      &amp;quot;index&amp;quot;: 19,&lt;br /&gt;
      &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
      },&lt;br /&gt;
      &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
      &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
    },&lt;br /&gt;
    {&lt;br /&gt;
      &amp;quot;startIndex&amp;quot;: 685,&lt;br /&gt;
      &amp;quot;endIndex&amp;quot;: 685,&lt;br /&gt;
      &amp;quot;index&amp;quot;: 254,&lt;br /&gt;
      &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
      },&lt;br /&gt;
      &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
      &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
    },&lt;br /&gt;
    {&lt;br /&gt;
      &amp;quot;startIndex&amp;quot;: 686,&lt;br /&gt;
      &amp;quot;endIndex&amp;quot;: 722,&lt;br /&gt;
      &amp;quot;index&amp;quot;: 256,&lt;br /&gt;
      &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
        &amp;quot;place&amp;quot;: &amp;quot;left&amp;quot;&lt;br /&gt;
      },&lt;br /&gt;
      &amp;quot;text&amp;quot;: &amp;quot;Erſtes Syſtem characteriſt. Merkmale &amp;quot;,&lt;br /&gt;
      &amp;quot;type&amp;quot;: &amp;quot;note&amp;quot;&lt;br /&gt;
    },&lt;br /&gt;
    {&lt;br /&gt;
      &amp;quot;startIndex&amp;quot;: 722,&lt;br /&gt;
      &amp;quot;endIndex&amp;quot;: 722,&lt;br /&gt;
      &amp;quot;index&amp;quot;: 266,&lt;br /&gt;
      &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
      },&lt;br /&gt;
      &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
      &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
    },&lt;br /&gt;
    {&lt;br /&gt;
      &amp;quot;startIndex&amp;quot;: 686,&lt;br /&gt;
      &amp;quot;endIndex&amp;quot;: 721,&lt;br /&gt;
      &amp;quot;index&amp;quot;: 257,&lt;br /&gt;
      &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
        &amp;quot;rendition&amp;quot;: &amp;quot;#u&amp;quot;&lt;br /&gt;
      },&lt;br /&gt;
      &amp;quot;text&amp;quot;: &amp;quot;Erſtes Syſtem characteriſt. Merkmale&amp;quot;,&lt;br /&gt;
      &amp;quot;type&amp;quot;: &amp;quot;hi&amp;quot;&lt;br /&gt;
    },&lt;br /&gt;
    {&lt;br /&gt;
      &amp;quot;startIndex&amp;quot;: 699,&lt;br /&gt;
      &amp;quot;endIndex&amp;quot;: 699,&lt;br /&gt;
      &amp;quot;index&amp;quot;: 261,&lt;br /&gt;
      &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
      },&lt;br /&gt;
      &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
      &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
    },&lt;br /&gt;
    {&lt;br /&gt;
      &amp;quot;startIndex&amp;quot;: 369,&lt;br /&gt;
      &amp;quot;endIndex&amp;quot;: 369,&lt;br /&gt;
      &amp;quot;index&amp;quot;: 136,&lt;br /&gt;
      &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
      },&lt;br /&gt;
      &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
      &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
    },&lt;br /&gt;
    {&lt;br /&gt;
      &amp;quot;startIndex&amp;quot;: 878,&lt;br /&gt;
      &amp;quot;endIndex&amp;quot;: 884,&lt;br /&gt;
      &amp;quot;index&amp;quot;: 315,&lt;br /&gt;
      &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
        &amp;quot;rendition&amp;quot;: &amp;quot;#aq&amp;quot;&lt;br /&gt;
      },&lt;br /&gt;
      &amp;quot;text&amp;quot;: &amp;quot;Platina&amp;quot;,&lt;br /&gt;
      &amp;quot;type&amp;quot;: &amp;quot;hi&amp;quot;&lt;br /&gt;
    },&lt;br /&gt;
    {&lt;br /&gt;
      &amp;quot;startIndex&amp;quot;: 873,&lt;br /&gt;
      &amp;quot;endIndex&amp;quot;: 873,&lt;br /&gt;
      &amp;quot;index&amp;quot;: 311,&lt;br /&gt;
      &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
      },&lt;br /&gt;
      &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
      &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
    },&lt;br /&gt;
    {&lt;br /&gt;
      &amp;quot;startIndex&amp;quot;: 607,&lt;br /&gt;
      &amp;quot;endIndex&amp;quot;: 607,&lt;br /&gt;
      &amp;quot;index&amp;quot;: 228,&lt;br /&gt;
      &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
      },&lt;br /&gt;
      &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
      &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
    },&lt;br /&gt;
    {&lt;br /&gt;
      &amp;quot;startIndex&amp;quot;: 85,&lt;br /&gt;
      &amp;quot;endIndex&amp;quot;: 116,&lt;br /&gt;
      &amp;quot;index&amp;quot;: 34,&lt;br /&gt;
      &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
        &amp;quot;place&amp;quot;: &amp;quot;left&amp;quot;&lt;br /&gt;
      },&lt;br /&gt;
      &amp;quot;text&amp;quot;: &amp;quot;Zwei beſondere Planeten-Syſteme &amp;quot;,&lt;br /&gt;
      &amp;quot;type&amp;quot;: &amp;quot;note&amp;quot;&lt;br /&gt;
    },&lt;br /&gt;
    {&lt;br /&gt;
      &amp;quot;startIndex&amp;quot;: 85,&lt;br /&gt;
      &amp;quot;endIndex&amp;quot;: 115,&lt;br /&gt;
      &amp;quot;index&amp;quot;: 35,&lt;br /&gt;
      &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
        &amp;quot;rendition&amp;quot;: &amp;quot;#u&amp;quot;&lt;br /&gt;
      },&lt;br /&gt;
      &amp;quot;text&amp;quot;: &amp;quot;Zwei beſondere Planeten-Syſteme&amp;quot;,&lt;br /&gt;
      &amp;quot;type&amp;quot;: &amp;quot;hi&amp;quot;&lt;br /&gt;
    },&lt;br /&gt;
    {&lt;br /&gt;
      &amp;quot;startIndex&amp;quot;: 116,&lt;br /&gt;
      &amp;quot;endIndex&amp;quot;: 116,&lt;br /&gt;
      &amp;quot;index&amp;quot;: 41,&lt;br /&gt;
      &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
      },&lt;br /&gt;
      &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
      &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
    },&lt;br /&gt;
    {&lt;br /&gt;
      &amp;quot;startIndex&amp;quot;: 1028,&lt;br /&gt;
      &amp;quot;endIndex&amp;quot;: 1028,&lt;br /&gt;
      &amp;quot;index&amp;quot;: 375,&lt;br /&gt;
      &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
      },&lt;br /&gt;
      &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
      &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
    },&lt;br /&gt;
    {&lt;br /&gt;
      &amp;quot;startIndex&amp;quot;: 560,&lt;br /&gt;
      &amp;quot;endIndex&amp;quot;: 587,&lt;br /&gt;
      &amp;quot;index&amp;quot;: 209,&lt;br /&gt;
      &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
      },&lt;br /&gt;
      &amp;quot;text&amp;quot;: &amp;quot;Com̃et￼Comet￼Com̃etenCometen&amp;quot;,&lt;br /&gt;
      &amp;quot;type&amp;quot;: &amp;quot;choice&amp;quot;&lt;br /&gt;
    },&lt;br /&gt;
    {&lt;br /&gt;
      &amp;quot;startIndex&amp;quot;: 560,&lt;br /&gt;
      &amp;quot;endIndex&amp;quot;: 572,&lt;br /&gt;
      &amp;quot;index&amp;quot;: 210,&lt;br /&gt;
      &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
      },&lt;br /&gt;
      &amp;quot;text&amp;quot;: &amp;quot;Com̃et￼Comet￼&amp;quot;,&lt;br /&gt;
      &amp;quot;type&amp;quot;: &amp;quot;abbr&amp;quot;&lt;br /&gt;
    },&lt;br /&gt;
    {&lt;br /&gt;
      &amp;quot;startIndex&amp;quot;: 560,&lt;br /&gt;
      &amp;quot;endIndex&amp;quot;: 572,&lt;br /&gt;
      &amp;quot;index&amp;quot;: 211,&lt;br /&gt;
      &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
      },&lt;br /&gt;
      &amp;quot;text&amp;quot;: &amp;quot;Com̃et￼Comet￼&amp;quot;,&lt;br /&gt;
      &amp;quot;type&amp;quot;: &amp;quot;choice&amp;quot;&lt;br /&gt;
    },&lt;br /&gt;
    {&lt;br /&gt;
      &amp;quot;startIndex&amp;quot;: 560,&lt;br /&gt;
      &amp;quot;endIndex&amp;quot;: 566,&lt;br /&gt;
      &amp;quot;index&amp;quot;: 212,&lt;br /&gt;
      &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
      },&lt;br /&gt;
      &amp;quot;text&amp;quot;: &amp;quot;Com̃et￼&amp;quot;,&lt;br /&gt;
      &amp;quot;type&amp;quot;: &amp;quot;sic&amp;quot;&lt;br /&gt;
    },&lt;br /&gt;
    {&lt;br /&gt;
      &amp;quot;startIndex&amp;quot;: 567,&lt;br /&gt;
      &amp;quot;endIndex&amp;quot;: 572,&lt;br /&gt;
      &amp;quot;index&amp;quot;: 214,&lt;br /&gt;
      &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
        &amp;quot;resp&amp;quot;: &amp;quot;#BF&amp;quot;&lt;br /&gt;
      },&lt;br /&gt;
      &amp;quot;text&amp;quot;: &amp;quot;Comet￼&amp;quot;,&lt;br /&gt;
      &amp;quot;type&amp;quot;: &amp;quot;corr&amp;quot;&lt;br /&gt;
    },&lt;br /&gt;
    {&lt;br /&gt;
      &amp;quot;startIndex&amp;quot;: 573,&lt;br /&gt;
      &amp;quot;endIndex&amp;quot;: 587,&lt;br /&gt;
      &amp;quot;index&amp;quot;: 216,&lt;br /&gt;
      &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
        &amp;quot;resp&amp;quot;: &amp;quot;#BF&amp;quot;&lt;br /&gt;
      },&lt;br /&gt;
      &amp;quot;text&amp;quot;: &amp;quot;Com̃etenCometen&amp;quot;,&lt;br /&gt;
      &amp;quot;type&amp;quot;: &amp;quot;expan&amp;quot;&lt;br /&gt;
    },&lt;br /&gt;
    {&lt;br /&gt;
      &amp;quot;startIndex&amp;quot;: 573,&lt;br /&gt;
      &amp;quot;endIndex&amp;quot;: 587,&lt;br /&gt;
      &amp;quot;index&amp;quot;: 217,&lt;br /&gt;
      &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
      },&lt;br /&gt;
      &amp;quot;text&amp;quot;: &amp;quot;Com̃etenCometen&amp;quot;,&lt;br /&gt;
      &amp;quot;type&amp;quot;: &amp;quot;choice&amp;quot;&lt;br /&gt;
    },&lt;br /&gt;
    {&lt;br /&gt;
      &amp;quot;startIndex&amp;quot;: 581,&lt;br /&gt;
      &amp;quot;endIndex&amp;quot;: 587,&lt;br /&gt;
      &amp;quot;index&amp;quot;: 220,&lt;br /&gt;
      &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
        &amp;quot;resp&amp;quot;: &amp;quot;#BF&amp;quot;&lt;br /&gt;
      },&lt;br /&gt;
      &amp;quot;text&amp;quot;: &amp;quot;Cometen&amp;quot;,&lt;br /&gt;
      &amp;quot;type&amp;quot;: &amp;quot;corr&amp;quot;&lt;br /&gt;
    },&lt;br /&gt;
    {&lt;br /&gt;
      &amp;quot;startIndex&amp;quot;: 573,&lt;br /&gt;
      &amp;quot;endIndex&amp;quot;: 580,&lt;br /&gt;
      &amp;quot;index&amp;quot;: 218,&lt;br /&gt;
      &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
      },&lt;br /&gt;
      &amp;quot;text&amp;quot;: &amp;quot;Com̃eten&amp;quot;,&lt;br /&gt;
      &amp;quot;type&amp;quot;: &amp;quot;sic&amp;quot;&lt;br /&gt;
    },&lt;br /&gt;
    {&lt;br /&gt;
      &amp;quot;startIndex&amp;quot;: 310,&lt;br /&gt;
      &amp;quot;endIndex&amp;quot;: 310,&lt;br /&gt;
      &amp;quot;index&amp;quot;: 114,&lt;br /&gt;
      &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
      },&lt;br /&gt;
      &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
      &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
    },&lt;br /&gt;
    {&lt;br /&gt;
      &amp;quot;startIndex&amp;quot;: 238,&lt;br /&gt;
      &amp;quot;endIndex&amp;quot;: 238,&lt;br /&gt;
      &amp;quot;index&amp;quot;: 86,&lt;br /&gt;
      &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
      },&lt;br /&gt;
      &amp;quot;text&amp;quot;: &amp;quot; &amp;quot;,&lt;br /&gt;
      &amp;quot;type&amp;quot;: &amp;quot;lb&amp;quot;&lt;br /&gt;
    },&lt;br /&gt;
    {&lt;br /&gt;
      &amp;quot;startIndex&amp;quot;: 318,&lt;br /&gt;
      &amp;quot;endIndex&amp;quot;: 333,&lt;br /&gt;
      &amp;quot;index&amp;quot;: 119,&lt;br /&gt;
      &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
      },&lt;br /&gt;
      &amp;quot;text&amp;quot;: &amp;quot;ungefahrungefähr&amp;quot;,&lt;br /&gt;
      &amp;quot;type&amp;quot;: &amp;quot;choice&amp;quot;&lt;br /&gt;
    },&lt;br /&gt;
    {&lt;br /&gt;
      &amp;quot;startIndex&amp;quot;: 318,&lt;br /&gt;
      &amp;quot;endIndex&amp;quot;: 325,&lt;br /&gt;
      &amp;quot;index&amp;quot;: 120,&lt;br /&gt;
      &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
      },&lt;br /&gt;
      &amp;quot;text&amp;quot;: &amp;quot;ungefahr&amp;quot;,&lt;br /&gt;
      &amp;quot;type&amp;quot;: &amp;quot;sic&amp;quot;&lt;br /&gt;
    },&lt;br /&gt;
    {&lt;br /&gt;
      &amp;quot;startIndex&amp;quot;: 326,&lt;br /&gt;
      &amp;quot;endIndex&amp;quot;: 333,&lt;br /&gt;
      &amp;quot;index&amp;quot;: 122,&lt;br /&gt;
      &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
        &amp;quot;resp&amp;quot;: &amp;quot;#CT&amp;quot;&lt;br /&gt;
      },&lt;br /&gt;
      &amp;quot;text&amp;quot;: &amp;quot;ungefähr&amp;quot;,&lt;br /&gt;
      &amp;quot;type&amp;quot;: &amp;quot;corr&amp;quot;&lt;br /&gt;
    },&lt;br /&gt;
    {&lt;br /&gt;
      &amp;quot;startIndex&amp;quot;: 912,&lt;br /&gt;
      &amp;quot;endIndex&amp;quot;: 930,&lt;br /&gt;
      &amp;quot;index&amp;quot;: 328,&lt;br /&gt;
      &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
      },&lt;br /&gt;
      &amp;quot;text&amp;quot;: &amp;quot;rotirenbewegen ſich&amp;quot;,&lt;br /&gt;
      &amp;quot;type&amp;quot;: &amp;quot;subst&amp;quot;&lt;br /&gt;
    },&lt;br /&gt;
    {&lt;br /&gt;
      &amp;quot;startIndex&amp;quot;: 919,&lt;br /&gt;
      &amp;quot;endIndex&amp;quot;: 930,&lt;br /&gt;
      &amp;quot;index&amp;quot;: 331,&lt;br /&gt;
      &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
        &amp;quot;place&amp;quot;: &amp;quot;superlinear&amp;quot;&lt;br /&gt;
      },&lt;br /&gt;
      &amp;quot;text&amp;quot;: &amp;quot;bewegen ſich&amp;quot;,&lt;br /&gt;
      &amp;quot;type&amp;quot;: &amp;quot;add&amp;quot;&lt;br /&gt;
    },&lt;br /&gt;
    {&lt;br /&gt;
      &amp;quot;startIndex&amp;quot;: 912,&lt;br /&gt;
      &amp;quot;endIndex&amp;quot;: 918,&lt;br /&gt;
      &amp;quot;index&amp;quot;: 329,&lt;br /&gt;
      &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
        &amp;quot;rendition&amp;quot;: &amp;quot;#s&amp;quot;&lt;br /&gt;
      },&lt;br /&gt;
      &amp;quot;text&amp;quot;: &amp;quot;rotiren&amp;quot;,&lt;br /&gt;
      &amp;quot;type&amp;quot;: &amp;quot;del&amp;quot;&lt;br /&gt;
    },&lt;br /&gt;
    {&lt;br /&gt;
      &amp;quot;startIndex&amp;quot;: 339,&lt;br /&gt;
      &amp;quot;endIndex&amp;quot;: 355,&lt;br /&gt;
      &amp;quot;index&amp;quot;: 127,&lt;br /&gt;
      &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
      },&lt;br /&gt;
      &amp;quot;text&amp;quot;: &amp;quot;Oberfl.Oberfläche&amp;quot;,&lt;br /&gt;
      &amp;quot;type&amp;quot;: &amp;quot;choice&amp;quot;&lt;br /&gt;
    },&lt;br /&gt;
    {&lt;br /&gt;
      &amp;quot;startIndex&amp;quot;: 339,&lt;br /&gt;
      &amp;quot;endIndex&amp;quot;: 345,&lt;br /&gt;
      &amp;quot;index&amp;quot;: 128,&lt;br /&gt;
      &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
&lt;br /&gt;
      },&lt;br /&gt;
      &amp;quot;text&amp;quot;: &amp;quot;Oberfl.&amp;quot;,&lt;br /&gt;
      &amp;quot;type&amp;quot;: &amp;quot;abbr&amp;quot;&lt;br /&gt;
    },&lt;br /&gt;
    {&lt;br /&gt;
      &amp;quot;startIndex&amp;quot;: 346,&lt;br /&gt;
      &amp;quot;endIndex&amp;quot;: 355,&lt;br /&gt;
      &amp;quot;index&amp;quot;: 130,&lt;br /&gt;
      &amp;quot;attributes&amp;quot;: {&lt;br /&gt;
        &amp;quot;resp&amp;quot;: &amp;quot;#CT&amp;quot;&lt;br /&gt;
      },&lt;br /&gt;
      &amp;quot;text&amp;quot;: &amp;quot;Oberfläche&amp;quot;,&lt;br /&gt;
      &amp;quot;type&amp;quot;: &amp;quot;expan&amp;quot;&lt;br /&gt;
    }&lt;br /&gt;
  ]&lt;br /&gt;
 }&lt;/div&gt;</summary>
		<author><name>Andreas Kuczera</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=SIG:GraphTechnologies&amp;diff=16502</id>
		<title>SIG:GraphTechnologies</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=SIG:GraphTechnologies&amp;diff=16502"/>
		<updated>2019-01-25T18:20:20Z</updated>

		<summary type="html">&lt;p&gt;Andreas Kuczera: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Introduction ==&lt;br /&gt;
&lt;br /&gt;
As TEI is not a format, though many people think it is. It's a de facto standard that specifies Guidelines for document interchange. Actually the Guidelines are based on the XML but this is only one possible technical way of expressing the phenomenons.&lt;br /&gt;
&lt;br /&gt;
'''The aim of the Graph-SIG is to find a way of expressing the language phenomenons of the TEI in Graphs.''' &lt;br /&gt;
&lt;br /&gt;
* In the graph you can use multi-hierarchical annotations layers.&lt;br /&gt;
* Graph models are very easy to read and understand. So DH-People and “normal” scientists have a level of discussion in common.&lt;br /&gt;
* A Graph can be expressed as RDF so the step from a Graph to linked open data is easy to make.&lt;br /&gt;
&lt;br /&gt;
The main goal of the TEI-Graph-SIG is to model the textual phenomenons of the TEI in a Graph and to develop routines to import TEI-encoded XML-files into graph databases.&lt;br /&gt;
&lt;br /&gt;
== Convert DTA-XML with neo4j to Standoff Property JSON ==&lt;br /&gt;
&lt;br /&gt;
In a first step we import a small xml-example into a [https://neo4j.com neo4j] instance using [https://github.com/neo4j-contrib/neo4j-apoc-procedures-function apoc.import.xml]&lt;br /&gt;
&lt;br /&gt;
The example is a [https://seafile.rlp.net/f/6282a26504cc4f079ab9/?dl=1 page] from the [https://www.deutschestextarchiv.de DTA]. Here you can find the [[XML-Testfile]] and this is the [http://www.deutschestextarchiv.de/book/view/patzig_msgermfol841842_1828/?hl=welcher;p=11 Link] to the DTA-Version.&lt;br /&gt;
&lt;br /&gt;
== Import to neo4j ==&lt;br /&gt;
&lt;br /&gt;
The import to neo4j runs with:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
 // Import xml-example from DTA to neo4j&lt;br /&gt;
 call apoc.xml.import('https://seafile.rlp.net/f/6282a26504cc4f079ab9/?dl=1', {connectCharacters: true, charactersForTag:{lb:' '}, filterLeadingWhitespace: true}) yield node &lt;br /&gt;
 return node;&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the next picture you can see a small set of the Graph:&lt;br /&gt;
&lt;br /&gt;
[[image:TEI-Graph.png|center|800px|x]]&lt;br /&gt;
&lt;br /&gt;
== Export from neo4j to Standoff Property JSON ==&lt;br /&gt;
&lt;br /&gt;
The next step is to export the data with some [[cypher]] to the Standoff-Property JSON-Format.&lt;br /&gt;
This json can then be imported in the [[https://github.com/argimenes/standoff-properties-editor SPEEDy]] Standoff Property Editor which can be found on [[https://github.com/argimenes/standoff-properties-editor GitHub]].&lt;br /&gt;
&lt;br /&gt;
At the end of the README-Section you can find a [[https://argimenes.github.io/standoff-properties-editor/ Link]] to Test-Istance hosted on [[https://argimenes.github.io/standoff-properties-editor/ Github-Pages]].&lt;br /&gt;
&lt;br /&gt;
Just copy the [[json]] in the window below the UNBIND-Button and press BIND.&lt;/div&gt;</summary>
		<author><name>Andreas Kuczera</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=SIG:GraphTechnologies&amp;diff=16501</id>
		<title>SIG:GraphTechnologies</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=SIG:GraphTechnologies&amp;diff=16501"/>
		<updated>2019-01-25T18:17:56Z</updated>

		<summary type="html">&lt;p&gt;Andreas Kuczera: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Introduction ==&lt;br /&gt;
&lt;br /&gt;
As TEI is not a format, though many people think it is. It's a de facto standard that specifies Guidelines for document interchange. Actually the Guidelines are based on the XML but this is only one possible technical way of expressing the phenomenons.&lt;br /&gt;
&lt;br /&gt;
'''The aim of the Graph-SIG is to find a way of expressing the language phenomenons of the TEI in Graphs.''' &lt;br /&gt;
&lt;br /&gt;
* In the graph you can use multi-hierarchical annotations layers.&lt;br /&gt;
* Graph models are very easy to read and understand. So DH-People and “normal” scientists have a level of discussion in common.&lt;br /&gt;
* A Graph can be expressed as RDF so the step from a Graph to linked open data is easy to make.&lt;br /&gt;
&lt;br /&gt;
The main goal of the TEI-Graph-SIG is to model the textual phenomenons of the TEI in a Graph and to develop routines to import TEI-encoded XML-files into graph databases.&lt;br /&gt;
&lt;br /&gt;
== Convert DTA-XML with neo4j to Standoff Property JSON ==&lt;br /&gt;
&lt;br /&gt;
In a first step we import a small xml-example into a [https://neo4j.com neo4j] instance using [https://github.com/neo4j-contrib/neo4j-apoc-procedures-function apoc.import.xml]&lt;br /&gt;
&lt;br /&gt;
The example is a [https://seafile.rlp.net/f/6282a26504cc4f079ab9/?dl=1 page] from the [https://www.deutschestextarchiv.de DTA]. Here you can find the [[XML-Testfile]] and this is the [http://www.deutschestextarchiv.de/book/view/patzig_msgermfol841842_1828/?hl=welcher;p=11 Link] to the DTA-Version.&lt;br /&gt;
&lt;br /&gt;
== Import to neo4j ==&lt;br /&gt;
&lt;br /&gt;
The import to neo4j runs with:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
 // Import xml-example from DTA to neo4j&lt;br /&gt;
 call apoc.xml.import('https://seafile.rlp.net/f/6282a26504cc4f079ab9/?dl=1', {connectCharacters: true, charactersForTag:{lb:' '}, filterLeadingWhitespace: true}) yield node &lt;br /&gt;
 return node;&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the next picture you can see a small set of the Graph:&lt;br /&gt;
&lt;br /&gt;
[[image:TEI-Graph.png|center|800px|x]]&lt;br /&gt;
&lt;br /&gt;
== Export from neo4j to Standoff Property JSON ==&lt;br /&gt;
&lt;br /&gt;
The next step is to export the data with some [[cypher]] to the Standoff-Property JSON-Format.&lt;br /&gt;
This json can then be imported in the [[https://github.com/argimenes/standoff-properties-editor SPEEDy]] Standoff Property Editor which can be found on [[https://github.com/argimenes/standoff-properties-editor GitHub]].&lt;br /&gt;
&lt;br /&gt;
At the end of the README-Section you can find a [[https://argimenes.github.io/standoff-properties-editor/ Link]] to Test-Istance hosted on [[https://argimenes.github.io/standoff-properties-editor/ Github-Pages]].&lt;br /&gt;
&lt;br /&gt;
Just copy the json in the window below the UNBIND-Button and press BIND.&lt;/div&gt;</summary>
		<author><name>Andreas Kuczera</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=SIG:GraphTechnologies&amp;diff=16500</id>
		<title>SIG:GraphTechnologies</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=SIG:GraphTechnologies&amp;diff=16500"/>
		<updated>2019-01-25T18:14:52Z</updated>

		<summary type="html">&lt;p&gt;Andreas Kuczera: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Introduction ==&lt;br /&gt;
&lt;br /&gt;
As TEI is not a format, though many people think it is. It's a de facto standard that specifies Guidelines for document interchange. Actually the Guidelines are based on the XML but this is only one possible technical way of expressing the phenomenons.&lt;br /&gt;
&lt;br /&gt;
'''The aim of the Graph-SIG is to find a way of expressing the language phenomenons of the TEI in Graphs.''' &lt;br /&gt;
&lt;br /&gt;
* In the graph you can use multi-hierarchical annotations layers.&lt;br /&gt;
* Graph models are very easy to read and understand. So DH-People and “normal” scientists have a level of discussion in common.&lt;br /&gt;
* A Graph can be expressed as RDF so the step from a Graph to linked open data is easy to make.&lt;br /&gt;
&lt;br /&gt;
The main goal of the TEI-Graph-SIG is to model the textual phenomenons of the TEI in a Graph and to develop routines to import TEI-encoded XML-files into graph databases.&lt;br /&gt;
&lt;br /&gt;
== Convert DTA-XML with neo4j to Standoff Property JSON ==&lt;br /&gt;
&lt;br /&gt;
In a first step we import a small xml-example into a [https://neo4j.com neo4j] instance using [https://github.com/neo4j-contrib/neo4j-apoc-procedures-function apoc.import.xml]&lt;br /&gt;
&lt;br /&gt;
The example is a [https://seafile.rlp.net/f/6282a26504cc4f079ab9/?dl=1 page] from the [https://www.deutschestextarchiv.de DTA]. Here you can find the [[XML-Testfile]] and this is the [http://www.deutschestextarchiv.de/book/view/patzig_msgermfol841842_1828/?hl=welcher;p=11 Link] to the DTA-Version.&lt;br /&gt;
&lt;br /&gt;
== Import to neo4j ==&lt;br /&gt;
&lt;br /&gt;
The import to neo4j runs with:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
 // Import xml-example from DTA to neo4j&lt;br /&gt;
 call apoc.xml.import('https://seafile.rlp.net/f/6282a26504cc4f079ab9/?dl=1', {connectCharacters: true, charactersForTag:{lb:' '}, filterLeadingWhitespace: true}) yield node &lt;br /&gt;
 return node;&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the next picture you can see a small set of the Graph:&lt;br /&gt;
&lt;br /&gt;
[[image:TEI-Graph.png|left|800px|x]]&lt;br /&gt;
&lt;br /&gt;
== Export from neo4j to Standoff Property JSON ==&lt;br /&gt;
&lt;br /&gt;
The next step is to export the data with some [[cypher]] to the Standoff-Property JSON-Format.&lt;br /&gt;
This json can then be imported in the [[https://github.com/argimenes/standoff-properties-editor SPEEDy]] Standoff Property Editor which can be found on [[https://github.com/argimenes/standoff-properties-editor GitHub]].&lt;br /&gt;
&lt;br /&gt;
At the end of the README-Section you can find a [[https://argimenes.github.io/standoff-properties-editor/ Link]] to Test-Istance hosted on [[https://argimenes.github.io/standoff-properties-editor/ Github-Pages]].&lt;br /&gt;
&lt;br /&gt;
Just copy the json in the window below the UNBIND-Button and press BIND.&lt;/div&gt;</summary>
		<author><name>Andreas Kuczera</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=SIG:GraphTechnologies&amp;diff=16499</id>
		<title>SIG:GraphTechnologies</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=SIG:GraphTechnologies&amp;diff=16499"/>
		<updated>2019-01-25T18:11:55Z</updated>

		<summary type="html">&lt;p&gt;Andreas Kuczera: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
&lt;br /&gt;
As TEI is not a format, though many people think it is. It's a de facto standard that specifies Guidelines for document interchange. Actually the Guidelines are based on the XML but this is only one possible technical way of expressing the phenomenons.&lt;br /&gt;
&lt;br /&gt;
'''The aim of the Graph-SIG is to find a way of expressing the language phenomenons of the TEI in Graphs.''' &lt;br /&gt;
&lt;br /&gt;
* In the graph you can use multi-hierarchical annotations layers.&lt;br /&gt;
* Graph models are very easy to read and understand. So DH-People and “normal” scientists have a level of discussion in common.&lt;br /&gt;
* A Graph can be expressed as RDF so the step from a Graph to linked open data is easy to make.&lt;br /&gt;
&lt;br /&gt;
The main goal of the TEI-Graph-SIG is to model the textual phenomenons of the TEI in a Graph and to develop routines to import TEI-encoded XML-files into graph databases.&lt;br /&gt;
&lt;br /&gt;
== Convert DTA-XML with neo4j to Standoff Property JSON ==&lt;br /&gt;
&lt;br /&gt;
In a first step we import a small xml-example into a [https://neo4j.com neo4j] instance using [https://github.com/neo4j-contrib/neo4j-apoc-procedures-function apoc.import.xml]&lt;br /&gt;
&lt;br /&gt;
The example is a [https://seafile.rlp.net/f/6282a26504cc4f079ab9/?dl=1 page] from the [https://www.deutschestextarchiv.de DTA]. Here you can find the [[XML-Testfile]] and this is the [http://www.deutschestextarchiv.de/book/view/patzig_msgermfol841842_1828/?hl=welcher;p=11 Link] to the DTA-Version.&lt;br /&gt;
&lt;br /&gt;
The import to neo4j runs with:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
 // Import xml-example from DTA to neo4j&lt;br /&gt;
 call apoc.xml.import('https://seafile.rlp.net/f/6282a26504cc4f079ab9/?dl=1', {connectCharacters: true, charactersForTag:{lb:' '}, filterLeadingWhitespace: true}) yield node &lt;br /&gt;
 return node;&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the next picture you can see a small set of the Graph:&lt;br /&gt;
&lt;br /&gt;
[[image:TEI-Graph.png|left|800px|x]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The next step is to export the data with some [[cypher]] to the Standoff-Property JSON-Format.&lt;br /&gt;
This json can then be imported in the [[https://github.com/argimenes/standoff-properties-editor SPEEDy]] Standoff Property Editor which can be found on [[https://github.com/argimenes/standoff-properties-editor GitHub]].&lt;br /&gt;
&lt;br /&gt;
At the end of the README-Section you can find a [[https://argimenes.github.io/standoff-properties-editor/ Link]] to Test-Istance hosted on [[https://argimenes.github.io/standoff-properties-editor/ Github-Pages]].&lt;br /&gt;
&lt;br /&gt;
Just copy the json in the window below the UNBIND-Button and press BIND.&lt;/div&gt;</summary>
		<author><name>Andreas Kuczera</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=Cypher&amp;diff=16498</id>
		<title>Cypher</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=Cypher&amp;diff=16498"/>
		<updated>2019-01-25T18:07:52Z</updated>

		<summary type="html">&lt;p&gt;Andreas Kuczera: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;code&amp;gt;&lt;br /&gt;
 // Export TEI-Graph to Standoff-Property-JSON-Format by Stefan Armbruster&lt;br /&gt;
 match path=(d:XmlDocument)-[:NE*]-&amp;gt;(e:XmlCharacters)&lt;br /&gt;
 where not (e)-[:NE]-&amp;gt;()&lt;br /&gt;
 with tail(nodes(path)) as words, d&lt;br /&gt;
 with reduce(s=&amp;quot;&amp;quot;, x in words| s + x.text ) as allText, d&lt;br /&gt;
 call apoc.path.expandConfig(d,{&lt;br /&gt;
 relationshipFilter: '&amp;lt;IS_CHILD_OF',&lt;br /&gt;
 labelFilter: 'XmlTag',&lt;br /&gt;
 bfs: false,&lt;br /&gt;
 minLevel: 1&lt;br /&gt;
 }) yield path&lt;br /&gt;
 with allText, path, nodes(path)[-1] as this&lt;br /&gt;
 MATCH p=(this)-[:NEXT*]-&amp;gt;(x)&lt;br /&gt;
 where (x)-[:LAST_CHILD_OF*]-&amp;gt;(this) and any(x in nodes(p) WHERE x:XmlCharacters)&lt;br /&gt;
 with allText, this, collect(p)[-1] as longest&lt;br /&gt;
 with allText, this, [x in nodes(longest) where x:XmlCharacters] as xmlCharacters&lt;br /&gt;
 with allText, this, &lt;br /&gt;
 apoc.coll.min([x in xmlCharacters | x.startIndex]) as min, &lt;br /&gt;
 apoc.coll.max([x in xmlCharacters | x.endIndex]) as max, &lt;br /&gt;
 apoc.text.join([x in xmlCharacters | x.text], &amp;quot;&amp;quot;) as text&lt;br /&gt;
 with allText, {&lt;br /&gt;
 index:id(this), &lt;br /&gt;
 startIndex: min, &lt;br /&gt;
 endIndex: max,&lt;br /&gt;
 text: text,&lt;br /&gt;
 type: this._name,&lt;br /&gt;
 attributes: apoc.map.fromPairs([x in keys(this) WHERE not x starts with &amp;quot;_&amp;quot; | [x, this[x]] ])&lt;br /&gt;
 } as standoffProperty&lt;br /&gt;
 return {text: allText, properties: collect(standoffProperty)};&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;/div&gt;</summary>
		<author><name>Andreas Kuczera</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=Cypher&amp;diff=16497</id>
		<title>Cypher</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=Cypher&amp;diff=16497"/>
		<updated>2019-01-25T18:07:23Z</updated>

		<summary type="html">&lt;p&gt;Andreas Kuczera: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;code&amp;gt;&lt;br /&gt;
 // Export TEI-Graph to Standoff-Property-JSON-Format&lt;br /&gt;
 match path=(d:XmlDocument)-[:NE*]-&amp;gt;(e:XmlCharacters)&lt;br /&gt;
 where not (e)-[:NE]-&amp;gt;()&lt;br /&gt;
 with tail(nodes(path)) as words, d&lt;br /&gt;
 with reduce(s=&amp;quot;&amp;quot;, x in words| s + x.text ) as allText, d&lt;br /&gt;
 call apoc.path.expandConfig(d,{&lt;br /&gt;
 relationshipFilter: '&amp;lt;IS_CHILD_OF',&lt;br /&gt;
 labelFilter: 'XmlTag',&lt;br /&gt;
 bfs: false,&lt;br /&gt;
 minLevel: 1&lt;br /&gt;
 }) yield path&lt;br /&gt;
 with allText, path, nodes(path)[-1] as this&lt;br /&gt;
 MATCH p=(this)-[:NEXT*]-&amp;gt;(x)&lt;br /&gt;
 where (x)-[:LAST_CHILD_OF*]-&amp;gt;(this) and any(x in nodes(p) WHERE x:XmlCharacters)&lt;br /&gt;
 with allText, this, collect(p)[-1] as longest&lt;br /&gt;
 with allText, this, [x in nodes(longest) where x:XmlCharacters] as xmlCharacters&lt;br /&gt;
 with allText, this, &lt;br /&gt;
 apoc.coll.min([x in xmlCharacters | x.startIndex]) as min, &lt;br /&gt;
 apoc.coll.max([x in xmlCharacters | x.endIndex]) as max, &lt;br /&gt;
 apoc.text.join([x in xmlCharacters | x.text], &amp;quot;&amp;quot;) as text&lt;br /&gt;
 with allText, {&lt;br /&gt;
 index:id(this), &lt;br /&gt;
 startIndex: min, &lt;br /&gt;
 endIndex: max,&lt;br /&gt;
 text: text,&lt;br /&gt;
 type: this._name,&lt;br /&gt;
 attributes: apoc.map.fromPairs([x in keys(this) WHERE not x starts with &amp;quot;_&amp;quot; | [x, this[x]] ])&lt;br /&gt;
 } as standoffProperty&lt;br /&gt;
 return {text: allText, properties: collect(standoffProperty)};&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;/div&gt;</summary>
		<author><name>Andreas Kuczera</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=Cypher&amp;diff=16496</id>
		<title>Cypher</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=Cypher&amp;diff=16496"/>
		<updated>2019-01-25T18:05:32Z</updated>

		<summary type="html">&lt;p&gt;Andreas Kuczera: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;code&amp;gt;&lt;br /&gt;
// Export TEI-Graph to Standoff-Property-JSON-Format&lt;br /&gt;
match path=(d:XmlDocument)-[:NE*]-&amp;gt;(e:XmlCharacters)&lt;br /&gt;
where not (e)-[:NE]-&amp;gt;()&lt;br /&gt;
with tail(nodes(path)) as words, d&lt;br /&gt;
with reduce(s=&amp;quot;&amp;quot;, x in words| s + x.text ) as allText, d&lt;br /&gt;
call apoc.path.expandConfig(d,{&lt;br /&gt;
   relationshipFilter: '&amp;lt;IS_CHILD_OF',&lt;br /&gt;
   labelFilter: 'XmlTag',&lt;br /&gt;
   bfs: false,&lt;br /&gt;
   minLevel: 1&lt;br /&gt;
}) yield path&lt;br /&gt;
with allText, path, nodes(path)[-1] as this&lt;br /&gt;
MATCH p=(this)-[:NEXT*]-&amp;gt;(x)&lt;br /&gt;
where (x)-[:LAST_CHILD_OF*]-&amp;gt;(this) and any(x in nodes(p) WHERE x:XmlCharacters)&lt;br /&gt;
with allText, this, collect(p)[-1] as longest&lt;br /&gt;
with allText, this, [x in nodes(longest) where x:XmlCharacters] as xmlCharacters&lt;br /&gt;
with allText, this, &lt;br /&gt;
  apoc.coll.min([x in xmlCharacters | x.startIndex]) as min, &lt;br /&gt;
  apoc.coll.max([x in xmlCharacters | x.endIndex]) as max, &lt;br /&gt;
  apoc.text.join([x in xmlCharacters | x.text], &amp;quot;&amp;quot;) as text&lt;br /&gt;
with allText, {&lt;br /&gt;
   index:id(this), &lt;br /&gt;
   startIndex: min, &lt;br /&gt;
   endIndex: max,&lt;br /&gt;
   text: text,&lt;br /&gt;
   type: this._name,&lt;br /&gt;
   attributes: apoc.map.fromPairs([x in keys(this) WHERE not x starts with &amp;quot;_&amp;quot; | [x, this[x]] ])&lt;br /&gt;
} as standoffProperty&lt;br /&gt;
return {text: allText, properties: collect(standoffProperty)};&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;/div&gt;</summary>
		<author><name>Andreas Kuczera</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=Cypher&amp;diff=16495</id>
		<title>Cypher</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=Cypher&amp;diff=16495"/>
		<updated>2019-01-25T18:05:03Z</updated>

		<summary type="html">&lt;p&gt;Andreas Kuczera: Created page with &amp;quot; // Export TEI-Graph to Standoff-Property-JSON-Format match path=(d:XmlDocument)-[:NE*]-&amp;gt;(e:XmlCharacters) where not (e)-[:NE]-&amp;gt;() with tail(nodes(path)) as words, d with reduce(...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
// Export TEI-Graph to Standoff-Property-JSON-Format&lt;br /&gt;
match path=(d:XmlDocument)-[:NE*]-&amp;gt;(e:XmlCharacters)&lt;br /&gt;
where not (e)-[:NE]-&amp;gt;()&lt;br /&gt;
with tail(nodes(path)) as words, d&lt;br /&gt;
with reduce(s=&amp;quot;&amp;quot;, x in words| s + x.text ) as allText, d&lt;br /&gt;
call apoc.path.expandConfig(d,{&lt;br /&gt;
   relationshipFilter: '&amp;lt;IS_CHILD_OF',&lt;br /&gt;
   labelFilter: 'XmlTag',&lt;br /&gt;
   bfs: false,&lt;br /&gt;
   minLevel: 1&lt;br /&gt;
}) yield path&lt;br /&gt;
with allText, path, nodes(path)[-1] as this&lt;br /&gt;
MATCH p=(this)-[:NEXT*]-&amp;gt;(x)&lt;br /&gt;
where (x)-[:LAST_CHILD_OF*]-&amp;gt;(this) and any(x in nodes(p) WHERE x:XmlCharacters)&lt;br /&gt;
with allText, this, collect(p)[-1] as longest&lt;br /&gt;
with allText, this, [x in nodes(longest) where x:XmlCharacters] as xmlCharacters&lt;br /&gt;
with allText, this, &lt;br /&gt;
  apoc.coll.min([x in xmlCharacters | x.startIndex]) as min, &lt;br /&gt;
  apoc.coll.max([x in xmlCharacters | x.endIndex]) as max, &lt;br /&gt;
  apoc.text.join([x in xmlCharacters | x.text], &amp;quot;&amp;quot;) as text&lt;br /&gt;
with allText, {&lt;br /&gt;
   index:id(this), &lt;br /&gt;
   startIndex: min, &lt;br /&gt;
   endIndex: max,&lt;br /&gt;
   text: text,&lt;br /&gt;
   type: this._name,&lt;br /&gt;
   attributes: apoc.map.fromPairs([x in keys(this) WHERE not x starts with &amp;quot;_&amp;quot; | [x, this[x]] ])&lt;br /&gt;
} as standoffProperty&lt;br /&gt;
return {text: allText, properties: collect(standoffProperty)};&lt;/div&gt;</summary>
		<author><name>Andreas Kuczera</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=SIG:GraphTechnologies&amp;diff=16494</id>
		<title>SIG:GraphTechnologies</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=SIG:GraphTechnologies&amp;diff=16494"/>
		<updated>2019-01-25T18:03:27Z</updated>

		<summary type="html">&lt;p&gt;Andreas Kuczera: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;As TEI is not a format, though many people think it is. It's a de facto standard that specifies Guidelines for document interchange. Actually the Guidelines are based on the XML but this is only one possible technical way of expressing the phenomenons.&lt;br /&gt;
&lt;br /&gt;
'''The aim of the Graph-SIG is to find a way of expressing the language phenomenons of the TEI in Graphs.''' &lt;br /&gt;
&lt;br /&gt;
* In the graph you can use multi-hierarchical annotations layers.&lt;br /&gt;
* Graph models are very easy to read and understand. So DH-People and “normal” scientists have a level of discussion in common.&lt;br /&gt;
* A Graph can be expressed as RDF so the step from a Graph to linked open data is easy to make.&lt;br /&gt;
&lt;br /&gt;
The main goal of the TEI-Graph-SIG is to model the textual phenomenons of the TEI in a Graph and to develop routines to import TEI-encoded XML-files into graph databases.&lt;br /&gt;
&lt;br /&gt;
In a first step we import a small xml-example into a [https://neo4j.com neo4j] instance using [https://github.com/neo4j-contrib/neo4j-apoc-procedures-function apoc.import.xml]&lt;br /&gt;
&lt;br /&gt;
The example is a [https://seafile.rlp.net/f/6282a26504cc4f079ab9/?dl=1 page] from the [https://www.deutschestextarchiv.de DTA]. Here you can find the [[XML-Testfile]] and this is the [http://www.deutschestextarchiv.de/book/view/patzig_msgermfol841842_1828/?hl=welcher;p=11 Link] to the DTA-Version.&lt;br /&gt;
&lt;br /&gt;
The import to neo4j runs with:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
// Import xml-example from DTA to neo4j&lt;br /&gt;
&lt;br /&gt;
call apoc.xml.import('https://seafile.rlp.net/f/6282a26504cc4f079ab9/?dl=1', {connectCharacters: true, charactersForTag:{lb:' '}, filterLeadingWhitespace: true}) yield node &lt;br /&gt;
&lt;br /&gt;
return node;&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the next picture you can see a small set of the Graph:&lt;br /&gt;
&lt;br /&gt;
[[image:TEI-Graph.png|left|800px|x]]&lt;br /&gt;
&lt;br /&gt;
The next step is to export the data with some [[cypher]] to the Standoff-Property JSON-Format.&lt;br /&gt;
This json can then be imported in the [[https://github.com/argimenes/standoff-properties-editor SPEEDy]] Standoff Property Editor which can be found on [[https://github.com/argimenes/standoff-properties-editor GitHub]].&lt;br /&gt;
&lt;br /&gt;
At the end of the README-Section you can find a [[https://argimenes.github.io/standoff-properties-editor/ Link]] to Test-Istance hosted on [[https://argimenes.github.io/standoff-properties-editor/ Github-Pages]].&lt;br /&gt;
&lt;br /&gt;
Just copy the json in the window below the UNBIND-Button and press BIND.&lt;/div&gt;</summary>
		<author><name>Andreas Kuczera</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=SIG:GraphTechnologies&amp;diff=16493</id>
		<title>SIG:GraphTechnologies</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=SIG:GraphTechnologies&amp;diff=16493"/>
		<updated>2019-01-25T17:55:08Z</updated>

		<summary type="html">&lt;p&gt;Andreas Kuczera: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;As TEI is not a format, though many people think it is. It's a de facto standard that specifies Guidelines for document interchange. Actually the Guidelines are based on the XML but this is only one possible technical way of expressing the phenomenons.&lt;br /&gt;
&lt;br /&gt;
'''The aim of the Graph-SIG is to find a way of expressing the language phenomenons of the TEI in Graphs.''' &lt;br /&gt;
&lt;br /&gt;
* In the graph you can use multi-hierarchical annotations layers.&lt;br /&gt;
* Graph models are very easy to read and understand. So DH-People and “normal” scientists have a level of discussion in common.&lt;br /&gt;
* A Graph can be expressed as RDF so the step from a Graph to linked open data is easy to make.&lt;br /&gt;
&lt;br /&gt;
The main goal of the TEI-Graph-SIG is to model the textual phenomenons of the TEI in a Graph and to develop routines to import TEI-encoded XML-files into graph databases.&lt;br /&gt;
&lt;br /&gt;
In a first step we import a small xml-example into a [https://neo4j.com neo4j] instance using [https://github.com/neo4j-contrib/neo4j-apoc-procedures-function apoc.import.xml]&lt;br /&gt;
&lt;br /&gt;
The example is a [https://seafile.rlp.net/f/6282a26504cc4f079ab9/?dl=1 page] from the [https://www.deutschestextarchiv.de DTA]. Here you can find the [[XML-Testfile]] and this is the [http://www.deutschestextarchiv.de/book/view/patzig_msgermfol841842_1828/?hl=welcher;p=11 Link] to the DTA-Version.&lt;br /&gt;
&lt;br /&gt;
The import to neo4j runs with:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:Example.jpg]]&lt;br /&gt;
&lt;br /&gt;
// Import xml-example from DTA to neo4j&lt;br /&gt;
&lt;br /&gt;
call apoc.xml.import('https://seafile.rlp.net/f/6282a26504cc4f079ab9/?dl=1', {connectCharacters: true, charactersForTag:{lb:' '}, filterLeadingWhitespace: true}) yield node &lt;br /&gt;
&lt;br /&gt;
return node;&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the next picture you can see a small set of the Graph:&lt;br /&gt;
&lt;br /&gt;
[[image:TEI-Graph.png|left|800px|x]]&lt;/div&gt;</summary>
		<author><name>Andreas Kuczera</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=SIG:GraphTechnologies&amp;diff=16492</id>
		<title>SIG:GraphTechnologies</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=SIG:GraphTechnologies&amp;diff=16492"/>
		<updated>2019-01-25T17:54:53Z</updated>

		<summary type="html">&lt;p&gt;Andreas Kuczera: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;As TEI is not a format, though many people think it is. It's a de facto standard that specifies Guidelines for document interchange. Actually the Guidelines are based on the XML but this is only one possible technical way of expressing the phenomenons.&lt;br /&gt;
&lt;br /&gt;
'''The aim of the Graph-SIG is to find a way of expressing the language phenomenons of the TEI in Graphs.''' &lt;br /&gt;
&lt;br /&gt;
* In the graph you can use multi-hierarchical annotations layers.&lt;br /&gt;
* Graph models are very easy to read and understand. So DH-People and “normal” scientists have a level of discussion in common.&lt;br /&gt;
* A Graph can be expressed as RDF so the step from a Graph to linked open data is easy to make.&lt;br /&gt;
&lt;br /&gt;
The main goal of the TEI-Graph-SIG is to model the textual phenomenons of the TEI in a Graph and to develop routines to import TEI-encoded XML-files into graph databases.&lt;br /&gt;
&lt;br /&gt;
In a first step we import a small xml-example into a [https://neo4j.com neo4j] instance using [https://github.com/neo4j-contrib/neo4j-apoc-procedures-function apoc.import.xml]&lt;br /&gt;
&lt;br /&gt;
The example is a [https://seafile.rlp.net/f/6282a26504cc4f079ab9/?dl=1 page] from the [https://www.deutschestextarchiv.de DTA]. Here you can find the [[XML-Testfile]] and this is the [http://www.deutschestextarchiv.de/book/view/patzig_msgermfol841842_1828/?hl=welcher;p=11 Link] to the DTA-Version.&lt;br /&gt;
&lt;br /&gt;
The import to neo4j runs with:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:Example.jpg]]&lt;br /&gt;
&lt;br /&gt;
// Import xml-example from DTA to neo4j&lt;br /&gt;
&lt;br /&gt;
call apoc.xml.import('https://seafile.rlp.net/f/6282a26504cc4f079ab9/?dl=1', {connectCharacters: true, charactersForTag:{lb:' '}, filterLeadingWhitespace: true}) yield node &lt;br /&gt;
&lt;br /&gt;
return node;&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the next picture you can see a small set of the Graph:&lt;br /&gt;
&lt;br /&gt;
[[image:TEI-Graph.png|left|600px|x]]&lt;/div&gt;</summary>
		<author><name>Andreas Kuczera</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=SIG:GraphTechnologies&amp;diff=16491</id>
		<title>SIG:GraphTechnologies</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=SIG:GraphTechnologies&amp;diff=16491"/>
		<updated>2019-01-25T17:54:41Z</updated>

		<summary type="html">&lt;p&gt;Andreas Kuczera: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;As TEI is not a format, though many people think it is. It's a de facto standard that specifies Guidelines for document interchange. Actually the Guidelines are based on the XML but this is only one possible technical way of expressing the phenomenons.&lt;br /&gt;
&lt;br /&gt;
'''The aim of the Graph-SIG is to find a way of expressing the language phenomenons of the TEI in Graphs.''' &lt;br /&gt;
&lt;br /&gt;
* In the graph you can use multi-hierarchical annotations layers.&lt;br /&gt;
* Graph models are very easy to read and understand. So DH-People and “normal” scientists have a level of discussion in common.&lt;br /&gt;
* A Graph can be expressed as RDF so the step from a Graph to linked open data is easy to make.&lt;br /&gt;
&lt;br /&gt;
The main goal of the TEI-Graph-SIG is to model the textual phenomenons of the TEI in a Graph and to develop routines to import TEI-encoded XML-files into graph databases.&lt;br /&gt;
&lt;br /&gt;
In a first step we import a small xml-example into a [https://neo4j.com neo4j] instance using [https://github.com/neo4j-contrib/neo4j-apoc-procedures-function apoc.import.xml]&lt;br /&gt;
&lt;br /&gt;
The example is a [https://seafile.rlp.net/f/6282a26504cc4f079ab9/?dl=1 page] from the [https://www.deutschestextarchiv.de DTA]. Here you can find the [[XML-Testfile]] and this is the [http://www.deutschestextarchiv.de/book/view/patzig_msgermfol841842_1828/?hl=welcher;p=11 Link] to the DTA-Version.&lt;br /&gt;
&lt;br /&gt;
The import to neo4j runs with:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:Example.jpg]]&lt;br /&gt;
&lt;br /&gt;
// Import xml-example from DTA to neo4j&lt;br /&gt;
&lt;br /&gt;
call apoc.xml.import('https://seafile.rlp.net/f/6282a26504cc4f079ab9/?dl=1', {connectCharacters: true, charactersForTag:{lb:' '}, filterLeadingWhitespace: true}) yield node &lt;br /&gt;
&lt;br /&gt;
return node;&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the next picture you can see a small set of the Graph:&lt;br /&gt;
&lt;br /&gt;
[[image:TEI-Graph.png|left|300px|x]]&lt;/div&gt;</summary>
		<author><name>Andreas Kuczera</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=SIG:GraphTechnologies&amp;diff=16490</id>
		<title>SIG:GraphTechnologies</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=SIG:GraphTechnologies&amp;diff=16490"/>
		<updated>2019-01-25T17:54:23Z</updated>

		<summary type="html">&lt;p&gt;Andreas Kuczera: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;As TEI is not a format, though many people think it is. It's a de facto standard that specifies Guidelines for document interchange. Actually the Guidelines are based on the XML but this is only one possible technical way of expressing the phenomenons.&lt;br /&gt;
&lt;br /&gt;
'''The aim of the Graph-SIG is to find a way of expressing the language phenomenons of the TEI in Graphs.''' &lt;br /&gt;
&lt;br /&gt;
* In the graph you can use multi-hierarchical annotations layers.&lt;br /&gt;
* Graph models are very easy to read and understand. So DH-People and “normal” scientists have a level of discussion in common.&lt;br /&gt;
* A Graph can be expressed as RDF so the step from a Graph to linked open data is easy to make.&lt;br /&gt;
&lt;br /&gt;
The main goal of the TEI-Graph-SIG is to model the textual phenomenons of the TEI in a Graph and to develop routines to import TEI-encoded XML-files into graph databases.&lt;br /&gt;
&lt;br /&gt;
In a first step we import a small xml-example into a [https://neo4j.com neo4j] instance using [https://github.com/neo4j-contrib/neo4j-apoc-procedures-function apoc.import.xml]&lt;br /&gt;
&lt;br /&gt;
The example is a [https://seafile.rlp.net/f/6282a26504cc4f079ab9/?dl=1 page] from the [https://www.deutschestextarchiv.de DTA]. Here you can find the [[XML-Testfile]] and this is the [http://www.deutschestextarchiv.de/book/view/patzig_msgermfol841842_1828/?hl=welcher;p=11 Link] to the DTA-Version.&lt;br /&gt;
&lt;br /&gt;
The import to neo4j runs with:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:Example.jpg]]&lt;br /&gt;
&lt;br /&gt;
// Import xml-example from DTA to neo4j&lt;br /&gt;
&lt;br /&gt;
call apoc.xml.import('https://seafile.rlp.net/f/6282a26504cc4f079ab9/?dl=1', {connectCharacters: true, charactersForTag:{lb:' '}, filterLeadingWhitespace: true}) yield node &lt;br /&gt;
&lt;br /&gt;
return node;&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the next picture you can see a small set of the Graph:&lt;br /&gt;
&lt;br /&gt;
[[image:TEI-Graph.png|left|60px|x]]&lt;/div&gt;</summary>
		<author><name>Andreas Kuczera</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=SIG:GraphTechnologies&amp;diff=16489</id>
		<title>SIG:GraphTechnologies</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=SIG:GraphTechnologies&amp;diff=16489"/>
		<updated>2019-01-25T17:51:55Z</updated>

		<summary type="html">&lt;p&gt;Andreas Kuczera: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;As TEI is not a format, though many people think it is. It's a de facto standard that specifies Guidelines for document interchange. Actually the Guidelines are based on the XML but this is only one possible technical way of expressing the phenomenons.&lt;br /&gt;
&lt;br /&gt;
'''The aim of the Graph-SIG is to find a way of expressing the language phenomenons of the TEI in Graphs.''' &lt;br /&gt;
&lt;br /&gt;
* In the graph you can use multi-hierarchical annotations layers.&lt;br /&gt;
* Graph models are very easy to read and understand. So DH-People and “normal” scientists have a level of discussion in common.&lt;br /&gt;
* A Graph can be expressed as RDF so the step from a Graph to linked open data is easy to make.&lt;br /&gt;
&lt;br /&gt;
The main goal of the TEI-Graph-SIG is to model the textual phenomenons of the TEI in a Graph and to develop routines to import TEI-encoded XML-files into graph databases.&lt;br /&gt;
&lt;br /&gt;
In a first step we import a small xml-example into a [https://neo4j.com neo4j] instance using [https://github.com/neo4j-contrib/neo4j-apoc-procedures-function apoc.import.xml]&lt;br /&gt;
&lt;br /&gt;
The example is a [https://seafile.rlp.net/f/6282a26504cc4f079ab9/?dl=1 page] from the [https://www.deutschestextarchiv.de DTA]. Here you can find the [[XML-Testfile]] and this is the [http://www.deutschestextarchiv.de/book/view/patzig_msgermfol841842_1828/?hl=welcher;p=11 Link] to the DTA-Version.&lt;br /&gt;
&lt;br /&gt;
The import to neo4j runs with:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:Example.jpg]]&lt;br /&gt;
&lt;br /&gt;
// Import xml-example from DTA to neo4j&lt;br /&gt;
&lt;br /&gt;
call apoc.xml.import('https://seafile.rlp.net/f/6282a26504cc4f079ab9/?dl=1', {connectCharacters: true, charactersForTag:{lb:' '}, filterLeadingWhitespace: true}) yield node &lt;br /&gt;
&lt;br /&gt;
return node;&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the next picture you can see a small set of the Graph:&lt;br /&gt;
&lt;br /&gt;
[[image:TEI-Graph.png]]&lt;/div&gt;</summary>
		<author><name>Andreas Kuczera</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=File:TEI-Graph.png&amp;diff=16488</id>
		<title>File:TEI-Graph.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=File:TEI-Graph.png&amp;diff=16488"/>
		<updated>2019-01-25T17:49:41Z</updated>

		<summary type="html">&lt;p&gt;Andreas Kuczera: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Andreas Kuczera</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=SIG:GraphTechnologies&amp;diff=16487</id>
		<title>SIG:GraphTechnologies</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=SIG:GraphTechnologies&amp;diff=16487"/>
		<updated>2019-01-25T17:48:59Z</updated>

		<summary type="html">&lt;p&gt;Andreas Kuczera: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;As TEI is not a format, though many people think it is. It's a de facto standard that specifies Guidelines for document interchange. Actually the Guidelines are based on the XML but this is only one possible technical way of expressing the phenomenons.&lt;br /&gt;
&lt;br /&gt;
'''The aim of the Graph-SIG is to find a way of expressing the language phenomenons of the TEI in Graphs.''' &lt;br /&gt;
&lt;br /&gt;
* In the graph you can use multi-hierarchical annotations layers.&lt;br /&gt;
* Graph models are very easy to read and understand. So DH-People and “normal” scientists have a level of discussion in common.&lt;br /&gt;
* A Graph can be expressed as RDF so the step from a Graph to linked open data is easy to make.&lt;br /&gt;
&lt;br /&gt;
The main goal of the TEI-Graph-SIG is to model the textual phenomenons of the TEI in a Graph and to develop routines to import TEI-encoded XML-files into graph databases.&lt;br /&gt;
&lt;br /&gt;
In a first step we import a small xml-example into a [https://neo4j.com neo4j] instance using [https://github.com/neo4j-contrib/neo4j-apoc-procedures-function apoc.import.xml]&lt;br /&gt;
&lt;br /&gt;
The example is a [https://seafile.rlp.net/f/6282a26504cc4f079ab9/?dl=1 page] from the [https://www.deutschestextarchiv.de DTA]. Here you can find the [[XML-Testfile]] and this is the [http://www.deutschestextarchiv.de/book/view/patzig_msgermfol841842_1828/?hl=welcher;p=11 Link] to the DTA-Version.&lt;br /&gt;
&lt;br /&gt;
The import to neo4j runs with:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:Example.jpg]]&lt;br /&gt;
&lt;br /&gt;
// Import xml-example from DTA to neo4j&lt;br /&gt;
&lt;br /&gt;
call apoc.xml.import('https://seafile.rlp.net/f/6282a26504cc4f079ab9/?dl=1', {connectCharacters: true, charactersForTag:{lb:' '}, filterLeadingWhitespace: true}) yield node &lt;br /&gt;
&lt;br /&gt;
return node;&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the next picture you can see a small set of the Graph:&lt;br /&gt;
&lt;br /&gt;
[[image:TEI-Graph.png|http://134.176.70.48/~kuczera/|x]]&lt;/div&gt;</summary>
		<author><name>Andreas Kuczera</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=SIG:GraphTechnologies&amp;diff=16486</id>
		<title>SIG:GraphTechnologies</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=SIG:GraphTechnologies&amp;diff=16486"/>
		<updated>2019-01-25T17:43:18Z</updated>

		<summary type="html">&lt;p&gt;Andreas Kuczera: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;As TEI is not a format, though many people think it is. It's a de facto standard that specifies Guidelines for document interchange. Actually the Guidelines are based on the XML but this is only one possible technical way of expressing the phenomenons.&lt;br /&gt;
&lt;br /&gt;
'''The aim of the Graph-SIG is to find a way of expressing the language phenomenons of the TEI in Graphs.''' &lt;br /&gt;
&lt;br /&gt;
* In the graph you can use multi-hierarchical annotations layers.&lt;br /&gt;
* Graph models are very easy to read and understand. So DH-People and “normal” scientists have a level of discussion in common.&lt;br /&gt;
* A Graph can be expressed as RDF so the step from a Graph to linked open data is easy to make.&lt;br /&gt;
&lt;br /&gt;
The main goal of the TEI-Graph-SIG is to model the textual phenomenons of the TEI in a Graph and to develop routines to import TEI-encoded XML-files into graph databases.&lt;br /&gt;
&lt;br /&gt;
In a first step we import a small xml-example into a [https://neo4j.com neo4j] instance using [https://github.com/neo4j-contrib/neo4j-apoc-procedures-function apoc.import.xml]&lt;br /&gt;
&lt;br /&gt;
The example is a [https://seafile.rlp.net/f/6282a26504cc4f079ab9/?dl=1 page] from the [https://www.deutschestextarchiv.de DTA]. Here you can find the [[XML-Testfile]] and this is the [http://www.deutschestextarchiv.de/book/view/patzig_msgermfol841842_1828/?hl=welcher;p=11 Link] to the DTA-Version.&lt;br /&gt;
&lt;br /&gt;
The import to neo4j runs with:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:Example.jpg]]&lt;br /&gt;
&lt;br /&gt;
// Import xml-example from DTA to neo4j&lt;br /&gt;
&lt;br /&gt;
call apoc.xml.import('https://seafile.rlp.net/f/6282a26504cc4f079ab9/?dl=1', {connectCharacters: true, charactersForTag:{lb:' '}, filterLeadingWhitespace: true}) yield node &lt;br /&gt;
&lt;br /&gt;
return node;&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the next picture you can see a small set of the Graph:&lt;br /&gt;
&lt;br /&gt;
[[image:http://134.176.70.48/~kuczera/TEI-Graph.png]]&lt;/div&gt;</summary>
		<author><name>Andreas Kuczera</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=SIG:GraphTechnologies&amp;diff=16485</id>
		<title>SIG:GraphTechnologies</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=SIG:GraphTechnologies&amp;diff=16485"/>
		<updated>2019-01-25T17:32:34Z</updated>

		<summary type="html">&lt;p&gt;Andreas Kuczera: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;As TEI is not a format, though many people think it is. It's a de facto standard that specifies Guidelines for document interchange. Actually the Guidelines are based on the XML but this is only one possible technical way of expressing the phenomenons.&lt;br /&gt;
&lt;br /&gt;
'''The aim of the Graph-SIG is to find a way of expressing the language phenomenons of the TEI in Graphs.''' &lt;br /&gt;
&lt;br /&gt;
* In the graph you can use multi-hierarchical annotations layers.&lt;br /&gt;
* Graph models are very easy to read and understand. So DH-People and “normal” scientists have a level of discussion in common.&lt;br /&gt;
* A Graph can be expressed as RDF so the step from a Graph to linked open data is easy to make.&lt;br /&gt;
&lt;br /&gt;
The main goal of the TEI-Graph-SIG is to model the textual phenomenons of the TEI in a Graph and to develop routines to import TEI-encoded XML-files into graph databases.&lt;br /&gt;
&lt;br /&gt;
In a first step we import a small xml-example into a [https://neo4j.com neo4j] instance using [https://github.com/neo4j-contrib/neo4j-apoc-procedures-function apoc.import.xml]&lt;br /&gt;
&lt;br /&gt;
The example is a [https://seafile.rlp.net/f/6282a26504cc4f079ab9/?dl=1 page] from the [https://www.deutschestextarchiv.de DTA]. Here you can find the [[XML-Testfile]] and this is the [http://www.deutschestextarchiv.de/book/view/patzig_msgermfol841842_1828/?hl=welcher;p=11 Link] to the DTA-Version.&lt;br /&gt;
&lt;br /&gt;
The import to neo4j runs with:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:Example.jpg]]&lt;br /&gt;
&lt;br /&gt;
// Import xml-example from DTA to neo4j&lt;br /&gt;
&lt;br /&gt;
call apoc.xml.import('https://seafile.rlp.net/f/6282a26504cc4f079ab9/?dl=1', {connectCharacters: true, charactersForTag:{lb:' '}, filterLeadingWhitespace: true}) yield node &lt;br /&gt;
&lt;br /&gt;
return node;&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the next picture you can see a small set of the Graph:&lt;br /&gt;
&lt;br /&gt;
[[http://134.176.70.48/~kuczera/TEI-Graph.png]]&lt;/div&gt;</summary>
		<author><name>Andreas Kuczera</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=SIG:GraphTechnologies&amp;diff=16484</id>
		<title>SIG:GraphTechnologies</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=SIG:GraphTechnologies&amp;diff=16484"/>
		<updated>2019-01-25T17:27:01Z</updated>

		<summary type="html">&lt;p&gt;Andreas Kuczera: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;As TEI is not a format, though many people think it is. It's a de facto standard that specifies Guidelines for document interchange. Actually the Guidelines are based on the XML but this is only one possible technical way of expressing the phenomenons.&lt;br /&gt;
&lt;br /&gt;
'''The aim of the Graph-SIG is to find a way of expressing the language phenomenons of the TEI in Graphs.''' &lt;br /&gt;
&lt;br /&gt;
* In the graph you can use multi-hierarchical annotations layers.&lt;br /&gt;
* Graph models are very easy to read and understand. So DH-People and “normal” scientists have a level of discussion in common.&lt;br /&gt;
* A Graph can be expressed as RDF so the step from a Graph to linked open data is easy to make.&lt;br /&gt;
&lt;br /&gt;
The main goal of the TEI-Graph-SIG is to model the textual phenomenons of the TEI in a Graph and to develop routines to import TEI-encoded XML-files into graph databases.&lt;br /&gt;
&lt;br /&gt;
In a first step we import a small xml-example into a [https://neo4j.com neo4j] instance using [https://github.com/neo4j-contrib/neo4j-apoc-procedures-function apoc.import.xml]&lt;br /&gt;
&lt;br /&gt;
The example is a [https://seafile.rlp.net/f/6282a26504cc4f079ab9/?dl=1 page] from the [https://www.deutschestextarchiv.de DTA]. Here you can find the [[XML-Testfile]] and this is the [http://www.deutschestextarchiv.de/book/view/patzig_msgermfol841842_1828/?hl=welcher;p=11 Link] to the DTA-Version.&lt;br /&gt;
&lt;br /&gt;
The import to neo4j runs with:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:Example.jpg]]&lt;br /&gt;
&lt;br /&gt;
// Import xml-example from DTA to neo4j&lt;br /&gt;
&lt;br /&gt;
call apoc.xml.import('https://seafile.rlp.net/f/6282a26504cc4f079ab9/?dl=1', {connectCharacters: true, charactersForTag:{lb:' '}, filterLeadingWhitespace: true}) yield node &lt;br /&gt;
&lt;br /&gt;
return node;&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the next picture you can see a small set of the Graph:&lt;br /&gt;
&lt;br /&gt;
[[File:http://134.176.70.48/~kuczera/TEI-Graph.png]]&lt;/div&gt;</summary>
		<author><name>Andreas Kuczera</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=SIG:GraphTechnologies&amp;diff=16482</id>
		<title>SIG:GraphTechnologies</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=SIG:GraphTechnologies&amp;diff=16482"/>
		<updated>2019-01-25T14:47:41Z</updated>

		<summary type="html">&lt;p&gt;Andreas Kuczera: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;As TEI is not a format, though many people think it is. It's a de facto standard that specifies Guidelines for document interchange. Actually the Guidelines are based on the XML but this is only one possible technical way of expressing the phenomenons.&lt;br /&gt;
&lt;br /&gt;
'''The aim of the Graph-SIG is to find a way of expressing the language phenomenons of the TEI in Graphs.''' &lt;br /&gt;
&lt;br /&gt;
* In the graph you can use multi-hierarchical annotations layers.&lt;br /&gt;
* Graph models are very easy to read and understand. So DH-People and “normal” scientists have a level of discussion in common.&lt;br /&gt;
* A Graph can be expressed as RDF so the step from a Graph to linked open data is easy to make.&lt;br /&gt;
&lt;br /&gt;
The main goal of the TEI-Graph-SIG is to model the textual phenomenons of the TEI in a Graph and to develop routines to import TEI-encoded XML-files into graph databases.&lt;br /&gt;
&lt;br /&gt;
In a first step we import a small xml-example into a [https://neo4j.com neo4j] instance using [https://github.com/neo4j-contrib/neo4j-apoc-procedures-function apoc.import.xml]&lt;br /&gt;
&lt;br /&gt;
The example is a [https://seafile.rlp.net/f/6282a26504cc4f079ab9/?dl=1 page] from the [https://www.deutschestextarchiv.de DTA]. Here you can find the [[XML-Testfile]] and this is the [http://www.deutschestextarchiv.de/book/view/patzig_msgermfol841842_1828/?hl=welcher;p=11 Link] to the DTA-Version.&lt;br /&gt;
&lt;br /&gt;
The import to neo4j runs with:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:Example.jpg]]&lt;br /&gt;
&lt;br /&gt;
// Import xml-example from DTA to neo4j&lt;br /&gt;
&lt;br /&gt;
call apoc.xml.import('https://seafile.rlp.net/f/6282a26504cc4f079ab9/?dl=1', {connectCharacters: true, charactersForTag:{lb:' '}, filterLeadingWhitespace: true}) yield node &lt;br /&gt;
&lt;br /&gt;
return node;&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;/div&gt;</summary>
		<author><name>Andreas Kuczera</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=SIG:GraphTechnologies&amp;diff=16481</id>
		<title>SIG:GraphTechnologies</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=SIG:GraphTechnologies&amp;diff=16481"/>
		<updated>2019-01-25T14:46:44Z</updated>

		<summary type="html">&lt;p&gt;Andreas Kuczera: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;As TEI is not a format, though many people think it is. It's a de facto standard that specifies Guidelines for document interchange. Actually the Guidelines are based on the XML but this is only one possible technical way of expressing the phenomenons.&lt;br /&gt;
&lt;br /&gt;
'''The aim of the Graph-SIG is to find a way of expressing the language phenomenons of the TEI in Graphs.''' &lt;br /&gt;
&lt;br /&gt;
* In the graph you can use multi-hierarchical annotations layers.&lt;br /&gt;
* Graph models are very easy to read and understand. So DH-People and “normal” scientists have a level of discussion in common.&lt;br /&gt;
* A Graph can be expressed as RDF so the step from a Graph to linked open data is easy to make.&lt;br /&gt;
&lt;br /&gt;
The main goal of the TEI-Graph-SIG is to model the textual phenomenons of the TEI in a Graph and to develop routines to import TEI-encoded XML-files into graph databases.&lt;br /&gt;
&lt;br /&gt;
In a first step we import a small xml-example into a [https://neo4j.com neo4j] instance using [https://github.com/neo4j-contrib/neo4j-apoc-procedures-function apoc.import.xml]&lt;br /&gt;
&lt;br /&gt;
The example is a [https://seafile.rlp.net/f/6282a26504cc4f079ab9/?dl=1 page] from the [https://www.deutschestextarchiv.de DTA]. Here you can find the [[XML-Testfile]] and this is the [http://www.deutschestextarchiv.de/book/view/patzig_msgermfol841842_1828/?hl=welcher;p=11 Link] to the DTA-Version.&lt;br /&gt;
&lt;br /&gt;
The import to neo4j runs with:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
// Import xml-example from DTA to neo4j&lt;br /&gt;
&lt;br /&gt;
call apoc.xml.import('https://seafile.rlp.net/f/6282a26504cc4f079ab9/?dl=1', {connectCharacters: true, charactersForTag:{lb:' '}, filterLeadingWhitespace: true}) yield node &lt;br /&gt;
&lt;br /&gt;
return node;&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;/div&gt;</summary>
		<author><name>Andreas Kuczera</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=SIG:GraphTechnologies&amp;diff=16480</id>
		<title>SIG:GraphTechnologies</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=SIG:GraphTechnologies&amp;diff=16480"/>
		<updated>2019-01-25T14:45:33Z</updated>

		<summary type="html">&lt;p&gt;Andreas Kuczera: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;As TEI is not a format, though many people think it is. It's a de facto standard that specifies Guidelines for document interchange. Actually the Guidelines are based on the XML but this is only one possible technical way of expressing the phenomenons.&lt;br /&gt;
&lt;br /&gt;
'''The aim of the Graph-SIG is to find a way of expressing the language phenomenons of the TEI in Graphs.''' &lt;br /&gt;
&lt;br /&gt;
* In the graph you can use multi-hierarchical annotations layers.&lt;br /&gt;
* Graph models are very easy to read and understand. So DH-People and “normal” scientists have a level of discussion in common.&lt;br /&gt;
* A Graph can be expressed as RDF so the step from a Graph to linked open data is easy to make.&lt;br /&gt;
&lt;br /&gt;
The main goal of the TEI-Graph-SIG is to model the textual phenomenons of the TEI in a Graph and to develop routines to import TEI-encoded XML-files into graph databases.&lt;br /&gt;
&lt;br /&gt;
In a first step we import a small xml-example into a [https://neo4j.com neo4j] instance using [https://github.com/neo4j-contrib/neo4j-apoc-procedures-function apoc.import.xml]&lt;br /&gt;
&lt;br /&gt;
The example is a [https://seafile.rlp.net/f/6282a26504cc4f079ab9/?dl=1 page] from the [https://www.deutschestextarchiv.de DTA]. Here you can find the [[XML-Testfile]] and this is the [http://www.deutschestextarchiv.de/book/view/patzig_msgermfol841842_1828/?hl=welcher;p=11 Link] to the DTA-Version.&lt;br /&gt;
&lt;br /&gt;
The import to neo4j runs with:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
// Import xml-example from DTA to neo4j&lt;br /&gt;
call apoc.xml.import('https://seafile.rlp.net/f/6282a26504cc4f079ab9/?dl=1', {connectCharacters: true, charactersForTag:{lb:' '}, filterLeadingWhitespace: true}) yield node &lt;br /&gt;
return node;&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;/div&gt;</summary>
		<author><name>Andreas Kuczera</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=SIG:GraphTechnologies&amp;diff=16479</id>
		<title>SIG:GraphTechnologies</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=SIG:GraphTechnologies&amp;diff=16479"/>
		<updated>2019-01-25T14:44:29Z</updated>

		<summary type="html">&lt;p&gt;Andreas Kuczera: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;As TEI is not a format, though many people think it is. It's a de facto standard that specifies Guidelines for document interchange. Actually the Guidelines are based on the XML but this is only one possible technical way of expressing the phenomenons.&lt;br /&gt;
&lt;br /&gt;
'''The aim of the Graph-SIG is to find a way of expressing the language phenomenons of the TEI in Graphs.''' &lt;br /&gt;
&lt;br /&gt;
* In the graph you can use multi-hierarchical annotations layers.&lt;br /&gt;
* Graph models are very easy to read and understand. So DH-People and “normal” scientists have a level of discussion in common.&lt;br /&gt;
* A Graph can be expressed as RDF so the step from a Graph to linked open data is easy to make.&lt;br /&gt;
&lt;br /&gt;
The main goal of the TEI-Graph-SIG is to model the textual phenomenons of the TEI in a Graph and to develop routines to import TEI-encoded XML-files into graph databases.&lt;br /&gt;
&lt;br /&gt;
In a first step we import a small xml-example into a [https://neo4j.com neo4j] instance using [https://github.com/neo4j-contrib/neo4j-apoc-procedures-function apoc.import.xml]&lt;br /&gt;
&lt;br /&gt;
The example is a [https://seafile.rlp.net/f/6282a26504cc4f079ab9/?dl=1 page] from the [https://www.deutschestextarchiv.de DTA]. Here you can find the [[XML-Testfile]] and this is the [http://www.deutschestextarchiv.de/book/view/patzig_msgermfol841842_1828/?hl=welcher;p=11 Link] to the DTA-Version.&lt;br /&gt;
&lt;br /&gt;
The import to neo4j runs with:&lt;br /&gt;
&lt;br /&gt;
// Import xml-example from DTA to neo4j&lt;br /&gt;
call apoc.xml.import('https://seafile.rlp.net/f/6282a26504cc4f079ab9/?dl=1', {connectCharacters: true, charactersForTag:{lb:' '}, filterLeadingWhitespace: true}) yield node &lt;br /&gt;
return node;&lt;/div&gt;</summary>
		<author><name>Andreas Kuczera</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=XML-Testfile&amp;diff=16478</id>
		<title>XML-Testfile</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=XML-Testfile&amp;diff=16478"/>
		<updated>2019-01-25T14:40:20Z</updated>

		<summary type="html">&lt;p&gt;Andreas Kuczera: Created page with &amp;quot;&amp;lt;TEI&amp;gt;   &amp;lt;text&amp;gt;     &amp;lt;body&amp;gt;       &amp;lt;div xml:id=&amp;quot;Ms_germ_fol_841&amp;quot; next=&amp;quot;#Ms_germ_fol_842&amp;quot;&amp;gt;         &amp;lt;div type=&amp;quot;session&amp;quot; n=&amp;quot;1&amp;quot;&amp;gt;           &amp;lt;p&amp;gt;&amp;lt;pb facs=&amp;quot;#f0011&amp;quot; n=&amp;quot;7.&amp;quot;/&amp;gt; erblicken wir ei...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;TEI&amp;gt;&lt;br /&gt;
  &amp;lt;text&amp;gt;&lt;br /&gt;
    &amp;lt;body&amp;gt;&lt;br /&gt;
      &amp;lt;div xml:id=&amp;quot;Ms_germ_fol_841&amp;quot; next=&amp;quot;#Ms_germ_fol_842&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;div type=&amp;quot;session&amp;quot; n=&amp;quot;1&amp;quot;&amp;gt;&lt;br /&gt;
          &amp;lt;p&amp;gt;&amp;lt;pb facs=&amp;quot;#f0011&amp;quot; n=&amp;quot;7.&amp;quot;/&amp;gt;&lt;br /&gt;
erblicken wir einen großen Unter&amp;amp;#x017F;chied zwi-&amp;lt;lb/&amp;gt;&lt;br /&gt;
&amp;amp;#x017F;chen den entferntern u. nähern Planeten&amp;lt;lb/&amp;gt;&amp;lt;note place=&amp;quot;left&amp;quot;&amp;gt;&amp;lt;hi rendition=&amp;quot;#u&amp;quot;&amp;gt;Zwei be&amp;amp;#x017F;ondere Planeten-Sy&amp;amp;#x017F;teme&amp;lt;/hi&amp;gt;&amp;lt;lb/&amp;gt;&amp;lt;/note&amp;gt;von der Son&amp;amp;#x0303;e. &amp;lt;hi rendition=&amp;quot;#u&amp;quot;&amp;gt;Dies giebt zwei be&amp;amp;#x017F;ondre&amp;lt;lb/&amp;gt;&lt;br /&gt;
Sÿ&amp;amp;#x017F;teme&amp;lt;/hi&amp;gt;. Die Scheide machen die kleinern&amp;lt;lb/&amp;gt;&lt;br /&gt;
Körper die &amp;amp;#x017F;ich zwi&amp;amp;#x017F;chen Mars u. Jupiter&amp;lt;lb/&amp;gt;&lt;br /&gt;
bewegen, die ein ganz eignes Sy&amp;amp;#x017F;tem&amp;lt;lb/&amp;gt;&lt;br /&gt;
bilden, von denen die Ve&amp;amp;#x017F;ta als die&amp;lt;lb/&amp;gt;&amp;lt;hi rendition=&amp;quot;#u&amp;quot; hand=&amp;quot;#pencil&amp;quot;&amp;gt;größte&amp;lt;/hi&amp;gt; &amp;lt;choice&amp;gt;&amp;lt;sic&amp;gt;ungefahr&amp;lt;/sic&amp;gt;&amp;lt;corr resp=&amp;quot;#CT&amp;quot;&amp;gt;ungefähr&amp;lt;/corr&amp;gt;&amp;lt;/choice&amp;gt; die &amp;lt;choice&amp;gt;&amp;lt;abbr&amp;gt;Oberfl.&amp;lt;/abbr&amp;gt;&amp;lt;expan resp=&amp;quot;#CT&amp;quot;&amp;gt;Oberfläche&amp;lt;/expan&amp;gt;&amp;lt;/choice&amp;gt; von Deut&amp;amp;#x017F;ch-&amp;lt;lb/&amp;gt;&lt;br /&gt;
land hat. Sie haben eine translative Be-&amp;lt;lb/&amp;gt;&lt;br /&gt;
wegung von We&amp;amp;#x017F;ten nach O&amp;amp;#x017F;ten, &amp;amp;#x017F;ind ihrer&amp;lt;lb/&amp;gt;&lt;br /&gt;
Stellung nach ähnlich den &amp;lt;choice&amp;gt;&amp;lt;sic&amp;gt;Com&amp;amp;#x0303;eten&amp;lt;/sic&amp;gt;&amp;lt;corr resp=&amp;quot;#BF&amp;quot;&amp;gt;Cometen&amp;lt;/corr&amp;gt;&amp;lt;/choice&amp;gt;; obgleich&amp;lt;lb/&amp;gt;&lt;br /&gt;
doch keine A&amp;lt;subst&amp;gt;&amp;lt;del rendition=&amp;quot;#ow&amp;quot;&amp;gt;&amp;lt;gap reason=&amp;quot;illegible&amp;quot; unit=&amp;quot;chars&amp;quot; quantity=&amp;quot;1&amp;quot;/&amp;gt;&amp;lt;/del&amp;gt;&amp;lt;add place=&amp;quot;across&amp;quot;&amp;gt;e&amp;lt;/add&amp;gt;&amp;lt;/subst&amp;gt;hnlichkeit anderweit zwi&amp;amp;#x017F;chen&amp;lt;lb/&amp;gt;&lt;br /&gt;
ihnen u. den &amp;lt;choice&amp;gt;&amp;lt;abbr&amp;gt;&amp;lt;choice&amp;gt;&amp;lt;sic&amp;gt;Com&amp;amp;#x0303;et&amp;amp;#xFFFC;&amp;lt;/sic&amp;gt;&amp;lt;corr resp=&amp;quot;#BF&amp;quot;&amp;gt;Comet&amp;amp;#xFFFC;&amp;lt;/corr&amp;gt;&amp;lt;/choice&amp;gt;&amp;lt;/abbr&amp;gt;&amp;lt;expan resp=&amp;quot;#BF&amp;quot;&amp;gt;&amp;lt;choice&amp;gt;&amp;lt;sic&amp;gt;Com&amp;amp;#x0303;eten&amp;lt;/sic&amp;gt;&amp;lt;corr resp=&amp;quot;#BF&amp;quot;&amp;gt;Cometen&amp;lt;/corr&amp;gt;&amp;lt;/choice&amp;gt;&amp;lt;/expan&amp;gt;&amp;lt;/choice&amp;gt; i&amp;amp;#x017F;t, wie überhaupt&amp;lt;lb/&amp;gt;&lt;br /&gt;
kein Uebergang zwi&amp;amp;#x017F;chen Planeten u. Co-&amp;lt;lb/&amp;gt;&lt;br /&gt;
meten gefunden wird u. keine po&amp;amp;#x017F;itive&amp;lt;lb/&amp;gt;&amp;lt;note place=&amp;quot;left&amp;quot;&amp;gt;&amp;lt;hi rendition=&amp;quot;#u&amp;quot;&amp;gt;Er&amp;amp;#x017F;tes Sy&amp;amp;#x017F;tem&amp;lt;lb/&amp;gt;&lt;br /&gt;
characteri&amp;amp;#x017F;t. Merkmale&amp;lt;/hi&amp;gt;&amp;lt;lb/&amp;gt;&amp;lt;/note&amp;gt;Aehnlichkeit. &amp;lt;hi rendition=&amp;quot;#u&amp;quot;&amp;gt;Jn die&amp;amp;#x017F;em doppelten Sy&amp;amp;#x017F;tem&amp;lt;lb/&amp;gt;&lt;br /&gt;
der Planeten gehören zu&amp;amp;#x017F;am&amp;amp;#x0303;en: Merkur,&amp;lt;lb/&amp;gt;&lt;br /&gt;
Venus, Erde, Mars.&amp;lt;/hi&amp;gt; Sie haben das&amp;lt;lb/&amp;gt;&lt;br /&gt;
gemein&amp;amp;#x017F;ame der be&amp;amp;#x017F;ondern Dichtigkeit,&amp;lt;lb/&amp;gt;&lt;br /&gt;
wie &amp;lt;hi rendition=&amp;quot;#aq&amp;quot;&amp;gt;Platina&amp;lt;/hi&amp;gt;, Magnet&amp;amp;#x017F;tein u. dgl.; &amp;amp;#x017F;ie&amp;lt;lb/&amp;gt;&amp;lt;subst&amp;gt;&amp;lt;del rendition=&amp;quot;#s&amp;quot;&amp;gt;rotiren&amp;lt;/del&amp;gt;&amp;lt;add place=&amp;quot;superlinear&amp;quot;&amp;gt;bewegen &amp;amp;#x017F;ich&amp;lt;/add&amp;gt;&amp;lt;/subst&amp;gt; viel ge&amp;amp;#x017F;chwinder &amp;lt;metamark/&amp;gt;&amp;lt;add place=&amp;quot;superlinear&amp;quot;&amp;gt;um die Son&amp;amp;#x0303;e&amp;lt;/add&amp;gt;, &amp;amp;#x017F;ind mond-&amp;lt;lb/&amp;gt;&lt;br /&gt;
armer |: bloß die Erde hat einen &amp;lt;choice&amp;gt;&amp;lt;abbr&amp;gt;Trabant&amp;amp;#xFFFC;&amp;lt;/abbr&amp;gt;&amp;lt;expan resp=&amp;quot;#BF&amp;quot;&amp;gt;Trabanten&amp;lt;/expan&amp;gt;&amp;lt;/choice&amp;gt; :|,&amp;lt;lb/&amp;gt;&lt;br /&gt;
an den Polen abgeplattet. Anders&amp;lt;lb/&amp;gt;&lt;br /&gt;
verhält es &amp;amp;#x017F;ich mit den Planeten auf der&amp;lt;lb/&amp;gt;&lt;br /&gt;
Bahn jen&amp;amp;#x017F;eits der kleinen Planeten.&amp;lt;/p&amp;gt;&amp;lt;lb/&amp;gt;&lt;br /&gt;
        &amp;lt;/div&amp;gt;&lt;br /&gt;
      &amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;/body&amp;gt;&lt;br /&gt;
  &amp;lt;/text&amp;gt;&lt;br /&gt;
&amp;lt;/TEI&amp;gt;&lt;/div&gt;</summary>
		<author><name>Andreas Kuczera</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=SIG:GraphTechnologies&amp;diff=16477</id>
		<title>SIG:GraphTechnologies</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=SIG:GraphTechnologies&amp;diff=16477"/>
		<updated>2019-01-25T14:39:55Z</updated>

		<summary type="html">&lt;p&gt;Andreas Kuczera: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;As TEI is not a format, though many people think it is. It's a de facto standard that specifies Guidelines for document interchange. Actually the Guidelines are based on the XML but this is only one possible technical way of expressing the phenomenons.&lt;br /&gt;
&lt;br /&gt;
'''The aim of the Graph-SIG is to find a way of expressing the language phenomenons of the TEI in Graphs.''' &lt;br /&gt;
&lt;br /&gt;
* In the graph you can use multi-hierarchical annotations layers.&lt;br /&gt;
* Graph models are very easy to read and understand. So DH-People and “normal” scientists have a level of discussion in common.&lt;br /&gt;
* A Graph can be expressed as RDF so the step from a Graph to linked open data is easy to make.&lt;br /&gt;
&lt;br /&gt;
The main goal of the TEI-Graph-SIG is to model the textual phenomenons of the TEI in a Graph and to develop routines to import TEI-encoded XML-files into graph databases.&lt;br /&gt;
&lt;br /&gt;
In a first step we import a small xml-example into a [https://neo4j.com neo4j] instance using [https://github.com/neo4j-contrib/neo4j-apoc-procedures-function apoc.import.xml]&lt;br /&gt;
&lt;br /&gt;
The example is a [https://seafile.rlp.net/f/6282a26504cc4f079ab9/?dl=1 page] from the [https://www.deutschestextarchiv.de DTA]. Here you can find the [[XML-Testfile]] and this is the [http://www.deutschestextarchiv.de/book/view/patzig_msgermfol841842_1828/?hl=welcher;p=11 Link] to the DTA-Version.&lt;/div&gt;</summary>
		<author><name>Andreas Kuczera</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=SIG:GraphTechnologies&amp;diff=16476</id>
		<title>SIG:GraphTechnologies</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=SIG:GraphTechnologies&amp;diff=16476"/>
		<updated>2019-01-25T14:37:44Z</updated>

		<summary type="html">&lt;p&gt;Andreas Kuczera: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;As TEI is not a format, though many people think it is. It's a de facto standard that specifies Guidelines for document interchange. Actually the Guidelines are based on the XML but this is only one possible technical way of expressing the phenomenons.&lt;br /&gt;
&lt;br /&gt;
'''The aim of the Graph-SIG is to find a way of expressing the language phenomenons of the TEI in Graphs.''' &lt;br /&gt;
&lt;br /&gt;
* In the graph you can use multi-hierarchical annotations layers.&lt;br /&gt;
* Graph models are very easy to read and understand. So DH-People and “normal” scientists have a level of discussion in common.&lt;br /&gt;
* A Graph can be expressed as RDF so the step from a Graph to linked open data is easy to make.&lt;br /&gt;
&lt;br /&gt;
The main goal of the TEI-Graph-SIG is to model the textual phenomenons of the TEI in a Graph and to develop routines to import TEI-encoded XML-files into graph databases.&lt;br /&gt;
&lt;br /&gt;
In a first step we import a small xml-example into a [https://neo4j.com neo4j] instance using [https://github.com/neo4j-contrib/neo4j-apoc-procedures-function apoc.import.xml]&lt;br /&gt;
&lt;br /&gt;
The example is a [https://seafile.rlp.net/f/6282a26504cc4f079ab9/?dl=1 page] from the [https://www.deutschestextarchiv.de DTA]. [Here] you can find the XML.&lt;/div&gt;</summary>
		<author><name>Andreas Kuczera</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=SIG:GraphTechnologies&amp;diff=16475</id>
		<title>SIG:GraphTechnologies</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=SIG:GraphTechnologies&amp;diff=16475"/>
		<updated>2019-01-25T14:33:48Z</updated>

		<summary type="html">&lt;p&gt;Andreas Kuczera: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;As TEI is not a format, though many people think it is. It's a de facto standard that specifies Guidelines for document interchange. Actually the Guidelines are based on the XML but this is only one possible technical way of expressing the phenomenons.&lt;br /&gt;
&lt;br /&gt;
'''The aim of the Graph-SIG is to find a way of expressing the language phenomenons of the TEI in Graphs.''' &lt;br /&gt;
&lt;br /&gt;
* In the graph you can use multi-hierarchical annotations layers.&lt;br /&gt;
* Graph models are very easy to read and understand. So DH-People and “normal” scientists have a level of discussion in common.&lt;br /&gt;
* A Graph can be expressed as RDF so the step from a Graph to linked open data is easy to make.&lt;br /&gt;
&lt;br /&gt;
The main goal of the TEI-Graph-SIG is to model the textual phenomenons of the TEI in a Graph and to develop routines to import TEI-encoded XML-files into graph databases.&lt;br /&gt;
&lt;br /&gt;
In a first step we import a small xml-example into a [https://neo4j.com neo4j] instance using the [https://github.com/neo4j-contrib/neo4j-apoc-procedures-function apoc.load.xml]&lt;/div&gt;</summary>
		<author><name>Andreas Kuczera</name></author>
		
	</entry>
</feed>