Structure changes
parent
5aef72d90b
commit
faf305dcf5
Binary file not shown.
@ -0,0 +1,7 @@
|
|||||||
|
# Einleitung
|
||||||
|
|
||||||
|
## Motivation und Ausgangslage
|
||||||
|
|
||||||
|
## Zielsetzung
|
||||||
|
|
||||||
|
## Aufbau der Arbeit
|
@ -0,0 +1,27 @@
|
|||||||
|
# Technsiche Grundlagen
|
||||||
|
|
||||||
|
## Methoden zur Positionsbestimmung
|
||||||
|
|
||||||
|
- Wie kann die Position bestimmt werden?
|
||||||
|
|
||||||
|
### Trilateration
|
||||||
|
|
||||||
|
### Triangulation
|
||||||
|
|
||||||
|
- Wie kann die Entfernung zum Referenzepunkt bestimmt werden?
|
||||||
|
|
||||||
|
### Angle of Arrival
|
||||||
|
|
||||||
|
### Time of Arrival
|
||||||
|
|
||||||
|
TOA [@Akcan_2006a] finds the distance between a transmitter and a receiver using one way propagation delay by exploiting the relationship. Accurate Distance Estimation between Things: A Self-correcting Approach between the light speed and the carrier frequency of the signal. However, TOA positioning requires an accurately synchronized clock as 1.0 μs error in time equals to 300 meters in terms of distance [12]. TOA will not be used for low cost devices because the high accuracy clock costs quite a lot. It is difficult to say that TOA will be widely applied to solve the accurate positioning problem.
|
||||||
|
|
||||||
|
## Bluetooth
|
||||||
|
|
||||||
|
- Wie funktioniert das BLE Advertising?
|
||||||
|
|
||||||
|
## Fehlerkorrekturen
|
||||||
|
|
||||||
|
- Wie funktioniert der Kallmannfilter?
|
||||||
|
|
||||||
|
## Beschreibung der eigenen Idee/Motivation
|
@ -0,0 +1 @@
|
|||||||
|
# Konzeption und Anforderungsanalyse
|
@ -0,0 +1,13 @@
|
|||||||
|
# Testaufbau
|
||||||
|
|
||||||
|
In diesem Kapitel wird der Versuchsaufbau beschrieben. Dieser Orientiert sich an den Anforderungen aus dem Vorherigen Kapitel. Im Fokus steht hierbei die Umsetzung eines einfach um zu setzenden Versuchsaufbau der eine möglichst genaue Messung ermöglicht.
|
||||||
|
|
||||||
|
## Anordnung der Beacon
|
||||||
|
|
||||||
|
Die Bluetooth Beacon werden in einem gleichseitigen Dreieck mit einer Seitenlänge von 1m auf einer Ebenen fläche angeordnet (Abbildung \ref{fig:versuchsaufbau}). Hierdurch empfängt jeder Beacon von seinen Nachbarn den RSSI Wert auf 1m Entfernung und kann diesen zur Kalibrierung an das Smartphone übermitteln. Dieser Versuchsaufbau ermöglicht es, das System um weitere Beacon zu erweitern. Auch ließe sich hierdurch eine 6 Seitige Pyramidenform umsetzen um die Messung auf die 3. Dimmension aus zu weiten.
|
||||||
|
|
||||||
|
## Messpunkte
|
||||||
|
|
||||||
|
Der Versuchsaufbau wird, wie in Abbildung \ref{fig:zones} dargestellt, in drei Zonen eingeteilt. Die Zonen ergeben sich aus der Geometrie des Versuchsaufbaus. Zone 1 hat einen Radius von 0.289m und wird durch das gleichseitige Dreieck begrenzt. In dieser Zone ist kein Beacon weiter als 0.866m vom Smartphone entfernt. Zone 2 misst einen Radius von 0.577m und schließt das Dreieck ein. Die maximale Distanz zu einem Beacon beträgt 1.154m. Die Zone 3 wird durch die maximale Entfernung von 1.5m (!!! 1.5m kommen aus dem Paper für das Verfahren zur Kalibrierenug !!!) zu einem Beacon bestimmt. Ihr Radius beträgt damit 1.067m. Ein weiterer Messpunkt ist auf einer der Seiten des Dreiecks zu finden. Dieser wurde gewählt um den Einfluss des Smartphones auf die Funkstrecke der Beacon auf dieser Seite zu ermitteln.
|
||||||
|
|
||||||
|
![Aufteilung des Versuchsaufbaus in Zonen und Messpunkte \label{fig:zones}](../static/zonen_und_messpunkte.png)
|
@ -0,0 +1 @@
|
|||||||
|
# Umsetzung der Filteralgorithmen
|
@ -0,0 +1 @@
|
|||||||
|
# Testaufbau und Durchführung
|
@ -0,0 +1 @@
|
|||||||
|
# Ergebnisse
|
@ -0,0 +1,5 @@
|
|||||||
|
# Zusammenfassung und Ausblick
|
||||||
|
|
||||||
|
## Zusammenfassung und Fazit
|
||||||
|
|
||||||
|
## Ausblick
|
@ -0,0 +1,63 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
##################################################
|
||||||
|
# Buildscript for Github-Action and Pandoc
|
||||||
|
#
|
||||||
|
# author: Sebastian Preisner <kreativmonkey@calyrium.org>
|
||||||
|
# date: 11.11.2021
|
||||||
|
##################################################
|
||||||
|
|
||||||
|
# Installing the neccessary tex packages in the action container
|
||||||
|
echo "Installing neccessary tex packages"
|
||||||
|
tlmgr update --self
|
||||||
|
tlmgr install lastpage \
|
||||||
|
titling \
|
||||||
|
|| exit 1
|
||||||
|
|
||||||
|
|
||||||
|
# Creating the folders to build the files in
|
||||||
|
if [ ! -d output ]; then
|
||||||
|
mkdir output
|
||||||
|
fi
|
||||||
|
if [ ! -d output/pdf ]; then
|
||||||
|
# Automated pdf generating in the pdf folder
|
||||||
|
mkdir output/pdf
|
||||||
|
fi
|
||||||
|
if [ ! -d output/tex ]; then
|
||||||
|
# Automated tex generating for debugging
|
||||||
|
mkdir output/tex
|
||||||
|
fi
|
||||||
|
|
||||||
|
dir=$(echo $PWD)
|
||||||
|
template="template/wbh.tex" # Setting the template path
|
||||||
|
logo="static/logo-wbh.png" # setting the logopath for the template
|
||||||
|
|
||||||
|
|
||||||
|
# Build files by folder
|
||||||
|
pandoc_build_by_folder() {
|
||||||
|
folder=$1
|
||||||
|
|
||||||
|
cd "$dir/$folder"
|
||||||
|
echo "..... $folder.tex"
|
||||||
|
pandoc -s --template "../$template" -V logo="../${logo}" -o "../output/tex/$folder.tex" "$dir/$folder/meta.md" "$dir/$folder/README.md"
|
||||||
|
echo "..... $folder.pdf"
|
||||||
|
pandoc -s --template "../$template" -V logo="../${logo}" -o "../output/pdf/$folder.pdf" "$dir/$folder/meta.md" "$dir/$folder/README.md"
|
||||||
|
cd "$dir"
|
||||||
|
}
|
||||||
|
|
||||||
|
pandoc_build_by_filelist()
|
||||||
|
{
|
||||||
|
folder=$1
|
||||||
|
|
||||||
|
cd "$dir/$folder"
|
||||||
|
echo "..... $folder.tex"
|
||||||
|
pandoc -s --template "../$template" -V logo="../${logo}" -o "../output/tex/$folder.tex" "$dir/$folder/meta.md"
|
||||||
|
echo "..... $folder.pdf"
|
||||||
|
pandoc -s --template "../$template" -V logo="../${logo}" -o "../output/pdf/$folder.pdf" "$dir/$folder/meta.md"
|
||||||
|
cd "$dir"
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
# Build the Files with Pandoc
|
||||||
|
echo "Creating Files"
|
||||||
|
|
||||||
|
pandoc_build_by_folder "Expose"
|
@ -0,0 +1,308 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<style xmlns="http://purl.org/net/xbiblio/csl" class="in-text" version="1.0" demote-non-dropping-particle="sort-only" default-locale="en-GB">
|
||||||
|
<info>
|
||||||
|
<title>Cite Them Right 10th edition - Harvard</title>
|
||||||
|
<id>http://www.zotero.org/styles/harvard-cite-them-right</id>
|
||||||
|
<link href="http://www.zotero.org/styles/harvard-cite-them-right" rel="self"/>
|
||||||
|
<link href="http://www.zotero.org/styles/harvard-university-of-greenwich" rel="template"/>
|
||||||
|
<link href="http://www.citethemrightonline.com/" rel="documentation"/>
|
||||||
|
<author>
|
||||||
|
<name>Sebastian Karcher</name>
|
||||||
|
</author>
|
||||||
|
<contributor>
|
||||||
|
<name>Scott Wagstaff</name>
|
||||||
|
<uri>http://www.mendeley.com/profiles/scott-wagstaff/</uri>
|
||||||
|
</contributor>
|
||||||
|
<category citation-format="author-date"/>
|
||||||
|
<category field="generic-base"/>
|
||||||
|
<summary>Harvard according to Cite Them Right, 10th edition.</summary>
|
||||||
|
<updated>2017-05-17T00:00:00+00:00</updated>
|
||||||
|
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
|
||||||
|
</info>
|
||||||
|
<locale xml:lang="en-GB">
|
||||||
|
<terms>
|
||||||
|
<term name="editor" form="short">
|
||||||
|
<single>ed.</single>
|
||||||
|
<multiple>eds</multiple>
|
||||||
|
</term>
|
||||||
|
<term name="editortranslator" form="verb">edited and translated by</term>
|
||||||
|
<term name="edition" form="short">edn.</term>
|
||||||
|
</terms>
|
||||||
|
</locale>
|
||||||
|
<macro name="editor">
|
||||||
|
<choose>
|
||||||
|
<if type="chapter paper-conference" match="any">
|
||||||
|
<names variable="container-author" delimiter=", " suffix=", ">
|
||||||
|
<name and="text" initialize-with=". " delimiter=", " sort-separator=", " name-as-sort-order="all"/>
|
||||||
|
</names>
|
||||||
|
<choose>
|
||||||
|
<if variable="container-author" match="none">
|
||||||
|
<names variable="editor translator" delimiter=", ">
|
||||||
|
<name and="text" initialize-with=". " delimiter=", " sort-separator=", " name-as-sort-order="all"/>
|
||||||
|
<label form="short" prefix=" (" suffix=")"/>
|
||||||
|
</names>
|
||||||
|
</if>
|
||||||
|
</choose>
|
||||||
|
</if>
|
||||||
|
</choose>
|
||||||
|
</macro>
|
||||||
|
<macro name="secondary-contributors">
|
||||||
|
<choose>
|
||||||
|
<if type="chapter paper-conference" match="none">
|
||||||
|
<names variable="editor translator" delimiter=". ">
|
||||||
|
<label form="verb" text-case="capitalize-first" suffix=" "/>
|
||||||
|
<name and="text" initialize-with=". " delimiter=", "/>
|
||||||
|
</names>
|
||||||
|
</if>
|
||||||
|
<else-if variable="container-author" match="any">
|
||||||
|
<names variable="editor translator" delimiter=". ">
|
||||||
|
<label form="verb" text-case="capitalize-first" suffix=" "/>
|
||||||
|
<name and="text" initialize-with=". " delimiter=", "/>
|
||||||
|
</names>
|
||||||
|
</else-if>
|
||||||
|
</choose>
|
||||||
|
</macro>
|
||||||
|
<macro name="author">
|
||||||
|
<names variable="author">
|
||||||
|
<name and="text" delimiter-precedes-last="never" initialize-with=". " name-as-sort-order="all"/>
|
||||||
|
<label form="short" prefix=" (" suffix=")"/>
|
||||||
|
<et-al font-style="italic"/>
|
||||||
|
<substitute>
|
||||||
|
<names variable="editor"/>
|
||||||
|
<names variable="translator"/>
|
||||||
|
<choose>
|
||||||
|
<if type="article-newspaper article-magazine" match="any">
|
||||||
|
<text variable="container-title" text-case="title" font-style="italic"/>
|
||||||
|
</if>
|
||||||
|
<else>
|
||||||
|
<text macro="title"/>
|
||||||
|
</else>
|
||||||
|
</choose>
|
||||||
|
</substitute>
|
||||||
|
</names>
|
||||||
|
</macro>
|
||||||
|
<macro name="author-short">
|
||||||
|
<names variable="author">
|
||||||
|
<name form="short" and="text" delimiter=", " delimiter-precedes-last="never" initialize-with=". "/>
|
||||||
|
<et-al font-style="italic"/>
|
||||||
|
<substitute>
|
||||||
|
<names variable="editor"/>
|
||||||
|
<names variable="translator"/>
|
||||||
|
<choose>
|
||||||
|
<if type="article-newspaper article-magazine" match="any">
|
||||||
|
<text variable="container-title" text-case="title" font-style="italic"/>
|
||||||
|
</if>
|
||||||
|
<else>
|
||||||
|
<text macro="title"/>
|
||||||
|
</else>
|
||||||
|
</choose>
|
||||||
|
</substitute>
|
||||||
|
</names>
|
||||||
|
</macro>
|
||||||
|
<macro name="access">
|
||||||
|
<choose>
|
||||||
|
<if variable="DOI">
|
||||||
|
<text variable="DOI" prefix="doi: "/>
|
||||||
|
</if>
|
||||||
|
<else-if variable="URL">
|
||||||
|
<text term="available at" suffix=": " text-case="capitalize-first"/>
|
||||||
|
<text variable="URL"/>
|
||||||
|
<group prefix=" (" delimiter=": " suffix=")">
|
||||||
|
<text term="accessed" text-case="capitalize-first"/>
|
||||||
|
<date form="text" variable="accessed">
|
||||||
|
<date-part name="day"/>
|
||||||
|
<date-part name="month"/>
|
||||||
|
<date-part name="year"/>
|
||||||
|
</date>
|
||||||
|
</group>
|
||||||
|
</else-if>
|
||||||
|
</choose>
|
||||||
|
</macro>
|
||||||
|
<macro name="number-volumes">
|
||||||
|
<choose>
|
||||||
|
<if variable="volume" match="none">
|
||||||
|
<group delimiter=" " prefix="(" suffix=")">
|
||||||
|
<text variable="number-of-volumes"/>
|
||||||
|
<label variable="volume" form="short" strip-periods="true"/>
|
||||||
|
</group>
|
||||||
|
</if>
|
||||||
|
</choose>
|
||||||
|
</macro>
|
||||||
|
<macro name="title">
|
||||||
|
<choose>
|
||||||
|
<if type="bill book graphic legal_case legislation motion_picture report song thesis webpage" match="any">
|
||||||
|
<group delimiter=". ">
|
||||||
|
<group delimiter=" ">
|
||||||
|
<text variable="title" font-style="italic"/>
|
||||||
|
<text macro="number-volumes"/>
|
||||||
|
</group>
|
||||||
|
<text macro="edition"/>
|
||||||
|
</group>
|
||||||
|
</if>
|
||||||
|
<else>
|
||||||
|
<text variable="title" form="long" quotes="true"/>
|
||||||
|
</else>
|
||||||
|
</choose>
|
||||||
|
</macro>
|
||||||
|
<macro name="publisher">
|
||||||
|
<choose>
|
||||||
|
<if type="thesis">
|
||||||
|
<group delimiter=". ">
|
||||||
|
<text variable="genre"/>
|
||||||
|
<text variable="publisher"/>
|
||||||
|
</group>
|
||||||
|
</if>
|
||||||
|
<else-if type="report">
|
||||||
|
<group delimiter=". ">
|
||||||
|
<group delimiter=" ">
|
||||||
|
<text variable="genre"/>
|
||||||
|
<text variable="number"/>
|
||||||
|
</group>
|
||||||
|
<group delimiter=": ">
|
||||||
|
<text variable="publisher-place"/>
|
||||||
|
<text variable="publisher"/>
|
||||||
|
</group>
|
||||||
|
</group>
|
||||||
|
</else-if>
|
||||||
|
<else-if type="article-newspaper article-magazine" match="none">
|
||||||
|
<group delimiter=" ">
|
||||||
|
<group delimiter=", ">
|
||||||
|
<choose>
|
||||||
|
<if type="speech" variable="event" match="any">
|
||||||
|
<text variable="event" font-style="italic"/>
|
||||||
|
</if>
|
||||||
|
</choose>
|
||||||
|
<group delimiter=": ">
|
||||||
|
<text variable="publisher-place"/>
|
||||||
|
<text variable="publisher"/>
|
||||||
|
</group>
|
||||||
|
</group>
|
||||||
|
<group prefix="(" suffix=")" delimiter=", ">
|
||||||
|
<text variable="collection-title"/>
|
||||||
|
<text variable="collection-number"/>
|
||||||
|
</group>
|
||||||
|
</group>
|
||||||
|
</else-if>
|
||||||
|
</choose>
|
||||||
|
</macro>
|
||||||
|
<macro name="year-date">
|
||||||
|
<choose>
|
||||||
|
<if variable="issued">
|
||||||
|
<date variable="issued">
|
||||||
|
<date-part name="year"/>
|
||||||
|
</date>
|
||||||
|
<text variable="year-suffix"/>
|
||||||
|
</if>
|
||||||
|
<else>
|
||||||
|
<text term="no date"/>
|
||||||
|
<text variable="year-suffix" prefix=" "/>
|
||||||
|
</else>
|
||||||
|
</choose>
|
||||||
|
</macro>
|
||||||
|
<macro name="locator">
|
||||||
|
<choose>
|
||||||
|
<if type="article-journal">
|
||||||
|
<text variable="volume"/>
|
||||||
|
<text variable="issue" prefix="(" suffix=")"/>
|
||||||
|
</if>
|
||||||
|
</choose>
|
||||||
|
</macro>
|
||||||
|
<macro name="published-date">
|
||||||
|
<choose>
|
||||||
|
<if type="article-newspaper article-magazine post-weblog speech" match="any">
|
||||||
|
<date variable="issued">
|
||||||
|
<date-part name="day" suffix=" "/>
|
||||||
|
<date-part name="month" form="long"/>
|
||||||
|
</date>
|
||||||
|
</if>
|
||||||
|
</choose>
|
||||||
|
</macro>
|
||||||
|
<macro name="pages">
|
||||||
|
<choose>
|
||||||
|
<if type="chapter paper-conference article-journal article article-magazine article-newspaper book review review-book report" match="any">
|
||||||
|
<group delimiter=" ">
|
||||||
|
<label variable="page" form="short"/>
|
||||||
|
<text variable="page"/>
|
||||||
|
</group>
|
||||||
|
</if>
|
||||||
|
</choose>
|
||||||
|
</macro>
|
||||||
|
<macro name="container-title">
|
||||||
|
<choose>
|
||||||
|
<if variable="container-title">
|
||||||
|
<group delimiter=". ">
|
||||||
|
<text variable="container-title" font-style="italic"/>
|
||||||
|
<text macro="edition"/>
|
||||||
|
</group>
|
||||||
|
</if>
|
||||||
|
</choose>
|
||||||
|
</macro>
|
||||||
|
<macro name="edition">
|
||||||
|
<choose>
|
||||||
|
<if is-numeric="edition">
|
||||||
|
<group delimiter=" ">
|
||||||
|
<number variable="edition" form="ordinal"/>
|
||||||
|
<text term="edition" form="short" strip-periods="true"/>
|
||||||
|
</group>
|
||||||
|
</if>
|
||||||
|
<else>
|
||||||
|
<text variable="edition"/>
|
||||||
|
</else>
|
||||||
|
</choose>
|
||||||
|
</macro>
|
||||||
|
<macro name="container-prefix">
|
||||||
|
<choose>
|
||||||
|
<if type="chapter paper-conference" match="any">
|
||||||
|
<text term="in"/>
|
||||||
|
</if>
|
||||||
|
</choose>
|
||||||
|
</macro>
|
||||||
|
<citation et-al-min="4" et-al-use-first="1" disambiguate-add-year-suffix="true" disambiguate-add-names="true" disambiguate-add-givenname="true" collapse="year">
|
||||||
|
<sort>
|
||||||
|
<key macro="year-date"/>
|
||||||
|
</sort>
|
||||||
|
<layout prefix="(" suffix=")" delimiter="; ">
|
||||||
|
<group delimiter=", ">
|
||||||
|
<group delimiter=", ">
|
||||||
|
<text macro="author-short"/>
|
||||||
|
<text macro="year-date"/>
|
||||||
|
</group>
|
||||||
|
<group>
|
||||||
|
<label variable="locator" form="short" suffix=" "/>
|
||||||
|
<text variable="locator"/>
|
||||||
|
</group>
|
||||||
|
</group>
|
||||||
|
</layout>
|
||||||
|
</citation>
|
||||||
|
<bibliography and="text" et-al-min="4" et-al-use-first="1">
|
||||||
|
<sort>
|
||||||
|
<key macro="author"/>
|
||||||
|
<key macro="year-date"/>
|
||||||
|
<key variable="title"/>
|
||||||
|
</sort>
|
||||||
|
<layout suffix=".">
|
||||||
|
<group delimiter=". ">
|
||||||
|
<group delimiter=" ">
|
||||||
|
<text macro="author"/>
|
||||||
|
<text macro="year-date" prefix="(" suffix=")"/>
|
||||||
|
<group delimiter=", ">
|
||||||
|
<text macro="title"/>
|
||||||
|
<group delimiter=" ">
|
||||||
|
<text macro="container-prefix"/>
|
||||||
|
<text macro="editor"/>
|
||||||
|
<text macro="container-title"/>
|
||||||
|
</group>
|
||||||
|
</group>
|
||||||
|
</group>
|
||||||
|
<text macro="secondary-contributors"/>
|
||||||
|
<text macro="publisher"/>
|
||||||
|
</group>
|
||||||
|
<group delimiter=", " prefix=", ">
|
||||||
|
<text macro="locator"/>
|
||||||
|
<text macro="published-date"/>
|
||||||
|
<text macro="pages"/>
|
||||||
|
</group>
|
||||||
|
<text macro="access" prefix=". "/>
|
||||||
|
</layout>
|
||||||
|
</bibliography>
|
||||||
|
</style>
|
@ -0,0 +1,9 @@
|
|||||||
|
with (import <nixpkgs> {});
|
||||||
|
mkShell {
|
||||||
|
buildInputs = [
|
||||||
|
texlive.combined.scheme-full
|
||||||
|
pandoc
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
|
@ -0,0 +1,265 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
width="210mm"
|
||||||
|
height="297mm"
|
||||||
|
viewBox="0 0 210 297"
|
||||||
|
version="1.1"
|
||||||
|
id="svg5"
|
||||||
|
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)"
|
||||||
|
sodipodi:docname="Zonen_und_Messpunkte.svg"
|
||||||
|
inkscape:export-filename="/home/sebastian/Dokumente/Privat/Studium/WBH/Thesis/static/zonen_und_messpunkte.png"
|
||||||
|
inkscape:export-xdpi="236"
|
||||||
|
inkscape:export-ydpi="236"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg">
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="namedview7"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#999999"
|
||||||
|
borderopacity="1"
|
||||||
|
inkscape:pageshadow="0"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pagecheckerboard="0"
|
||||||
|
inkscape:document-units="mm"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:zoom="1.8923042"
|
||||||
|
inkscape:cx="83.760317"
|
||||||
|
inkscape:cy="426.72843"
|
||||||
|
inkscape:window-width="3440"
|
||||||
|
inkscape:window-height="1380"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="32"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:current-layer="layer1" />
|
||||||
|
<defs
|
||||||
|
id="defs2">
|
||||||
|
<marker
|
||||||
|
style="overflow:visible;"
|
||||||
|
id="Arrow1Mend"
|
||||||
|
refX="0.0"
|
||||||
|
refY="0.0"
|
||||||
|
orient="auto"
|
||||||
|
inkscape:stockid="Arrow1Mend"
|
||||||
|
inkscape:isstock="true">
|
||||||
|
<path
|
||||||
|
transform="scale(0.4) rotate(180) translate(10,0)"
|
||||||
|
style="fill-rule:evenodd;fill:context-stroke;stroke:context-stroke;stroke-width:1.0pt;"
|
||||||
|
d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
|
||||||
|
id="path36534" />
|
||||||
|
</marker>
|
||||||
|
<marker
|
||||||
|
style="overflow:visible;"
|
||||||
|
id="Arrow1Lend"
|
||||||
|
refX="0.0"
|
||||||
|
refY="0.0"
|
||||||
|
orient="auto"
|
||||||
|
inkscape:stockid="Arrow1Lend"
|
||||||
|
inkscape:isstock="true">
|
||||||
|
<path
|
||||||
|
transform="scale(0.8) rotate(180) translate(12.5,0)"
|
||||||
|
style="fill-rule:evenodd;fill:context-stroke;stroke:context-stroke;stroke-width:1.0pt;"
|
||||||
|
d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
|
||||||
|
id="path36528" />
|
||||||
|
</marker>
|
||||||
|
</defs>
|
||||||
|
<g
|
||||||
|
inkscape:label="Ebene 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1">
|
||||||
|
<circle
|
||||||
|
style="fill:#ffa3a3;stroke:#ff0013;stroke-width:0.264999;stroke-dasharray:0.794999, 0.264999;stroke-opacity:1;fill-opacity:0.38824311"
|
||||||
|
id="circle2466"
|
||||||
|
cx="95.891418"
|
||||||
|
cy="125.67263"
|
||||||
|
r="78.008049" />
|
||||||
|
<circle
|
||||||
|
style="fill:#ffa3a3;stroke:#ff0013;stroke-width:0.264999;stroke-dasharray:0.794999, 0.264999;stroke-opacity:0.98905855;fill-opacity:0.38824311"
|
||||||
|
id="circle2464"
|
||||||
|
cx="95.891418"
|
||||||
|
cy="125.67263"
|
||||||
|
r="54.083103" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill-opacity:0.38824311"
|
||||||
|
d="m 96.229044,71.633193 -47.437138,80.722797 93.960234,0.38327 z"
|
||||||
|
id="path1227"
|
||||||
|
sodipodi:nodetypes="cccc" />
|
||||||
|
<circle
|
||||||
|
style="fill:#ffa3a3;stroke:#ff0013;stroke-width:0.264999;stroke-dasharray:0.794999, 0.264999;stroke-opacity:1;fill-opacity:0.38824311"
|
||||||
|
id="path2256"
|
||||||
|
cx="95.891403"
|
||||||
|
cy="125.51903"
|
||||||
|
r="26.83943" />
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-size:3.52777px;line-height:1.25;font-family:sans-serif;stroke-width:0.264583"
|
||||||
|
x="117.67733"
|
||||||
|
y="87.067345"
|
||||||
|
id="text7614"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan7612"
|
||||||
|
style="stroke-width:0.264583"
|
||||||
|
x="117.67733"
|
||||||
|
y="87.067345">Zone 2</tspan></text>
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-size:3.52777px;line-height:1.25;font-family:sans-serif;stroke-width:0.264583"
|
||||||
|
x="99.914787"
|
||||||
|
y="107.41245"
|
||||||
|
id="text11986"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan11984"
|
||||||
|
style="stroke-width:0.264583"
|
||||||
|
x="99.914787"
|
||||||
|
y="107.41245">Zone 1</tspan></text>
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-size:3.52777px;line-height:1.25;font-family:sans-serif;stroke-width:0.264583"
|
||||||
|
x="133.18498"
|
||||||
|
y="69.314644"
|
||||||
|
id="text12796"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan12794"
|
||||||
|
style="stroke-width:0.264583"
|
||||||
|
x="133.18498"
|
||||||
|
y="69.314644">Zone 3</tspan></text>
|
||||||
|
<circle
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.265;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||||
|
id="path15436"
|
||||||
|
cx="96.248314"
|
||||||
|
cy="71.797287"
|
||||||
|
r="4.3913698" />
|
||||||
|
<circle
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.265;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||||
|
id="circle16310"
|
||||||
|
cx="48.964664"
|
||||||
|
cy="152.30054"
|
||||||
|
r="4.3913698" />
|
||||||
|
<circle
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.265;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||||
|
id="circle16312"
|
||||||
|
cx="142.38002"
|
||||||
|
cy="152.37703"
|
||||||
|
r="4.3913698" />
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-size:7.76111px;line-height:1.25;font-family:sans-serif;stroke-width:0.264583"
|
||||||
|
x="70.459312"
|
||||||
|
y="112.89104"
|
||||||
|
id="text29674"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan29672"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:7.76111px;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';stroke-width:0.264583"
|
||||||
|
x="70.459312"
|
||||||
|
y="112.89104">x</tspan></text>
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-size:7.76111px;line-height:1.25;font-family:sans-serif;stroke-width:0.264583"
|
||||||
|
x="58.65818"
|
||||||
|
y="86.284729"
|
||||||
|
id="text29678"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan29676"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:7.76111px;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';stroke-width:0.264583"
|
||||||
|
x="58.65818"
|
||||||
|
y="86.284729">x</tspan></text>
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-size:7.76111px;line-height:1.25;font-family:sans-serif;stroke-width:0.264583"
|
||||||
|
x="28.268476"
|
||||||
|
y="84.510864"
|
||||||
|
id="text29682"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan29680"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:7.76111px;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';stroke-width:0.264583"
|
||||||
|
x="28.268476"
|
||||||
|
y="84.510864">x</tspan></text>
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-size:7.76111px;line-height:1.25;font-family:sans-serif;stroke-width:0.264583"
|
||||||
|
x="128.75769"
|
||||||
|
y="202.2128"
|
||||||
|
id="text29686"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan29684"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:7.76111px;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';stroke-width:0.264583"
|
||||||
|
x="128.75769"
|
||||||
|
y="202.2128">x </tspan></text>
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-size:3.52777px;line-height:1.25;font-family:sans-serif;stroke-width:0.264583"
|
||||||
|
x="134.37225"
|
||||||
|
y="201.51083"
|
||||||
|
id="text35364"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan35362"
|
||||||
|
style="stroke-width:0.264583"
|
||||||
|
x="134.37225"
|
||||||
|
y="201.51083">= Messpunkte</tspan></text>
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#9f9f9f;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#Arrow1Mend)"
|
||||||
|
d="m 96.11516,123.59084 25.78749,5.83187"
|
||||||
|
id="path36523" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#9f9f9f;stroke-width:0.264582px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#Arrow1Mend)"
|
||||||
|
d="m 96.11516,123.59084 53.30868,-1.51693"
|
||||||
|
id="path37654" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#9f9f9f;stroke-width:0.264582px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#Arrow1Mend)"
|
||||||
|
d="M 95.732891,123.65513 171.28394,108.6296"
|
||||||
|
id="path37656" />
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-size:7.76111px;line-height:1.25;font-family:sans-serif;stroke-width:0.264583"
|
||||||
|
x="93.550537"
|
||||||
|
y="125.85709"
|
||||||
|
id="text17658"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan17656"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:7.76111px;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';stroke-width:0.264583"
|
||||||
|
x="93.550537"
|
||||||
|
y="125.85709">x</tspan></text>
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-size:3.175px;line-height:1.25;font-family:sans-serif;stroke-width:0.264583"
|
||||||
|
x="132.11925"
|
||||||
|
y="100.83557"
|
||||||
|
id="text46064"
|
||||||
|
transform="rotate(11.913016)"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan46062"
|
||||||
|
style="font-size:3.175px;fill:#474747;fill-opacity:1;stroke-width:0.264583"
|
||||||
|
x="132.11925"
|
||||||
|
y="100.83557">0.289m</tspan></text>
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-size:3.52778px;line-height:1.25;font-family:sans-serif;stroke-width:0.264583"
|
||||||
|
x="128.22177"
|
||||||
|
y="126.77676"
|
||||||
|
id="text52994"
|
||||||
|
transform="rotate(-2.0781999)"
|
||||||
|
inkscape:export-filename="/home/sebastian/Dokumente/Privat/Studium/WBH/Thesis/static/zonen_und_messpunkte.png"
|
||||||
|
inkscape:export-xdpi="236"
|
||||||
|
inkscape:export-ydpi="236"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan52992"
|
||||||
|
style="font-size:3.52778px;fill:#474747;fill-opacity:1;stroke-width:0.264583"
|
||||||
|
x="128.22177"
|
||||||
|
y="126.77676">0.577m</tspan></text>
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-size:3.52778px;line-height:1.25;font-family:sans-serif;stroke-width:0.264583"
|
||||||
|
x="124.62286"
|
||||||
|
y="140.97481"
|
||||||
|
id="text58602"
|
||||||
|
transform="rotate(-12.062792)"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan58600"
|
||||||
|
style="font-size:3.52778px;fill:#474747;fill-opacity:1;stroke-width:0.264583"
|
||||||
|
x="124.62286"
|
||||||
|
y="140.97481">1.067m</tspan></text>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 10 KiB |
Binary file not shown.
After Width: | Height: | Size: 3.5 KiB |
Binary file not shown.
After Width: | Height: | Size: 3.5 KiB |
Loading…
Reference in New Issue