diff --git a/README.md b/README.md
index edf4aec..dd9dda5 100644
--- a/README.md
+++ b/README.md
@@ -44,6 +44,14 @@ Ein vollständiges Python-Programm mit grafischer Benutzeroberfläche (GUI) für
- Residuen
- Qualitätsparametern (Sigma-0, Chi-Quadrat, RMSE)
+### 6. Referenzpunkt-Anpassung (NEU)
+- Anpassung des Referenzpunktes 5001 (bei Referenzlinien-Stationierung)
+- Eingabe neuer Koordinaten (X, Y, Z) für den Referenzpunkt
+- Automatische Neuberechnung aller abhängigen Punkte
+- Vorschau der Transformation mit allen betroffenen Punkten
+- Export der transformierten JXL-Datei
+- Validierung der Eingaben mit Warnungen bei problematischen Werten
+
## Installation
### Voraussetzungen
@@ -54,6 +62,14 @@ Ein vollständiges Python-Programm mit grafischer Benutzeroberfläche (GUI) für
- lxml
### Installation der Abhängigkeiten
+
+**Option 1: Mit requirements.txt (empfohlen)**
+```bash
+cd /home/ubuntu/trimble_geodesy
+pip install -r requirements.txt
+```
+
+**Option 2: Manuelle Installation**
```bash
pip install PyQt5 numpy scipy lxml
```
@@ -72,20 +88,23 @@ python3 main.py
3. **Transformation Tab**: Koordinatensystem rotieren/verschieben
4. **Georeferenzierung Tab**: Mit Passpunkten transformieren
5. **Netzausgleichung Tab**: Netzausgleichung durchführen
+6. **Referenzpunkt anpassen Tab**: Referenzpunkt 5001 ändern und JXL neu berechnen
## Dateistruktur
```
trimble_geodesy/
-├── main.py # Hauptprogramm mit GUI
+├── main.py # Hauptprogramm mit GUI
+├── requirements.txt # Python-Abhängigkeiten
├── modules/
│ ├── __init__.py
-│ ├── jxl_parser.py # JXL-Datei Parser
-│ ├── cor_generator.py # COR-Datei Generator
-│ ├── transformation.py # Koordinatentransformation
-│ ├── georeferencing.py # Georeferenzierung
-│ └── network_adjustment.py # Netzausgleichung
-├── output/ # Ausgabeverzeichnis
+│ ├── jxl_parser.py # JXL-Datei Parser
+│ ├── cor_generator.py # COR-Datei Generator
+│ ├── transformation.py # Koordinatentransformation
+│ ├── georeferencing.py # Georeferenzierung
+│ ├── network_adjustment.py # Netzausgleichung
+│ └── reference_point_adjuster.py # Referenzpunkt-Anpassung (NEU)
+├── output/ # Ausgabeverzeichnis
└── README.md
```
diff --git a/main.py b/main.py
index 60e7a0f..f55bffe 100644
--- a/main.py
+++ b/main.py
@@ -28,6 +28,7 @@ from modules.cor_generator import CORGenerator, CORPoint
from modules.transformation import CoordinateTransformer, LocalSystemTransformer
from modules.georeferencing import Georeferencer, ControlPoint
from modules.network_adjustment import NetworkAdjustment
+from modules.reference_point_adjuster import ReferencePointAdjuster, TransformationResult
class JXLAnalysisTab(QWidget):
@@ -948,6 +949,280 @@ class NetworkAdjustmentTab(QWidget):
QMessageBox.information(self, "Erfolg", f"Koordinaten gespeichert: {file_path}")
+class ReferencePointAdjusterTab(QWidget):
+ """Tab für Referenzpunkt-Anpassung"""
+
+ def __init__(self, parent=None):
+ super().__init__(parent)
+ self.main_window = parent
+ self.adjuster = ReferencePointAdjuster()
+ self.setup_ui()
+
+ def setup_ui(self):
+ layout = QVBoxLayout(self)
+
+ # Info-Gruppe
+ info_group = QGroupBox("Aktueller Referenzpunkt")
+ info_layout = QFormLayout(info_group)
+
+ self.ref_point_name = QLabel("Nicht geladen")
+ self.ref_point_name.setStyleSheet("font-weight: bold; font-size: 14px;")
+ info_layout.addRow("Punktname:", self.ref_point_name)
+
+ self.current_east = QLabel("0.000")
+ self.current_north = QLabel("0.000")
+ self.current_elev = QLabel("0.000")
+
+ info_layout.addRow("East (X):", self.current_east)
+ info_layout.addRow("North (Y):", self.current_north)
+ info_layout.addRow("Elevation (Z):", self.current_elev)
+
+ refresh_btn = QPushButton("Referenzpunkt aktualisieren")
+ refresh_btn.clicked.connect(self.load_reference_point)
+ info_layout.addRow("", refresh_btn)
+
+ layout.addWidget(info_group)
+
+ # Neue Koordinaten Gruppe
+ new_coords_group = QGroupBox("Neue Koordinaten für Referenzpunkt")
+ new_coords_layout = QGridLayout(new_coords_group)
+
+ new_coords_layout.addWidget(QLabel("East (X):"), 0, 0)
+ self.new_east_spin = QDoubleSpinBox()
+ self.new_east_spin.setRange(-10000000, 10000000)
+ self.new_east_spin.setDecimals(4)
+ self.new_east_spin.setSuffix(" m")
+ new_coords_layout.addWidget(self.new_east_spin, 0, 1)
+
+ new_coords_layout.addWidget(QLabel("North (Y):"), 1, 0)
+ self.new_north_spin = QDoubleSpinBox()
+ self.new_north_spin.setRange(-10000000, 10000000)
+ self.new_north_spin.setDecimals(4)
+ self.new_north_spin.setSuffix(" m")
+ new_coords_layout.addWidget(self.new_north_spin, 1, 1)
+
+ new_coords_layout.addWidget(QLabel("Elevation (Z):"), 2, 0)
+ self.new_elev_spin = QDoubleSpinBox()
+ self.new_elev_spin.setRange(-10000, 10000)
+ self.new_elev_spin.setDecimals(4)
+ self.new_elev_spin.setSuffix(" m")
+ new_coords_layout.addWidget(self.new_elev_spin, 2, 1)
+
+ # Translation anzeigen
+ new_coords_layout.addWidget(QLabel(""), 3, 0)
+ self.delta_label = QLabel("ΔX: 0.000 m | ΔY: 0.000 m | ΔZ: 0.000 m")
+ self.delta_label.setStyleSheet("color: blue;")
+ new_coords_layout.addWidget(self.delta_label, 4, 0, 1, 2)
+
+ # Koordinaten-Änderungen live berechnen
+ self.new_east_spin.valueChanged.connect(self.update_delta)
+ self.new_north_spin.valueChanged.connect(self.update_delta)
+ self.new_elev_spin.valueChanged.connect(self.update_delta)
+
+ layout.addWidget(new_coords_group)
+
+ # Aktionen
+ actions_group = QGroupBox("Aktionen")
+ actions_layout = QHBoxLayout(actions_group)
+
+ preview_btn = QPushButton("Vorschau berechnen")
+ preview_btn.clicked.connect(self.preview_transformation)
+ preview_btn.setStyleSheet("background-color: #4CAF50; color: white;")
+ actions_layout.addWidget(preview_btn)
+
+ apply_btn = QPushButton("Transformation anwenden")
+ apply_btn.clicked.connect(self.apply_transformation)
+ apply_btn.setStyleSheet("background-color: #2196F3; color: white;")
+ actions_layout.addWidget(apply_btn)
+
+ export_btn = QPushButton("Neue JXL exportieren")
+ export_btn.clicked.connect(self.export_jxl)
+ export_btn.setStyleSheet("background-color: #FF9800; color: white;")
+ actions_layout.addWidget(export_btn)
+
+ layout.addWidget(actions_group)
+
+ # Vorschau-Tabelle
+ preview_group = QGroupBox("Vorschau der betroffenen Punkte")
+ preview_layout = QVBoxLayout(preview_group)
+
+ self.preview_table = QTableWidget()
+ self.preview_table.setColumnCount(7)
+ self.preview_table.setHorizontalHeaderLabels(
+ ["Punkt", "Alt X", "Alt Y", "Alt Z", "Neu X", "Neu Y", "Neu Z"])
+ self.preview_table.horizontalHeader().setSectionResizeMode(QHeaderView.Stretch)
+ preview_layout.addWidget(self.preview_table)
+
+ layout.addWidget(preview_group)
+
+ # Bericht
+ report_group = QGroupBox("Transformationsbericht")
+ report_layout = QVBoxLayout(report_group)
+
+ self.report_text = QTextEdit()
+ self.report_text.setReadOnly(True)
+ self.report_text.setFont(QFont("Courier", 9))
+ report_layout.addWidget(self.report_text)
+
+ layout.addWidget(report_group)
+
+ def load_reference_point(self):
+ """Lädt die Informationen zum Referenzpunkt"""
+ if not self.main_window.parser:
+ QMessageBox.warning(self, "Fehler",
+ "Bitte zuerst eine JXL-Datei im 'JXL-Analyse' Tab laden!")
+ return
+
+ self.adjuster.set_parser(self.main_window.parser)
+ info = self.adjuster.get_reference_point_info()
+
+ if not info["found"]:
+ QMessageBox.warning(self, "Fehler",
+ f"Referenzpunkt nicht gefunden: {info['message']}")
+ return
+
+ self.ref_point_name.setText(info["name"])
+ self.current_east.setText(f"{info['east']:.4f} m")
+ self.current_north.setText(f"{info['north']:.4f} m")
+ self.current_elev.setText(f"{info['elevation']:.4f} m")
+
+ # Setze aktuelle Werte als Standard für neue Koordinaten
+ self.new_east_spin.setValue(info['east'])
+ self.new_north_spin.setValue(info['north'])
+ self.new_elev_spin.setValue(info['elevation'])
+
+ self.main_window.statusBar().showMessage(
+ f"Referenzpunkt '{info['name']}' geladen")
+
+ def update_delta(self):
+ """Aktualisiert die Anzeige der Verschiebung"""
+ if not self.adjuster.parser:
+ return
+
+ dx = self.new_east_spin.value() - self.adjuster.original_coords[0]
+ dy = self.new_north_spin.value() - self.adjuster.original_coords[1]
+ dz = self.new_elev_spin.value() - self.adjuster.original_coords[2]
+
+ self.delta_label.setText(
+ f"ΔX: {dx:+.4f} m | ΔY: {dy:+.4f} m | ΔZ: {dz:+.4f} m")
+
+ def preview_transformation(self):
+ """Zeigt eine Vorschau der Transformation"""
+ if not self.main_window.parser:
+ QMessageBox.warning(self, "Fehler",
+ "Bitte zuerst eine JXL-Datei laden!")
+ return
+
+ # Validierung
+ valid, message = self.adjuster.validate_input(
+ self.new_east_spin.value(),
+ self.new_north_spin.value(),
+ self.new_elev_spin.value()
+ )
+
+ if not valid:
+ reply = QMessageBox.warning(self, "Warnung",
+ f"Mögliche Probleme erkannt:\n\n{message}\n\nTrotzdem fortfahren?",
+ QMessageBox.Yes | QMessageBox.No)
+ if reply == QMessageBox.No:
+ return
+
+ self.adjuster.set_new_coordinates(
+ self.new_east_spin.value(),
+ self.new_north_spin.value(),
+ self.new_elev_spin.value()
+ )
+
+ results = self.adjuster.preview_transformation()
+
+ # Tabelle aktualisieren
+ self.preview_table.setRowCount(len(results))
+ for i, result in enumerate(results):
+ self.preview_table.setItem(i, 0, QTableWidgetItem(result.original_point))
+ self.preview_table.setItem(i, 1, QTableWidgetItem(f"{result.original_coords[0]:.4f}"))
+ self.preview_table.setItem(i, 2, QTableWidgetItem(f"{result.original_coords[1]:.4f}"))
+ self.preview_table.setItem(i, 3, QTableWidgetItem(f"{result.original_coords[2]:.4f}"))
+ self.preview_table.setItem(i, 4, QTableWidgetItem(f"{result.new_coords[0]:.4f}"))
+ self.preview_table.setItem(i, 5, QTableWidgetItem(f"{result.new_coords[1]:.4f}"))
+ self.preview_table.setItem(i, 6, QTableWidgetItem(f"{result.new_coords[2]:.4f}"))
+
+ # Bericht aktualisieren
+ self.report_text.setText(self.adjuster.get_summary_report())
+
+ self.main_window.statusBar().showMessage(
+ f"Vorschau berechnet: {len(results)} Punkte betroffen")
+
+ def apply_transformation(self):
+ """Wendet die Transformation auf die JXL-Datei an"""
+ if not self.main_window.parser:
+ QMessageBox.warning(self, "Fehler",
+ "Bitte zuerst eine JXL-Datei laden!")
+ return
+
+ if not self.adjuster.affected_points:
+ QMessageBox.warning(self, "Fehler",
+ "Bitte zuerst eine Vorschau berechnen!")
+ return
+
+ reply = QMessageBox.question(self, "Bestätigung",
+ f"Soll die Transformation auf {len(self.adjuster.affected_points)} Punkte angewendet werden?\n\n"
+ "Die Änderungen werden in der geladenen JXL-Datei gespeichert.",
+ QMessageBox.Yes | QMessageBox.No)
+
+ if reply == QMessageBox.No:
+ return
+
+ if self.adjuster.apply_transformation():
+ # Bericht aktualisieren
+ self.report_text.setText(self.adjuster.get_summary_report())
+
+ QMessageBox.information(self, "Erfolg",
+ "Transformation erfolgreich angewendet!\n\n"
+ "Die Koordinaten wurden aktualisiert.\n"
+ "Verwenden Sie 'Neue JXL exportieren' zum Speichern.")
+
+ self.main_window.statusBar().showMessage("Transformation angewendet")
+ else:
+ QMessageBox.critical(self, "Fehler",
+ "Transformation konnte nicht angewendet werden!")
+
+ def export_jxl(self):
+ """Exportiert die modifizierte JXL-Datei"""
+ if not self.main_window.parser:
+ QMessageBox.warning(self, "Fehler",
+ "Bitte zuerst eine JXL-Datei laden!")
+ return
+
+ if not self.adjuster.transformation_applied:
+ reply = QMessageBox.warning(self, "Warnung",
+ "Die Transformation wurde noch nicht angewendet.\n"
+ "Möchten Sie die Originaldatei exportieren?",
+ QMessageBox.Yes | QMessageBox.No)
+ if reply == QMessageBox.No:
+ return
+
+ # Standard-Dateiname vorschlagen
+ original_path = self.main_window.parser.file_path
+ if original_path:
+ import os
+ base, ext = os.path.splitext(original_path)
+ default_name = f"{base}_transformed{ext}"
+ else:
+ default_name = "transformed.jxl"
+
+ file_path, _ = QFileDialog.getSaveFileName(
+ self, "JXL-Datei exportieren", default_name, "JXL Files (*.jxl)")
+
+ if file_path:
+ if self.adjuster.export_jxl(file_path):
+ QMessageBox.information(self, "Erfolg",
+ f"JXL-Datei exportiert:\n{file_path}")
+ self.main_window.statusBar().showMessage(f"Exportiert: {file_path}")
+ else:
+ QMessageBox.critical(self, "Fehler",
+ "Fehler beim Exportieren der JXL-Datei!")
+
+
class MainWindow(QMainWindow):
"""Hauptfenster der Anwendung"""
@@ -990,6 +1265,9 @@ class MainWindow(QMainWindow):
self.adjust_tab = NetworkAdjustmentTab(self)
self.tabs.addTab(self.adjust_tab, "📐 Netzausgleichung")
+ self.refpoint_tab = ReferencePointAdjusterTab(self)
+ self.tabs.addTab(self.refpoint_tab, "📍 Referenzpunkt anpassen")
+
layout.addWidget(self.tabs)
def setup_menu(self):
diff --git a/modules/reference_point_adjuster.py b/modules/reference_point_adjuster.py
new file mode 100644
index 0000000..e01f375
--- /dev/null
+++ b/modules/reference_point_adjuster.py
@@ -0,0 +1,323 @@
+"""
+Reference Point Adjuster Module - Referenzpunkt-Anpassung für JXL-Dateien
+Ermöglicht die Änderung des Referenzpunktes 5001 und Neuberechnung aller Koordinaten
+"""
+
+import xml.etree.ElementTree as ET
+from dataclasses import dataclass, field
+from typing import List, Dict, Optional, Tuple
+import math
+import copy
+import os
+
+from modules.jxl_parser import JXLParser, Point, Station
+
+
+@dataclass
+class TransformationResult:
+ """Ergebnis der Koordinatentransformation"""
+ original_point: str
+ original_coords: Tuple[float, float, float]
+ new_coords: Tuple[float, float, float]
+ delta: Tuple[float, float, float]
+
+
+class ReferencePointAdjuster:
+ """Klasse zur Anpassung des Referenzpunktes und Neuberechnung der JXL-Datei"""
+
+ def __init__(self, parser: JXLParser = None):
+ self.parser = parser
+ self.reference_point_name = "5001"
+ self.original_coords: Tuple[float, float, float] = (0.0, 0.0, 0.0)
+ self.new_coords: Tuple[float, float, float] = (0.0, 0.0, 0.0)
+ self.affected_points: List[TransformationResult] = []
+ self.transformation_applied = False
+
+ def set_parser(self, parser: JXLParser):
+ """Setzt den Parser für die JXL-Datei"""
+ self.parser = parser
+ self.find_reference_point()
+
+ def find_reference_point(self) -> Optional[Point]:
+ """Findet den Referenzpunkt 5001 in der JXL-Datei"""
+ if not self.parser:
+ return None
+
+ # Suche nach dem Punkt mit Name "5001"
+ for name, point in self.parser.points.items():
+ if name == self.reference_point_name or name == "5001":
+ self.reference_point_name = name
+ self.original_coords = (
+ point.east if point.east is not None else 0.0,
+ point.north if point.north is not None else 0.0,
+ point.elevation if point.elevation is not None else 0.0
+ )
+ return point
+
+ # Falls 5001 nicht gefunden, suche nach dem ersten Punkt mit Coordinates/KeyedIn
+ for name, point in self.parser.points.items():
+ if point.method == "Coordinates" and point.survey_method == "KeyedIn":
+ self.reference_point_name = name
+ self.original_coords = (
+ point.east if point.east is not None else 0.0,
+ point.north if point.north is not None else 0.0,
+ point.elevation if point.elevation is not None else 0.0
+ )
+ return point
+
+ return None
+
+ def get_reference_point_info(self) -> Dict:
+ """Gibt Informationen zum Referenzpunkt zurück"""
+ if not self.parser:
+ return {"found": False, "message": "Kein Parser geladen"}
+
+ point = self.find_reference_point()
+ if not point:
+ return {"found": False, "message": "Referenzpunkt nicht gefunden"}
+
+ return {
+ "found": True,
+ "name": self.reference_point_name,
+ "east": self.original_coords[0],
+ "north": self.original_coords[1],
+ "elevation": self.original_coords[2],
+ "method": point.method,
+ "survey_method": point.survey_method
+ }
+
+ def set_new_coordinates(self, east: float, north: float, elevation: float):
+ """Setzt neue Koordinaten für den Referenzpunkt"""
+ self.new_coords = (east, north, elevation)
+
+ def calculate_translation(self) -> Tuple[float, float, float]:
+ """Berechnet die Translation zwischen alten und neuen Koordinaten"""
+ delta_x = self.new_coords[0] - self.original_coords[0]
+ delta_y = self.new_coords[1] - self.original_coords[1]
+ delta_z = self.new_coords[2] - self.original_coords[2]
+ return (delta_x, delta_y, delta_z)
+
+ def preview_transformation(self) -> List[TransformationResult]:
+ """Zeigt eine Vorschau der Transformation für alle betroffenen Punkte"""
+ if not self.parser:
+ return []
+
+ delta = self.calculate_translation()
+ results = []
+
+ for name, point in self.parser.points.items():
+ if point.east is None or point.north is None:
+ continue
+
+ original = (
+ point.east,
+ point.north,
+ point.elevation if point.elevation is not None else 0.0
+ )
+
+ new = (
+ original[0] + delta[0],
+ original[1] + delta[1],
+ original[2] + delta[2]
+ )
+
+ results.append(TransformationResult(
+ original_point=name,
+ original_coords=original,
+ new_coords=new,
+ delta=delta
+ ))
+
+ self.affected_points = results
+ return results
+
+ def apply_transformation(self) -> bool:
+ """Wendet die Transformation auf alle Punkte in der JXL-Datei an"""
+ if not self.parser or not self.parser.raw_xml:
+ return False
+
+ delta = self.calculate_translation()
+ root = self.parser.raw_xml.getroot()
+ fieldbook = root.find('FieldBook')
+
+ if fieldbook is None:
+ return False
+
+ modified_count = 0
+
+ # Durchsuche alle PointRecords und aktualisiere die Koordinaten
+ for element in fieldbook:
+ if element.tag == 'PointRecord':
+ modified = self._update_point_coordinates(element, delta)
+ if modified:
+ modified_count += 1
+
+ # Aktualisiere auch die internen Parser-Daten
+ for name, point in self.parser.points.items():
+ if point.east is not None:
+ point.east += delta[0]
+ if point.north is not None:
+ point.north += delta[1]
+ if point.elevation is not None:
+ point.elevation += delta[2]
+
+ self.transformation_applied = True
+ return modified_count > 0
+
+ def _update_point_coordinates(self, element: ET.Element, delta: Tuple[float, float, float]) -> bool:
+ """Aktualisiert die Koordinaten eines einzelnen Punktes im XML"""
+ modified = False
+
+ # Grid-Koordinaten aktualisieren
+ grid = element.find('Grid')
+ if grid is not None:
+ modified |= self._update_grid_element(grid, delta)
+
+ # ComputedGrid-Koordinaten aktualisieren
+ computed_grid = element.find('ComputedGrid')
+ if computed_grid is not None:
+ modified |= self._update_grid_element(computed_grid, delta)
+
+ return modified
+
+ def _update_grid_element(self, grid: ET.Element, delta: Tuple[float, float, float]) -> bool:
+ """Aktualisiert ein Grid oder ComputedGrid Element"""
+ modified = False
+
+ east = grid.find('East')
+ if east is not None and east.text:
+ try:
+ old_value = float(east.text)
+ new_value = old_value + delta[0]
+ east.text = str(new_value)
+ modified = True
+ except ValueError:
+ pass
+
+ north = grid.find('North')
+ if north is not None and north.text:
+ try:
+ old_value = float(north.text)
+ new_value = old_value + delta[1]
+ north.text = str(new_value)
+ modified = True
+ except ValueError:
+ pass
+
+ elevation = grid.find('Elevation')
+ if elevation is not None and elevation.text:
+ try:
+ old_value = float(elevation.text)
+ new_value = old_value + delta[2]
+ elevation.text = str(new_value)
+ modified = True
+ except ValueError:
+ pass
+
+ return modified
+
+ def export_jxl(self, output_path: str) -> bool:
+ """Exportiert die modifizierte JXL-Datei"""
+ if not self.parser or not self.parser.raw_xml:
+ return False
+
+ try:
+ # XML mit Deklaration schreiben
+ tree = self.parser.raw_xml
+ tree.write(output_path, encoding='UTF-8', xml_declaration=True)
+ return True
+ except Exception as e:
+ print(f"Fehler beim Exportieren: {e}")
+ return False
+
+ def get_summary_report(self) -> str:
+ """Erstellt einen zusammenfassenden Bericht der Transformation"""
+ delta = self.calculate_translation()
+
+ report = []
+ report.append("=" * 60)
+ report.append("REFERENZPUNKT-ANPASSUNG - ZUSAMMENFASSUNG")
+ report.append("=" * 60)
+ report.append("")
+ report.append(f"Referenzpunkt: {self.reference_point_name}")
+ report.append("")
+ report.append("Ursprüngliche Koordinaten:")
+ report.append(f" East (X): {self.original_coords[0]:12.4f} m")
+ report.append(f" North (Y): {self.original_coords[1]:12.4f} m")
+ report.append(f" Elevation (Z):{self.original_coords[2]:12.4f} m")
+ report.append("")
+ report.append("Neue Koordinaten:")
+ report.append(f" East (X): {self.new_coords[0]:12.4f} m")
+ report.append(f" North (Y): {self.new_coords[1]:12.4f} m")
+ report.append(f" Elevation (Z):{self.new_coords[2]:12.4f} m")
+ report.append("")
+ report.append("Translation (Delta):")
+ report.append(f" ΔX: {delta[0]:+12.4f} m")
+ report.append(f" ΔY: {delta[1]:+12.4f} m")
+ report.append(f" ΔZ: {delta[2]:+12.4f} m")
+ report.append("")
+ report.append("-" * 60)
+ report.append(f"Anzahl betroffener Punkte: {len(self.affected_points)}")
+ report.append("-" * 60)
+
+ if self.affected_points:
+ report.append("")
+ report.append(f"{'Punkt':<10} {'Alt X':>12} {'Alt Y':>12} {'Alt Z':>10} -> {'Neu X':>12} {'Neu Y':>12} {'Neu Z':>10}")
+ report.append("-" * 90)
+
+ for result in self.affected_points[:20]: # Max 20 Punkte anzeigen
+ report.append(
+ f"{result.original_point:<10} "
+ f"{result.original_coords[0]:>12.4f} "
+ f"{result.original_coords[1]:>12.4f} "
+ f"{result.original_coords[2]:>10.4f} -> "
+ f"{result.new_coords[0]:>12.4f} "
+ f"{result.new_coords[1]:>12.4f} "
+ f"{result.new_coords[2]:>10.4f}"
+ )
+
+ if len(self.affected_points) > 20:
+ report.append(f"... und {len(self.affected_points) - 20} weitere Punkte")
+
+ report.append("")
+ report.append("=" * 60)
+
+ if self.transformation_applied:
+ report.append("✓ Transformation wurde angewendet")
+ else:
+ report.append("⚠ Transformation noch nicht angewendet")
+
+ report.append("=" * 60)
+
+ return "\n".join(report)
+
+ def validate_input(self, east: float, north: float, elevation: float) -> Tuple[bool, str]:
+ """Validiert die eingegebenen Koordinaten"""
+ warnings = []
+
+ # Prüfe auf extrem große Werte (möglicher Eingabefehler)
+ if abs(east) > 1000000:
+ warnings.append(f"East-Koordinate ({east}) ist sehr groß - bitte überprüfen")
+ if abs(north) > 1000000:
+ warnings.append(f"North-Koordinate ({north}) ist sehr groß - bitte überprüfen")
+ if abs(elevation) > 10000:
+ warnings.append(f"Elevation ({elevation}) ist sehr groß - bitte überprüfen")
+
+ # Berechne Translation
+ delta = (
+ east - self.original_coords[0],
+ north - self.original_coords[1],
+ elevation - self.original_coords[2]
+ )
+
+ # Warnung bei sehr großer Translation
+ total_shift = math.sqrt(delta[0]**2 + delta[1]**2)
+ if total_shift > 100000:
+ warnings.append(f"Horizontale Verschiebung ({total_shift:.1f} m) ist sehr groß")
+
+ if abs(delta[2]) > 1000:
+ warnings.append(f"Höhenverschiebung ({delta[2]:.1f} m) ist sehr groß")
+
+ if warnings:
+ return (False, "\n".join(warnings))
+ return (True, "Koordinaten sind plausibel")
diff --git a/requirements.txt b/requirements.txt
new file mode 100644
index 0000000..e14a175
--- /dev/null
+++ b/requirements.txt
@@ -0,0 +1,15 @@
+# Trimble Geodesy Tool - Python Dependencies
+# Installation: pip install -r requirements.txt
+
+# GUI Framework
+PyQt5>=5.15.0
+
+# Numerische Berechnungen
+numpy>=1.21.0
+scipy>=1.7.0
+
+# XML Processing
+lxml>=4.6.0
+
+# Optional: für erweiterte Funktionen
+matplotlib>=3.4.0 # Für Diagramme und Visualisierungen (optional)
diff --git a/tests/Baumschulenstr_93.cor b/tests/Baumschulenstr_93.cor
new file mode 100644
index 0000000..77361cc
--- /dev/null
+++ b/tests/Baumschulenstr_93.cor
@@ -0,0 +1,84 @@
+5001,0.000,0.000,0.000
+5002,0.000,11.407,-0.035
+1001,22.788,13.565,-1.952
+2001,0.014,11.747,-1.361
+2002,20.214,30.965,-1.663
+2003,33.782,13.097,-2.616
+2004,20.490,-15.429,-1.438
+3001,33.838,13.220,-2.575
+3002,26.308,30.140,-1.903
+3003,26.357,-3.293,-2.115
+3004,0.048,-0.530,-3.021
+3005,-0.038,6.789,-3.414
+6001,-18.196,13.913,-2.176
+6002,-15.677,12.648,-2.286
+6003,-26.318,12.550,-2.274
+6004,-24.723,13.845,-1.559
+3006,1.182,13.131,1.845
+3007,0.867,16.745,1.841
+1002,-20.883,13.008,-1.742
+2005,-13.138,18.366,-1.730
+2006,-19.762,10.592,-1.668
+2007,-29.788,15.304,-1.497
+2008,-20.421,22.326,-1.798
+3008,-13.174,11.080,-0.280
+3009,-13.168,10.756,3.783
+3010,-14.042,4.481,1.836
+3011,-13.166,13.790,5.689
+3012,-13.164,11.191,7.558
+3013,-13.164,10.602,10.922
+2009,-13.144,12.601,-1.895
+7002,-7.487,13.193,-3.675
+7001,-13.134,19.746,-0.424
+3014,-10.454,12.968,-3.593
+3015,-5.752,14.319,-3.597
+3016,-2.168,12.842,-3.598
+3017,-16.960,9.871,-1.307
+3018,-13.143,8.257,-1.713
+3019,-21.129,4.481,-1.106
+3020,-31.198,9.253,-2.128
+3021,-29.609,16.923,-2.185
+3022,-30.145,21.896,-3.368
+3023,-20.860,18.943,-3.376
+6005,-25.633,20.878,-2.243
+1003,23.070,14.027,-1.969
+3024,1.188,12.854,5.607
+3025,1.213,3.983,5.615
+3026,-0.029,17.401,9.376
+3027,0.002,9.449,13.119
+3028,-0.915,16.758,13.728
+3029,1.096,3.374,9.955
+1004,-22.696,19.765,-1.966
+6006,-48.153,24.806,-2.092
+6007,-48.551,23.493,-1.983
+6008,-42.900,22.586,-2.096
+1005,-46.031,23.575,-1.951
+2010,-40.871,25.207,-1.886
+2011,-42.736,16.007,-1.438
+2012,-51.007,10.054,-1.947
+2013,-46.596,26.451,-1.927
+3030,-41.629,20.671,-2.199
+3031,-42.358,17.069,-2.207
+3032,-43.915,9.539,-2.218
+3033,-39.002,22.932,-3.451
+1006,22.923,13.878,-1.904
+3034,-2.259,19.010,16.788
+3035,-2.039,11.679,17.155
+3036,-2.401,0.498,16.947
+1007,-21.634,18.968,-1.815
+3037,-29.302,18.141,1.265
+3038,-30.284,13.473,-0.502
+3039,-30.223,13.843,2.923
+3040,-30.164,14.114,6.326
+3041,-30.261,13.648,9.537
+1008,-46.567,23.450,-1.900
+3042,-43.596,11.396,4.659
+3043,-41.019,23.777,4.663
+1009,-17.132,16.548,-1.900
+3044,-31.755,22.820,14.965
+3045,-33.719,12.836,14.653
+3046,-34.899,6.876,14.549
+3047,-31.140,9.336,8.091
+3048,-29.550,17.086,8.072
+3049,-28.629,21.467,8.076
+3050,-30.750,11.180,1.169
diff --git a/tests/Baumschulenstr_93.jxl b/tests/Baumschulenstr_93.jxl
new file mode 100644
index 0000000..f78e3f3
--- /dev/null
+++ b/tests/Baumschulenstr_93.jxl
@@ -0,0 +1,10095 @@
+
+
+
+
+
+
+
+ 0
+ false
+
+
+
+ NoAdjustment
+
+
+
+ NoAdjustment
+
+
+
+
+
+
+
+ Unknown
+ false
+
+
+
+
+
+
+
+
+
+ Germany
+ ETRS89_UTM32
+ ETRS89
+
+
+
+ false
+ IncreasingNorthEast
+ 0
+ GroundDistance
+ false
+
+ false
+ 0.5
+
+ 0
+
+
+
+
+
+
+
+
+
+ ScaleOnly
+ 1
+
+
+ Grid
+
+
+
+
+
+
+
+ NoDatum
+
+
+
+
+
+
+
+
+
+ Metres
+ Metres
+ Gons
+ Azimuth
+ DMSDegrees
+ East-North-Elevation
+ Celsius
+ MilliBar
+ Percentage
+ SquareMetres
+ CubicMetres
+ 1000.0
+
+ DRMS
+ 3
+ 3
+ 3
+ 3
+ 4
+ Inclination
+ Local
+
+
+
+
+ Converted from GS v3.20 to GS v2018.10
+
+
+
+
+
+ Converted from GS v2018.10 to GS v2018.20
+
+
+
+
+
+ Converted from GS v2018.20 to GS v2019.00
+
+
+
+
+
+ Converted from v2019.00.7 to v2020.10.4
+
+
+
+
+
+ Converted from GS v2020.10 to GS v2022.00
+
+
+
+
+
+ Converted from GS v2022.00 to GS v2022.10
+
+
+
+
+
+ Converted from v2022.10.19 to v2023.00.12
+
+
+
+
+
+ Converted from v2023.00.12 to v2023.10.16
+
+
+
+
+
+ Converted from v2023.10.16 to v2024.10.2
+
+
+
+
+ Mitteleuropäische Zeit
+ -1
+
+
+
+ true
+
+
+
+ TrimbleSX10
+ 269.89888962766
+ 78.08621711754
+ Fine
+ SetToAzimuth
+ HorizontalAndVerticalAngle
+ 0
+ false
+ 3
+ 0.00027788453064
+ 0.00027788453064
+ 0.001
+ 1.5
+ FromInstrument
+ 0
+ 0.003
+ SX12
+ 30710160
+ S2.8.5
+ TRIMBLE-SX12-30710160
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+
+
+
+
+ TrimbleSX10
+ 269.89888962766
+ 78.08621711754
+ Fine
+ SetToAzimuth
+ HorizontalAndVerticalAngle
+ 0
+ false
+ 3
+ 0.00027788453064
+ 0.00027788453064
+ 0.001
+ 1.5
+ FromInstrument
+ 0
+ 0.003
+ SX12
+ 30710160
+ S2.8.5
+ TRIMBLE-SX12-30710160
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+
+
+
+
+ 5001
+
+ Coordinates
+ KeyedIn
+ Normal
+ false
+
+
+ 0
+ 0
+ 0
+
+
+
+
+ 5002
+
+ AzimuthOnly
+ KeyedIn
+ Normal
+ false
+ 5001
+ 0
+ Grid
+
+
+
+ 5001-5002
+
+ TwoPoints
+ false
+ 5001
+ 5002
+ 0
+
+
+
+
+ 1012.3
+ 2
+ -17.386873003947
+ true
+ true
+ 0.142
+ ReadFromInstrument
+ true
+
+
+
+ 1001
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ 00000028
+ 00000039
+ 2
+ 2
+ 1
+ Fixed
+
+ ReflineStationSetup
+
+
+
+ 0000003a
+ 1001
+ 5001
+ 239.23624355634
+
+ -0.00000000000005
+
+
+
+
+ DRTarget
+ 0
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+
+
+
+ 5001
+
+ DirectReading
+ Fix
+ BackSight
+ false
+
+
+ 239.23624355634
+ 85.7899569023
+ 26.59197
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.002039887955
+ Fine
+
+ 0000003a
+ 0000003b
+ 0000003c
+ 1012.3
+ 2
+
+
+ -0.00000000000002
+ 0.00000000000001
+ 0
+
+
+
+
+ 5002
+
+ DirectReading
+ Fix
+ BackSight
+ false
+
+
+ 264.59191669828
+ 85.212800718953
+ 22.97041
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.002034455615
+ Fine
+
+ 0000003a
+ 0000003b
+ 0000003c
+ 1012.3
+ 2
+
+
+ 11.407493926503
+ 0
+ -0.03520763328074
+
+
+
+
+ 1001
+
+ ReflineSetup
+ KeyedIn
+ Normal
+ false
+
+
+ 13.564836640777
+ 22.787987226327
+ -1.9522100598255
+
+
+
+
+ DRTarget
+ 0
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+
+
+
+ 2001
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 265.43660385311
+ 88.516654118998
+ 22.85481
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.002034282215
+ Fine
+
+ 0000003a
+ 0000003b
+ 0000004b
+ 1012.3
+ 2
+
+
+ 11.747100808262
+ 0.01366046183771
+ -1.3605569844574
+
+
+
+
+ 2002
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 351.58440107046
+ 89.05943776951
+ 17.59173
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.002026387595
+ Fine
+
+ 0000003a
+ 0000003b
+ 0000004b
+ 1012.3
+ 2
+
+
+ 30.964500502903
+ 20.213787812262
+ -1.6634230224692
+
+
+
+
+ 2003
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 92.434872865737
+ 93.453801504051
+ 11.02452
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00201653678
+ Fine
+
+ 0000003a
+ 0000003b
+ 0000004b
+ 1012.3
+ 2
+
+
+ 13.097332393112
+ 33.78235737753
+ -2.6163483145386
+
+
+
+
+ 2004
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 184.53081107406
+ 88.98681595979
+ 29.08967
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.002043634505
+ Fine
+
+ 0000003a
+ 0000003b
+ 0000004b
+ 1012.3
+ 2
+
+
+ -15.428889079835
+ 20.490442774294
+ -1.4377847103515
+
+
+
+
+ CustomPrism
+ -0.0344
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ None
+
+
+
+ 3001
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 91.788958806006
+ 93.222299350487
+ 11.1076
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.0010166614
+ Fine
+
+ 0000003a
+ 0000003b
+ 00000060
+ 1012.3
+ 2
+
+
+ 13.219704366825
+ 33.838099818544
+ -2.5746165834351
+
+
+
+
+ 3002
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 11.990548473315
+ 89.833351027115
+ 16.98008
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00102547012
+ Fine
+
+ 0000003a
+ 0000003b
+ 00000060
+ 1012.3
+ 2
+
+
+ 30.14043546648
+ 26.308381768271
+ -1.9029039206999
+
+
+
+
+ 3003
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 168.04533832496
+ 90.54098677678
+ 17.2672
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.0010259008
+ Fine
+
+ 0000003a
+ 0000003b
+ 00000060
+ 1012.3
+ 2
+
+
+ -3.2931707887914
+ 26.357327175554
+ -2.1148969458828
+
+
+
+
+ SSeries360Prism
+ 0.002
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ None
+
+
+
+ 6001
+
+ DirectReading
+ Fix
+ Normal
+ true
+
+
+ 270.40940443109
+ 90.667386621869
+ 25.19781130175
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00103779673
+ Fine
+ 90.667923019622
+ 25.19782
+
+ 0000003a
+ 0000003b
+ 00000070
+ 1012.3
+ 2
+
+
+ 13.74488389151
+ -2.4090336823243
+ -2.2456853796105
+
+
+ Gelöscht 09:07:05 15/01/2026
+
+
+
+
+ 6002
+
+ DirectReading
+ Fix
+ Normal
+ true
+
+
+ 267.13139128732
+ 89.475050956248
+ 25.249872016296
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00103787482
+ Fine
+ 89.474629905876
+ 25.24988
+
+ 0000003a
+ 0000003b
+ 00000070
+ 1012.3
+ 2
+
+
+ 12.301162728343
+ -2.4307449215712
+ -1.7208145287347
+
+
+ Gelöscht 09:07:20 15/01/2026
+
+
+
+
+ CustomPrism
+ -0.0344
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ None
+
+
+
+ 3004
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 238.20818045357
+ 92.287470844301
+ 26.81024
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00104021536
+ Fine
+
+ 0000003a
+ 0000003b
+ 00000060
+ 1012.3
+ 2
+
+
+ -0.53011337946121
+ 0.04791118307159
+ -3.0208552356468
+
+
+
+
+ 3005
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 253.46602119217
+ 93.513310914172
+ 23.89046
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00103583569
+ Fine
+
+ 0000003a
+ 0000003b
+ 00000060
+ 1012.3
+ 2
+
+
+ 6.7886622553038
+ -0.03827563422222
+ -3.4140559040302
+
+
+
+
+ 6001
+
+ DirectReading
+ Fix
+ Normal
+ true
+
+
+ 270.48660137593
+ 90.313708298872
+ 40.98502
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00106147753
+ Fine
+
+ 0000003a
+ 0000003b
+ 00000060
+ 1012.3
+ 2
+
+
+ 13.912606473622
+ -18.159830807384
+ -2.1763068366916
+
+
+ Gelöscht 09:08:37 15/01/2026
+
+
+
+
+ 6002
+
+ DirectReading
+ Fix
+ Normal
+ true
+
+
+ 268.63313365606
+ 90.497224743254
+ 38.47617
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001057714255
+ Fine
+
+ 0000003a
+ 0000003b
+ 00000060
+ 1012.3
+ 2
+
+
+ 12.647894984238
+ -15.64072979345
+ -2.2857063933248
+
+
+ Gelöscht 09:09:00 15/01/2026
+
+
+
+
+ 6003
+
+ DirectReading
+ Fix
+ Normal
+ true
+
+
+ 268.81595454502
+ 90.375128359351
+ 49.11633
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001073674495
+ Fine
+
+ 0000003a
+ 0000003b
+ 00000060
+ 1012.3
+ 2
+
+
+ 12.550645968117
+ -26.281558750772
+ -2.273390590222
+
+
+ Gelöscht 09:09:12 15/01/2026
+
+
+
+
+ 6004
+
+ DirectReading
+ Fix
+ Normal
+ true
+
+
+ 270.33714395991
+ 89.526956326052
+ 47.51208
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00107126812
+ Fine
+
+ 0000003a
+ 0000003b
+ 00000060
+ 1012.3
+ 2
+
+
+ 13.844192232884
+ -24.686426023841
+ -1.5600859446234
+
+
+ Gelöscht 09:09:28 15/01/2026
+
+
+
+
+ SSeries360Prism
+ 0.002
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ None
+
+
+
+ 6001
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 270.48652859278
+ 90.313536261358
+ 40.984812762276
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00106147723
+ Fine
+ 90.313691151959
+ 40.98482
+
+ 0000003a
+ 0000003b
+ 00000070
+ 1012.3
+ 2
+
+
+ 13.912861781241
+ -18.196022209181
+ -2.1763817330722
+
+
+
+
+ 6005
+
+ DirectReading
+ Fix
+ Normal
+ true
+
+
+ 268.63404893598
+ 90.496926900297
+ 38.476312137136
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00105771448
+ Fine
+ 90.497188398082
+ 38.47632
+
+ 0000003a
+ 0000003b
+ 00000070
+ 1012.3
+ 2
+
+
+ 12.647637781564
+ -15.677275914549
+ -2.2858233027262
+
+
+ Gelöscht 10:56:04 15/01/2026
+
+
+
+
+ 6002
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 268.63398651677
+ 90.496927863095
+ 38.476292137132
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00105771445
+ Fine
+ 90.497189361523
+ 38.4763
+
+ 0000003a
+ 0000003b
+ 00000070
+ 1012.3
+ 2
+
+
+ 12.647596353599
+ -15.677254916485
+ -2.2858237759284
+
+
+
+
+ 6003
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 268.81551943627
+ 90.375033967256
+ 49.116512584245
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00107367478
+ Fine
+ 90.375188553272
+ 49.11652
+
+ 0000003a
+ 0000003b
+ 00000070
+ 1012.3
+ 2
+
+
+ 12.549517127425
+ -26.318124925878
+ -2.2735489398447
+
+
+
+
+ 6004
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 270.33742731338
+ 89.526484975185
+ 47.512102232812
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001071268165
+ Fine
+ 89.52628320365
+ 47.51211
+
+ 0000003a
+ 0000003b
+ 00000070
+ 1012.3
+ 2
+
+
+ 13.844641482407
+ -24.722841136558
+ -1.559394151902
+
+
+
+
+ 0000003a
+ 0000003b
+ ScanFullDome
+ Baumschulenstr_93 Files\SdeDatabase.rwi\SdeDatabase_Station1_Scan1.rwcx
+ Scan 1
+ Scan 1
+ 5421274
+ 0.05729577951308
+ 0.05729577951308
+ -17.386873003947
+ 0.00034943754597
+ false
+ false
+
+
+
+ CustomPrism
+ -0.0344
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ None
+
+
+
+ 3006
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 268.84956357977
+ 80.035381747166
+ 21.97632
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00103296448
+ Fine
+
+ 0000003a
+ 0000003b
+ 00000060
+ 1012.3
+ 2
+
+
+ 13.130949845176
+ 1.1818030068431
+ 1.8445856166495
+
+
+
+
+ 3007
+
+ DirectReading
+ Fix
+ Normal
+ true
+
+
+ 278.24495329475
+ 80.277785241838
+ 22.50232
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00103375348
+ Fine
+
+ 0000003a
+ 0000003b
+ 00000060
+ 1012.3
+ 2
+
+
+ 16.7405283471
+ 0.87202937668487
+ 1.8419497882541
+
+
+ Gelöscht 09:29:21 15/01/2026
+
+
+
+
+ 3007
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 278.2535960489
+ 80.281424000106
+ 22.5075
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00103376125
+ Fine
+
+ 0000003a
+ 0000003b
+ 00000060
+ 1012.3
+ 2
+
+
+ 16.74460172631
+ 0.86721755321816
+ 1.8414178293525
+
+
+
+
+ TrimbleSX10
+ 269.89888962766
+ 78.08621711754
+ Fine
+ SetToAzimuth
+ NoServo
+ 0
+ false
+ 3
+ 0.00027788453064
+ 0.00027788453064
+ 0.001
+ 1.5
+ FromInstrument
+ 0
+ 0.003
+ SX12
+ 30710160
+ S2.8.5
+ TRIMBLE-SX12-30710160
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+
+
+
+
+ 1012.7
+ 2
+ -17.500391037191
+ true
+ true
+ 0.142
+ ReadFromInstrument
+ true
+
+
+
+ 1002
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ 000000d1
+ 000000d9
+ 0
+ 0
+ 1
+ Fixed
+
+ StandardResection
+
+
+
+ 000000da
+ 1002
+
+
+
+
+
+
+
+
+ SSeries360Prism
+ 0.002
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ None
+
+
+
+ 6001
+
+ DirectReading
+ Fix
+ Normal
+ true
+
+
+ 224.99043036383
+ 98.815414688269
+ 2.8751038523636
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00100431316
+ Fine
+ 98.877563802316
+ 2.87544
+
+ 000000da
+ 000000db
+ 000000dc
+ 1012.7
+ 2
+
+
+
+
+ -2.1827623132233
+
+
+
+
+ 6002
+
+ DirectReading
+ Fix
+ Normal
+ true
+
+
+ 247.51080185785
+ 96.001774213405
+ 5.2530510836985
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001007879815
+ Fine
+ 96.024926356137
+ 5.25321
+
+ 000000da
+ 000000db
+ 000000dc
+ 1012.7
+ 2
+
+
+
+
+ -2.2913023075493
+
+
+
+
+ 6003
+
+ DirectReading
+ Fix
+ BackSight
+ true
+
+
+ 58.81155257596
+ 95.647429445852
+ 5.473038533967
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00100820977
+ Fine
+ 95.668341410439
+ 5.47318
+
+ 000000da
+ 000000db
+ 000000dc
+ 1012.7
+ 2
+
+
+
+
+ -2.2806186448537
+
+
+
+
+ 6004
+
+ DirectReading
+ Fix
+ BackSight
+ true
+
+
+ 75.915172280311
+ 87.440912780064
+ 3.9278454711148
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00100589182
+ Fine
+ 87.427670979718
+ 3.92788
+
+ 000000da
+ 000000db
+ 000000dc
+ 1012.7
+ 2
+
+
+
+
+ -1.5663853331097
+
+
+
+
+ TrimbleSX10
+ 269.89888962766
+ 78.08621711754
+ Fine
+ SetToAzimuth
+ HorizontalAndVerticalAngle
+ 0
+ false
+ 3
+ 0.00027788453064
+ 0.00027788453064
+ 0.001
+ 1.5
+ FromInstrument
+ 0
+ 0.003
+ SX12
+ 30710160
+ S2.8.5
+ TRIMBLE-SX12-30710160
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+
+
+
+
+ 1012.5
+ 2
+ -17.443632020569
+ true
+ true
+ 0.142
+ ReadFromInstrument
+ true
+
+
+
+ 1002
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ 000000fc
+ 00000104
+ 0
+ 0
+ 1
+ Fixed
+
+ StandardResection
+
+
+
+ 00000105
+ 1002
+
+
+
+
+
+
+
+
+ SSeries360Prism
+ 0.002
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ None
+
+
+
+ 6004
+
+ DirectReading
+ Fix
+ Normal
+ true
+
+
+ 75.844840620342
+ 87.358302700693
+ 3.9368536541356
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001005905335
+ Fine
+ 87.344665223209
+ 3.93689
+
+ 00000105
+ 00000106
+ 00000107
+ 1012.5
+ 2
+
+
+
+
+ -1.5603099511
+
+
+
+
+ 6003
+
+ DirectReading
+ Fix
+ Normal
+ true
+
+
+ 58.778321501957
+ 95.575228816108
+ 5.4813219546268
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00100822219
+ Fine
+ 95.595843148138
+ 5.48146
+
+ 00000105
+ 00000106
+ 00000107
+ 1012.5
+ 2
+
+
+
+
+ -2.2745572841726
+
+
+
+
+ 6002
+
+ DirectReading
+ Fix
+ BackSight
+ true
+
+
+ 247.48881390095
+ 95.945874958273
+ 5.2440539014478
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001007866315
+ Fine
+ 95.968851895058
+ 5.24421
+
+ 00000105
+ 00000106
+ 00000107
+ 1012.5
+ 2
+
+
+
+
+ -2.2852713187906
+
+
+
+
+ 6001
+
+ DirectReading
+ Fix
+ BackSight
+ true
+
+
+ 224.90872686275
+ 98.722220784422
+ 2.8661807646591
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001004299765
+ Fine
+ 98.783911777803
+ 2.86651
+
+ 00000105
+ 00000106
+ 00000107
+ 1012.5
+ 2
+
+
+
+
+ -2.1767842852215
+
+
+
+
+ TrimbleSX10
+ 269.89888962766
+ 78.08621711754
+ Fine
+ SetToAzimuth
+ HorizontalAndVerticalAngle
+ 0
+ false
+ 3
+ 0.00027788453064
+ 0.00027788453064
+ 0.001
+ 1.5
+ FromInstrument
+ 0
+ 0.003
+ SX12
+ 30710160
+ S2.8.5
+ TRIMBLE-SX12-30710160
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+
+
+
+
+ 1012.4
+ 2
+ -17.415252512258
+ true
+ true
+ 0.142
+ ReadFromInstrument
+ true
+
+
+
+ 1002
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ 00000127
+ 0000012f
+ 0
+ 0
+ 1
+ Fixed
+
+ StandardResection
+
+
+
+ 00000130
+ 1002
+
+
+
+
+
+
+
+
+ SSeries360Prism
+ 0.002
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ None
+
+
+
+ 6001
+
+ DirectReading
+ Fix
+ Normal
+ true
+
+
+ 224.9092229623
+ 98.722914727858
+ 2.8661807133912
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001004299765
+ Fine
+ 98.784610584174
+ 2.86651
+
+ 00000130
+ 00000131
+ 00000132
+ 1012.4
+ 2
+
+
+
+
+ -2.1768186256702
+
+
+
+
+ 6004
+
+ DirectReading
+ Fix
+ Normal
+ true
+
+
+ 75.84573417922
+ 87.35891774552
+ 3.9368636678801
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00100590535
+ Fine
+ 87.345283475262
+ 3.9369
+
+ 00000130
+ 00000131
+ 00000132
+ 1012.4
+ 2
+
+
+
+
+ -1.5603517207159
+
+
+
+
+ 6003
+
+ DirectReading
+ Fix
+ BackSight
+ true
+
+
+ 58.778772573362
+ 95.575526150164
+ 5.4812719406284
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001008222115
+ Fine
+ 95.59614176613
+ 5.48141
+
+ 00000130
+ 00000131
+ 00000132
+ 1012.4
+ 2
+
+
+
+
+ -2.2745807605253
+
+
+
+
+ 6002
+
+ DirectReading
+ Fix
+ BackSight
+ true
+
+
+ 247.48889171138
+ 95.946322904698
+ 5.2442038789833
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00100786654
+ Fine
+ 95.969300905569
+ 5.24436
+
+ 00000130
+ 00000131
+ 00000132
+ 1012.4
+ 2
+
+
+
+
+ -2.2853276640248
+
+
+
+
+ TrimbleSX10
+ 269.89888962766
+ 78.08621711754
+ Fine
+ SetToAzimuth
+ HorizontalAndVerticalAngle
+ 0
+ false
+ 3
+ 0.00027788453064
+ 0.00027788453064
+ 0.001
+ 1.5
+ FromInstrument
+ 0
+ 0.003
+ SX12
+ 30710160
+ S2.8.5
+ TRIMBLE-SX12-30710160
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+
+
+
+
+ 1012.4
+ 2
+ -17.415252512258
+ true
+ true
+ 0.142
+ ReadFromInstrument
+ true
+
+
+
+ 1002
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ 00000152
+ 0000015a
+ 0
+ 0
+ 1
+ Fixed
+
+ StandardResection
+
+
+
+ 0000015b
+ 1002
+
+
+
+
+
+
+
+
+ SSeries360Prism
+ 0.002
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ None
+
+
+
+ 6002
+
+ DirectReading
+ Fix
+ Normal
+ true
+
+
+ 247.48962375173
+ 95.945744278576
+ 5.2439339079904
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001007866135
+ Fine
+ 95.968721240132
+ 5.24409
+
+ 0000015b
+ 0000015c
+ 0000015d
+ 1012.4
+ 2
+
+
+
+
+ -2.2852470042149
+
+
+
+
+ 6003
+
+ DirectReading
+ Fix
+ Normal
+ true
+
+
+ 58.779064434832
+ 95.575801972358
+ 5.4813619276574
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00100822225
+ Fine
+ 95.596418264716
+ 5.4815
+
+ 0000015b
+ 0000015c
+ 0000015d
+ 1012.4
+ 2
+
+
+
+
+ -2.2746157748342
+
+
+
+
+ 6004
+
+ DirectReading
+ Fix
+ BackSight
+ true
+
+
+ 75.846285904644
+ 87.359343973271
+ 3.9369936774093
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001005905545
+ Fine
+ 87.345712353737
+ 3.93703
+
+ 0000015b
+ 0000015c
+ 0000015d
+ 1012.4
+ 2
+
+
+
+
+ -1.5603750008578
+
+
+
+
+ 6001
+
+ DirectReading
+ Fix
+ BackSight
+ true
+
+
+ 224.90987861145
+ 98.723708179495
+ 2.8661606547467
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001004299735
+ Fine
+ 98.78541002932
+ 2.86649
+
+ 0000015b
+ 0000015c
+ 0000015d
+ 1012.4
+ 2
+
+
+
+
+ -2.1768548428435
+
+
+
+
+ TrimbleSX10
+ 269.89888962766
+ 78.08621711754
+ Fine
+ SetToAzimuth
+ HorizontalAndVerticalAngle
+ 0
+ false
+ 3
+ 0.00027788453064
+ 0.00027788453064
+ 0.001
+ 1.5
+ FromInstrument
+ 0
+ 0.003
+ SX12
+ 30710160
+ S2.8.5
+ TRIMBLE-SX12-30710160
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+
+
+
+
+ 1012.4
+ 2
+ -17.415252512258
+ true
+ true
+ 0.142
+ ReadFromInstrument
+ true
+
+
+
+ 1002
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ 0000017e
+ 00000186
+ 0
+ 0
+ 1
+ Fixed
+
+ StandardResection
+
+
+
+ 00000187
+ 1002
+
+
+
+
+
+
+
+
+ SSeries360Prism
+ 0.002
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ None
+
+
+
+ 6004
+
+ DirectReading
+ Fix
+ Normal
+ true
+
+
+ 75.846774400329
+ 87.35948640021
+ 3.9370036805916
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00100590556
+ Fine
+ 87.34585555008
+ 3.93704
+
+ 00000187
+ 00000188
+ 00000189
+ 1012.4
+ 2
+
+
+
+
+ -1.5603843210786
+
+
+
+
+ 6003
+
+ DirectReading
+ Fix
+ Normal
+ true
+
+
+ 58.780114091852
+ 95.575405973947
+ 5.4813319462908
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001008222205
+ Fine
+ 95.59602092082
+ 5.48147
+
+ 00000187
+ 00000188
+ 00000189
+ 1012.4
+ 2
+
+
+
+
+ -2.2745751438784
+
+
+
+
+ 6002
+
+ DirectReading
+ Fix
+ BackSight
+ true
+
+
+ 247.4898248479
+ 95.946081660566
+ 5.2441838910904
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00100786651
+ Fine
+ 95.969058821129
+ 5.24434
+
+ 00000187
+ 00000188
+ 00000189
+ 1012.4
+ 2
+
+
+
+
+ -2.2853036235444
+
+
+
+
+ 6001
+
+ DirectReading
+ Fix
+ BackSight
+ true
+
+
+ 224.91029407389
+ 98.723688560386
+ 2.8662206562569
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001004299825
+ Fine
+ 98.78538897295
+ 2.86655
+
+ 00000187
+ 00000188
+ 00000189
+ 1012.4
+ 2
+
+
+
+
+ -2.1768629723295
+
+
+
+
+ TrimbleSX10
+ 269.89888962766
+ 78.08621711754
+ Fine
+ SetToAzimuth
+ HorizontalAndVerticalAngle
+ 0
+ false
+ 3
+ 0.00027788453064
+ 0.00027788453064
+ 0.001
+ 1.5
+ FromInstrument
+ 0
+ 0.003
+ SX12
+ 30710160
+ S2.8.5
+ TRIMBLE-SX12-30710160
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+
+
+
+
+ 1012.4
+ 2
+ -17.415252512258
+ true
+ true
+ 0.142
+ ReadFromInstrument
+ true
+
+
+
+ 1002
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ 000001aa
+ 000001b2
+ 0
+ 0
+ 1
+ Fixed
+
+ StandardResection
+
+
+
+ 000001b3
+ 1002
+
+
+
+
+
+
+
+
+ SSeries360Prism
+ 0.002
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ None
+
+
+
+ 6003
+
+ DirectReading
+ Fix
+ Normal
+ true
+
+
+ 58.781801877441
+ 95.57561551679
+ 5.4812719364226
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001008222115
+ Fine
+ 95.596231461949
+ 5.48141
+
+ 000001b3
+ 000001b4
+ 000001b5
+ 1012.4
+ 2
+
+
+
+
+ -2.274589271995
+
+
+
+
+ 6002
+
+ DirectReading
+ Fix
+ Normal
+ true
+
+
+ 247.4910001125
+ 95.946124338709
+ 5.244233888955
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001007866585
+ Fine
+ 95.969101443656
+ 5.24439
+
+ 000001b3
+ 000001b4
+ 000001b5
+ 1012.4
+ 2
+
+
+
+
+ -2.2853126895155
+
+
+
+
+ 6001
+
+ DirectReading
+ Fix
+ BackSight
+ true
+
+
+ 224.91117284059
+ 98.723831253516
+ 2.8662206457134
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001004299825
+ Fine
+ 98.785532666011
+ 2.86655
+
+ 000001b3
+ 000001b4
+ 000001b5
+ 1012.4
+ 2
+
+
+
+
+ -2.1768700311714
+
+
+
+
+ 6004
+
+ DirectReading
+ Fix
+ BackSight
+ true
+
+
+ 75.848938836077
+ 87.359965575171
+ 3.9370036912949
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00100590556
+ Fine
+ 87.346337196558
+ 3.93704
+
+ 000001b3
+ 000001b4
+ 000001b5
+ 1012.4
+ 2
+
+
+
+
+ -1.5604172276413
+
+
+
+
+ TrimbleSX10
+ 269.89888962766
+ 78.08621711754
+ Fine
+ SetToAzimuth
+ HorizontalAndVerticalAngle
+ 0
+ false
+ 3
+ 0.00027788453064
+ 0.00027788453064
+ 0.001
+ 1.5
+ FromInstrument
+ 0
+ 0.003
+ SX12
+ 30710160
+ S2.8.5
+ TRIMBLE-SX12-30710160
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+
+
+
+
+ 1012.3
+ 2
+ -17.386873003947
+ true
+ true
+ 0.142
+ ReadFromInstrument
+ true
+
+
+
+ 1001
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ 000001d6
+ 000001de
+ 0
+ 0
+ 1
+ Fixed
+
+ StandardResection
+
+
+
+ 000001df
+ 1001
+
+
+
+
+
+
+
+
+ TrimbleSX10
+ 269.89888962766
+ 78.08621711754
+ Fine
+ SetToAzimuth
+ HorizontalAndVerticalAngle
+ 0
+ false
+ 3
+ 0.00027788453064
+ 0.00027788453064
+ 0.001
+ 1.5
+ FromInstrument
+ 0
+ 0.003
+ SX12
+ 30710160
+ S2.8.5
+ TRIMBLE-SX12-30710160
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+
+
+
+
+ 1012.3
+ 2
+ -17.386873003947
+ true
+ true
+ 0.142
+ ReadFromInstrument
+ true
+
+
+
+ 1002
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ 000001e2
+ 000001ea
+ 2
+ 2
+ 1
+ Fixed
+
+ StandardResection
+
+
+
+ 000001eb
+ 1002
+ 6002
+ 93.956217057226
+
+ 0
+ 0.00418028155439
+
+
+
+ SSeries360Prism
+ 0.002
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ None
+
+
+
+ 6004
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 282.31548077983
+ 87.360125444875
+ 3.9370236948664
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00100590559
+ Fine
+ 87.346497960396
+ 3.93706
+
+ 000001eb
+ 000001ec
+ 000001ed
+ 1012.3
+ 2
+
+
+ 13.846859812471
+ -24.726854895616
+ -1.5604272801291
+
+
+
+
+ 6003
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 265.24824982987
+ 95.575731973258
+ 5.4813919309552
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001008222295
+ Fine
+ 95.596347894563
+ 5.48153
+
+ 000001eb
+ 000001ec
+ 000001ed
+ 1012.3
+ 2
+
+
+ 12.555514697315
+ -26.321223321309
+ -2.2746120377501
+
+
+
+
+ 6002
+
+ DirectReading
+ Fix
+ BackSight
+ false
+
+
+ 93.956630740342
+ 95.946279220162
+ 5.244223881179
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00100786657
+ Fine
+ 95.969256965013
+ 5.24438
+
+ 000001eb
+ 000001ec
+ 000001ed
+ 1012.3
+ 2
+
+
+ 12.647551867834
+ -15.677157722944
+ -2.2853257732255
+
+
+
+
+ 6001
+
+ DirectReading
+ Fix
+ BackSight
+ false
+
+
+ 71.377052223188
+ 98.724149823736
+ 2.8661806221335
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001004299765
+ Fine
+ 98.785854335184
+ 2.86651
+
+ 000001eb
+ 000001ec
+ 000001ed
+ 1012.3
+ 2
+
+
+ 13.912903171312
+ -18.196116499333
+ -2.1768797357751
+
+
+
+
+ 1002
+
+ Resection
+ KeyedIn
+ Normal
+ false
+
+
+ 13.007594475038
+ -20.882627041923
+ -1.7418495209161
+
+
+ 0.00030647078877
+ 0.00010782939681
+ 0.00049800270292
+
+
+
+
+
+ 000001ee
+ 6004
+ NotUsed
+
+
+ -0.00221833006429
+ 0.00401375905764
+ 0.00103312822713
+
+
+
+ -0.01911379410321
+ -0.01797572297076
+ -0.00434189150855
+
+
+
+ 000001f6
+ 6003
+ NotUsed
+
+
+ -0.00599756988957
+ 0.00309839543016
+ 0.0010630979054
+
+
+
+ -0.0654767527992
+ -0.00843321947589
+ -0.0026783444032
+
+
+
+ 000001fc
+ 6002
+ HorizontalAndVertical
+
+
+ 0.00004448576454
+ -0.00009719354112
+ -0.00049800270292
+
+
+
+ -0.0004136831153
+ 0.00552291376895
+ -0.00004787785029
+
+
+
+ 00000202
+ 6001
+ HorizontalAndVertical
+
+
+ -0.00004139007156
+ 0.00009429015191
+ 0.00049800270292
+
+
+
+ 0.00140122770209
+ -0.01006404183522
+ -0.00000023577105
+
+
+
+
+
+ DRTarget
+ 0
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+
+
+
+ 2005
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 55.32405386941
+ 89.930543903148
+ 9.41787
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.002014126805
+ Fine
+
+ 000001eb
+ 000001ec
+ 00000216
+ 1012.3
+ 2
+
+
+ 18.365646850099
+ -13.137671565261
+ -1.7304270607264
+
+
+
+
+ 2006
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 155.11693368868
+ 88.419444540322
+ 2.66366
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00200399549
+ Fine
+
+ 000001eb
+ 000001ec
+ 00000216
+ 1012.3
+ 2
+
+
+ 10.592167629476
+ -19.762290803864
+ -1.6683801905507
+
+
+
+
+ 2007
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 284.45656031529
+ 88.475945272734
+ 9.20018
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00201380027
+ Fine
+
+ 000001eb
+ 000001ec
+ 00000216
+ 1012.3
+ 2
+
+
+ 15.303529385227
+ -29.788196973267
+ -1.4971542429163
+
+
+
+
+ 2008
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 2.8365955006181
+ 90.344967675362
+ 9.33024
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00201399536
+ Fine
+
+ 000001eb
+ 000001ec
+ 00000216
+ 1012.3
+ 2
+
+
+ 22.326071545812
+ -20.420911232877
+ -1.7980180617221
+
+
+
+
+ CustomPrism
+ -0.0344
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ None
+
+
+
+ 3008
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 104.03691894009
+ 79.5781643597
+ 8.1132
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.0010121698
+ Fine
+
+ 000001eb
+ 000001ec
+ 0000022b
+ 1012.3
+ 2
+
+
+ 11.080465440224
+ -13.174497113152
+ -0.28046436782415
+
+
+
+
+ 3009
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 106.27126872468
+ 55.493143796644
+ 9.78649
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001014679735
+ Fine
+
+ 000001eb
+ 000001ec
+ 0000022b
+ 1012.3
+ 2
+
+
+ 10.755983235023
+ -13.168359249305
+ 3.7826659825355
+
+
+
+
+ 3010
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 141.26400905491
+ 71.879009243961
+ 11.53672
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00101730508
+ Fine
+
+ 000001eb
+ 000001ec
+ 0000022b
+ 1012.3
+ 2
+
+
+ 4.4805105115382
+ -14.042345835955
+ 1.8356016445747
+
+
+
+
+ 3011
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 84.212802767294
+ 46.227865117116
+ 10.77557
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001016163355
+ Fine
+
+ 000001eb
+ 000001ec
+ 0000022b
+ 1012.3
+ 2
+
+
+ 13.789665288167
+ -13.166133625903
+ 5.6886831427248
+
+
+
+
+ 3012
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 103.24179057668
+ 40.453886992097
+ 12.25636
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00101838454
+ Fine
+
+ 000001eb
+ 000001ec
+ 0000022b
+ 1012.3
+ 2
+
+
+ 11.191164223575
+ -13.163566302869
+ 7.5580318956072
+
+
+
+
+ 3013
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 107.31339159192
+ 32.554379385397
+ 15.05893
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001022588395
+ Fine
+
+ 000001eb
+ 000001ec
+ 0000022b
+ 1012.3
+ 2
+
+
+ 10.601650294411
+ -13.164383806158
+ 10.921831067232
+
+
+
+
+ DRTarget
+ 0
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+
+
+
+ 2009
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 93.004786270342
+ 91.128690977587
+ 7.75133
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.002011626995
+ Fine
+
+ 000001eb
+ 000001ec
+ 00000216
+ 1012.3
+ 2
+
+
+ 12.60136047555
+ -13.143590261055
+ -1.8945292971038
+
+
+
+
+ 7002
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 89.208170204297
+ 98.211356889342
+ 13.53586
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00202030379
+ Fine
+
+ 000001eb
+ 000001ec
+ 00000216
+ 1012.3
+ 2
+
+
+ 13.192733660698
+ -7.4870479963707
+ -3.6750645329421
+
+
+
+
+ 7001
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 48.986593612803
+ 82.685411093369
+ 10.35309
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.002015529635
+ Fine
+
+ 000001eb
+ 000001ec
+ 00000216
+ 1012.3
+ 2
+
+
+ 19.746253231187
+ -13.134349252103
+ -0.42373922002883
+
+
+
+
+ CustomPrism
+ -0.0344
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ None
+
+
+
+ 3014
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 90.215335404131
+ 100.06367859657
+ 10.62628
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00101593942
+ Fine
+
+ 000001eb
+ 000001ec
+ 0000022b
+ 1012.3
+ 2
+
+
+ 12.968400129754
+ -10.453965757266
+ -3.5926624199459
+
+
+
+
+ 3015
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 85.047972194295
+ 96.965032458533
+ 15.33443
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001023001645
+ Fine
+
+ 000001eb
+ 000001ec
+ 0000022b
+ 1012.3
+ 2
+
+
+ 14.318548822387
+ -5.7524558086664
+ -3.5971379095628
+
+
+
+
+ 3016
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 90.506741487673
+ 95.662643660622
+ 18.84224
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00102826336
+ Fine
+
+ 000001eb
+ 000001ec
+ 0000022b
+ 1012.3
+ 2
+
+
+ 12.842068903051
+ -2.1676222064851
+ -3.5975812314352
+
+
+
+
+ 3017
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 128.64107243428
+ 85.046657354653
+ 5.07605
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001007614075
+ Fine
+
+ 000001eb
+ 000001ec
+ 0000022b
+ 1012.3
+ 2
+
+
+ 9.8712003219045
+ -16.959505159435
+ -1.3065366974439
+
+
+
+
+ 3018
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 121.54265079975
+ 89.814930218312
+ 9.11617
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001013674255
+ Fine
+
+ 000001eb
+ 000001ec
+ 0000022b
+ 1012.3
+ 2
+
+
+ 8.2567271743601
+ -13.14285460747
+ -1.7125097178702
+
+
+
+
+ 3019
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 181.65171011605
+ 85.735399995897
+ 8.58875
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001012883125
+ Fine
+
+ 000001eb
+ 000001ec
+ 0000022b
+ 1012.3
+ 2
+
+
+ 4.4806222192241
+ -21.128508836972
+ -1.1057319209467
+
+
+
+
+ 3020
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 249.99835266964
+ 92.016900516349
+ 11.01878
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00101652817
+ Fine
+
+ 000001eb
+ 000001ec
+ 0000022b
+ 1012.3
+ 2
+
+
+ 9.2528112833281
+ -31.197886281032
+ -2.1284220910878
+
+
+
+
+ 3021
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 294.16289593434
+ 92.650904933516
+ 9.60956
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00101441434
+ Fine
+
+ 000001eb
+ 000001ec
+ 0000022b
+ 1012.3
+ 2
+
+
+ 16.922754212858
+ -29.609362735703
+ -2.184691734635
+
+
+
+
+ 3022
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 313.81904745251
+ 97.218087076055
+ 12.97479
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001019462185
+ Fine
+
+ 000001eb
+ 000001ec
+ 0000022b
+ 1012.3
+ 2
+
+
+ 21.896143067933
+ -30.145353822899
+ -3.3677237175383
+
+
+
+
+ 3023
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 0.21639822871146
+ 105.39337735981
+ 6.19039
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001009285585
+ Fine
+
+ 000001eb
+ 000001ec
+ 0000022b
+ 1012.3
+ 2
+
+
+ 18.942600211925
+ -20.860211240155
+ -3.3758934411401
+
+
+
+
+ SSeries360Prism
+ 0.002
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ None
+
+
+
+ 6005
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 328.88737761423
+ 93.120336392508
+ 9.2044121418883
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00101380669
+ Fine
+ 93.127206747784
+ 9.20446
+
+ 000001eb
+ 000001ec
+ 000001ed
+ 1012.3
+ 2
+
+
+ 20.877871862812
+ -25.632646985461
+ -2.2429698391978
+
+
+
+
+ 000001eb
+ 000001ec
+ ScanFullDome
+ Baumschulenstr_93 Files\SdeDatabase.rwi\SdeDatabase_Station2_Scan2.rwcx
+ Scan 2
+ Scan 2
+ 1735189
+ 0.05729577951308
+ 0.05729577951308
+ -17.386873003947
+ 0
+ false
+ false
+
+
+
+ TrimbleSX10
+ 269.89888962766
+ 78.08621711754
+ Fine
+ SetToAzimuth
+ HorizontalAndVerticalAngle
+ 0
+ false
+ 3
+ 0.00027788453064
+ 0.00027788453064
+ 0.001
+ 1.5
+ FromInstrument
+ 0
+ 0.003
+ SX12
+ 30710160
+ S2.8.5
+ TRIMBLE-SX12-30710160
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+
+
+
+
+
+ Letzte Stationierung
+
+
+
+
+ 000001eb
+ 000001ec
+ ScanFullDome
+ Baumschulenstr_93 Files\SdeDatabase.rwi\SdeDatabase_Station3_Scan3.rwcx
+ Scan 3
+ Scan 3
+ 5617435
+ 0.05729577951308
+ 0.05729577951308
+ -17.386873003947
+ 0.00067470153537
+ false
+ false
+
+
+
+ TrimbleSX10
+ 269.89888962766
+ 78.08621711754
+ Fine
+ SetToAzimuth
+ NoServo
+ 0
+ false
+ 3
+ 0.00027788453064
+ 0.00027788453064
+ 0.001
+ 1.5
+ FromInstrument
+ 0
+ 0.003
+ SX12
+ 30710160
+ S2.8.5
+ TRIMBLE-SX12-30710160
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+
+
+
+
+ 1012.2
+ 2
+ -17.358493495636
+ true
+ true
+ 0.142
+ ReadFromInstrument
+ true
+
+
+
+ 1003
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ 0000029f
+ 000002a7
+ 2
+ 2
+ 1
+ Fixed
+
+ StandardResection
+
+
+
+ 000002a8
+ 1003
+ 2003
+ 94.959326298521
+
+ 0
+ 0.00036033611032
+
+
+
+ DRTarget
+ 0
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+
+
+
+ 2001
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 264.35331894821
+ 88.495229060151
+ 23.17724
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00203476586
+ Fine
+
+ 000002a8
+ 000002a9
+ 000002aa
+ 1012.2
+ 2
+
+
+ 11.747179910788
+ 0.01394207315064
+ -1.3606769573717
+
+
+
+
+ 2002
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 350.42830556453
+ 88.979488917082
+ 17.17932
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00202576898
+ Fine
+
+ 000002a8
+ 000002a9
+ 000002aa
+ 1012.2
+ 2
+
+
+ 30.964021983396
+ 20.214258366695
+ -1.6633571871961
+
+
+
+
+ 2003
+
+ DirectReading
+ Fix
+ BackSight
+ false
+
+
+ 94.959794068858
+ 93.44451034159
+ 10.77186
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00201615779
+ Fine
+
+ 000002a8
+ 000002a9
+ 000002aa
+ 1012.2
+ 2
+
+
+ 13.097248020171
+ 33.782314283399
+ -2.6165153436401
+
+
+
+
+ 2004
+
+ DirectReading
+ Fix
+ BackSight
+ false
+
+
+ 185.00548756181
+ 88.969884951262
+ 29.5737
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00204436055
+ Fine
+
+ 000002a8
+ 000002a9
+ 000002aa
+ 1012.2
+ 2
+
+
+ -15.428793829104
+ 20.49048322378
+ -1.43761768125
+
+
+
+
+ 1003
+
+ Resection
+ KeyedIn
+ Normal
+ false
+
+
+ 14.026848589211
+ 23.070360774115
+ -1.9693411966615
+
+
+ 0.00010253715402
+ 0.00014102413199
+ 0.00016702910145
+
+
+
+
+
+ 000002ab
+ 2001
+ NotUsed
+
+
+ -0.00007910252605
+ -0.00028161131292
+ 0.00011997291434
+
+
+
+ -0.0001261442214
+ -0.00027778154707
+ 0.00029107969013
+
+
+
+ 000002b3
+ 2002
+ NotUsed
+
+
+ 0.00047851950683
+ -0.00047055443306
+ -0.00006583527312
+
+
+
+ -0.00128233521981
+ 0.0002522112783
+ 0.00054884683386
+
+
+
+ 000002b9
+ 2003
+ HorizontalAndVertical
+
+
+ 0.00008437294092
+ 0.00004309413122
+ 0.00016702910145
+
+
+
+ -0.00046777033751
+ -0.00089822937783
+ 0.00002554017289
+
+
+
+ 000002bf
+ 2004
+ HorizontalAndVertical
+
+
+ -0.0000952507311
+ -0.00004044948551
+ -0.00016702910145
+
+
+
+ 0.00006197730521
+ 0.0003269810187
+ 0.0000953981619
+
+
+
+
+
+ CustomPrism
+ -0.0344
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ None
+
+
+
+ 3024
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 266.93158203833
+ 70.929309788331
+ 23.22125
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001034831875
+ Fine
+
+ 000002a8
+ 000002a9
+ 000002d3
+ 1012.2
+ 2
+
+
+ 12.85383391328
+ 1.1879032664027
+ 5.6065045108183
+
+
+
+
+ 3025
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 245.32105798303
+ 72.500049101915
+ 25.25638
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00103788457
+ Fine
+
+ 000002a8
+ 000002a9
+ 000002d3
+ 1012.2
+ 2
+
+
+ 3.9834204403483
+ 1.2132252261094
+ 5.6149430026173
+
+
+
+
+ 3026
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 278.31025531832
+ 64.079301304563
+ 25.99021
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001038985315
+ Fine
+
+ 000002a8
+ 000002a9
+ 000002d3
+ 1012.2
+ 2
+
+
+ 17.400867263385
+ -0.02875174095687
+ 9.3764810734927
+
+
+
+
+ 3027
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 258.77602745663
+ 57.318373434543
+ 27.97716
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00104196574
+ Fine
+
+ 000002a8
+ 000002a9
+ 000002d3
+ 1012.2
+ 2
+
+
+ 9.4490884907217
+ 0.00164409601749
+ 13.118705496363
+
+
+
+
+ 3028
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 276.49693443014
+ 56.966419908383
+ 28.82976
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00104324464
+ Fine
+
+ 000002a8
+ 000002a9
+ 000002d3
+ 1012.2
+ 2
+
+
+ 16.758310760205
+ -0.91478461598888
+ 13.727661269529
+
+
+
+
+ 3029
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 244.13692487197
+ 63.97417409209
+ 27.2106
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.0010408159
+ Fine
+
+ 000002a8
+ 000002a9
+ 000002d3
+ 1012.2
+ 2
+
+
+ 3.3743130500475
+ 1.0963002625835
+ 9.9547670634309
+
+
+
+
+ TrimbleSX10
+ 269.89888962766
+ 78.08621711754
+ Fine
+ SetToAzimuth
+ HorizontalAndVerticalAngle
+ 0
+ false
+ 3
+ 0.00027788453064
+ 0.00027788453064
+ 0.001
+ 1.5
+ FromInstrument
+ 0
+ 0.003
+ SX12
+ 30710160
+ S2.8.5
+ TRIMBLE-SX12-30710160
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+
+
+
+
+ 1011.8
+ 6
+ -13.130429661353
+ true
+ true
+ 0.142
+ ReadFromInstrument
+ true
+
+
+
+ 1004
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ 000002f3
+ 000002fb
+ 0
+ 0
+ 1
+ Fixed
+
+ StandardResection
+
+
+
+ 000002fc
+ 1004
+
+
+
+
+
+
+
+
+ SSeries360Prism
+ 0.002
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ None
+
+
+
+ 6002
+
+ DirectReading
+ Fix
+ Normal
+ true
+
+
+ 92.624422288115
+ 91.832300789838
+ 9.9994390288142
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00101499919
+ Fine
+ 91.836015243281
+ 9.99946
+
+ 000002fc
+ 000002fd
+ 000002fe
+ 1011.8
+ 6
+
+
+
+
+ -2.2854002099286
+
+
+
+
+ DRTarget
+ 0
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+
+
+
+ 2005
+
+ DirectReading
+ Fix
+ Normal
+ true
+
+
+ 55.555834273879
+ 88.598517142656
+ 9.66166
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00201449249
+ Fine
+
+ 000002fc
+ 000002fd
+ 00000307
+ 1011.8
+ 6
+
+
+
+
+ -1.7293142629416
+
+
+
+
+ 2008
+
+ DirectReading
+ Fix
+ BackSight
+ true
+
+
+ 358.84244495159
+ 87.175173814464
+ 3.42452
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00200513678
+ Fine
+
+ 000002fc
+ 000002fd
+ 00000307
+ 1011.8
+ 6
+
+
+
+
+ -1.7968551731526
+
+
+
+
+ SSeries360Prism
+ 0.002
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ None
+
+
+
+ 6005
+
+ DirectReading
+ Fix
+ Normal
+ true
+
+
+ 247.85334124635
+ 95.010965015546
+ 3.1501767973819
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001004725435
+ Fine
+ 95.043295021619
+ 3.15029
+
+ 000002fc
+ 000002fd
+ 000002fe
+ 1011.8
+ 6
+
+
+
+
+ -2.2409497896551
+
+
+
+
+ 6004
+
+ DirectReading
+ Fix
+ BackSight
+ true
+
+
+ 156.26491910653
+ 86.309722906561
+ 6.2705757099798
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00100940596
+ Fine
+ 86.297787826154
+ 6.27064
+
+ 000002fc
+ 000002fd
+ 000002fe
+ 1011.8
+ 6
+
+
+
+
+ -1.5619039050283
+
+
+
+
+ TrimbleSX10
+ 269.89888962766
+ 78.08621711754
+ Fine
+ SetToAzimuth
+ HorizontalAndVerticalAngle
+ 0
+ false
+ 3
+ 0.00027788453064
+ 0.00027788453064
+ 0.001
+ 1.5
+ FromInstrument
+ 0
+ 0.003
+ SX12
+ 30710160
+ S2.8.5
+ TRIMBLE-SX12-30710160
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+
+
+
+
+ 1011.7
+ 6
+ -13.102456809081
+ true
+ true
+ 0.142
+ ReadFromInstrument
+ true
+
+
+
+ 1004
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ 00000327
+ 0000032f
+ 0
+ 0
+ 1
+ Fixed
+
+ StandardResection
+
+
+
+ 00000330
+ 1004
+
+
+
+
+
+
+
+
+ SSeries360Prism
+ 0.002
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ None
+
+
+
+ 6005
+
+ DirectReading
+ Fix
+ Normal
+ true
+
+
+ 247.85297211332
+ 95.011108713039
+ 3.1503367913263
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001004725675
+ Fine
+ 95.043437991875
+ 3.15045
+
+ 00000330
+ 00000331
+ 00000332
+ 1011.7
+ 6
+
+
+
+
+ -2.2409716477215
+
+
+
+
+ DRTarget
+ 0
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+
+
+
+ 2008
+
+ DirectReading
+ Fix
+ Normal
+ true
+
+
+ 358.84242764208
+ 87.176662183848
+ 3.42454
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00200513681
+ Fine
+
+ 00000330
+ 00000331
+ 0000033b
+ 1011.7
+ 6
+
+
+
+
+ -1.7969430326714
+
+
+
+
+ SSeries360Prism
+ 0.002
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ None
+
+
+
+ 6002
+
+ DirectReading
+ Fix
+ BackSight
+ true
+
+
+ 92.624542192094
+ 91.831554515559
+ 9.9995890403358
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001014999415
+ Fine
+ 91.835267400964
+ 9.99961
+
+ 00000330
+ 00000331
+ 00000332
+ 1011.7
+ 6
+
+
+
+
+ -2.2852748132662
+
+
+
+
+ 6004
+
+ DirectReading
+ Fix
+ BackSight
+ true
+
+
+ 156.26588098582
+ 86.309884688073
+ 6.2706657150211
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001009406095
+ Fine
+ 86.297950301829
+ 6.27073
+
+ 00000330
+ 00000331
+ 00000332
+ 1011.7
+ 6
+
+
+
+
+ -1.5619157754139
+
+
+
+
+ TrimbleSX10
+ 269.89888962766
+ 78.08621711754
+ Fine
+ SetToAzimuth
+ HorizontalAndVerticalAngle
+ 0
+ false
+ 3
+ 0.00027788453064
+ 0.00027788453064
+ 0.001
+ 1.5
+ FromInstrument
+ 0
+ 0.003
+ SX12
+ 30710160
+ S2.8.5
+ TRIMBLE-SX12-30710160
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+
+
+
+
+ 1011.8
+ 6
+ -13.130429661353
+ true
+ true
+ 0.142
+ ReadFromInstrument
+ true
+
+
+
+ 1004
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ 00000354
+ 0000035c
+ 0
+ 0
+ 1
+ Fixed
+
+ StandardResection
+
+
+
+ 0000035d
+ 1004
+
+
+
+
+
+
+
+
+ SSeries360Prism
+ 0.002
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ None
+
+
+
+ 6004
+
+ DirectReading
+ Fix
+ Normal
+ true
+
+
+ 156.26544670424
+ 86.309889493822
+ 6.270725715173
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001009406185
+ Fine
+ 86.297955237618
+ 6.27079
+
+ 0000035d
+ 0000035e
+ 0000035f
+ 1011.8
+ 6
+
+
+
+
+ -1.5619124501229
+
+
+
+
+ 6002
+
+ DirectReading
+ Fix
+ Normal
+ true
+
+
+ 92.624346868437
+ 91.832085625056
+ 9.999859032138
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00101499982
+ Fine
+ 91.835799486216
+ 9.99988
+
+ 0000035d
+ 0000035e
+ 0000035f
+ 1011.8
+ 6
+
+
+
+
+ -2.2853760978455
+
+
+
+
+ DRTarget
+ 0
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+
+
+
+ 2005
+
+ DirectReading
+ Fix
+ BackSight
+ true
+
+
+ 55.555920358553
+ 88.598387203182
+ 9.66187
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.002014492805
+ Fine
+
+ 0000035d
+ 0000035e
+ 0000036e
+ 1011.8
+ 6
+
+
+
+
+ -1.7292872215078
+
+
+
+
+ 2008
+
+ DirectReading
+ Fix
+ BackSight
+ true
+
+
+ 358.84289584896
+ 87.175765041089
+ 3.42436
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00200513654
+ Fine
+
+ 0000035d
+ 0000035e
+ 0000036e
+ 1011.8
+ 6
+
+
+
+
+ -1.7968983503998
+
+
+
+
+ TrimbleSX10
+ 269.89888962766
+ 78.08621711754
+ Fine
+ SetToAzimuth
+ HorizontalAndVerticalAngle
+ 0
+ false
+ 3
+ 0.00027788453064
+ 0.00027788453064
+ 0.001
+ 1.5
+ FromInstrument
+ 0
+ 0.003
+ SX12
+ 30710160
+ S2.8.5
+ TRIMBLE-SX12-30710160
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+
+
+
+
+ 1011.7
+ 6
+ -13.102456809081
+ true
+ true
+ 0.142
+ ReadFromInstrument
+ true
+
+
+
+ 1004
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ 00000381
+ 00000389
+ 2
+ 2
+ 1
+ Fixed
+
+ StandardResection
+
+
+
+ 0000038a
+ 1004
+ 6003
+ 206.65547591436
+
+ 0
+ 0.0040027091431
+
+
+
+ DRTarget
+ 0
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+
+
+
+ 2008
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 41.618402789508
+ 87.175760458594
+ 3.4242
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.0020051363
+ Fine
+
+ 0000038a
+ 0000038b
+ 0000038c
+ 1011.7
+ 6
+
+
+ 22.322062594264
+ -20.424528070271
+ -1.7969059556788
+
+
+
+
+ SSeries360Prism
+ 0.002
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ None
+
+
+
+ 6005
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 290.62845850989
+ 95.01114223142
+ 3.1504167899255
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001004725795
+ Fine
+ 95.043470900131
+ 3.15053
+
+ 0000038a
+ 0000038b
+ 00000395
+ 1011.7
+ 6
+
+
+ 20.871683008741
+ -25.634957643703
+ -2.2409804724949
+
+
+
+
+ 6003
+
+ DirectReading
+ Fix
+ BackSight
+ false
+
+
+ 206.65769627881
+ 92.18750258581
+ 8.0780730001977
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00101211715
+ Fine
+ 92.192993763762
+ 8.0781
+
+ 0000038a
+ 0000038b
+ 00000395
+ 1011.7
+ 6
+
+
+ 12.549497599427
+ -26.318484829167
+ -2.274029539996
+
+
+
+
+ 6002
+
+ DirectReading
+ Fix
+ BackSight
+ false
+
+
+ 135.39983623054
+ 91.831918865416
+ 9.9997390347121
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00101499964
+ Fine
+ 91.835632433316
+ 9.99976
+
+ 0000038a
+ 0000038b
+ 00000395
+ 1011.7
+ 6
+
+
+ 12.647579731597
+ -15.676883566697
+ -2.2853431757772
+
+
+
+
+ 1004
+
+ Resection
+ KeyedIn
+ Normal
+ false
+
+
+ 19.765325507995
+ -22.695974411239
+ -1.9656228113547
+
+
+ 0.00039144461666
+ 0.0006341263809
+ 0.00048060015125
+
+
+
+
+
+ 0000038d
+ 2008
+ NotUsed
+
+
+ 0.00400895154874
+ 0.00361683739425
+ -0.00111210604333
+
+
+
+ 0.00069051280636
+ 0.02300169501494
+ 0.00533813526611
+
+
+
+ 00000396
+ 6005
+ NotUsed
+
+
+ 0.00618885407114
+ 0.00231065824211
+ -0.00198936670297
+
+
+
+ 0.12052878579832
+ 0.0359777288413
+ 0.00019910894319
+
+
+
+ 0000039c
+ 6003
+ HorizontalAndVertical
+
+
+ 0.00001952799797
+ 0.0003599032889
+ 0.00048060015125
+
+
+
+ -0.0022203644549
+ -0.00335715083487
+ -0.00019712003339
+
+
+
+ 000003a2
+ 6002
+ HorizontalAndVertical
+
+
+ 0.0000166220016
+ -0.00037134978821
+ -0.00048060015125
+
+
+
+ 0.00144863341009
+ 0.00280177460317
+ -0.00025706265351
+
+
+
+
+
+ 6006
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 281.20029544545
+ 90.279539599393
+ 25.949682846954
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001038924535
+ Fine
+ 90.279757763899
+ 25.94969
+
+ 0000038a
+ 0000038b
+ 00000395
+ 1011.7
+ 6
+
+
+ 24.806039061489
+ -48.152749175759
+ -2.0921906646654
+
+
+
+
+ 6007
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 278.20415854487
+ 90.037384899322
+ 26.120263169836
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001039180405
+ Fine
+ 90.037413885536
+ 26.12027
+
+ 0000038a
+ 0000038b
+ 00000395
+ 1011.7
+ 6
+
+
+ 23.492942987061
+ -48.55055487003
+ -1.9826211955766
+
+
+
+
+ 6008
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 277.94683753533
+ 90.365115640092
+ 20.399112614704
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00103059868
+ Fine
+ 90.365478194876
+ 20.39912
+
+ 0000038a
+ 0000038b
+ 00000395
+ 1011.7
+ 6
+
+
+ 22.585771037031
+ -42.900495759321
+ -2.0955977145299
+
+
+
+
+ 0000038a
+ 0000038b
+ ScanFullDome
+ Baumschulenstr_93 Files\SdeDatabase.rwi\SdeDatabase_Station4_Scan4.rwcx
+ Scan 4
+ Scan 4
+ 6876978
+ 0.05729577951308
+ 0.05729577951308
+ -13.102456809081
+ 0.00120214488858
+ false
+ false
+
+
+
+ TrimbleSX10
+ 269.89888962766
+ 78.08621711754
+ Fine
+ SetToAzimuth
+ HorizontalAndVerticalAngle
+ 0
+ false
+ 3
+ 0.00027788453064
+ 0.00027788453064
+ 0.001
+ 1.5
+ FromInstrument
+ 0
+ 0.003
+ SX12
+ 30710160
+ S2.8.5
+ TRIMBLE-SX12-30710160
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+
+
+
+
+ 1011.9
+ 6
+ -13.158402513625
+ true
+ true
+ 0.142
+ ReadFromInstrument
+ true
+
+
+
+ 1005
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ 000003c7
+ 000003cf
+ 0
+ 0
+ 1
+ Fixed
+
+ StandardResection
+
+
+
+ 000003d0
+ 1005
+
+
+
+
+
+
+
+
+ DRTarget
+ 0
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+
+
+
+ 2005
+
+ DirectReading
+ Fix
+ Normal
+ true
+
+
+ 311.48396854283
+ 89.620257902077
+ 33.30288
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00204995432
+ Fine
+
+ 000003d0
+ 000003d1
+ 000003d2
+ 1011.9
+ 6
+
+
+
+
+ -1.7301556801726
+
+
+
+
+ SSeries360Prism
+ 0.002
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ None
+
+
+
+ 6005
+
+ DirectReading
+ Fix
+ Normal
+ true
+
+
+ 310.03915271751
+ 90.814402153453
+ 20.575180384567
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001030862785
+ Fine
+ 90.815203891473
+ 20.57519
+
+ 000003d0
+ 000003d1
+ 000003db
+ 1011.9
+ 6
+
+
+
+
+ -2.2433907628346
+
+
+
+
+ 6006
+
+ DirectReading
+ Fix
+ Normal
+ true
+
+
+ 152.58701526944
+ 93.295011003922
+ 2.4569270667665
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00100368547
+ Fine
+ 93.322337129318
+ 2.45698
+
+ 000003d0
+ 000003d1
+ 000003db
+ 1011.9
+ 6
+
+
+
+
+ -2.0922786375495
+
+
+
+
+ 6007
+
+ DirectReading
+ Fix
+ BackSight
+ true
+
+
+ 120.5364259382
+ 90.73092109697
+ 2.5208609072173
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001003781305
+ Fine
+ 90.736831679317
+ 2.52087
+
+ 000003d0
+ 000003d1
+ 000003db
+ 1011.9
+ 6
+
+
+
+
+ -1.9831312753522
+
+
+
+
+ 6008
+
+ DirectReading
+ Fix
+ BackSight
+ true
+
+
+ 320.04057951477
+ 92.515793838507
+ 3.2860263661896
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00100492909
+ Fine
+ 92.531368606119
+ 3.28606
+
+ 000003d0
+ 000003d1
+ 000003db
+ 1011.9
+ 6
+
+
+
+
+ -2.0952734756786
+
+
+
+
+ TrimbleSX10
+ 269.89888962766
+ 78.08621711754
+ Fine
+ SetToAzimuth
+ HorizontalAndVerticalAngle
+ 0
+ false
+ 3
+ 0.00027788453064
+ 0.00027788453064
+ 0.001
+ 1.5
+ FromInstrument
+ 0
+ 0.003
+ SX12
+ 30710160
+ S2.8.5
+ TRIMBLE-SX12-30710160
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+
+
+
+
+ 1011.7
+ 6
+ -13.102456809081
+ true
+ true
+ 0.142
+ ReadFromInstrument
+ true
+
+
+
+ 1005
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ 000003fb
+ 00000403
+ 0
+ 0
+ 1
+ Fixed
+
+ StandardResection
+
+
+
+ 00000404
+ 1005
+
+
+
+
+
+
+
+
+ SSeries360Prism
+ 0.002
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ None
+
+
+
+ 6005
+
+ DirectReading
+ Fix
+ BackSight
+ true
+
+
+ 310.03925512961
+ 90.81449224883
+ 20.575110383949
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00103086268
+ Fine
+ 90.815294078268
+ 20.57512
+
+ 00000404
+ 00000405
+ 00000406
+ 1011.7
+ 6
+
+
+
+
+ -2.2434221374565
+
+
+
+
+ 6006
+
+ DirectReading
+ Fix
+ Normal
+ true
+
+
+ 152.58713546849
+ 93.295056835486
+ 2.4570970655174
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001003685725
+ Fine
+ 93.32238143572
+ 2.45715
+
+ 00000404
+ 00000405
+ 00000406
+ 1011.7
+ 6
+
+
+
+
+ -2.0922903800897
+
+
+
+
+ 6007
+
+ DirectReading
+ Fix
+ Normal
+ true
+
+
+ 120.53670723079
+ 90.731066537148
+ 2.5210409063161
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001003781575
+ Fine
+ 90.73697787035
+ 2.52105
+
+ 00000404
+ 00000405
+ 00000406
+ 1011.7
+ 6
+
+
+
+
+ -1.9831399771512
+
+
+
+
+ 6008
+
+ DirectReading
+ Fix
+ BackSight
+ true
+
+
+ 320.04070204823
+ 92.515611416829
+ 3.2860563700791
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001004929135
+ Fine
+ 92.531184912995
+ 3.28609
+
+ 00000404
+ 00000405
+ 00000406
+ 1011.7
+ 6
+
+
+
+
+ -2.0952643422554
+
+
+
+
+ TrimbleSX10
+ 269.89888962766
+ 78.08621711754
+ Fine
+ SetToAzimuth
+ HorizontalAndVerticalAngle
+ 0
+ false
+ 3
+ 0.00027788453064
+ 0.00027788453064
+ 0.001
+ 1.5
+ FromInstrument
+ 0
+ 0.003
+ SX12
+ 30710160
+ S2.8.5
+ TRIMBLE-SX12-30710160
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+
+
+
+
+ 1011.6
+ 6
+ -13.074483956809
+ true
+ true
+ 0.142
+ ReadFromInstrument
+ true
+
+
+
+ 1005
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ 00000427
+ 0000042f
+ 0
+ 0
+ 1
+ Fixed
+
+ StandardResection
+
+
+
+ 00000430
+ 1005
+
+
+
+
+
+
+
+
+ SSeries360Prism
+ 0.002
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ None
+
+
+
+ 6005
+
+ DirectReading
+ Fix
+ Normal
+ true
+
+
+ 310.03936991177
+ 90.814226736188
+ 20.575090385769
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00103086265
+ Fine
+ 90.815028305041
+ 20.5751
+
+ 00000430
+ 00000431
+ 00000432
+ 1011.6
+ 6
+
+
+
+
+ -2.243326516623
+
+
+
+
+ 6009
+
+ DirectReading
+ Fix
+ Normal
+ true
+
+
+ 320.04057907422
+ 92.515353039652
+ 3.2860863755868
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00100492918
+ Fine
+ 92.530924794537
+ 3.28612
+
+ 00000430
+ 00000431
+ 00000432
+ 1011.6
+ 6
+
+
+
+
+ -2.0952508500008
+
+
+
+
+ 6007
+
+ DirectReading
+ Fix
+ BackSight
+ true
+
+
+ 120.53654441331
+ 90.730877352912
+ 2.5209509074896
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00100378144
+ Fine
+ 90.736787369009
+ 2.52096
+
+ 00000430
+ 00000431
+ 00000432
+ 1011.6
+ 6
+
+
+
+
+ -1.9831305000727
+
+
+
+
+ 6006
+
+ DirectReading
+ Fix
+ BackSight
+ true
+
+
+ 152.5868619177
+ 93.294818321328
+ 2.4569270721584
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00100368547
+ Fine
+ 93.322142850861
+ 2.45698
+
+ 00000430
+ 00000431
+ 00000432
+ 1011.6
+ 6
+
+
+
+
+ -2.0922703942591
+
+
+
+
+ TrimbleSX10
+ 269.89888962766
+ 78.08621711754
+ Fine
+ SetToAzimuth
+ HorizontalAndVerticalAngle
+ 0
+ false
+ 3
+ 0.00027788453064
+ 0.00027788453064
+ 0.001
+ 1.5
+ FromInstrument
+ 0
+ 0.003
+ SX12
+ 30710160
+ S2.8.5
+ TRIMBLE-SX12-30710160
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+
+
+
+
+ 1011.6
+ 6
+ -13.074483956809
+ true
+ true
+ 0.142
+ ReadFromInstrument
+ true
+
+
+
+ 1005
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ 00000452
+ 0000045a
+ 0
+ 0
+ 1
+ Fixed
+
+ StandardResection
+
+
+
+ 0000045b
+ 1005
+
+
+
+
+
+
+
+
+ SSeries360Prism
+ 0.002
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ None
+
+
+
+ 6005
+
+ DirectReading
+ Fix
+ Normal
+ true
+
+
+ 310.03946672997
+ 90.81431294122
+ 20.575390385178
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.0010308631
+ Fine
+ 90.815114583233
+ 20.5754
+
+ 0000045b
+ 0000045c
+ 0000045d
+ 1011.6
+ 6
+
+
+
+
+ -2.2433617352881
+
+
+
+
+ 6008
+
+ DirectReading
+ Fix
+ Normal
+ true
+
+
+ 320.04061203852
+ 92.515115633789
+ 3.2861963806523
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001004929345
+ Fine
+ 92.530685395995
+ 3.28623
+
+ 0000045b
+ 0000045c
+ 0000045d
+ 1011.6
+ 6
+
+
+
+
+ -2.0952420663079
+
+
+
+
+ 6007
+
+ DirectReading
+ Fix
+ BackSight
+ true
+
+
+ 120.53635796932
+ 90.730573923844
+ 2.520890909372
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00100378135
+ Fine
+ 90.736481628143
+ 2.5209
+
+ 0000045b
+ 0000045c
+ 0000045d
+ 1011.6
+ 6
+
+
+
+
+ -1.9831163752188
+
+
+
+
+ 6006
+
+ DirectReading
+ Fix
+ BackSight
+ true
+
+
+ 152.58674524045
+ 93.294840625269
+ 2.4571470715777
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.0010036858
+ Fine
+ 93.322162874766
+ 2.4572
+
+ 0000045b
+ 0000045c
+ 0000045d
+ 1011.6
+ 6
+
+
+
+
+ -2.0922839939054
+
+
+
+
+ TrimbleSX10
+ 269.89888962766
+ 78.08621711754
+ Fine
+ SetToAzimuth
+ HorizontalAndVerticalAngle
+ 0
+ false
+ 3
+ 0.00027788453064
+ 0.00027788453064
+ 0.001
+ 1.5
+ FromInstrument
+ 0
+ 0.003
+ SX12
+ 30710160
+ S2.8.5
+ TRIMBLE-SX12-30710160
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+
+
+
+
+ 1011.6
+ 6
+ -13.074483956809
+ true
+ true
+ 0.142
+ ReadFromInstrument
+ true
+
+
+
+ 1005
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ 0000047d
+ 00000485
+ 2
+ 2
+ 1
+ Fixed
+
+ StandardResection
+
+
+
+ 00000486
+ 1005
+ 6008
+ 107.53775135676
+
+ 0
+ 0.0085363144089
+
+
+
+ SSeries360Prism
+ 0.002
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ None
+
+
+
+ 6006
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 300.07923129972
+ 93.294893250248
+ 2.4570770700912
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001003685695
+ Fine
+ 93.322216719771
+ 2.45713
+
+ 00000486
+ 00000487
+ 00000488
+ 1011.6
+ 6
+
+
+ 24.805668018905
+ -48.155868439346
+ -2.0922822255548
+
+
+
+
+ 6007
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 268.02920720586
+ 90.729397396163
+ 2.5210209166668
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001003781545
+ Fine
+ 90.735295280847
+ 2.52103
+
+ 00000486
+ 00000487
+ 00000488
+ 1011.6
+ 6
+
+
+ 23.488480528641
+ -48.552784094149
+ -1.9830662292804
+
+
+
+
+ 6008
+
+ DirectReading
+ Fix
+ BackSight
+ false
+
+
+ 107.53335271843
+ 92.515106267761
+ 3.2861663808499
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.0010049293
+ Fine
+ 92.530676114962
+ 3.2862
+
+ 00000486
+ 00000487
+ 00000488
+ 1011.6
+ 6
+
+
+ 22.585610307048
+ -42.899150251349
+ -2.0952402128732
+
+
+
+
+ 6005
+
+ DirectReading
+ Fix
+ BackSight
+ false
+
+
+ 97.532711454537
+ 90.814217162254
+ 20.575390385835
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.0010308631
+ Fine
+ 90.815018709986
+ 20.5754
+
+ 00000486
+ 00000487
+ 00000488
+ 1011.6
+ 6
+
+
+ 20.878011177165
+ -25.634007740307
+ -2.2433273408545
+
+
+
+
+ 1005
+
+ Resection
+ KeyedIn
+ Normal
+ false
+
+
+ 23.575239156055
+ -46.031492855337
+ -1.9509489144103
+
+
+ 0.00218200224003
+ 0.00138435974462
+ 0.00035750165665
+
+
+
+
+
+ 00000489
+ 6006
+ NotUsed
+
+
+ 0.00037104258479
+ 0.00311926358727
+ 0.00009156088935
+
+
+
+ 0.04402527068109
+ 0.00123609043355
+ -0.00251362131318
+
+
+
+ 00000491
+ 6007
+ NotUsed
+
+
+ 0.0044624584199
+ 0.00222922411844
+ 0.00044503370383
+
+
+
+ 0.09964127049073
+ -0.00942724969414
+ -0.00238299678156
+
+
+
+ 00000497
+ 6008
+ HorizontalAndVertical
+
+
+ 0.00016072998276
+ -0.00134550797209
+ -0.00035750165665
+
+
+
+ 0.00439863833253
+ 0.00724445810834
+ -0.00131441308811
+
+
+
+ 0000049d
+ 6005
+ HorizontalAndVertical
+
+
+ -0.00013931435254
+ 0.00136075484647
+ 0.00035750165665
+
+
+
+ -0.00011213961168
+ -0.00104936698208
+ 0.00136206055654
+
+
+
+
+
+ DRTarget
+ 0
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+
+
+
+ 2010
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 72.458666423333
+ 89.315064873391
+ 5.41291
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.002008119365
+ Fine
+
+ 00000486
+ 00000487
+ 000004b1
+ 1011.6
+ 6
+
+
+ 25.206518436747
+ -40.870720688015
+ -1.8862413852622
+
+
+
+
+ 2011
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 156.47114937449
+ 86.446195893846
+ 8.27012
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00201240518
+ Fine
+
+ 00000486
+ 00000487
+ 000004b1
+ 1011.6
+ 6
+
+
+ 16.007383970361
+ -42.736363611378
+ -1.4383208578166
+
+
+
+
+ 2012
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 200.2032671052
+ 89.983376983262
+ 14.40814
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00202161221
+ Fine
+
+ 00000486
+ 00000487
+ 000004b1
+ 1011.6
+ 6
+
+
+ 10.053761367786
+ -51.007303416861
+ -1.9467548250615
+
+
+
+
+ 2012
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 200.20303955378
+ 89.983277304296
+ 14.40817
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.002021612255
+ Fine
+
+ 00000486
+ 00000487
+ 000004b1
+ 1011.6
+ 6
+
+
+ 10.053713459351
+ -51.007260073758
+ -1.9467297503584
+
+
+
+
+ 2012
+
+ MeanTurnedAngle
+ Fix
+ MTA
+ false
+
+
+ 92.665401972728
+ 89.983327143779
+ 14.408155
+
+
+
+ 2
+ 2
+ 2
+
+ 00000486
+ 00000487
+ 000004b1
+ 1011.6
+ 6
+
+
+ 10.053737413547
+ -51.007281745349
+ -1.946742287723
+
+
+
+
+ 2013
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 348.8868402862
+ 89.532942898706
+ 2.93081
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.002004396215
+ Fine
+
+ 00000486
+ 00000487
+ 000004b1
+ 1011.6
+ 6
+
+
+ 26.450958683429
+ -46.596372546356
+ -1.9270578760413
+
+
+
+
+ CustomPrism
+ -0.0344
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ None
+
+
+
+ 3030
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 123.40767140483
+ 92.690617166358
+ 5.31462
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00100797193
+ Fine
+
+ 00000486
+ 00000487
+ 000004ce
+ 1011.6
+ 6
+
+
+ 20.671232494601
+ -41.62861843492
+ -2.1988124843371
+
+
+
+
+ 3031
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 150.55087140206
+ 91.95933413711
+ 7.51006
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00101126509
+ Fine
+
+ 00000486
+ 00000487
+ 000004ce
+ 1011.6
+ 6
+
+
+ 17.069380932476
+ -42.358276938124
+ -2.2065358808648
+
+
+
+
+ 3032
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 171.42374479973
+ 91.076212582659
+ 14.23216
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00102134824
+ Fine
+
+ 00000486
+ 00000487
+ 000004ce
+ 1011.6
+ 6
+
+
+ 9.5388945163833
+ -43.914644999123
+ -2.2175991488325
+
+
+
+
+ 3033
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 95.228223158207
+ 101.99803459639
+ 7.25075
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001010876125
+ Fine
+
+ 00000486
+ 00000487
+ 000004ce
+ 1011.6
+ 6
+
+
+ 22.93203604037
+ -39.002243942933
+ -3.4510472727961
+
+
+
+
+ 00000486
+ 00000487
+ ScanFullDome
+ Baumschulenstr_93 Files\SdeDatabase.rwi\SdeDatabase_Station5_Scan5.rwcx
+ Scan 5
+ Scan 5
+ 6963483
+ 0.05729577951308
+ 0.05729577951308
+ -13.074483956809
+ 0.00030142614345
+ false
+ false
+
+
+
+ TrimbleSX10
+ 269.89888962766
+ 78.08621711754
+ Fine
+ SetToAzimuth
+ HorizontalAndVerticalAngle
+ 0
+ false
+ 3
+ 0.00027788453064
+ 0.00027788453064
+ 0.001
+ 1.5
+ FromInstrument
+ 0
+ 0.003
+ SX12
+ 30710160
+ S2.8.5
+ TRIMBLE-SX12-30710160
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+
+
+
+
+ 1013.5
+ 2
+ -17.727427103679
+ true
+ true
+ 0.142
+ ReadFromInstrument
+ true
+
+
+
+ 1006
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ 000004e6
+ 000004ee
+ 2
+ 2
+ 1
+ Fixed
+
+ StandardResection
+
+
+
+ 000004ef
+ 1006
+ 2003
+ 94.113813721627
+
+ -0.00000000000001
+ 0.00026436635886
+
+
+
+ DRTarget
+ 0
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+
+
+
+ 2001
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 264.68494918115
+ 88.648383464953
+ 23.0157
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00203452355
+ Fine
+
+ 000004ef
+ 000004f0
+ 000004f1
+ 1013.5
+ 2
+
+
+ 11.746974743972
+ 0.01352868960958
+ -1.3605982484668
+
+
+
+
+ 2002
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 350.98620904368
+ 89.205135312389
+ 17.30109
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.002025951635
+ Fine
+
+ 000004ef
+ 000004f0
+ 000004f1
+ 1013.5
+ 2
+
+
+ 30.963822874919
+ 20.21319634194
+ -1.6634916030795
+
+
+
+
+ 2003
+
+ DirectReading
+ Fix
+ BackSight
+ false
+
+
+ 94.113476629277
+ 93.746786232278
+ 10.91046
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00201636569
+ Fine
+
+ 000004ef
+ 000004f0
+ 000004f1
+ 1013.5
+ 2
+
+
+ 13.097394328599
+ 33.782389104726
+ -2.6164648330501
+
+
+
+
+ 2004
+
+ DirectReading
+ Fix
+ BackSight
+ false
+
+
+ 184.74577795331
+ 89.092575191681
+ 29.41233
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.002044118495
+ Fine
+
+ 000004ef
+ 000004f0
+ 000004f1
+ 1013.5
+ 2
+
+
+ -15.428958950876
+ 20.490413133564
+ -1.43766819184
+
+
+
+
+ 1006
+
+ Resection
+ KeyedIn
+ Normal
+ false
+
+
+ 13.878337404905
+ 22.923487154871
+ -1.9035179035898
+
+
+ 0.0000754399461
+ 0.00010297393108
+ 0.00011651851149
+
+
+
+
+
+ 000004f2
+ 2001
+ NotUsed
+
+
+ 0.00012606429066
+ 0.00013177222813
+ 0.00004126400941
+
+
+
+ 0.00028217636735
+ -0.00011108828026
+ -0.00014186978548
+
+
+
+ 000004fa
+ 2002
+ NotUsed
+
+
+ 0.00067762798414
+ 0.00059147032159
+ 0.00006858061029
+
+
+
+ 0.00228634567381
+ -0.00020060002584
+ 0.00057750262418
+
+
+
+ 00000500
+ 2003
+ HorizontalAndVertical
+
+
+ -0.00006193548763
+ -0.00003172719559
+ 0.00011651851149
+
+
+
+ 0.00033709235012
+ -0.0006012614336
+ -0.00003475784228
+
+
+
+ 00000506
+ 2004
+ HorizontalAndVertical
+
+
+ 0.00006987104162
+ 0.00002964073019
+ -0.00011651851149
+
+
+
+ -0.00004628844998
+ 0.00022473225364
+ -0.00007392005784
+
+
+
+
+
+ CustomPrism
+ -0.0344
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ None
+
+
+
+ 3034
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 281.51797540894
+ 53.972186172658
+ 31.81275
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001047719125
+ Fine
+
+ 000004ef
+ 000004f0
+ 0000051a
+ 1013.5
+ 2
+
+
+ 19.009925999089
+ -2.2586350170632
+ 16.787529308738
+
+
+
+
+ 3035
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 264.96594766265
+ 52.745699097144
+ 31.51837
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001047277555
+ Fine
+
+ 000004ef
+ 000004f0
+ 0000051a
+ 1013.5
+ 2
+
+
+ 11.679431462851
+ -2.0392398263281
+ 17.155136228059
+
+
+
+
+ 3036
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 242.15057293058
+ 56.648773092744
+ 34.32344
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00105148516
+ Fine
+
+ 000004ef
+ 000004f0
+ 0000051a
+ 1013.5
+ 2
+
+
+ 0.49840873900879
+ -2.4008278824736
+ 16.947295226013
+
+
+
+
+ TrimbleSX10
+ 269.89888962766
+ 78.08621711754
+ Fine
+ SetToAzimuth
+ NoServo
+ 0
+ false
+ 3
+ 0.00027788453064
+ 0.00027788453064
+ 0.001
+ 1.5
+ FromInstrument
+ 0
+ 0.003
+ SX12
+ 30710160
+ S2.8.5
+ TRIMBLE-SX12-30710160
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+
+
+
+
+ 1013.6
+ 2
+ -17.75580661199
+ true
+ true
+ 0.142
+ ReadFromInstrument
+ true
+
+
+
+ 1007
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ 0000052b
+ 00000533
+ 2
+ 2
+ 1
+ Fixed
+
+ StandardResection
+
+
+
+ 00000534
+ 1007
+ 2006
+ 167.40338960232
+
+ 0.00000000000005
+ 0.01148878860268
+
+
+
+ DRTarget
+ 0
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+
+
+
+ 2008
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 19.86143097496
+ 89.726355383348
+ 3.5698
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.0020053547
+ Fine
+
+ 00000534
+ 00000535
+ 00000536
+ 1013.6
+ 2
+
+
+ 22.325457238997
+ -20.421220929104
+ -1.7978705078876
+
+
+
+
+ 2005
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 94.059110030443
+ 89.430933867171
+ 8.51811
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.002012777165
+ Fine
+
+ 00000534
+ 00000535
+ 00000536
+ 1013.6
+ 2
+
+
+ 18.36517843314
+ -13.137839867274
+ -1.7303158435879
+
+
+
+
+ 2006
+
+ DirectReading
+ Fix
+ BackSight
+ false
+
+
+ 167.408935737
+ 89.021905422565
+ 8.5832
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.0020128748
+ Fine
+
+ 00000534
+ 00000535
+ 00000536
+ 1013.6
+ 2
+
+
+ 10.592686090068
+ -19.763257853253
+ -1.6684015679807
+
+
+
+
+ 2007
+
+ DirectReading
+ Fix
+ BackSight
+ false
+
+
+ 245.79528404403
+ 87.963993732354
+ 8.94483
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.002013417245
+ Fine
+
+ 00000534
+ 00000535
+ 00000536
+ 1013.6
+ 2
+
+
+ 15.303114400952
+ -29.787174814652
+ -1.4971328654863
+
+
+
+
+ 1007
+
+ Resection
+ KeyedIn
+ Normal
+ false
+
+
+ 18.968097409704
+ -21.634012659756
+ -1.814920360607
+
+
+ 0.00128709686666
+ 0.00167101417251
+ 0.00002137743
+
+
+
+
+
+ 00000537
+ 2008
+ NotUsed
+
+
+ 0.00061430681515
+ 0.00030969622747
+ -0.0001475538345
+
+
+
+ 0.00132498047544
+ 0.00242016965252
+ 0.00068227584196
+
+
+
+ 0000053f
+ 2005
+ NotUsed
+
+
+ 0.00046841695883
+ 0.00016830201217
+ -0.00011121713857
+
+
+
+ -0.00322313106032
+ 0.00075705157519
+ 0.00013362557751
+
+
+
+ 00000545
+ 2006
+ HorizontalAndVertical
+
+
+ -0.0005184605923
+ 0.00096704938886
+ 0.00002137743
+
+
+
+ -0.00554613468692
+ -0.00006099080888
+ 0.00071710080076
+
+
+
+ 0000054b
+ 2007
+ HorizontalAndVertical
+
+
+ 0.00041498427583
+ -0.00102215861477
+ -0.00002137743
+
+
+
+ 0.00511178114752
+ 0.00031027970616
+ 0.00076094919715
+
+
+
+
+
+ CustomPrism
+ -0.0344
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ None
+
+
+
+ 3037
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 263.84582601762
+ 68.234399006691
+ 8.33949
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001012509235
+ Fine
+
+ 00000534
+ 00000535
+ 0000055f
+ 1013.6
+ 2
+
+
+ 18.141245471115
+ -29.302433587034
+ 1.264642414707
+
+
+
+
+ TrimbleSX10
+ 269.89888962766
+ 78.08621711754
+ Fine
+ SetToAzimuth
+ HorizontalAndVerticalAngle
+ 0
+ false
+ 3
+ 0.00027788453064
+ 0.00027788453064
+ 0.001
+ 1.5
+ FromInstrument
+ 0
+ 0.003
+ SX12
+ 30710160
+ S2.8.5
+ TRIMBLE-SX12-30710160
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+
+
+
+
+
+ Letzte Stationierung
+
+
+
+
+ CustomPrism
+ -0.0344
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ None
+
+
+
+ 3038
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 237.57447008307
+ 82.696322179749
+ 10.36585
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001015548775
+ Fine
+
+ 00000534
+ 00000535
+ 0000056f
+ 1013.6
+ 2
+
+
+ 13.473389399443
+ -30.283765514873
+ -0.50151711162876
+
+
+
+
+ 3039
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 239.17377545663
+ 64.655784470999
+ 11.10199
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001016652985
+ Fine
+
+ 00000534
+ 00000535
+ 0000056f
+ 1013.6
+ 2
+
+
+ 13.842620254506
+ -30.22313983326
+ 2.9225448797023
+
+
+
+
+ 3040
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 240.35641915035
+ 50.325380293409
+ 12.78655
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001019179825
+ Fine
+
+ 00000534
+ 00000535
+ 0000056f
+ 1013.6
+ 2
+
+
+ 14.113605405631
+ -30.164349829448
+ 6.326259530773
+
+
+
+
+ 3041
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 238.33759337754
+ 41.760335967441
+ 15.25275
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001022879125
+ Fine
+
+ 00000534
+ 00000535
+ 0000056f
+ 1013.6
+ 2
+
+
+ 13.647850929994
+ -30.260881440035
+ 9.536822448919
+
+
+
+
+ TrimbleSX10
+ 269.89888962766
+ 78.08621711754
+ Fine
+ SetToAzimuth
+ HorizontalAndVerticalAngle
+ 0
+ false
+ 3
+ 0.00027788453064
+ 0.00027788453064
+ 0.001
+ 1.5
+ FromInstrument
+ 0
+ 0.003
+ SX12
+ 30710160
+ S2.8.5
+ TRIMBLE-SX12-30710160
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+
+
+
+
+ 1014.4
+ 2
+ -17.982842678477
+ true
+ true
+ 0.142
+ ReadFromInstrument
+ true
+
+
+
+ 1008
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ 00000585
+ 0000058d
+ 2
+ 2
+ 1
+ Fixed
+
+ StandardResection
+
+
+
+ 0000058e
+ 1008
+ 2012
+ 198.33843206295
+
+ 0
+ 0.00237994743273
+
+
+
+ DRTarget
+ 0
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+
+
+
+ 2010
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 72.862312528892
+ 89.864019769997
+ 5.96066
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00200894099
+ Fine
+
+ 0000058e
+ 0000058f
+ 00000590
+ 1014.4
+ 2
+
+
+ 25.206548173677
+ -40.870981958923
+ -1.8862948662637
+
+
+
+
+ 2011
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 152.76828197205
+ 86.837999467812
+ 8.38451
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.002012576765
+ Fine
+
+ 0000058e
+ 0000058f
+ 00000590
+ 1014.4
+ 2
+
+
+ 16.006449698303
+ -42.736106861224
+ -1.4379632395239
+
+
+
+
+ 2012
+
+ DirectReading
+ Fix
+ BackSight
+ false
+
+
+ 198.33835438366
+ 90.18811092464
+ 14.11387
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.002021170805
+ Fine
+
+ 0000058e
+ 0000058f
+ 00000590
+ 1014.4
+ 2
+
+
+ 10.053378166391
+ -51.007380664062
+ -1.9467671472132
+
+
+
+
+ 2013
+
+ DirectReading
+ Fix
+ BackSight
+ false
+
+
+ 359.43836236154
+ 90.507602148609
+ 3.00147
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.002004502205
+ Fine
+
+ 0000058e
+ 0000058f
+ 00000590
+ 1014.4
+ 2
+
+
+ 26.451317311518
+ -46.596286116446
+ -1.9270330165511
+
+
+
+
+ 1008
+
+ Resection
+ KeyedIn
+ Normal
+ false
+
+
+ 23.450163260024
+ -46.566866583669
+ -1.9004434389034
+
+
+ 0.00038344731015
+ 0.00041344949143
+ 0.00002485949021
+
+
+
+
+
+ 00000591
+ 2010
+ NotUsed
+
+
+ -0.00002973693088
+ 0.00026127090812
+ 0.00005348100148
+
+
+
+ 0.00101316703669
+ -0.00050856694443
+ 0.00024103520793
+
+
+
+ 00000599
+ 2011
+ NotUsed
+
+
+ 0.00093427205791
+ -0.00025675015398
+ -0.00035761829269
+
+
+
+ -0.00136363677999
+ 0.00208293856631
+ -0.00096648135006
+
+
+
+ 0000059f
+ 2012
+ HorizontalAndVertical
+
+
+ 0.0003592471558
+ 0.00009891871243
+ 0.00002485949021
+
+
+
+ 0.00007767928984
+ -0.00009596345906
+ -0.0003722049634
+
+
+
+ 000005a5
+ 2013
+ HorizontalAndVertical
+
+
+ -0.00035862808906
+ -0.00008642990954
+ -0.00002485949021
+
+
+
+ -0.00171721064294
+ 0.0005351053228
+ -0.0003575279017
+
+
+
+
+
+ CustomPrism
+ -0.0344
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ None
+
+
+
+ 3042
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 166.1567189955
+ 62.148888030345
+ 14.07561
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001021113415
+ Fine
+
+ 0000058e
+ 0000058f
+ 000005b9
+ 1014.4
+ 2
+
+
+ 11.396246441837
+ -43.596484024701
+ 4.659160534354
+
+
+
+
+ 3043
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 86.632674640049
+ 40.256544208289
+ 8.63477
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001012952155
+ Fine
+
+ 0000058e
+ 0000058f
+ 000005b9
+ 1014.4
+ 2
+
+
+ 23.776597635308
+ -41.018910517387
+ 4.6628886413037
+
+
+
+
+ TrimbleSX10
+ 269.89888962766
+ 78.08621711754
+ Fine
+ SetToAzimuth
+ HorizontalAndVerticalAngle
+ 0
+ false
+ 3
+ 0.00027788453064
+ 0.00027788453064
+ 0.001
+ 1.5
+ FromInstrument
+ 0
+ 0.003
+ SX12
+ 30710160
+ S2.8.5
+ TRIMBLE-SX12-30710160
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+
+
+
+
+ 1015.1
+ 3
+ -17.1382966697
+ true
+ true
+ 0.142
+ ReadFromInstrument
+ true
+
+
+
+ 1009
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ 000005c5
+ 000005cd
+ 2
+ 2
+ 1
+ Fixed
+
+ StandardResection
+
+
+
+ 000005ce
+ 1009
+ 2005
+ 65.535513258216
+
+ 0
+ 0.0028946322295
+
+
+
+ DRTarget
+ 0
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+
+
+
+ 2007
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 264.36952391717
+ 88.185530538208
+ 12.72305
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.002019084575
+ Fine
+
+ 000005ce
+ 000005cf
+ 000005d0
+ 1015.1
+ 3
+
+
+ 15.300585584468
+ -29.787298254955
+ -1.4973260308404
+
+
+
+
+ 2008
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 330.33467637289
+ 89.119160186364
+ 6.64499
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.002009967485
+ Fine
+
+ 000005ce
+ 000005cf
+ 000005d0
+ 1015.1
+ 3
+
+
+ 22.32148333039
+ -20.420577239546
+ -1.798027831123
+
+
+
+
+ 2005
+
+ DirectReading
+ Fix
+ BackSight
+ false
+
+
+ 65.536866791172
+ 87.784398034245
+ 4.39165
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.002006587475
+ Fine
+
+ 000005ce
+ 000005cf
+ 000005d0
+ 1015.1
+ 3
+
+
+ 18.365450526467
+ -13.137852740759
+ -1.7304029529318
+
+
+
+
+ 2006
+
+ DirectReading
+ Fix
+ BackSight
+ false
+
+
+ 203.82481212969
+ 87.961169023823
+ 6.51489
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.002009772335
+ Fine
+
+ 000005ce
+ 000005cf
+ 000005d0
+ 1015.1
+ 3
+
+
+ 10.592377889846
+ -19.762121566619
+ -1.6684042983453
+
+
+
+
+ 1009
+
+ Resection
+ KeyedIn
+ Normal
+ false
+
+
+ 16.548225401963
+ -17.132198309497
+ -1.9001821446618
+
+
+ 0.00026628135017
+ 0.00028572758059
+ 0.00002410779461
+
+
+
+
+
+ 000005d1
+ 2007
+ NotUsed
+
+
+ 0.00294380075902
+ -0.00089871831112
+ 0.00017178792406
+
+
+
+ 0.01359635763848
+ -0.00068680489543
+ 0.00061105402838
+
+
+
+ 000005d9
+ 2008
+ NotUsed
+
+
+ 0.00458821542192
+ -0.00033399333135
+ 0.00000976940087
+
+
+
+ 0.01706953082545
+ 0.00046592071789
+ 0.00415210259837
+
+
+
+ 000005df
+ 2005
+ HorizontalAndVertical
+
+
+ 0.00019632363251
+ 0.00018117549742
+ -0.00002410779461
+
+
+
+ -0.00135353295561
+ 0.00043845532878
+ 0.00024509538934
+
+
+
+ 000005e5
+ 2006
+ HorizontalAndVertical
+
+
+ -0.00021026037052
+ -0.00016923724467
+ 0.00002410779461
+
+
+
+ 0.00061496553812
+ -0.00013030956491
+ 0.00026139797614
+
+
+
+
+
+ CustomPrism
+ -0.0344
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ None
+
+
+
+ 3044
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 293.21380136076
+ 43.333394968047
+ 23.22077
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001034831155
+ Fine
+
+ 000005ce
+ 000005cf
+ 000005f9
+ 1015.1
+ 3
+
+
+ 22.819825314466
+ -31.755208207535
+ 14.964690894642
+
+
+
+
+ 3045
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 257.38417899858
+ 45.758052411591
+ 23.76004
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00103564006
+ Fine
+
+ 000005ce
+ 000005cf
+ 000005f9
+ 1015.1
+ 3
+
+
+ 12.83592332051
+ -33.718568442459
+ 14.652697911193
+
+
+
+
+ 3046
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 241.43609133195
+ 50.884480949871
+ 26.10752
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00103916128
+ Fine
+
+ 000005ce
+ 000005cf
+ 000005f9
+ 1015.1
+ 3
+
+
+ 6.875899621791
+ -34.899118309234
+ 14.548737363046
+
+
+
+
+ 3047
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 242.75680395638
+ 57.619233958668
+ 18.69172
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00102803758
+ Fine
+
+ 000005ce
+ 000005cf
+ 000005f9
+ 1015.1
+ 3
+
+
+ 9.3356417163737
+ -31.140381268001
+ 8.0914696173413
+
+
+
+
+ 3048
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 272.48060624027
+ 51.260328569728
+ 15.96959
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001023954385
+ Fine
+
+ 000005ce
+ 000005cf
+ 000005f9
+ 1015.1
+ 3
+
+
+ 17.086175568129
+ -29.549732816036
+ 8.0716292726975
+
+
+
+
+ 3049
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 293.16161186891
+ 51.415627193722
+ 16.03121
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001024046815
+ Fine
+
+ 000005ce
+ 000005cf
+ 000005f9
+ 1015.1
+ 3
+
+
+ 21.4665039237
+ -28.628668676172
+ 8.0763335012321
+
+
+
+
+ 3050
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 248.48383167098
+ 78.157600466134
+ 14.99044
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00102248566
+ Fine
+
+ 000005ce
+ 000005cf
+ 000005f9
+ 1015.1
+ 3
+
+
+ 11.179735954327
+ -30.749632519485
+ 1.1690640231796
+
+
+
+
+
+
+
+ 00000030
+ 5001
+
+ KeyedIn
+ Normal
+
+
+ 0
+ 0
+ 0
+
+
+
+
+ 00000041
+ 5002
+
+ Fix
+ BackSight
+
+
+ 11.407493926503
+ 0
+ -0.03520763328074
+
+
+
+
+ 00000045
+ 1001
+
+ KeyedIn
+ Normal
+
+
+ 13.564836640777
+ 22.787987226327
+ -1.9522100598255
+
+
+
+
+ 0000004c
+ 2001
+
+ Fix
+ Normal
+
+
+ 11.747100808262
+ 0.01366046183771
+ -1.3605569844574
+
+
+
+
+ 00000051
+ 2002
+
+ Fix
+ Normal
+
+
+ 30.964500502903
+ 20.213787812262
+ -1.6634230224692
+
+
+
+
+ 00000056
+ 2003
+
+ Fix
+ Normal
+
+
+ 13.097332393112
+ 33.78235737753
+ -2.6163483145386
+
+
+
+
+ 0000005b
+ 2004
+
+ Fix
+ Normal
+
+
+ -15.428889079835
+ 20.490442774294
+ -1.4377847103515
+
+
+
+
+ 00000061
+ 3001
+
+ Fix
+ Normal
+
+
+ 13.219704366825
+ 33.838099818544
+ -2.5746165834351
+
+
+
+
+ 00000066
+ 3002
+
+ Fix
+ Normal
+
+
+ 30.14043546648
+ 26.308381768271
+ -1.9029039206999
+
+
+
+
+ 0000006b
+ 3003
+
+ Fix
+ Normal
+
+
+ -3.2931707887914
+ 26.357327175554
+ -2.1148969458828
+
+
+
+
+ 0000007b
+ 3004
+
+ Fix
+ Normal
+
+
+ -0.53011337946121
+ 0.04791118307159
+ -3.0208552356468
+
+
+
+
+ 00000080
+ 3005
+
+ Fix
+ Normal
+
+
+ 6.7886622553038
+ -0.03827563422222
+ -3.4140559040302
+
+
+
+
+ 0000009f
+ 6001
+
+ Fix
+ Normal
+
+
+ 13.912861781241
+ -18.196022209181
+ -2.1763817330722
+
+
+
+
+ 000000ab
+ 6002
+
+ Fix
+ Normal
+
+
+ 12.647596353599
+ -15.677254916485
+ -2.2858237759284
+
+
+
+
+ 000000b2
+ 6003
+
+ Fix
+ Normal
+
+
+ 12.549517127425
+ -26.318124925878
+ -2.2735489398447
+
+
+
+
+ 000000b9
+ 6004
+
+ Fix
+ Normal
+
+
+ 13.844641482407
+ -24.722841136558
+ -1.559394151902
+
+
+
+
+ 000000bf
+ 3006
+
+ Fix
+ Normal
+
+
+ 13.130949845176
+ 1.1818030068431
+ 1.8445856166495
+
+
+
+
+ 000000cb
+ 3007
+
+ Fix
+ Normal
+
+
+ 16.74460172631
+ 0.86721755321816
+ 1.8414178293525
+
+
+
+
+ 0000020c
+ 1002
+
+ KeyedIn
+ Normal
+
+
+ 13.007594475038
+ -20.882627041923
+ -1.7418495209161
+
+
+
+
+ 00000217
+ 2005
+
+ Fix
+ Normal
+
+
+ 18.365646850099
+ -13.137671565261
+ -1.7304270607264
+
+
+
+
+ 0000021c
+ 2006
+
+ Fix
+ Normal
+
+
+ 10.592167629476
+ -19.762290803864
+ -1.6683801905507
+
+
+
+
+ 00000221
+ 2007
+
+ Fix
+ Normal
+
+
+ 15.303529385227
+ -29.788196973267
+ -1.4971542429163
+
+
+
+
+ 00000226
+ 2008
+
+ Fix
+ Normal
+
+
+ 22.326071545812
+ -20.420911232877
+ -1.7980180617221
+
+
+
+
+ 0000022c
+ 3008
+
+ Fix
+ Normal
+
+
+ 11.080465440224
+ -13.174497113152
+ -0.28046436782415
+
+
+
+
+ 00000231
+ 3009
+
+ Fix
+ Normal
+
+
+ 10.755983235023
+ -13.168359249305
+ 3.7826659825355
+
+
+
+
+ 00000236
+ 3010
+
+ Fix
+ Normal
+
+
+ 4.4805105115382
+ -14.042345835955
+ 1.8356016445747
+
+
+
+
+ 0000023b
+ 3011
+
+ Fix
+ Normal
+
+
+ 13.789665288167
+ -13.166133625903
+ 5.6886831427248
+
+
+
+
+ 00000240
+ 3012
+
+ Fix
+ Normal
+
+
+ 11.191164223575
+ -13.163566302869
+ 7.5580318956072
+
+
+
+
+ 00000245
+ 3013
+
+ Fix
+ Normal
+
+
+ 10.601650294411
+ -13.164383806158
+ 10.921831067232
+
+
+
+
+ 0000024a
+ 2009
+
+ Fix
+ Normal
+
+
+ 12.60136047555
+ -13.143590261055
+ -1.8945292971038
+
+
+
+
+ 0000024f
+ 7002
+
+ Fix
+ Normal
+
+
+ 13.192733660698
+ -7.4870479963707
+ -3.6750645329421
+
+
+
+
+ 00000254
+ 7001
+
+ Fix
+ Normal
+
+
+ 19.746253231187
+ -13.134349252103
+ -0.42373922002883
+
+
+
+
+ 00000259
+ 3014
+
+ Fix
+ Normal
+
+
+ 12.968400129754
+ -10.453965757266
+ -3.5926624199459
+
+
+
+
+ 0000025e
+ 3015
+
+ Fix
+ Normal
+
+
+ 14.318548822387
+ -5.7524558086664
+ -3.5971379095628
+
+
+
+
+ 00000263
+ 3016
+
+ Fix
+ Normal
+
+
+ 12.842068903051
+ -2.1676222064851
+ -3.5975812314352
+
+
+
+
+ 00000268
+ 3017
+
+ Fix
+ Normal
+
+
+ 9.8712003219045
+ -16.959505159435
+ -1.3065366974439
+
+
+
+
+ 0000026d
+ 3018
+
+ Fix
+ Normal
+
+
+ 8.2567271743601
+ -13.14285460747
+ -1.7125097178702
+
+
+
+
+ 00000272
+ 3019
+
+ Fix
+ Normal
+
+
+ 4.4806222192241
+ -21.128508836972
+ -1.1057319209467
+
+
+
+
+ 00000277
+ 3020
+
+ Fix
+ Normal
+
+
+ 9.2528112833281
+ -31.197886281032
+ -2.1284220910878
+
+
+
+
+ 0000027c
+ 3021
+
+ Fix
+ Normal
+
+
+ 16.922754212858
+ -29.609362735703
+ -2.184691734635
+
+
+
+
+ 00000281
+ 3022
+
+ Fix
+ Normal
+
+
+ 21.896143067933
+ -30.145353822899
+ -3.3677237175383
+
+
+
+
+ 00000286
+ 3023
+
+ Fix
+ Normal
+
+
+ 18.942600211925
+ -20.860211240155
+ -3.3758934411401
+
+
+
+
+ 0000028d
+ 6005
+
+ Fix
+ Normal
+
+
+ 20.877871862812
+ -25.632646985461
+ -2.2429698391978
+
+
+
+
+ 000002c9
+ 1003
+
+ KeyedIn
+ Normal
+
+
+ 14.026848589211
+ 23.070360774115
+ -1.9693411966615
+
+
+
+
+ 000002d4
+ 3024
+
+ Fix
+ Normal
+
+
+ 12.85383391328
+ 1.1879032664027
+ 5.6065045108183
+
+
+
+
+ 000002d9
+ 3025
+
+ Fix
+ Normal
+
+
+ 3.9834204403483
+ 1.2132252261094
+ 5.6149430026173
+
+
+
+
+ 000002de
+ 3026
+
+ Fix
+ Normal
+
+
+ 17.400867263385
+ -0.02875174095687
+ 9.3764810734927
+
+
+
+
+ 000002e3
+ 3027
+
+ Fix
+ Normal
+
+
+ 9.4490884907217
+ 0.00164409601749
+ 13.118705496363
+
+
+
+
+ 000002e8
+ 3028
+
+ Fix
+ Normal
+
+
+ 16.758310760205
+ -0.91478461598888
+ 13.727661269529
+
+
+
+
+ 000002ed
+ 3029
+
+ Fix
+ Normal
+
+
+ 3.3743130500475
+ 1.0963002625835
+ 9.9547670634309
+
+
+
+
+ 000003ac
+ 1004
+
+ KeyedIn
+ Normal
+
+
+ 19.765325507995
+ -22.695974411239
+ -1.9656228113547
+
+
+
+
+ 000003b6
+ 6006
+
+ Fix
+ Normal
+
+
+ 24.806039061489
+ -48.152749175759
+ -2.0921906646654
+
+
+
+
+ 000003bb
+ 6007
+
+ Fix
+ Normal
+
+
+ 23.492942987061
+ -48.55055487003
+ -1.9826211955766
+
+
+
+
+ 000003c0
+ 6008
+
+ Fix
+ Normal
+
+
+ 22.585771037031
+ -42.900495759321
+ -2.0955977145299
+
+
+
+
+ 000004a7
+ 1005
+
+ KeyedIn
+ Normal
+
+
+ 23.575239156055
+ -46.031492855337
+ -1.9509489144103
+
+
+
+
+ 000004b2
+ 2010
+
+ Fix
+ Normal
+
+
+ 25.206518436747
+ -40.870720688015
+ -1.8862413852622
+
+
+
+
+ 000004b7
+ 2011
+
+ Fix
+ Normal
+
+
+ 16.007383970361
+ -42.736363611378
+ -1.4383208578166
+
+
+
+
+ 000004c6
+ 2012
+
+ Fix
+ MTA
+
+
+ 10.053737413547
+ -51.007281745349
+ -1.946742287723
+
+
+
+
+ 000004c9
+ 2013
+
+ Fix
+ Normal
+
+
+ 26.450958683429
+ -46.596372546356
+ -1.9270578760413
+
+
+
+
+ 000004cf
+ 3030
+
+ Fix
+ Normal
+
+
+ 20.671232494601
+ -41.62861843492
+ -2.1988124843371
+
+
+
+
+ 000004d4
+ 3031
+
+ Fix
+ Normal
+
+
+ 17.069380932476
+ -42.358276938124
+ -2.2065358808648
+
+
+
+
+ 000004d9
+ 3032
+
+ Fix
+ Normal
+
+
+ 9.5388945163833
+ -43.914644999123
+ -2.2175991488325
+
+
+
+
+ 000004de
+ 3033
+
+ Fix
+ Normal
+
+
+ 22.93203604037
+ -39.002243942933
+ -3.4510472727961
+
+
+
+
+ 00000510
+ 1006
+
+ KeyedIn
+ Normal
+
+
+ 13.878337404905
+ 22.923487154871
+ -1.9035179035898
+
+
+
+
+ 0000051b
+ 3034
+
+ Fix
+ Normal
+
+
+ 19.009925999089
+ -2.2586350170632
+ 16.787529308738
+
+
+
+
+ 00000520
+ 3035
+
+ Fix
+ Normal
+
+
+ 11.679431462851
+ -2.0392398263281
+ 17.155136228059
+
+
+
+
+ 00000525
+ 3036
+
+ Fix
+ Normal
+
+
+ 0.49840873900879
+ -2.4008278824736
+ 16.947295226013
+
+
+
+
+ 00000555
+ 1007
+
+ KeyedIn
+ Normal
+
+
+ 18.968097409704
+ -21.634012659756
+ -1.814920360607
+
+
+
+
+ 00000560
+ 3037
+
+ Fix
+ Normal
+
+
+ 18.141245471115
+ -29.302433587034
+ 1.264642414707
+
+
+
+
+ 00000570
+ 3038
+
+ Fix
+ Normal
+
+
+ 13.473389399443
+ -30.283765514873
+ -0.50151711162876
+
+
+
+
+ 00000575
+ 3039
+
+ Fix
+ Normal
+
+
+ 13.842620254506
+ -30.22313983326
+ 2.9225448797023
+
+
+
+
+ 0000057a
+ 3040
+
+ Fix
+ Normal
+
+
+ 14.113605405631
+ -30.164349829448
+ 6.326259530773
+
+
+
+
+ 0000057f
+ 3041
+
+ Fix
+ Normal
+
+
+ 13.647850929994
+ -30.260881440035
+ 9.536822448919
+
+
+
+
+ 000005af
+ 1008
+
+ KeyedIn
+ Normal
+
+
+ 23.450163260024
+ -46.566866583669
+ -1.9004434389034
+
+
+
+
+ 000005ba
+ 3042
+
+ Fix
+ Normal
+
+
+ 11.396246441837
+ -43.596484024701
+ 4.659160534354
+
+
+
+
+ 000005bf
+ 3043
+
+ Fix
+ Normal
+
+
+ 23.776597635308
+ -41.018910517387
+ 4.6628886413037
+
+
+
+
+ 000005ef
+ 1009
+
+ KeyedIn
+ Normal
+
+
+ 16.548225401963
+ -17.132198309497
+ -1.9001821446618
+
+
+
+
+ 000005fa
+ 3044
+
+ Fix
+ Normal
+
+
+ 22.819825314466
+ -31.755208207535
+ 14.964690894642
+
+
+
+
+ 000005ff
+ 3045
+
+ Fix
+ Normal
+
+
+ 12.83592332051
+ -33.718568442459
+ 14.652697911193
+
+
+
+
+ 00000604
+ 3046
+
+ Fix
+ Normal
+
+
+ 6.875899621791
+ -34.899118309234
+ 14.548737363046
+
+
+
+
+ 00000609
+ 3047
+
+ Fix
+ Normal
+
+
+ 9.3356417163737
+ -31.140381268001
+ 8.0914696173413
+
+
+
+
+ 0000060e
+ 3048
+
+ Fix
+ Normal
+
+
+ 17.086175568129
+ -29.549732816036
+ 8.0716292726975
+
+
+
+
+ 00000613
+ 3049
+
+ Fix
+ Normal
+
+
+ 21.4665039237
+ -28.628668676172
+ 8.0763335012321
+
+
+
+
+ 00000618
+ 3050
+
+ Fix
+ Normal
+
+
+ 11.179735954327
+ -30.749632519485
+ 1.1690640231796
+
+
+
+
+
+
+
+ Metres
+ Metres
+ Gons
+ Azimuth
+ DMSDegrees
+ East-North-Elevation
+ Celsius
+ MilliBar
+ Percentage
+ SquareMetres
+ CubicMetres
+ 1000.0
+
+ DRMS
+ 3
+ 3
+ 3
+ 3
+ 4
+ Inclination
+ Local
+
+
+
+
+
+
+
+
+
+
+
+ ScaleOnly
+ 1
+ false
+ IncreasingNorthEast
+ false
+ 0
+ GroundDistance
+
+
+ Grid
+
+
+
+
+
+ NoDatum
+
+
+ NoAdjustment
+
+
+ NoAdjustment
+
+
+
+
+
+
+
+ 1
+
+
+ Unknown
+
+
+
+
+
+
+
+
+ Unknown
+ false
+
+
+
+
+
+
+ false
+ 0.5
+
+ Weighted
+ false
+
+
+
+ Mitteleuropäische Zeit
+ -1
+
+
+
diff --git a/tests/Baumschulenstr_93_transformed.jxl b/tests/Baumschulenstr_93_transformed.jxl
new file mode 100644
index 0000000..cf47ea5
--- /dev/null
+++ b/tests/Baumschulenstr_93_transformed.jxl
@@ -0,0 +1,10093 @@
+
+
+
+
+
+
+
+ 0
+ false
+
+
+
+ NoAdjustment
+
+
+
+ NoAdjustment
+
+
+
+
+
+
+
+ Unknown
+ false
+
+
+
+
+
+
+
+
+
+ Germany
+ ETRS89_UTM32
+ ETRS89
+
+
+
+ false
+ IncreasingNorthEast
+ 0
+ GroundDistance
+ false
+
+ false
+ 0.5
+
+ 0
+
+
+
+
+
+
+
+
+
+ ScaleOnly
+ 1
+
+
+ Grid
+
+
+
+
+
+
+
+ NoDatum
+
+
+
+
+
+
+
+
+
+ Metres
+ Metres
+ Gons
+ Azimuth
+ DMSDegrees
+ East-North-Elevation
+ Celsius
+ MilliBar
+ Percentage
+ SquareMetres
+ CubicMetres
+ 1000.0
+
+ DRMS
+ 3
+ 3
+ 3
+ 3
+ 4
+ Inclination
+ Local
+
+
+
+
+ Converted from GS v3.20 to GS v2018.10
+
+
+
+
+
+ Converted from GS v2018.10 to GS v2018.20
+
+
+
+
+
+ Converted from GS v2018.20 to GS v2019.00
+
+
+
+
+
+ Converted from v2019.00.7 to v2020.10.4
+
+
+
+
+
+ Converted from GS v2020.10 to GS v2022.00
+
+
+
+
+
+ Converted from GS v2022.00 to GS v2022.10
+
+
+
+
+
+ Converted from v2022.10.19 to v2023.00.12
+
+
+
+
+
+ Converted from v2023.00.12 to v2023.10.16
+
+
+
+
+
+ Converted from v2023.10.16 to v2024.10.2
+
+
+
+
+ Mitteleuropäische Zeit
+ -1
+
+
+
+ true
+
+
+
+ TrimbleSX10
+ 269.89888962766
+ 78.08621711754
+ Fine
+ SetToAzimuth
+ HorizontalAndVerticalAngle
+ 0
+ false
+ 3
+ 0.00027788453064
+ 0.00027788453064
+ 0.001
+ 1.5
+ FromInstrument
+ 0
+ 0.003
+ SX12
+ 30710160
+ S2.8.5
+ TRIMBLE-SX12-30710160
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+
+
+
+
+ TrimbleSX10
+ 269.89888962766
+ 78.08621711754
+ Fine
+ SetToAzimuth
+ HorizontalAndVerticalAngle
+ 0
+ false
+ 3
+ 0.00027788453064
+ 0.00027788453064
+ 0.001
+ 1.5
+ FromInstrument
+ 0
+ 0.003
+ SX12
+ 30710160
+ S2.8.5
+ TRIMBLE-SX12-30710160
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+
+
+
+
+ 5001
+
+ Coordinates
+ KeyedIn
+ Normal
+ false
+
+
+ 200.0
+ 100.0
+ 50.0
+
+
+
+
+ 5002
+
+ AzimuthOnly
+ KeyedIn
+ Normal
+ false
+ 5001
+ 0
+ Grid
+
+
+
+ 5001-5002
+
+ TwoPoints
+ false
+ 5001
+ 5002
+ 0
+
+
+
+
+ 1012.3
+ 2
+ -17.386873003947
+ true
+ true
+ 0.142
+ ReadFromInstrument
+ true
+
+
+
+ 1001
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ 00000028
+ 00000039
+ 2
+ 2
+ 1
+ Fixed
+
+ ReflineStationSetup
+
+
+
+ 0000003a
+ 1001
+ 5001
+ 239.23624355634
+
+ -0.00000000000005
+
+
+
+
+ DRTarget
+ 0
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+
+
+
+ 5001
+
+ DirectReading
+ Fix
+ BackSight
+ false
+
+
+ 239.23624355634
+ 85.7899569023
+ 26.59197
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.002039887955
+ Fine
+
+ 0000003a
+ 0000003b
+ 0000003c
+ 1012.3
+ 2
+
+
+ 199.99999999999997
+ 100.00000000000001
+ 50.0
+
+
+
+
+ 5002
+
+ DirectReading
+ Fix
+ BackSight
+ false
+
+
+ 264.59191669828
+ 85.212800718953
+ 22.97041
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.002034455615
+ Fine
+
+ 0000003a
+ 0000003b
+ 0000003c
+ 1012.3
+ 2
+
+
+ 211.407493926503
+ 100.0
+ 49.96479236671926
+
+
+
+
+ 1001
+
+ ReflineSetup
+ KeyedIn
+ Normal
+ false
+
+
+ 213.564836640777
+ 122.787987226327
+ 48.047789940174496
+
+
+
+
+ DRTarget
+ 0
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+
+
+
+ 2001
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 265.43660385311
+ 88.516654118998
+ 22.85481
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.002034282215
+ Fine
+
+ 0000003a
+ 0000003b
+ 0000004b
+ 1012.3
+ 2
+
+
+ 211.747100808262
+ 100.01366046183772
+ 48.6394430155426
+
+
+
+
+ 2002
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 351.58440107046
+ 89.05943776951
+ 17.59173
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.002026387595
+ Fine
+
+ 0000003a
+ 0000003b
+ 0000004b
+ 1012.3
+ 2
+
+
+ 230.964500502903
+ 120.213787812262
+ 48.3365769775308
+
+
+
+
+ 2003
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 92.434872865737
+ 93.453801504051
+ 11.02452
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00201653678
+ Fine
+
+ 0000003a
+ 0000003b
+ 0000004b
+ 1012.3
+ 2
+
+
+ 213.097332393112
+ 133.78235737753
+ 47.3836516854614
+
+
+
+
+ 2004
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 184.53081107406
+ 88.98681595979
+ 29.08967
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.002043634505
+ Fine
+
+ 0000003a
+ 0000003b
+ 0000004b
+ 1012.3
+ 2
+
+
+ 184.571110920165
+ 120.490442774294
+ 48.5622152896485
+
+
+
+
+ CustomPrism
+ -0.0344
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ None
+
+
+
+ 3001
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 91.788958806006
+ 93.222299350487
+ 11.1076
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.0010166614
+ Fine
+
+ 0000003a
+ 0000003b
+ 00000060
+ 1012.3
+ 2
+
+
+ 213.219704366825
+ 133.838099818544
+ 47.4253834165649
+
+
+
+
+ 3002
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 11.990548473315
+ 89.833351027115
+ 16.98008
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00102547012
+ Fine
+
+ 0000003a
+ 0000003b
+ 00000060
+ 1012.3
+ 2
+
+
+ 230.14043546648
+ 126.308381768271
+ 48.0970960793001
+
+
+
+
+ 3003
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 168.04533832496
+ 90.54098677678
+ 17.2672
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.0010259008
+ Fine
+
+ 0000003a
+ 0000003b
+ 00000060
+ 1012.3
+ 2
+
+
+ 196.7068292112086
+ 126.357327175554
+ 47.8851030541172
+
+
+
+
+ SSeries360Prism
+ 0.002
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ None
+
+
+
+ 6001
+
+ DirectReading
+ Fix
+ Normal
+ true
+
+
+ 270.40940443109
+ 90.667386621869
+ 25.19781130175
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00103779673
+ Fine
+ 90.667923019622
+ 25.19782
+
+ 0000003a
+ 0000003b
+ 00000070
+ 1012.3
+ 2
+
+
+ 213.74488389151
+ 97.5909663176757
+ 47.7543146203895
+
+
+ Gelöscht 09:07:05 15/01/2026
+
+
+
+
+ 6002
+
+ DirectReading
+ Fix
+ Normal
+ true
+
+
+ 267.13139128732
+ 89.475050956248
+ 25.249872016296
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00103787482
+ Fine
+ 89.474629905876
+ 25.24988
+
+ 0000003a
+ 0000003b
+ 00000070
+ 1012.3
+ 2
+
+
+ 212.301162728343
+ 97.5692550784288
+ 48.2791854712653
+
+
+ Gelöscht 09:07:20 15/01/2026
+
+
+
+
+ CustomPrism
+ -0.0344
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ None
+
+
+
+ 3004
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 238.20818045357
+ 92.287470844301
+ 26.81024
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00104021536
+ Fine
+
+ 0000003a
+ 0000003b
+ 00000060
+ 1012.3
+ 2
+
+
+ 199.4698866205388
+ 100.04791118307159
+ 46.9791447643532
+
+
+
+
+ 3005
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 253.46602119217
+ 93.513310914172
+ 23.89046
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00103583569
+ Fine
+
+ 0000003a
+ 0000003b
+ 00000060
+ 1012.3
+ 2
+
+
+ 206.7886622553038
+ 99.96172436577778
+ 46.5859440959698
+
+
+
+
+ 6001
+
+ DirectReading
+ Fix
+ Normal
+ true
+
+
+ 270.48660137593
+ 90.313708298872
+ 40.98502
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00106147753
+ Fine
+
+ 0000003a
+ 0000003b
+ 00000060
+ 1012.3
+ 2
+
+
+ 213.912606473622
+ 81.840169192616
+ 47.8236931633084
+
+
+ Gelöscht 09:08:37 15/01/2026
+
+
+
+
+ 6002
+
+ DirectReading
+ Fix
+ Normal
+ true
+
+
+ 268.63313365606
+ 90.497224743254
+ 38.47617
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001057714255
+ Fine
+
+ 0000003a
+ 0000003b
+ 00000060
+ 1012.3
+ 2
+
+
+ 212.647894984238
+ 84.35927020655001
+ 47.7142936066752
+
+
+ Gelöscht 09:09:00 15/01/2026
+
+
+
+
+ 6003
+
+ DirectReading
+ Fix
+ Normal
+ true
+
+
+ 268.81595454502
+ 90.375128359351
+ 49.11633
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001073674495
+ Fine
+
+ 0000003a
+ 0000003b
+ 00000060
+ 1012.3
+ 2
+
+
+ 212.550645968117
+ 73.718441249228
+ 47.726609409778
+
+
+ Gelöscht 09:09:12 15/01/2026
+
+
+
+
+ 6004
+
+ DirectReading
+ Fix
+ Normal
+ true
+
+
+ 270.33714395991
+ 89.526956326052
+ 47.51208
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00107126812
+ Fine
+
+ 0000003a
+ 0000003b
+ 00000060
+ 1012.3
+ 2
+
+
+ 213.844192232884
+ 75.313573976159
+ 48.4399140553766
+
+
+ Gelöscht 09:09:28 15/01/2026
+
+
+
+
+ SSeries360Prism
+ 0.002
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ None
+
+
+
+ 6001
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 270.48652859278
+ 90.313536261358
+ 40.984812762276
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00106147723
+ Fine
+ 90.313691151959
+ 40.98482
+
+ 0000003a
+ 0000003b
+ 00000070
+ 1012.3
+ 2
+
+
+ 213.912861781241
+ 81.803977790819
+ 47.8236182669278
+
+
+
+
+ 6005
+
+ DirectReading
+ Fix
+ Normal
+ true
+
+
+ 268.63404893598
+ 90.496926900297
+ 38.476312137136
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00105771448
+ Fine
+ 90.497188398082
+ 38.47632
+
+ 0000003a
+ 0000003b
+ 00000070
+ 1012.3
+ 2
+
+
+ 212.64763778156401
+ 84.322724085451
+ 47.7141766972738
+
+
+ Gelöscht 10:56:04 15/01/2026
+
+
+
+
+ 6002
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 268.63398651677
+ 90.496927863095
+ 38.476292137132
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00105771445
+ Fine
+ 90.497189361523
+ 38.4763
+
+ 0000003a
+ 0000003b
+ 00000070
+ 1012.3
+ 2
+
+
+ 212.647596353599
+ 84.322745083515
+ 47.7141762240716
+
+
+
+
+ 6003
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 268.81551943627
+ 90.375033967256
+ 49.116512584245
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00107367478
+ Fine
+ 90.375188553272
+ 49.11652
+
+ 0000003a
+ 0000003b
+ 00000070
+ 1012.3
+ 2
+
+
+ 212.549517127425
+ 73.681875074122
+ 47.7264510601553
+
+
+
+
+ 6004
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 270.33742731338
+ 89.526484975185
+ 47.512102232812
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001071268165
+ Fine
+ 89.52628320365
+ 47.51211
+
+ 0000003a
+ 0000003b
+ 00000070
+ 1012.3
+ 2
+
+
+ 213.844641482407
+ 75.277158863442
+ 48.440605848098
+
+
+
+
+ 0000003a
+ 0000003b
+ ScanFullDome
+ Baumschulenstr_93 Files\SdeDatabase.rwi\SdeDatabase_Station1_Scan1.rwcx
+ Scan 1
+ Scan 1
+ 5421274
+ 0.05729577951308
+ 0.05729577951308
+ -17.386873003947
+ 0.00034943754597
+ false
+ false
+
+
+
+ CustomPrism
+ -0.0344
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ None
+
+
+
+ 3006
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 268.84956357977
+ 80.035381747166
+ 21.97632
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00103296448
+ Fine
+
+ 0000003a
+ 0000003b
+ 00000060
+ 1012.3
+ 2
+
+
+ 213.130949845176
+ 101.1818030068431
+ 51.8445856166495
+
+
+
+
+ 3007
+
+ DirectReading
+ Fix
+ Normal
+ true
+
+
+ 278.24495329475
+ 80.277785241838
+ 22.50232
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00103375348
+ Fine
+
+ 0000003a
+ 0000003b
+ 00000060
+ 1012.3
+ 2
+
+
+ 216.7405283471
+ 100.87202937668486
+ 51.8419497882541
+
+
+ Gelöscht 09:29:21 15/01/2026
+
+
+
+
+ 3007
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 278.2535960489
+ 80.281424000106
+ 22.5075
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00103376125
+ Fine
+
+ 0000003a
+ 0000003b
+ 00000060
+ 1012.3
+ 2
+
+
+ 216.74460172631
+ 100.86721755321815
+ 51.8414178293525
+
+
+
+
+ TrimbleSX10
+ 269.89888962766
+ 78.08621711754
+ Fine
+ SetToAzimuth
+ NoServo
+ 0
+ false
+ 3
+ 0.00027788453064
+ 0.00027788453064
+ 0.001
+ 1.5
+ FromInstrument
+ 0
+ 0.003
+ SX12
+ 30710160
+ S2.8.5
+ TRIMBLE-SX12-30710160
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+
+
+
+
+ 1012.7
+ 2
+ -17.500391037191
+ true
+ true
+ 0.142
+ ReadFromInstrument
+ true
+
+
+
+ 1002
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ 000000d1
+ 000000d9
+ 0
+ 0
+ 1
+ Fixed
+
+ StandardResection
+
+
+
+ 000000da
+ 1002
+
+
+
+
+
+
+
+
+ SSeries360Prism
+ 0.002
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ None
+
+
+
+ 6001
+
+ DirectReading
+ Fix
+ Normal
+ true
+
+
+ 224.99043036383
+ 98.815414688269
+ 2.8751038523636
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00100431316
+ Fine
+ 98.877563802316
+ 2.87544
+
+ 000000da
+ 000000db
+ 000000dc
+ 1012.7
+ 2
+
+
+
+
+ 47.8172376867767
+
+
+
+
+ 6002
+
+ DirectReading
+ Fix
+ Normal
+ true
+
+
+ 247.51080185785
+ 96.001774213405
+ 5.2530510836985
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001007879815
+ Fine
+ 96.024926356137
+ 5.25321
+
+ 000000da
+ 000000db
+ 000000dc
+ 1012.7
+ 2
+
+
+
+
+ 47.7086976924507
+
+
+
+
+ 6003
+
+ DirectReading
+ Fix
+ BackSight
+ true
+
+
+ 58.81155257596
+ 95.647429445852
+ 5.473038533967
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00100820977
+ Fine
+ 95.668341410439
+ 5.47318
+
+ 000000da
+ 000000db
+ 000000dc
+ 1012.7
+ 2
+
+
+
+
+ 47.7193813551463
+
+
+
+
+ 6004
+
+ DirectReading
+ Fix
+ BackSight
+ true
+
+
+ 75.915172280311
+ 87.440912780064
+ 3.9278454711148
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00100589182
+ Fine
+ 87.427670979718
+ 3.92788
+
+ 000000da
+ 000000db
+ 000000dc
+ 1012.7
+ 2
+
+
+
+
+ 48.4336146668903
+
+
+
+
+ TrimbleSX10
+ 269.89888962766
+ 78.08621711754
+ Fine
+ SetToAzimuth
+ HorizontalAndVerticalAngle
+ 0
+ false
+ 3
+ 0.00027788453064
+ 0.00027788453064
+ 0.001
+ 1.5
+ FromInstrument
+ 0
+ 0.003
+ SX12
+ 30710160
+ S2.8.5
+ TRIMBLE-SX12-30710160
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+
+
+
+
+ 1012.5
+ 2
+ -17.443632020569
+ true
+ true
+ 0.142
+ ReadFromInstrument
+ true
+
+
+
+ 1002
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ 000000fc
+ 00000104
+ 0
+ 0
+ 1
+ Fixed
+
+ StandardResection
+
+
+
+ 00000105
+ 1002
+
+
+
+
+
+
+
+
+ SSeries360Prism
+ 0.002
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ None
+
+
+
+ 6004
+
+ DirectReading
+ Fix
+ Normal
+ true
+
+
+ 75.844840620342
+ 87.358302700693
+ 3.9368536541356
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001005905335
+ Fine
+ 87.344665223209
+ 3.93689
+
+ 00000105
+ 00000106
+ 00000107
+ 1012.5
+ 2
+
+
+
+
+ 48.4396900489
+
+
+
+
+ 6003
+
+ DirectReading
+ Fix
+ Normal
+ true
+
+
+ 58.778321501957
+ 95.575228816108
+ 5.4813219546268
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00100822219
+ Fine
+ 95.595843148138
+ 5.48146
+
+ 00000105
+ 00000106
+ 00000107
+ 1012.5
+ 2
+
+
+
+
+ 47.7254427158274
+
+
+
+
+ 6002
+
+ DirectReading
+ Fix
+ BackSight
+ true
+
+
+ 247.48881390095
+ 95.945874958273
+ 5.2440539014478
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001007866315
+ Fine
+ 95.968851895058
+ 5.24421
+
+ 00000105
+ 00000106
+ 00000107
+ 1012.5
+ 2
+
+
+
+
+ 47.7147286812094
+
+
+
+
+ 6001
+
+ DirectReading
+ Fix
+ BackSight
+ true
+
+
+ 224.90872686275
+ 98.722220784422
+ 2.8661807646591
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001004299765
+ Fine
+ 98.783911777803
+ 2.86651
+
+ 00000105
+ 00000106
+ 00000107
+ 1012.5
+ 2
+
+
+
+
+ 47.8232157147785
+
+
+
+
+ TrimbleSX10
+ 269.89888962766
+ 78.08621711754
+ Fine
+ SetToAzimuth
+ HorizontalAndVerticalAngle
+ 0
+ false
+ 3
+ 0.00027788453064
+ 0.00027788453064
+ 0.001
+ 1.5
+ FromInstrument
+ 0
+ 0.003
+ SX12
+ 30710160
+ S2.8.5
+ TRIMBLE-SX12-30710160
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+
+
+
+
+ 1012.4
+ 2
+ -17.415252512258
+ true
+ true
+ 0.142
+ ReadFromInstrument
+ true
+
+
+
+ 1002
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ 00000127
+ 0000012f
+ 0
+ 0
+ 1
+ Fixed
+
+ StandardResection
+
+
+
+ 00000130
+ 1002
+
+
+
+
+
+
+
+
+ SSeries360Prism
+ 0.002
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ None
+
+
+
+ 6001
+
+ DirectReading
+ Fix
+ Normal
+ true
+
+
+ 224.9092229623
+ 98.722914727858
+ 2.8661807133912
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001004299765
+ Fine
+ 98.784610584174
+ 2.86651
+
+ 00000130
+ 00000131
+ 00000132
+ 1012.4
+ 2
+
+
+
+
+ 47.8231813743298
+
+
+
+
+ 6004
+
+ DirectReading
+ Fix
+ Normal
+ true
+
+
+ 75.84573417922
+ 87.35891774552
+ 3.9368636678801
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00100590535
+ Fine
+ 87.345283475262
+ 3.9369
+
+ 00000130
+ 00000131
+ 00000132
+ 1012.4
+ 2
+
+
+
+
+ 48.4396482792841
+
+
+
+
+ 6003
+
+ DirectReading
+ Fix
+ BackSight
+ true
+
+
+ 58.778772573362
+ 95.575526150164
+ 5.4812719406284
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001008222115
+ Fine
+ 95.59614176613
+ 5.48141
+
+ 00000130
+ 00000131
+ 00000132
+ 1012.4
+ 2
+
+
+
+
+ 47.725419239474704
+
+
+
+
+ 6002
+
+ DirectReading
+ Fix
+ BackSight
+ true
+
+
+ 247.48889171138
+ 95.946322904698
+ 5.2442038789833
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00100786654
+ Fine
+ 95.969300905569
+ 5.24436
+
+ 00000130
+ 00000131
+ 00000132
+ 1012.4
+ 2
+
+
+
+
+ 47.7146723359752
+
+
+
+
+ TrimbleSX10
+ 269.89888962766
+ 78.08621711754
+ Fine
+ SetToAzimuth
+ HorizontalAndVerticalAngle
+ 0
+ false
+ 3
+ 0.00027788453064
+ 0.00027788453064
+ 0.001
+ 1.5
+ FromInstrument
+ 0
+ 0.003
+ SX12
+ 30710160
+ S2.8.5
+ TRIMBLE-SX12-30710160
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+
+
+
+
+ 1012.4
+ 2
+ -17.415252512258
+ true
+ true
+ 0.142
+ ReadFromInstrument
+ true
+
+
+
+ 1002
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ 00000152
+ 0000015a
+ 0
+ 0
+ 1
+ Fixed
+
+ StandardResection
+
+
+
+ 0000015b
+ 1002
+
+
+
+
+
+
+
+
+ SSeries360Prism
+ 0.002
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ None
+
+
+
+ 6002
+
+ DirectReading
+ Fix
+ Normal
+ true
+
+
+ 247.48962375173
+ 95.945744278576
+ 5.2439339079904
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001007866135
+ Fine
+ 95.968721240132
+ 5.24409
+
+ 0000015b
+ 0000015c
+ 0000015d
+ 1012.4
+ 2
+
+
+
+
+ 47.7147529957851
+
+
+
+
+ 6003
+
+ DirectReading
+ Fix
+ Normal
+ true
+
+
+ 58.779064434832
+ 95.575801972358
+ 5.4813619276574
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00100822225
+ Fine
+ 95.596418264716
+ 5.4815
+
+ 0000015b
+ 0000015c
+ 0000015d
+ 1012.4
+ 2
+
+
+
+
+ 47.7253842251658
+
+
+
+
+ 6004
+
+ DirectReading
+ Fix
+ BackSight
+ true
+
+
+ 75.846285904644
+ 87.359343973271
+ 3.9369936774093
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001005905545
+ Fine
+ 87.345712353737
+ 3.93703
+
+ 0000015b
+ 0000015c
+ 0000015d
+ 1012.4
+ 2
+
+
+
+
+ 48.4396249991422
+
+
+
+
+ 6001
+
+ DirectReading
+ Fix
+ BackSight
+ true
+
+
+ 224.90987861145
+ 98.723708179495
+ 2.8661606547467
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001004299735
+ Fine
+ 98.78541002932
+ 2.86649
+
+ 0000015b
+ 0000015c
+ 0000015d
+ 1012.4
+ 2
+
+
+
+
+ 47.8231451571565
+
+
+
+
+ TrimbleSX10
+ 269.89888962766
+ 78.08621711754
+ Fine
+ SetToAzimuth
+ HorizontalAndVerticalAngle
+ 0
+ false
+ 3
+ 0.00027788453064
+ 0.00027788453064
+ 0.001
+ 1.5
+ FromInstrument
+ 0
+ 0.003
+ SX12
+ 30710160
+ S2.8.5
+ TRIMBLE-SX12-30710160
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+
+
+
+
+ 1012.4
+ 2
+ -17.415252512258
+ true
+ true
+ 0.142
+ ReadFromInstrument
+ true
+
+
+
+ 1002
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ 0000017e
+ 00000186
+ 0
+ 0
+ 1
+ Fixed
+
+ StandardResection
+
+
+
+ 00000187
+ 1002
+
+
+
+
+
+
+
+
+ SSeries360Prism
+ 0.002
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ None
+
+
+
+ 6004
+
+ DirectReading
+ Fix
+ Normal
+ true
+
+
+ 75.846774400329
+ 87.35948640021
+ 3.9370036805916
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00100590556
+ Fine
+ 87.34585555008
+ 3.93704
+
+ 00000187
+ 00000188
+ 00000189
+ 1012.4
+ 2
+
+
+
+
+ 48.4396156789214
+
+
+
+
+ 6003
+
+ DirectReading
+ Fix
+ Normal
+ true
+
+
+ 58.780114091852
+ 95.575405973947
+ 5.4813319462908
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001008222205
+ Fine
+ 95.59602092082
+ 5.48147
+
+ 00000187
+ 00000188
+ 00000189
+ 1012.4
+ 2
+
+
+
+
+ 47.7254248561216
+
+
+
+
+ 6002
+
+ DirectReading
+ Fix
+ BackSight
+ true
+
+
+ 247.4898248479
+ 95.946081660566
+ 5.2441838910904
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00100786651
+ Fine
+ 95.969058821129
+ 5.24434
+
+ 00000187
+ 00000188
+ 00000189
+ 1012.4
+ 2
+
+
+
+
+ 47.7146963764556
+
+
+
+
+ 6001
+
+ DirectReading
+ Fix
+ BackSight
+ true
+
+
+ 224.91029407389
+ 98.723688560386
+ 2.8662206562569
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001004299825
+ Fine
+ 98.78538897295
+ 2.86655
+
+ 00000187
+ 00000188
+ 00000189
+ 1012.4
+ 2
+
+
+
+
+ 47.8231370276705
+
+
+
+
+ TrimbleSX10
+ 269.89888962766
+ 78.08621711754
+ Fine
+ SetToAzimuth
+ HorizontalAndVerticalAngle
+ 0
+ false
+ 3
+ 0.00027788453064
+ 0.00027788453064
+ 0.001
+ 1.5
+ FromInstrument
+ 0
+ 0.003
+ SX12
+ 30710160
+ S2.8.5
+ TRIMBLE-SX12-30710160
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+
+
+
+
+ 1012.4
+ 2
+ -17.415252512258
+ true
+ true
+ 0.142
+ ReadFromInstrument
+ true
+
+
+
+ 1002
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ 000001aa
+ 000001b2
+ 0
+ 0
+ 1
+ Fixed
+
+ StandardResection
+
+
+
+ 000001b3
+ 1002
+
+
+
+
+
+
+
+
+ SSeries360Prism
+ 0.002
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ None
+
+
+
+ 6003
+
+ DirectReading
+ Fix
+ Normal
+ true
+
+
+ 58.781801877441
+ 95.57561551679
+ 5.4812719364226
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001008222115
+ Fine
+ 95.596231461949
+ 5.48141
+
+ 000001b3
+ 000001b4
+ 000001b5
+ 1012.4
+ 2
+
+
+
+
+ 47.725410728005
+
+
+
+
+ 6002
+
+ DirectReading
+ Fix
+ Normal
+ true
+
+
+ 247.4910001125
+ 95.946124338709
+ 5.244233888955
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001007866585
+ Fine
+ 95.969101443656
+ 5.24439
+
+ 000001b3
+ 000001b4
+ 000001b5
+ 1012.4
+ 2
+
+
+
+
+ 47.7146873104845
+
+
+
+
+ 6001
+
+ DirectReading
+ Fix
+ BackSight
+ true
+
+
+ 224.91117284059
+ 98.723831253516
+ 2.8662206457134
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001004299825
+ Fine
+ 98.785532666011
+ 2.86655
+
+ 000001b3
+ 000001b4
+ 000001b5
+ 1012.4
+ 2
+
+
+
+
+ 47.8231299688286
+
+
+
+
+ 6004
+
+ DirectReading
+ Fix
+ BackSight
+ true
+
+
+ 75.848938836077
+ 87.359965575171
+ 3.9370036912949
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00100590556
+ Fine
+ 87.346337196558
+ 3.93704
+
+ 000001b3
+ 000001b4
+ 000001b5
+ 1012.4
+ 2
+
+
+
+
+ 48.4395827723587
+
+
+
+
+ TrimbleSX10
+ 269.89888962766
+ 78.08621711754
+ Fine
+ SetToAzimuth
+ HorizontalAndVerticalAngle
+ 0
+ false
+ 3
+ 0.00027788453064
+ 0.00027788453064
+ 0.001
+ 1.5
+ FromInstrument
+ 0
+ 0.003
+ SX12
+ 30710160
+ S2.8.5
+ TRIMBLE-SX12-30710160
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+
+
+
+
+ 1012.3
+ 2
+ -17.386873003947
+ true
+ true
+ 0.142
+ ReadFromInstrument
+ true
+
+
+
+ 1001
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ 000001d6
+ 000001de
+ 0
+ 0
+ 1
+ Fixed
+
+ StandardResection
+
+
+
+ 000001df
+ 1001
+
+
+
+
+
+
+
+
+ TrimbleSX10
+ 269.89888962766
+ 78.08621711754
+ Fine
+ SetToAzimuth
+ HorizontalAndVerticalAngle
+ 0
+ false
+ 3
+ 0.00027788453064
+ 0.00027788453064
+ 0.001
+ 1.5
+ FromInstrument
+ 0
+ 0.003
+ SX12
+ 30710160
+ S2.8.5
+ TRIMBLE-SX12-30710160
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+
+
+
+
+ 1012.3
+ 2
+ -17.386873003947
+ true
+ true
+ 0.142
+ ReadFromInstrument
+ true
+
+
+
+ 1002
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ 000001e2
+ 000001ea
+ 2
+ 2
+ 1
+ Fixed
+
+ StandardResection
+
+
+
+ 000001eb
+ 1002
+ 6002
+ 93.956217057226
+
+ 0
+ 0.00418028155439
+
+
+
+ SSeries360Prism
+ 0.002
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ None
+
+
+
+ 6004
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 282.31548077983
+ 87.360125444875
+ 3.9370236948664
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00100590559
+ Fine
+ 87.346497960396
+ 3.93706
+
+ 000001eb
+ 000001ec
+ 000001ed
+ 1012.3
+ 2
+
+
+ 213.846859812471
+ 75.273145104384
+ 48.4395727198709
+
+
+
+
+ 6003
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 265.24824982987
+ 95.575731973258
+ 5.4813919309552
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001008222295
+ Fine
+ 95.596347894563
+ 5.48153
+
+ 000001eb
+ 000001ec
+ 000001ed
+ 1012.3
+ 2
+
+
+ 212.555514697315
+ 73.67877667869101
+ 47.7253879622499
+
+
+
+
+ 6002
+
+ DirectReading
+ Fix
+ BackSight
+ false
+
+
+ 93.956630740342
+ 95.946279220162
+ 5.244223881179
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00100786657
+ Fine
+ 95.969256965013
+ 5.24438
+
+ 000001eb
+ 000001ec
+ 000001ed
+ 1012.3
+ 2
+
+
+ 212.647551867834
+ 84.322842277056
+ 47.7146742267745
+
+
+
+
+ 6001
+
+ DirectReading
+ Fix
+ BackSight
+ false
+
+
+ 71.377052223188
+ 98.724149823736
+ 2.8661806221335
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001004299765
+ Fine
+ 98.785854335184
+ 2.86651
+
+ 000001eb
+ 000001ec
+ 000001ed
+ 1012.3
+ 2
+
+
+ 213.912903171312
+ 81.803883500667
+ 47.8231202642249
+
+
+
+
+ 1002
+
+ Resection
+ KeyedIn
+ Normal
+ false
+
+
+ 213.007594475038
+ 79.117372958077
+ 48.2581504790839
+
+
+ 0.00030647078877
+ 0.00010782939681
+ 0.00049800270292
+
+
+
+
+
+ 000001ee
+ 6004
+ NotUsed
+
+
+ -0.00221833006429
+ 0.00401375905764
+ 0.00103312822713
+
+
+
+ -0.01911379410321
+ -0.01797572297076
+ -0.00434189150855
+
+
+
+ 000001f6
+ 6003
+ NotUsed
+
+
+ -0.00599756988957
+ 0.00309839543016
+ 0.0010630979054
+
+
+
+ -0.0654767527992
+ -0.00843321947589
+ -0.0026783444032
+
+
+
+ 000001fc
+ 6002
+ HorizontalAndVertical
+
+
+ 0.00004448576454
+ -0.00009719354112
+ -0.00049800270292
+
+
+
+ -0.0004136831153
+ 0.00552291376895
+ -0.00004787785029
+
+
+
+ 00000202
+ 6001
+ HorizontalAndVertical
+
+
+ -0.00004139007156
+ 0.00009429015191
+ 0.00049800270292
+
+
+
+ 0.00140122770209
+ -0.01006404183522
+ -0.00000023577105
+
+
+
+
+
+ DRTarget
+ 0
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+
+
+
+ 2005
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 55.32405386941
+ 89.930543903148
+ 9.41787
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.002014126805
+ Fine
+
+ 000001eb
+ 000001ec
+ 00000216
+ 1012.3
+ 2
+
+
+ 218.365646850099
+ 86.862328434739
+ 48.2695729392736
+
+
+
+
+ 2006
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 155.11693368868
+ 88.419444540322
+ 2.66366
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00200399549
+ Fine
+
+ 000001eb
+ 000001ec
+ 00000216
+ 1012.3
+ 2
+
+
+ 210.592167629476
+ 80.237709196136
+ 48.3316198094493
+
+
+
+
+ 2007
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 284.45656031529
+ 88.475945272734
+ 9.20018
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00201380027
+ Fine
+
+ 000001eb
+ 000001ec
+ 00000216
+ 1012.3
+ 2
+
+
+ 215.303529385227
+ 70.21180302673301
+ 48.5028457570837
+
+
+
+
+ 2008
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 2.8365955006181
+ 90.344967675362
+ 9.33024
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00201399536
+ Fine
+
+ 000001eb
+ 000001ec
+ 00000216
+ 1012.3
+ 2
+
+
+ 222.326071545812
+ 79.579088767123
+ 48.2019819382779
+
+
+
+
+ CustomPrism
+ -0.0344
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ None
+
+
+
+ 3008
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 104.03691894009
+ 79.5781643597
+ 8.1132
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.0010121698
+ Fine
+
+ 000001eb
+ 000001ec
+ 0000022b
+ 1012.3
+ 2
+
+
+ 211.080465440224
+ 86.825502886848
+ 49.71953563217585
+
+
+
+
+ 3009
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 106.27126872468
+ 55.493143796644
+ 9.78649
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001014679735
+ Fine
+
+ 000001eb
+ 000001ec
+ 0000022b
+ 1012.3
+ 2
+
+
+ 210.755983235023
+ 86.831640750695
+ 53.7826659825355
+
+
+
+
+ 3010
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 141.26400905491
+ 71.879009243961
+ 11.53672
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00101730508
+ Fine
+
+ 000001eb
+ 000001ec
+ 0000022b
+ 1012.3
+ 2
+
+
+ 204.4805105115382
+ 85.957654164045
+ 51.8356016445747
+
+
+
+
+ 3011
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 84.212802767294
+ 46.227865117116
+ 10.77557
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001016163355
+ Fine
+
+ 000001eb
+ 000001ec
+ 0000022b
+ 1012.3
+ 2
+
+
+ 213.789665288167
+ 86.833866374097
+ 55.6886831427248
+
+
+
+
+ 3012
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 103.24179057668
+ 40.453886992097
+ 12.25636
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00101838454
+ Fine
+
+ 000001eb
+ 000001ec
+ 0000022b
+ 1012.3
+ 2
+
+
+ 211.19116422357502
+ 86.836433697131
+ 57.5580318956072
+
+
+
+
+ 3013
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 107.31339159192
+ 32.554379385397
+ 15.05893
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001022588395
+ Fine
+
+ 000001eb
+ 000001ec
+ 0000022b
+ 1012.3
+ 2
+
+
+ 210.601650294411
+ 86.835616193842
+ 60.921831067232
+
+
+
+
+ DRTarget
+ 0
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+
+
+
+ 2009
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 93.004786270342
+ 91.128690977587
+ 7.75133
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.002011626995
+ Fine
+
+ 000001eb
+ 000001ec
+ 00000216
+ 1012.3
+ 2
+
+
+ 212.60136047555
+ 86.856409738945
+ 48.1054707028962
+
+
+
+
+ 7002
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 89.208170204297
+ 98.211356889342
+ 13.53586
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00202030379
+ Fine
+
+ 000001eb
+ 000001ec
+ 00000216
+ 1012.3
+ 2
+
+
+ 213.192733660698
+ 92.5129520036293
+ 46.3249354670579
+
+
+
+
+ 7001
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 48.986593612803
+ 82.685411093369
+ 10.35309
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.002015529635
+ Fine
+
+ 000001eb
+ 000001ec
+ 00000216
+ 1012.3
+ 2
+
+
+ 219.746253231187
+ 86.865650747897
+ 49.57626077997117
+
+
+
+
+ CustomPrism
+ -0.0344
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ None
+
+
+
+ 3014
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 90.215335404131
+ 100.06367859657
+ 10.62628
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00101593942
+ Fine
+
+ 000001eb
+ 000001ec
+ 0000022b
+ 1012.3
+ 2
+
+
+ 212.968400129754
+ 89.546034242734
+ 46.4073375800541
+
+
+
+
+ 3015
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 85.047972194295
+ 96.965032458533
+ 15.33443
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001023001645
+ Fine
+
+ 000001eb
+ 000001ec
+ 0000022b
+ 1012.3
+ 2
+
+
+ 214.318548822387
+ 94.2475441913336
+ 46.402862090437196
+
+
+
+
+ 3016
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 90.506741487673
+ 95.662643660622
+ 18.84224
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00102826336
+ Fine
+
+ 000001eb
+ 000001ec
+ 0000022b
+ 1012.3
+ 2
+
+
+ 212.842068903051
+ 97.8323777935149
+ 46.4024187685648
+
+
+
+
+ 3017
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 128.64107243428
+ 85.046657354653
+ 5.07605
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001007614075
+ Fine
+
+ 000001eb
+ 000001ec
+ 0000022b
+ 1012.3
+ 2
+
+
+ 209.8712003219045
+ 83.040494840565
+ 48.6934633025561
+
+
+
+
+ 3018
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 121.54265079975
+ 89.814930218312
+ 9.11617
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001013674255
+ Fine
+
+ 000001eb
+ 000001ec
+ 0000022b
+ 1012.3
+ 2
+
+
+ 208.2567271743601
+ 86.85714539253
+ 48.2874902821298
+
+
+
+
+ 3019
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 181.65171011605
+ 85.735399995897
+ 8.58875
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001012883125
+ Fine
+
+ 000001eb
+ 000001ec
+ 0000022b
+ 1012.3
+ 2
+
+
+ 204.4806222192241
+ 78.871491163028
+ 48.8942680790533
+
+
+
+
+ 3020
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 249.99835266964
+ 92.016900516349
+ 11.01878
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00101652817
+ Fine
+
+ 000001eb
+ 000001ec
+ 0000022b
+ 1012.3
+ 2
+
+
+ 209.2528112833281
+ 68.802113718968
+ 47.8715779089122
+
+
+
+
+ 3021
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 294.16289593434
+ 92.650904933516
+ 9.60956
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00101441434
+ Fine
+
+ 000001eb
+ 000001ec
+ 0000022b
+ 1012.3
+ 2
+
+
+ 216.922754212858
+ 70.390637264297
+ 47.815308265365
+
+
+
+
+ 3022
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 313.81904745251
+ 97.218087076055
+ 12.97479
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001019462185
+ Fine
+
+ 000001eb
+ 000001ec
+ 0000022b
+ 1012.3
+ 2
+
+
+ 221.896143067933
+ 69.854646177101
+ 46.6322762824617
+
+
+
+
+ 3023
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 0.21639822871146
+ 105.39337735981
+ 6.19039
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001009285585
+ Fine
+
+ 000001eb
+ 000001ec
+ 0000022b
+ 1012.3
+ 2
+
+
+ 218.942600211925
+ 79.139788759845
+ 46.6241065588599
+
+
+
+
+ SSeries360Prism
+ 0.002
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ None
+
+
+
+ 6005
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 328.88737761423
+ 93.120336392508
+ 9.2044121418883
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00101380669
+ Fine
+ 93.127206747784
+ 9.20446
+
+ 000001eb
+ 000001ec
+ 000001ed
+ 1012.3
+ 2
+
+
+ 220.87787186281201
+ 74.36735301453899
+ 47.7570301608022
+
+
+
+
+ 000001eb
+ 000001ec
+ ScanFullDome
+ Baumschulenstr_93 Files\SdeDatabase.rwi\SdeDatabase_Station2_Scan2.rwcx
+ Scan 2
+ Scan 2
+ 1735189
+ 0.05729577951308
+ 0.05729577951308
+ -17.386873003947
+ 0
+ false
+ false
+
+
+
+ TrimbleSX10
+ 269.89888962766
+ 78.08621711754
+ Fine
+ SetToAzimuth
+ HorizontalAndVerticalAngle
+ 0
+ false
+ 3
+ 0.00027788453064
+ 0.00027788453064
+ 0.001
+ 1.5
+ FromInstrument
+ 0
+ 0.003
+ SX12
+ 30710160
+ S2.8.5
+ TRIMBLE-SX12-30710160
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+
+
+
+
+
+ Letzte Stationierung
+
+
+
+
+ 000001eb
+ 000001ec
+ ScanFullDome
+ Baumschulenstr_93 Files\SdeDatabase.rwi\SdeDatabase_Station3_Scan3.rwcx
+ Scan 3
+ Scan 3
+ 5617435
+ 0.05729577951308
+ 0.05729577951308
+ -17.386873003947
+ 0.00067470153537
+ false
+ false
+
+
+
+ TrimbleSX10
+ 269.89888962766
+ 78.08621711754
+ Fine
+ SetToAzimuth
+ NoServo
+ 0
+ false
+ 3
+ 0.00027788453064
+ 0.00027788453064
+ 0.001
+ 1.5
+ FromInstrument
+ 0
+ 0.003
+ SX12
+ 30710160
+ S2.8.5
+ TRIMBLE-SX12-30710160
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+
+
+
+
+ 1012.2
+ 2
+ -17.358493495636
+ true
+ true
+ 0.142
+ ReadFromInstrument
+ true
+
+
+
+ 1003
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ 0000029f
+ 000002a7
+ 2
+ 2
+ 1
+ Fixed
+
+ StandardResection
+
+
+
+ 000002a8
+ 1003
+ 2003
+ 94.959326298521
+
+ 0
+ 0.00036033611032
+
+
+
+ DRTarget
+ 0
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+
+
+
+ 2001
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 264.35331894821
+ 88.495229060151
+ 23.17724
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00203476586
+ Fine
+
+ 000002a8
+ 000002a9
+ 000002aa
+ 1012.2
+ 2
+
+
+ 211.747179910788
+ 100.01394207315064
+ 48.6393230426283
+
+
+
+
+ 2002
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 350.42830556453
+ 88.979488917082
+ 17.17932
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00202576898
+ Fine
+
+ 000002a8
+ 000002a9
+ 000002aa
+ 1012.2
+ 2
+
+
+ 230.964021983396
+ 120.21425836669499
+ 48.3366428128039
+
+
+
+
+ 2003
+
+ DirectReading
+ Fix
+ BackSight
+ false
+
+
+ 94.959794068858
+ 93.44451034159
+ 10.77186
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00201615779
+ Fine
+
+ 000002a8
+ 000002a9
+ 000002aa
+ 1012.2
+ 2
+
+
+ 213.097248020171
+ 133.782314283399
+ 47.3834846563599
+
+
+
+
+ 2004
+
+ DirectReading
+ Fix
+ BackSight
+ false
+
+
+ 185.00548756181
+ 88.969884951262
+ 29.5737
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00204436055
+ Fine
+
+ 000002a8
+ 000002a9
+ 000002aa
+ 1012.2
+ 2
+
+
+ 184.571206170896
+ 120.49048322378
+ 48.56238231875
+
+
+
+
+ 1003
+
+ Resection
+ KeyedIn
+ Normal
+ false
+
+
+ 214.026848589211
+ 123.070360774115
+ 48.0306588033385
+
+
+ 0.00010253715402
+ 0.00014102413199
+ 0.00016702910145
+
+
+
+
+
+ 000002ab
+ 2001
+ NotUsed
+
+
+ -0.00007910252605
+ -0.00028161131292
+ 0.00011997291434
+
+
+
+ -0.0001261442214
+ -0.00027778154707
+ 0.00029107969013
+
+
+
+ 000002b3
+ 2002
+ NotUsed
+
+
+ 0.00047851950683
+ -0.00047055443306
+ -0.00006583527312
+
+
+
+ -0.00128233521981
+ 0.0002522112783
+ 0.00054884683386
+
+
+
+ 000002b9
+ 2003
+ HorizontalAndVertical
+
+
+ 0.00008437294092
+ 0.00004309413122
+ 0.00016702910145
+
+
+
+ -0.00046777033751
+ -0.00089822937783
+ 0.00002554017289
+
+
+
+ 000002bf
+ 2004
+ HorizontalAndVertical
+
+
+ -0.0000952507311
+ -0.00004044948551
+ -0.00016702910145
+
+
+
+ 0.00006197730521
+ 0.0003269810187
+ 0.0000953981619
+
+
+
+
+
+ CustomPrism
+ -0.0344
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ None
+
+
+
+ 3024
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 266.93158203833
+ 70.929309788331
+ 23.22125
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001034831875
+ Fine
+
+ 000002a8
+ 000002a9
+ 000002d3
+ 1012.2
+ 2
+
+
+ 212.85383391328
+ 101.1879032664027
+ 55.6065045108183
+
+
+
+
+ 3025
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 245.32105798303
+ 72.500049101915
+ 25.25638
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00103788457
+ Fine
+
+ 000002a8
+ 000002a9
+ 000002d3
+ 1012.2
+ 2
+
+
+ 203.9834204403483
+ 101.2132252261094
+ 55.6149430026173
+
+
+
+
+ 3026
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 278.31025531832
+ 64.079301304563
+ 25.99021
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001038985315
+ Fine
+
+ 000002a8
+ 000002a9
+ 000002d3
+ 1012.2
+ 2
+
+
+ 217.400867263385
+ 99.97124825904314
+ 59.3764810734927
+
+
+
+
+ 3027
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 258.77602745663
+ 57.318373434543
+ 27.97716
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00104196574
+ Fine
+
+ 000002a8
+ 000002a9
+ 000002d3
+ 1012.2
+ 2
+
+
+ 209.4490884907217
+ 100.00164409601749
+ 63.118705496363
+
+
+
+
+ 3028
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 276.49693443014
+ 56.966419908383
+ 28.82976
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00104324464
+ Fine
+
+ 000002a8
+ 000002a9
+ 000002d3
+ 1012.2
+ 2
+
+
+ 216.758310760205
+ 99.08521538401112
+ 63.727661269529
+
+
+
+
+ 3029
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 244.13692487197
+ 63.97417409209
+ 27.2106
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.0010408159
+ Fine
+
+ 000002a8
+ 000002a9
+ 000002d3
+ 1012.2
+ 2
+
+
+ 203.3743130500475
+ 101.0963002625835
+ 59.9547670634309
+
+
+
+
+ TrimbleSX10
+ 269.89888962766
+ 78.08621711754
+ Fine
+ SetToAzimuth
+ HorizontalAndVerticalAngle
+ 0
+ false
+ 3
+ 0.00027788453064
+ 0.00027788453064
+ 0.001
+ 1.5
+ FromInstrument
+ 0
+ 0.003
+ SX12
+ 30710160
+ S2.8.5
+ TRIMBLE-SX12-30710160
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+
+
+
+
+ 1011.8
+ 6
+ -13.130429661353
+ true
+ true
+ 0.142
+ ReadFromInstrument
+ true
+
+
+
+ 1004
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ 000002f3
+ 000002fb
+ 0
+ 0
+ 1
+ Fixed
+
+ StandardResection
+
+
+
+ 000002fc
+ 1004
+
+
+
+
+
+
+
+
+ SSeries360Prism
+ 0.002
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ None
+
+
+
+ 6002
+
+ DirectReading
+ Fix
+ Normal
+ true
+
+
+ 92.624422288115
+ 91.832300789838
+ 9.9994390288142
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00101499919
+ Fine
+ 91.836015243281
+ 9.99946
+
+ 000002fc
+ 000002fd
+ 000002fe
+ 1011.8
+ 6
+
+
+
+
+ 47.714599790071404
+
+
+
+
+ DRTarget
+ 0
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+
+
+
+ 2005
+
+ DirectReading
+ Fix
+ Normal
+ true
+
+
+ 55.555834273879
+ 88.598517142656
+ 9.66166
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00201449249
+ Fine
+
+ 000002fc
+ 000002fd
+ 00000307
+ 1011.8
+ 6
+
+
+
+
+ 48.2706857370584
+
+
+
+
+ 2008
+
+ DirectReading
+ Fix
+ BackSight
+ true
+
+
+ 358.84244495159
+ 87.175173814464
+ 3.42452
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00200513678
+ Fine
+
+ 000002fc
+ 000002fd
+ 00000307
+ 1011.8
+ 6
+
+
+
+
+ 48.2031448268474
+
+
+
+
+ SSeries360Prism
+ 0.002
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ None
+
+
+
+ 6005
+
+ DirectReading
+ Fix
+ Normal
+ true
+
+
+ 247.85334124635
+ 95.010965015546
+ 3.1501767973819
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001004725435
+ Fine
+ 95.043295021619
+ 3.15029
+
+ 000002fc
+ 000002fd
+ 000002fe
+ 1011.8
+ 6
+
+
+
+
+ 47.7590502103449
+
+
+
+
+ 6004
+
+ DirectReading
+ Fix
+ BackSight
+ true
+
+
+ 156.26491910653
+ 86.309722906561
+ 6.2705757099798
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00100940596
+ Fine
+ 86.297787826154
+ 6.27064
+
+ 000002fc
+ 000002fd
+ 000002fe
+ 1011.8
+ 6
+
+
+
+
+ 48.4380960949717
+
+
+
+
+ TrimbleSX10
+ 269.89888962766
+ 78.08621711754
+ Fine
+ SetToAzimuth
+ HorizontalAndVerticalAngle
+ 0
+ false
+ 3
+ 0.00027788453064
+ 0.00027788453064
+ 0.001
+ 1.5
+ FromInstrument
+ 0
+ 0.003
+ SX12
+ 30710160
+ S2.8.5
+ TRIMBLE-SX12-30710160
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+
+
+
+
+ 1011.7
+ 6
+ -13.102456809081
+ true
+ true
+ 0.142
+ ReadFromInstrument
+ true
+
+
+
+ 1004
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ 00000327
+ 0000032f
+ 0
+ 0
+ 1
+ Fixed
+
+ StandardResection
+
+
+
+ 00000330
+ 1004
+
+
+
+
+
+
+
+
+ SSeries360Prism
+ 0.002
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ None
+
+
+
+ 6005
+
+ DirectReading
+ Fix
+ Normal
+ true
+
+
+ 247.85297211332
+ 95.011108713039
+ 3.1503367913263
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001004725675
+ Fine
+ 95.043437991875
+ 3.15045
+
+ 00000330
+ 00000331
+ 00000332
+ 1011.7
+ 6
+
+
+
+
+ 47.7590283522785
+
+
+
+
+ DRTarget
+ 0
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+
+
+
+ 2008
+
+ DirectReading
+ Fix
+ Normal
+ true
+
+
+ 358.84242764208
+ 87.176662183848
+ 3.42454
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00200513681
+ Fine
+
+ 00000330
+ 00000331
+ 0000033b
+ 1011.7
+ 6
+
+
+
+
+ 48.2030569673286
+
+
+
+
+ SSeries360Prism
+ 0.002
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ None
+
+
+
+ 6002
+
+ DirectReading
+ Fix
+ BackSight
+ true
+
+
+ 92.624542192094
+ 91.831554515559
+ 9.9995890403358
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001014999415
+ Fine
+ 91.835267400964
+ 9.99961
+
+ 00000330
+ 00000331
+ 00000332
+ 1011.7
+ 6
+
+
+
+
+ 47.7147251867338
+
+
+
+
+ 6004
+
+ DirectReading
+ Fix
+ BackSight
+ true
+
+
+ 156.26588098582
+ 86.309884688073
+ 6.2706657150211
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001009406095
+ Fine
+ 86.297950301829
+ 6.27073
+
+ 00000330
+ 00000331
+ 00000332
+ 1011.7
+ 6
+
+
+
+
+ 48.4380842245861
+
+
+
+
+ TrimbleSX10
+ 269.89888962766
+ 78.08621711754
+ Fine
+ SetToAzimuth
+ HorizontalAndVerticalAngle
+ 0
+ false
+ 3
+ 0.00027788453064
+ 0.00027788453064
+ 0.001
+ 1.5
+ FromInstrument
+ 0
+ 0.003
+ SX12
+ 30710160
+ S2.8.5
+ TRIMBLE-SX12-30710160
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+
+
+
+
+ 1011.8
+ 6
+ -13.130429661353
+ true
+ true
+ 0.142
+ ReadFromInstrument
+ true
+
+
+
+ 1004
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ 00000354
+ 0000035c
+ 0
+ 0
+ 1
+ Fixed
+
+ StandardResection
+
+
+
+ 0000035d
+ 1004
+
+
+
+
+
+
+
+
+ SSeries360Prism
+ 0.002
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ None
+
+
+
+ 6004
+
+ DirectReading
+ Fix
+ Normal
+ true
+
+
+ 156.26544670424
+ 86.309889493822
+ 6.270725715173
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001009406185
+ Fine
+ 86.297955237618
+ 6.27079
+
+ 0000035d
+ 0000035e
+ 0000035f
+ 1011.8
+ 6
+
+
+
+
+ 48.4380875498771
+
+
+
+
+ 6002
+
+ DirectReading
+ Fix
+ Normal
+ true
+
+
+ 92.624346868437
+ 91.832085625056
+ 9.999859032138
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00101499982
+ Fine
+ 91.835799486216
+ 9.99988
+
+ 0000035d
+ 0000035e
+ 0000035f
+ 1011.8
+ 6
+
+
+
+
+ 47.7146239021545
+
+
+
+
+ DRTarget
+ 0
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+
+
+
+ 2005
+
+ DirectReading
+ Fix
+ BackSight
+ true
+
+
+ 55.555920358553
+ 88.598387203182
+ 9.66187
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.002014492805
+ Fine
+
+ 0000035d
+ 0000035e
+ 0000036e
+ 1011.8
+ 6
+
+
+
+
+ 48.2707127784922
+
+
+
+
+ 2008
+
+ DirectReading
+ Fix
+ BackSight
+ true
+
+
+ 358.84289584896
+ 87.175765041089
+ 3.42436
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00200513654
+ Fine
+
+ 0000035d
+ 0000035e
+ 0000036e
+ 1011.8
+ 6
+
+
+
+
+ 48.2031016496002
+
+
+
+
+ TrimbleSX10
+ 269.89888962766
+ 78.08621711754
+ Fine
+ SetToAzimuth
+ HorizontalAndVerticalAngle
+ 0
+ false
+ 3
+ 0.00027788453064
+ 0.00027788453064
+ 0.001
+ 1.5
+ FromInstrument
+ 0
+ 0.003
+ SX12
+ 30710160
+ S2.8.5
+ TRIMBLE-SX12-30710160
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+
+
+
+
+ 1011.7
+ 6
+ -13.102456809081
+ true
+ true
+ 0.142
+ ReadFromInstrument
+ true
+
+
+
+ 1004
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ 00000381
+ 00000389
+ 2
+ 2
+ 1
+ Fixed
+
+ StandardResection
+
+
+
+ 0000038a
+ 1004
+ 6003
+ 206.65547591436
+
+ 0
+ 0.0040027091431
+
+
+
+ DRTarget
+ 0
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+
+
+
+ 2008
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 41.618402789508
+ 87.175760458594
+ 3.4242
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.0020051363
+ Fine
+
+ 0000038a
+ 0000038b
+ 0000038c
+ 1011.7
+ 6
+
+
+ 222.322062594264
+ 79.575471929729
+ 48.2030940443212
+
+
+
+
+ SSeries360Prism
+ 0.002
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ None
+
+
+
+ 6005
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 290.62845850989
+ 95.01114223142
+ 3.1504167899255
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001004725795
+ Fine
+ 95.043470900131
+ 3.15053
+
+ 0000038a
+ 0000038b
+ 00000395
+ 1011.7
+ 6
+
+
+ 220.871683008741
+ 74.365042356297
+ 47.7590195275051
+
+
+
+
+ 6003
+
+ DirectReading
+ Fix
+ BackSight
+ false
+
+
+ 206.65769627881
+ 92.18750258581
+ 8.0780730001977
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00101211715
+ Fine
+ 92.192993763762
+ 8.0781
+
+ 0000038a
+ 0000038b
+ 00000395
+ 1011.7
+ 6
+
+
+ 212.549497599427
+ 73.681515170833
+ 47.725970460004
+
+
+
+
+ 6002
+
+ DirectReading
+ Fix
+ BackSight
+ false
+
+
+ 135.39983623054
+ 91.831918865416
+ 9.9997390347121
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00101499964
+ Fine
+ 91.835632433316
+ 9.99976
+
+ 0000038a
+ 0000038b
+ 00000395
+ 1011.7
+ 6
+
+
+ 212.647579731597
+ 84.323116433303
+ 47.7146568242228
+
+
+
+
+ 1004
+
+ Resection
+ KeyedIn
+ Normal
+ false
+
+
+ 219.765325507995
+ 77.304025588761
+ 48.0343771886453
+
+
+ 0.00039144461666
+ 0.0006341263809
+ 0.00048060015125
+
+
+
+
+
+ 0000038d
+ 2008
+ NotUsed
+
+
+ 0.00400895154874
+ 0.00361683739425
+ -0.00111210604333
+
+
+
+ 0.00069051280636
+ 0.02300169501494
+ 0.00533813526611
+
+
+
+ 00000396
+ 6005
+ NotUsed
+
+
+ 0.00618885407114
+ 0.00231065824211
+ -0.00198936670297
+
+
+
+ 0.12052878579832
+ 0.0359777288413
+ 0.00019910894319
+
+
+
+ 0000039c
+ 6003
+ HorizontalAndVertical
+
+
+ 0.00001952799797
+ 0.0003599032889
+ 0.00048060015125
+
+
+
+ -0.0022203644549
+ -0.00335715083487
+ -0.00019712003339
+
+
+
+ 000003a2
+ 6002
+ HorizontalAndVertical
+
+
+ 0.0000166220016
+ -0.00037134978821
+ -0.00048060015125
+
+
+
+ 0.00144863341009
+ 0.00280177460317
+ -0.00025706265351
+
+
+
+
+
+ 6006
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 281.20029544545
+ 90.279539599393
+ 25.949682846954
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001038924535
+ Fine
+ 90.279757763899
+ 25.94969
+
+ 0000038a
+ 0000038b
+ 00000395
+ 1011.7
+ 6
+
+
+ 224.806039061489
+ 51.847250824241
+ 47.9078093353346
+
+
+
+
+ 6007
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 278.20415854487
+ 90.037384899322
+ 26.120263169836
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001039180405
+ Fine
+ 90.037413885536
+ 26.12027
+
+ 0000038a
+ 0000038b
+ 00000395
+ 1011.7
+ 6
+
+
+ 223.49294298706099
+ 51.44944512997
+ 48.0173788044234
+
+
+
+
+ 6008
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 277.94683753533
+ 90.365115640092
+ 20.399112614704
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00103059868
+ Fine
+ 90.365478194876
+ 20.39912
+
+ 0000038a
+ 0000038b
+ 00000395
+ 1011.7
+ 6
+
+
+ 222.585771037031
+ 57.099504240679
+ 47.9044022854701
+
+
+
+
+ 0000038a
+ 0000038b
+ ScanFullDome
+ Baumschulenstr_93 Files\SdeDatabase.rwi\SdeDatabase_Station4_Scan4.rwcx
+ Scan 4
+ Scan 4
+ 6876978
+ 0.05729577951308
+ 0.05729577951308
+ -13.102456809081
+ 0.00120214488858
+ false
+ false
+
+
+
+ TrimbleSX10
+ 269.89888962766
+ 78.08621711754
+ Fine
+ SetToAzimuth
+ HorizontalAndVerticalAngle
+ 0
+ false
+ 3
+ 0.00027788453064
+ 0.00027788453064
+ 0.001
+ 1.5
+ FromInstrument
+ 0
+ 0.003
+ SX12
+ 30710160
+ S2.8.5
+ TRIMBLE-SX12-30710160
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+
+
+
+
+ 1011.9
+ 6
+ -13.158402513625
+ true
+ true
+ 0.142
+ ReadFromInstrument
+ true
+
+
+
+ 1005
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ 000003c7
+ 000003cf
+ 0
+ 0
+ 1
+ Fixed
+
+ StandardResection
+
+
+
+ 000003d0
+ 1005
+
+
+
+
+
+
+
+
+ DRTarget
+ 0
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+
+
+
+ 2005
+
+ DirectReading
+ Fix
+ Normal
+ true
+
+
+ 311.48396854283
+ 89.620257902077
+ 33.30288
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00204995432
+ Fine
+
+ 000003d0
+ 000003d1
+ 000003d2
+ 1011.9
+ 6
+
+
+
+
+ 48.2698443198274
+
+
+
+
+ SSeries360Prism
+ 0.002
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ None
+
+
+
+ 6005
+
+ DirectReading
+ Fix
+ Normal
+ true
+
+
+ 310.03915271751
+ 90.814402153453
+ 20.575180384567
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001030862785
+ Fine
+ 90.815203891473
+ 20.57519
+
+ 000003d0
+ 000003d1
+ 000003db
+ 1011.9
+ 6
+
+
+
+
+ 47.7566092371654
+
+
+
+
+ 6006
+
+ DirectReading
+ Fix
+ Normal
+ true
+
+
+ 152.58701526944
+ 93.295011003922
+ 2.4569270667665
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00100368547
+ Fine
+ 93.322337129318
+ 2.45698
+
+ 000003d0
+ 000003d1
+ 000003db
+ 1011.9
+ 6
+
+
+
+
+ 47.9077213624505
+
+
+
+
+ 6007
+
+ DirectReading
+ Fix
+ BackSight
+ true
+
+
+ 120.5364259382
+ 90.73092109697
+ 2.5208609072173
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001003781305
+ Fine
+ 90.736831679317
+ 2.52087
+
+ 000003d0
+ 000003d1
+ 000003db
+ 1011.9
+ 6
+
+
+
+
+ 48.0168687246478
+
+
+
+
+ 6008
+
+ DirectReading
+ Fix
+ BackSight
+ true
+
+
+ 320.04057951477
+ 92.515793838507
+ 3.2860263661896
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00100492909
+ Fine
+ 92.531368606119
+ 3.28606
+
+ 000003d0
+ 000003d1
+ 000003db
+ 1011.9
+ 6
+
+
+
+
+ 47.9047265243214
+
+
+
+
+ TrimbleSX10
+ 269.89888962766
+ 78.08621711754
+ Fine
+ SetToAzimuth
+ HorizontalAndVerticalAngle
+ 0
+ false
+ 3
+ 0.00027788453064
+ 0.00027788453064
+ 0.001
+ 1.5
+ FromInstrument
+ 0
+ 0.003
+ SX12
+ 30710160
+ S2.8.5
+ TRIMBLE-SX12-30710160
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+
+
+
+
+ 1011.7
+ 6
+ -13.102456809081
+ true
+ true
+ 0.142
+ ReadFromInstrument
+ true
+
+
+
+ 1005
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ 000003fb
+ 00000403
+ 0
+ 0
+ 1
+ Fixed
+
+ StandardResection
+
+
+
+ 00000404
+ 1005
+
+
+
+
+
+
+
+
+ SSeries360Prism
+ 0.002
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ None
+
+
+
+ 6005
+
+ DirectReading
+ Fix
+ BackSight
+ true
+
+
+ 310.03925512961
+ 90.81449224883
+ 20.575110383949
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00103086268
+ Fine
+ 90.815294078268
+ 20.57512
+
+ 00000404
+ 00000405
+ 00000406
+ 1011.7
+ 6
+
+
+
+
+ 47.7565778625435
+
+
+
+
+ 6006
+
+ DirectReading
+ Fix
+ Normal
+ true
+
+
+ 152.58713546849
+ 93.295056835486
+ 2.4570970655174
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001003685725
+ Fine
+ 93.32238143572
+ 2.45715
+
+ 00000404
+ 00000405
+ 00000406
+ 1011.7
+ 6
+
+
+
+
+ 47.9077096199103
+
+
+
+
+ 6007
+
+ DirectReading
+ Fix
+ Normal
+ true
+
+
+ 120.53670723079
+ 90.731066537148
+ 2.5210409063161
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001003781575
+ Fine
+ 90.73697787035
+ 2.52105
+
+ 00000404
+ 00000405
+ 00000406
+ 1011.7
+ 6
+
+
+
+
+ 48.0168600228488
+
+
+
+
+ 6008
+
+ DirectReading
+ Fix
+ BackSight
+ true
+
+
+ 320.04070204823
+ 92.515611416829
+ 3.2860563700791
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001004929135
+ Fine
+ 92.531184912995
+ 3.28609
+
+ 00000404
+ 00000405
+ 00000406
+ 1011.7
+ 6
+
+
+
+
+ 47.9047356577446
+
+
+
+
+ TrimbleSX10
+ 269.89888962766
+ 78.08621711754
+ Fine
+ SetToAzimuth
+ HorizontalAndVerticalAngle
+ 0
+ false
+ 3
+ 0.00027788453064
+ 0.00027788453064
+ 0.001
+ 1.5
+ FromInstrument
+ 0
+ 0.003
+ SX12
+ 30710160
+ S2.8.5
+ TRIMBLE-SX12-30710160
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+
+
+
+
+ 1011.6
+ 6
+ -13.074483956809
+ true
+ true
+ 0.142
+ ReadFromInstrument
+ true
+
+
+
+ 1005
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ 00000427
+ 0000042f
+ 0
+ 0
+ 1
+ Fixed
+
+ StandardResection
+
+
+
+ 00000430
+ 1005
+
+
+
+
+
+
+
+
+ SSeries360Prism
+ 0.002
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ None
+
+
+
+ 6005
+
+ DirectReading
+ Fix
+ Normal
+ true
+
+
+ 310.03936991177
+ 90.814226736188
+ 20.575090385769
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00103086265
+ Fine
+ 90.815028305041
+ 20.5751
+
+ 00000430
+ 00000431
+ 00000432
+ 1011.6
+ 6
+
+
+
+
+ 47.756673483377
+
+
+
+
+ 6009
+
+ DirectReading
+ Fix
+ Normal
+ true
+
+
+ 320.04057907422
+ 92.515353039652
+ 3.2860863755868
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00100492918
+ Fine
+ 92.530924794537
+ 3.28612
+
+ 00000430
+ 00000431
+ 00000432
+ 1011.6
+ 6
+
+
+
+
+ 47.9047491499992
+
+
+
+
+ 6007
+
+ DirectReading
+ Fix
+ BackSight
+ true
+
+
+ 120.53654441331
+ 90.730877352912
+ 2.5209509074896
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00100378144
+ Fine
+ 90.736787369009
+ 2.52096
+
+ 00000430
+ 00000431
+ 00000432
+ 1011.6
+ 6
+
+
+
+
+ 48.0168694999273
+
+
+
+
+ 6006
+
+ DirectReading
+ Fix
+ BackSight
+ true
+
+
+ 152.5868619177
+ 93.294818321328
+ 2.4569270721584
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00100368547
+ Fine
+ 93.322142850861
+ 2.45698
+
+ 00000430
+ 00000431
+ 00000432
+ 1011.6
+ 6
+
+
+
+
+ 47.9077296057409
+
+
+
+
+ TrimbleSX10
+ 269.89888962766
+ 78.08621711754
+ Fine
+ SetToAzimuth
+ HorizontalAndVerticalAngle
+ 0
+ false
+ 3
+ 0.00027788453064
+ 0.00027788453064
+ 0.001
+ 1.5
+ FromInstrument
+ 0
+ 0.003
+ SX12
+ 30710160
+ S2.8.5
+ TRIMBLE-SX12-30710160
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+
+
+
+
+ 1011.6
+ 6
+ -13.074483956809
+ true
+ true
+ 0.142
+ ReadFromInstrument
+ true
+
+
+
+ 1005
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ 00000452
+ 0000045a
+ 0
+ 0
+ 1
+ Fixed
+
+ StandardResection
+
+
+
+ 0000045b
+ 1005
+
+
+
+
+
+
+
+
+ SSeries360Prism
+ 0.002
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ None
+
+
+
+ 6005
+
+ DirectReading
+ Fix
+ Normal
+ true
+
+
+ 310.03946672997
+ 90.81431294122
+ 20.575390385178
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.0010308631
+ Fine
+ 90.815114583233
+ 20.5754
+
+ 0000045b
+ 0000045c
+ 0000045d
+ 1011.6
+ 6
+
+
+
+
+ 47.7566382647119
+
+
+
+
+ 6008
+
+ DirectReading
+ Fix
+ Normal
+ true
+
+
+ 320.04061203852
+ 92.515115633789
+ 3.2861963806523
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001004929345
+ Fine
+ 92.530685395995
+ 3.28623
+
+ 0000045b
+ 0000045c
+ 0000045d
+ 1011.6
+ 6
+
+
+
+
+ 47.9047579336921
+
+
+
+
+ 6007
+
+ DirectReading
+ Fix
+ BackSight
+ true
+
+
+ 120.53635796932
+ 90.730573923844
+ 2.520890909372
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00100378135
+ Fine
+ 90.736481628143
+ 2.5209
+
+ 0000045b
+ 0000045c
+ 0000045d
+ 1011.6
+ 6
+
+
+
+
+ 48.0168836247812
+
+
+
+
+ 6006
+
+ DirectReading
+ Fix
+ BackSight
+ true
+
+
+ 152.58674524045
+ 93.294840625269
+ 2.4571470715777
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.0010036858
+ Fine
+ 93.322162874766
+ 2.4572
+
+ 0000045b
+ 0000045c
+ 0000045d
+ 1011.6
+ 6
+
+
+
+
+ 47.9077160060946
+
+
+
+
+ TrimbleSX10
+ 269.89888962766
+ 78.08621711754
+ Fine
+ SetToAzimuth
+ HorizontalAndVerticalAngle
+ 0
+ false
+ 3
+ 0.00027788453064
+ 0.00027788453064
+ 0.001
+ 1.5
+ FromInstrument
+ 0
+ 0.003
+ SX12
+ 30710160
+ S2.8.5
+ TRIMBLE-SX12-30710160
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+
+
+
+
+ 1011.6
+ 6
+ -13.074483956809
+ true
+ true
+ 0.142
+ ReadFromInstrument
+ true
+
+
+
+ 1005
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ 0000047d
+ 00000485
+ 2
+ 2
+ 1
+ Fixed
+
+ StandardResection
+
+
+
+ 00000486
+ 1005
+ 6008
+ 107.53775135676
+
+ 0
+ 0.0085363144089
+
+
+
+ SSeries360Prism
+ 0.002
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ None
+
+
+
+ 6006
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 300.07923129972
+ 93.294893250248
+ 2.4570770700912
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001003685695
+ Fine
+ 93.322216719771
+ 2.45713
+
+ 00000486
+ 00000487
+ 00000488
+ 1011.6
+ 6
+
+
+ 224.805668018905
+ 51.844131560654
+ 47.9077177744452
+
+
+
+
+ 6007
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 268.02920720586
+ 90.729397396163
+ 2.5210209166668
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001003781545
+ Fine
+ 90.735295280847
+ 2.52103
+
+ 00000486
+ 00000487
+ 00000488
+ 1011.6
+ 6
+
+
+ 223.488480528641
+ 51.447215905851
+ 48.016933770719604
+
+
+
+
+ 6008
+
+ DirectReading
+ Fix
+ BackSight
+ false
+
+
+ 107.53335271843
+ 92.515106267761
+ 3.2861663808499
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.0010049293
+ Fine
+ 92.530676114962
+ 3.2862
+
+ 00000486
+ 00000487
+ 00000488
+ 1011.6
+ 6
+
+
+ 222.585610307048
+ 57.100849748651
+ 47.9047597871268
+
+
+
+
+ 6005
+
+ DirectReading
+ Fix
+ BackSight
+ false
+
+
+ 97.532711454537
+ 90.814217162254
+ 20.575390385835
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.0010308631
+ Fine
+ 90.815018709986
+ 20.5754
+
+ 00000486
+ 00000487
+ 00000488
+ 1011.6
+ 6
+
+
+ 220.878011177165
+ 74.365992259693
+ 47.7566726591455
+
+
+
+
+ 1005
+
+ Resection
+ KeyedIn
+ Normal
+ false
+
+
+ 223.575239156055
+ 53.968507144663
+ 48.0490510855897
+
+
+ 0.00218200224003
+ 0.00138435974462
+ 0.00035750165665
+
+
+
+
+
+ 00000489
+ 6006
+ NotUsed
+
+
+ 0.00037104258479
+ 0.00311926358727
+ 0.00009156088935
+
+
+
+ 0.04402527068109
+ 0.00123609043355
+ -0.00251362131318
+
+
+
+ 00000491
+ 6007
+ NotUsed
+
+
+ 0.0044624584199
+ 0.00222922411844
+ 0.00044503370383
+
+
+
+ 0.09964127049073
+ -0.00942724969414
+ -0.00238299678156
+
+
+
+ 00000497
+ 6008
+ HorizontalAndVertical
+
+
+ 0.00016072998276
+ -0.00134550797209
+ -0.00035750165665
+
+
+
+ 0.00439863833253
+ 0.00724445810834
+ -0.00131441308811
+
+
+
+ 0000049d
+ 6005
+ HorizontalAndVertical
+
+
+ -0.00013931435254
+ 0.00136075484647
+ 0.00035750165665
+
+
+
+ -0.00011213961168
+ -0.00104936698208
+ 0.00136206055654
+
+
+
+
+
+ DRTarget
+ 0
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+
+
+
+ 2010
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 72.458666423333
+ 89.315064873391
+ 5.41291
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.002008119365
+ Fine
+
+ 00000486
+ 00000487
+ 000004b1
+ 1011.6
+ 6
+
+
+ 225.206518436747
+ 59.129279311985
+ 48.1137586147378
+
+
+
+
+ 2011
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 156.47114937449
+ 86.446195893846
+ 8.27012
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00201240518
+ Fine
+
+ 00000486
+ 00000487
+ 000004b1
+ 1011.6
+ 6
+
+
+ 216.007383970361
+ 57.263636388622
+ 48.5616791421834
+
+
+
+
+ 2012
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 200.2032671052
+ 89.983376983262
+ 14.40814
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00202161221
+ Fine
+
+ 00000486
+ 00000487
+ 000004b1
+ 1011.6
+ 6
+
+
+ 210.053761367786
+ 48.992696583139
+ 48.0532451749385
+
+
+
+
+ 2012
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 200.20303955378
+ 89.983277304296
+ 14.40817
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.002021612255
+ Fine
+
+ 00000486
+ 00000487
+ 000004b1
+ 1011.6
+ 6
+
+
+ 210.053713459351
+ 48.992739926242
+ 48.0532702496416
+
+
+
+
+ 2012
+
+ MeanTurnedAngle
+ Fix
+ MTA
+ false
+
+
+ 92.665401972728
+ 89.983327143779
+ 14.408155
+
+
+
+ 2
+ 2
+ 2
+
+ 00000486
+ 00000487
+ 000004b1
+ 1011.6
+ 6
+
+
+ 210.053737413547
+ 48.992718254651
+ 48.053257712277
+
+
+
+
+ 2013
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 348.8868402862
+ 89.532942898706
+ 2.93081
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.002004396215
+ Fine
+
+ 00000486
+ 00000487
+ 000004b1
+ 1011.6
+ 6
+
+
+ 226.450958683429
+ 53.403627453644
+ 48.0729421239587
+
+
+
+
+ CustomPrism
+ -0.0344
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ None
+
+
+
+ 3030
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 123.40767140483
+ 92.690617166358
+ 5.31462
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00100797193
+ Fine
+
+ 00000486
+ 00000487
+ 000004ce
+ 1011.6
+ 6
+
+
+ 220.67123249460099
+ 58.37138156508
+ 47.8011875156629
+
+
+
+
+ 3031
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 150.55087140206
+ 91.95933413711
+ 7.51006
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00101126509
+ Fine
+
+ 00000486
+ 00000487
+ 000004ce
+ 1011.6
+ 6
+
+
+ 217.069380932476
+ 57.641723061876
+ 47.7934641191352
+
+
+
+
+ 3032
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 171.42374479973
+ 91.076212582659
+ 14.23216
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00102134824
+ Fine
+
+ 00000486
+ 00000487
+ 000004ce
+ 1011.6
+ 6
+
+
+ 209.5388945163833
+ 56.085355000877
+ 47.7824008511675
+
+
+
+
+ 3033
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 95.228223158207
+ 101.99803459639
+ 7.25075
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001010876125
+ Fine
+
+ 00000486
+ 00000487
+ 000004ce
+ 1011.6
+ 6
+
+
+ 222.93203604037
+ 60.997756057067
+ 46.5489527272039
+
+
+
+
+ 00000486
+ 00000487
+ ScanFullDome
+ Baumschulenstr_93 Files\SdeDatabase.rwi\SdeDatabase_Station5_Scan5.rwcx
+ Scan 5
+ Scan 5
+ 6963483
+ 0.05729577951308
+ 0.05729577951308
+ -13.074483956809
+ 0.00030142614345
+ false
+ false
+
+
+
+ TrimbleSX10
+ 269.89888962766
+ 78.08621711754
+ Fine
+ SetToAzimuth
+ HorizontalAndVerticalAngle
+ 0
+ false
+ 3
+ 0.00027788453064
+ 0.00027788453064
+ 0.001
+ 1.5
+ FromInstrument
+ 0
+ 0.003
+ SX12
+ 30710160
+ S2.8.5
+ TRIMBLE-SX12-30710160
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+
+
+
+
+ 1013.5
+ 2
+ -17.727427103679
+ true
+ true
+ 0.142
+ ReadFromInstrument
+ true
+
+
+
+ 1006
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ 000004e6
+ 000004ee
+ 2
+ 2
+ 1
+ Fixed
+
+ StandardResection
+
+
+
+ 000004ef
+ 1006
+ 2003
+ 94.113813721627
+
+ -0.00000000000001
+ 0.00026436635886
+
+
+
+ DRTarget
+ 0
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+
+
+
+ 2001
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 264.68494918115
+ 88.648383464953
+ 23.0157
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00203452355
+ Fine
+
+ 000004ef
+ 000004f0
+ 000004f1
+ 1013.5
+ 2
+
+
+ 211.746974743972
+ 100.01352868960959
+ 48.6394017515332
+
+
+
+
+ 2002
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 350.98620904368
+ 89.205135312389
+ 17.30109
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.002025951635
+ Fine
+
+ 000004ef
+ 000004f0
+ 000004f1
+ 1013.5
+ 2
+
+
+ 230.963822874919
+ 120.21319634194
+ 48.3365083969205
+
+
+
+
+ 2003
+
+ DirectReading
+ Fix
+ BackSight
+ false
+
+
+ 94.113476629277
+ 93.746786232278
+ 10.91046
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00201636569
+ Fine
+
+ 000004ef
+ 000004f0
+ 000004f1
+ 1013.5
+ 2
+
+
+ 213.097394328599
+ 133.782389104726
+ 47.3835351669499
+
+
+
+
+ 2004
+
+ DirectReading
+ Fix
+ BackSight
+ false
+
+
+ 184.74577795331
+ 89.092575191681
+ 29.41233
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.002044118495
+ Fine
+
+ 000004ef
+ 000004f0
+ 000004f1
+ 1013.5
+ 2
+
+
+ 184.571041049124
+ 120.490413133564
+ 48.56233180816
+
+
+
+
+ 1006
+
+ Resection
+ KeyedIn
+ Normal
+ false
+
+
+ 213.878337404905
+ 122.923487154871
+ 48.0964820964102
+
+
+ 0.0000754399461
+ 0.00010297393108
+ 0.00011651851149
+
+
+
+
+
+ 000004f2
+ 2001
+ NotUsed
+
+
+ 0.00012606429066
+ 0.00013177222813
+ 0.00004126400941
+
+
+
+ 0.00028217636735
+ -0.00011108828026
+ -0.00014186978548
+
+
+
+ 000004fa
+ 2002
+ NotUsed
+
+
+ 0.00067762798414
+ 0.00059147032159
+ 0.00006858061029
+
+
+
+ 0.00228634567381
+ -0.00020060002584
+ 0.00057750262418
+
+
+
+ 00000500
+ 2003
+ HorizontalAndVertical
+
+
+ -0.00006193548763
+ -0.00003172719559
+ 0.00011651851149
+
+
+
+ 0.00033709235012
+ -0.0006012614336
+ -0.00003475784228
+
+
+
+ 00000506
+ 2004
+ HorizontalAndVertical
+
+
+ 0.00006987104162
+ 0.00002964073019
+ -0.00011651851149
+
+
+
+ -0.00004628844998
+ 0.00022473225364
+ -0.00007392005784
+
+
+
+
+
+ CustomPrism
+ -0.0344
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ None
+
+
+
+ 3034
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 281.51797540894
+ 53.972186172658
+ 31.81275
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001047719125
+ Fine
+
+ 000004ef
+ 000004f0
+ 0000051a
+ 1013.5
+ 2
+
+
+ 219.009925999089
+ 97.7413649829368
+ 66.787529308738
+
+
+
+
+ 3035
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 264.96594766265
+ 52.745699097144
+ 31.51837
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001047277555
+ Fine
+
+ 000004ef
+ 000004f0
+ 0000051a
+ 1013.5
+ 2
+
+
+ 211.679431462851
+ 97.9607601736719
+ 67.155136228059
+
+
+
+
+ 3036
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 242.15057293058
+ 56.648773092744
+ 34.32344
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00105148516
+ Fine
+
+ 000004ef
+ 000004f0
+ 0000051a
+ 1013.5
+ 2
+
+
+ 200.4984087390088
+ 97.5991721175264
+ 66.947295226013
+
+
+
+
+ TrimbleSX10
+ 269.89888962766
+ 78.08621711754
+ Fine
+ SetToAzimuth
+ NoServo
+ 0
+ false
+ 3
+ 0.00027788453064
+ 0.00027788453064
+ 0.001
+ 1.5
+ FromInstrument
+ 0
+ 0.003
+ SX12
+ 30710160
+ S2.8.5
+ TRIMBLE-SX12-30710160
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+
+
+
+
+ 1013.6
+ 2
+ -17.75580661199
+ true
+ true
+ 0.142
+ ReadFromInstrument
+ true
+
+
+
+ 1007
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ 0000052b
+ 00000533
+ 2
+ 2
+ 1
+ Fixed
+
+ StandardResection
+
+
+
+ 00000534
+ 1007
+ 2006
+ 167.40338960232
+
+ 0.00000000000005
+ 0.01148878860268
+
+
+
+ DRTarget
+ 0
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+
+
+
+ 2008
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 19.86143097496
+ 89.726355383348
+ 3.5698
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.0020053547
+ Fine
+
+ 00000534
+ 00000535
+ 00000536
+ 1013.6
+ 2
+
+
+ 222.325457238997
+ 79.578779070896
+ 48.2021294921124
+
+
+
+
+ 2005
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 94.059110030443
+ 89.430933867171
+ 8.51811
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.002012777165
+ Fine
+
+ 00000534
+ 00000535
+ 00000536
+ 1013.6
+ 2
+
+
+ 218.36517843314
+ 86.862160132726
+ 48.2696841564121
+
+
+
+
+ 2006
+
+ DirectReading
+ Fix
+ BackSight
+ false
+
+
+ 167.408935737
+ 89.021905422565
+ 8.5832
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.0020128748
+ Fine
+
+ 00000534
+ 00000535
+ 00000536
+ 1013.6
+ 2
+
+
+ 210.592686090068
+ 80.236742146747
+ 48.3315984320193
+
+
+
+
+ 2007
+
+ DirectReading
+ Fix
+ BackSight
+ false
+
+
+ 245.79528404403
+ 87.963993732354
+ 8.94483
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.002013417245
+ Fine
+
+ 00000534
+ 00000535
+ 00000536
+ 1013.6
+ 2
+
+
+ 215.303114400952
+ 70.212825185348
+ 48.5028671345137
+
+
+
+
+ 1007
+
+ Resection
+ KeyedIn
+ Normal
+ false
+
+
+ 218.968097409704
+ 78.365987340244
+ 48.185079639393
+
+
+ 0.00128709686666
+ 0.00167101417251
+ 0.00002137743
+
+
+
+
+
+ 00000537
+ 2008
+ NotUsed
+
+
+ 0.00061430681515
+ 0.00030969622747
+ -0.0001475538345
+
+
+
+ 0.00132498047544
+ 0.00242016965252
+ 0.00068227584196
+
+
+
+ 0000053f
+ 2005
+ NotUsed
+
+
+ 0.00046841695883
+ 0.00016830201217
+ -0.00011121713857
+
+
+
+ -0.00322313106032
+ 0.00075705157519
+ 0.00013362557751
+
+
+
+ 00000545
+ 2006
+ HorizontalAndVertical
+
+
+ -0.0005184605923
+ 0.00096704938886
+ 0.00002137743
+
+
+
+ -0.00554613468692
+ -0.00006099080888
+ 0.00071710080076
+
+
+
+ 0000054b
+ 2007
+ HorizontalAndVertical
+
+
+ 0.00041498427583
+ -0.00102215861477
+ -0.00002137743
+
+
+
+ 0.00511178114752
+ 0.00031027970616
+ 0.00076094919715
+
+
+
+
+
+ CustomPrism
+ -0.0344
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ None
+
+
+
+ 3037
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 263.84582601762
+ 68.234399006691
+ 8.33949
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001012509235
+ Fine
+
+ 00000534
+ 00000535
+ 0000055f
+ 1013.6
+ 2
+
+
+ 218.14124547111498
+ 70.697566412966
+ 51.264642414707
+
+
+
+
+ TrimbleSX10
+ 269.89888962766
+ 78.08621711754
+ Fine
+ SetToAzimuth
+ HorizontalAndVerticalAngle
+ 0
+ false
+ 3
+ 0.00027788453064
+ 0.00027788453064
+ 0.001
+ 1.5
+ FromInstrument
+ 0
+ 0.003
+ SX12
+ 30710160
+ S2.8.5
+ TRIMBLE-SX12-30710160
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+
+
+
+
+
+ Letzte Stationierung
+
+
+
+
+ CustomPrism
+ -0.0344
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ None
+
+
+
+ 3038
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 237.57447008307
+ 82.696322179749
+ 10.36585
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001015548775
+ Fine
+
+ 00000534
+ 00000535
+ 0000056f
+ 1013.6
+ 2
+
+
+ 213.473389399443
+ 69.716234485127
+ 49.49848288837124
+
+
+
+
+ 3039
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 239.17377545663
+ 64.655784470999
+ 11.10199
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001016652985
+ Fine
+
+ 00000534
+ 00000535
+ 0000056f
+ 1013.6
+ 2
+
+
+ 213.842620254506
+ 69.77686016674
+ 52.9225448797023
+
+
+
+
+ 3040
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 240.35641915035
+ 50.325380293409
+ 12.78655
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001019179825
+ Fine
+
+ 00000534
+ 00000535
+ 0000056f
+ 1013.6
+ 2
+
+
+ 214.113605405631
+ 69.835650170552
+ 56.326259530773
+
+
+
+
+ 3041
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 238.33759337754
+ 41.760335967441
+ 15.25275
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001022879125
+ Fine
+
+ 00000534
+ 00000535
+ 0000056f
+ 1013.6
+ 2
+
+
+ 213.647850929994
+ 69.739118559965
+ 59.536822448919
+
+
+
+
+ TrimbleSX10
+ 269.89888962766
+ 78.08621711754
+ Fine
+ SetToAzimuth
+ HorizontalAndVerticalAngle
+ 0
+ false
+ 3
+ 0.00027788453064
+ 0.00027788453064
+ 0.001
+ 1.5
+ FromInstrument
+ 0
+ 0.003
+ SX12
+ 30710160
+ S2.8.5
+ TRIMBLE-SX12-30710160
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+
+
+
+
+ 1014.4
+ 2
+ -17.982842678477
+ true
+ true
+ 0.142
+ ReadFromInstrument
+ true
+
+
+
+ 1008
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ 00000585
+ 0000058d
+ 2
+ 2
+ 1
+ Fixed
+
+ StandardResection
+
+
+
+ 0000058e
+ 1008
+ 2012
+ 198.33843206295
+
+ 0
+ 0.00237994743273
+
+
+
+ DRTarget
+ 0
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+
+
+
+ 2010
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 72.862312528892
+ 89.864019769997
+ 5.96066
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00200894099
+ Fine
+
+ 0000058e
+ 0000058f
+ 00000590
+ 1014.4
+ 2
+
+
+ 225.206548173677
+ 59.129018041077
+ 48.1137051337363
+
+
+
+
+ 2011
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 152.76828197205
+ 86.837999467812
+ 8.38451
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.002012576765
+ Fine
+
+ 0000058e
+ 0000058f
+ 00000590
+ 1014.4
+ 2
+
+
+ 216.00644969830302
+ 57.263893138776
+ 48.5620367604761
+
+
+
+
+ 2012
+
+ DirectReading
+ Fix
+ BackSight
+ false
+
+
+ 198.33835438366
+ 90.18811092464
+ 14.11387
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.002021170805
+ Fine
+
+ 0000058e
+ 0000058f
+ 00000590
+ 1014.4
+ 2
+
+
+ 210.05337816639098
+ 48.992619335938
+ 48.0532328527868
+
+
+
+
+ 2013
+
+ DirectReading
+ Fix
+ BackSight
+ false
+
+
+ 359.43836236154
+ 90.507602148609
+ 3.00147
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.002004502205
+ Fine
+
+ 0000058e
+ 0000058f
+ 00000590
+ 1014.4
+ 2
+
+
+ 226.451317311518
+ 53.403713883554
+ 48.0729669834489
+
+
+
+
+ 1008
+
+ Resection
+ KeyedIn
+ Normal
+ false
+
+
+ 223.450163260024
+ 53.433133416331
+ 48.0995565610966
+
+
+ 0.00038344731015
+ 0.00041344949143
+ 0.00002485949021
+
+
+
+
+
+ 00000591
+ 2010
+ NotUsed
+
+
+ -0.00002973693088
+ 0.00026127090812
+ 0.00005348100148
+
+
+
+ 0.00101316703669
+ -0.00050856694443
+ 0.00024103520793
+
+
+
+ 00000599
+ 2011
+ NotUsed
+
+
+ 0.00093427205791
+ -0.00025675015398
+ -0.00035761829269
+
+
+
+ -0.00136363677999
+ 0.00208293856631
+ -0.00096648135006
+
+
+
+ 0000059f
+ 2012
+ HorizontalAndVertical
+
+
+ 0.0003592471558
+ 0.00009891871243
+ 0.00002485949021
+
+
+
+ 0.00007767928984
+ -0.00009596345906
+ -0.0003722049634
+
+
+
+ 000005a5
+ 2013
+ HorizontalAndVertical
+
+
+ -0.00035862808906
+ -0.00008642990954
+ -0.00002485949021
+
+
+
+ -0.00171721064294
+ 0.0005351053228
+ -0.0003575279017
+
+
+
+
+
+ CustomPrism
+ -0.0344
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ None
+
+
+
+ 3042
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 166.1567189955
+ 62.148888030345
+ 14.07561
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001021113415
+ Fine
+
+ 0000058e
+ 0000058f
+ 000005b9
+ 1014.4
+ 2
+
+
+ 211.396246441837
+ 56.403515975299
+ 54.659160534354
+
+
+
+
+ 3043
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 86.632674640049
+ 40.256544208289
+ 8.63477
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001012952155
+ Fine
+
+ 0000058e
+ 0000058f
+ 000005b9
+ 1014.4
+ 2
+
+
+ 223.776597635308
+ 58.981089482613
+ 54.6628886413037
+
+
+
+
+ TrimbleSX10
+ 269.89888962766
+ 78.08621711754
+ Fine
+ SetToAzimuth
+ HorizontalAndVerticalAngle
+ 0
+ false
+ 3
+ 0.00027788453064
+ 0.00027788453064
+ 0.001
+ 1.5
+ FromInstrument
+ 0
+ 0.003
+ SX12
+ 30710160
+ S2.8.5
+ TRIMBLE-SX12-30710160
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+
+
+
+
+ 1015.1
+ 3
+ -17.1382966697
+ true
+ true
+ 0.142
+ ReadFromInstrument
+ true
+
+
+
+ 1009
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ 000005c5
+ 000005cd
+ 2
+ 2
+ 1
+ Fixed
+
+ StandardResection
+
+
+
+ 000005ce
+ 1009
+ 2005
+ 65.535513258216
+
+ 0
+ 0.0028946322295
+
+
+
+ DRTarget
+ 0
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+
+
+
+ 2007
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 264.36952391717
+ 88.185530538208
+ 12.72305
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.002019084575
+ Fine
+
+ 000005ce
+ 000005cf
+ 000005d0
+ 1015.1
+ 3
+
+
+ 215.300585584468
+ 70.212701745045
+ 48.5026739691596
+
+
+
+
+ 2008
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 330.33467637289
+ 89.119160186364
+ 6.64499
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.002009967485
+ Fine
+
+ 000005ce
+ 000005cf
+ 000005d0
+ 1015.1
+ 3
+
+
+ 222.32148333039
+ 79.57942276045401
+ 48.201972168877
+
+
+
+
+ 2005
+
+ DirectReading
+ Fix
+ BackSight
+ false
+
+
+ 65.536866791172
+ 87.784398034245
+ 4.39165
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.002006587475
+ Fine
+
+ 000005ce
+ 000005cf
+ 000005d0
+ 1015.1
+ 3
+
+
+ 218.365450526467
+ 86.862147259241
+ 48.2695970470682
+
+
+
+
+ 2006
+
+ DirectReading
+ Fix
+ BackSight
+ false
+
+
+ 203.82481212969
+ 87.961169023823
+ 6.51489
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.002009772335
+ Fine
+
+ 000005ce
+ 000005cf
+ 000005d0
+ 1015.1
+ 3
+
+
+ 210.592377889846
+ 80.237878433381
+ 48.3315957016547
+
+
+
+
+ 1009
+
+ Resection
+ KeyedIn
+ Normal
+ false
+
+
+ 216.548225401963
+ 82.867801690503
+ 48.0998178553382
+
+
+ 0.00026628135017
+ 0.00028572758059
+ 0.00002410779461
+
+
+
+
+
+ 000005d1
+ 2007
+ NotUsed
+
+
+ 0.00294380075902
+ -0.00089871831112
+ 0.00017178792406
+
+
+
+ 0.01359635763848
+ -0.00068680489543
+ 0.00061105402838
+
+
+
+ 000005d9
+ 2008
+ NotUsed
+
+
+ 0.00458821542192
+ -0.00033399333135
+ 0.00000976940087
+
+
+
+ 0.01706953082545
+ 0.00046592071789
+ 0.00415210259837
+
+
+
+ 000005df
+ 2005
+ HorizontalAndVertical
+
+
+ 0.00019632363251
+ 0.00018117549742
+ -0.00002410779461
+
+
+
+ -0.00135353295561
+ 0.00043845532878
+ 0.00024509538934
+
+
+
+ 000005e5
+ 2006
+ HorizontalAndVertical
+
+
+ -0.00021026037052
+ -0.00016923724467
+ 0.00002410779461
+
+
+
+ 0.00061496553812
+ -0.00013030956491
+ 0.00026139797614
+
+
+
+
+
+ CustomPrism
+ -0.0344
+ 0
+
+ TrueHeight
+ 0
+ 0
+ 0
+
+ None
+
+
+
+ 3044
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 293.21380136076
+ 43.333394968047
+ 23.22077
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001034831155
+ Fine
+
+ 000005ce
+ 000005cf
+ 000005f9
+ 1015.1
+ 3
+
+
+ 222.81982531446602
+ 68.24479179246501
+ 64.964690894642
+
+
+
+
+ 3045
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 257.38417899858
+ 45.758052411591
+ 23.76004
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00103564006
+ Fine
+
+ 000005ce
+ 000005cf
+ 000005f9
+ 1015.1
+ 3
+
+
+ 212.83592332051
+ 66.281431557541
+ 64.652697911193
+
+
+
+
+ 3046
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 241.43609133195
+ 50.884480949871
+ 26.10752
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00103916128
+ Fine
+
+ 000005ce
+ 000005cf
+ 000005f9
+ 1015.1
+ 3
+
+
+ 206.875899621791
+ 65.100881690766
+ 64.548737363046
+
+
+
+
+ 3047
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 242.75680395638
+ 57.619233958668
+ 18.69172
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00102803758
+ Fine
+
+ 000005ce
+ 000005cf
+ 000005f9
+ 1015.1
+ 3
+
+
+ 209.3356417163737
+ 68.859618731999
+ 58.0914696173413
+
+
+
+
+ 3048
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 272.48060624027
+ 51.260328569728
+ 15.96959
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001023954385
+ Fine
+
+ 000005ce
+ 000005cf
+ 000005f9
+ 1015.1
+ 3
+
+
+ 217.086175568129
+ 70.450267183964
+ 58.0716292726975
+
+
+
+
+ 3049
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 293.16161186891
+ 51.415627193722
+ 16.03121
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.001024046815
+ Fine
+
+ 000005ce
+ 000005cf
+ 000005f9
+ 1015.1
+ 3
+
+
+ 221.4665039237
+ 71.371331323828
+ 58.0763335012321
+
+
+
+
+ 3050
+
+ DirectReading
+ Fix
+ Normal
+ false
+
+
+ 248.48383167098
+ 78.157600466134
+ 14.99044
+ Face1
+ 0.00027788453064
+ 0.00027788453064
+ 0.00102248566
+ Fine
+
+ 000005ce
+ 000005cf
+ 000005f9
+ 1015.1
+ 3
+
+
+ 211.179735954327
+ 69.250367480515
+ 51.1690640231796
+
+
+
+
+
+
+
+ 00000030
+ 5001
+
+ KeyedIn
+ Normal
+
+
+ 0
+ 0
+ 0
+
+
+
+
+ 00000041
+ 5002
+
+ Fix
+ BackSight
+
+
+ 11.407493926503
+ 0
+ -0.03520763328074
+
+
+
+
+ 00000045
+ 1001
+
+ KeyedIn
+ Normal
+
+
+ 13.564836640777
+ 22.787987226327
+ -1.9522100598255
+
+
+
+
+ 0000004c
+ 2001
+
+ Fix
+ Normal
+
+
+ 11.747100808262
+ 0.01366046183771
+ -1.3605569844574
+
+
+
+
+ 00000051
+ 2002
+
+ Fix
+ Normal
+
+
+ 30.964500502903
+ 20.213787812262
+ -1.6634230224692
+
+
+
+
+ 00000056
+ 2003
+
+ Fix
+ Normal
+
+
+ 13.097332393112
+ 33.78235737753
+ -2.6163483145386
+
+
+
+
+ 0000005b
+ 2004
+
+ Fix
+ Normal
+
+
+ -15.428889079835
+ 20.490442774294
+ -1.4377847103515
+
+
+
+
+ 00000061
+ 3001
+
+ Fix
+ Normal
+
+
+ 13.219704366825
+ 33.838099818544
+ -2.5746165834351
+
+
+
+
+ 00000066
+ 3002
+
+ Fix
+ Normal
+
+
+ 30.14043546648
+ 26.308381768271
+ -1.9029039206999
+
+
+
+
+ 0000006b
+ 3003
+
+ Fix
+ Normal
+
+
+ -3.2931707887914
+ 26.357327175554
+ -2.1148969458828
+
+
+
+
+ 0000007b
+ 3004
+
+ Fix
+ Normal
+
+
+ -0.53011337946121
+ 0.04791118307159
+ -3.0208552356468
+
+
+
+
+ 00000080
+ 3005
+
+ Fix
+ Normal
+
+
+ 6.7886622553038
+ -0.03827563422222
+ -3.4140559040302
+
+
+
+
+ 0000009f
+ 6001
+
+ Fix
+ Normal
+
+
+ 13.912861781241
+ -18.196022209181
+ -2.1763817330722
+
+
+
+
+ 000000ab
+ 6002
+
+ Fix
+ Normal
+
+
+ 12.647596353599
+ -15.677254916485
+ -2.2858237759284
+
+
+
+
+ 000000b2
+ 6003
+
+ Fix
+ Normal
+
+
+ 12.549517127425
+ -26.318124925878
+ -2.2735489398447
+
+
+
+
+ 000000b9
+ 6004
+
+ Fix
+ Normal
+
+
+ 13.844641482407
+ -24.722841136558
+ -1.559394151902
+
+
+
+
+ 000000bf
+ 3006
+
+ Fix
+ Normal
+
+
+ 13.130949845176
+ 1.1818030068431
+ 1.8445856166495
+
+
+
+
+ 000000cb
+ 3007
+
+ Fix
+ Normal
+
+
+ 16.74460172631
+ 0.86721755321816
+ 1.8414178293525
+
+
+
+
+ 0000020c
+ 1002
+
+ KeyedIn
+ Normal
+
+
+ 13.007594475038
+ -20.882627041923
+ -1.7418495209161
+
+
+
+
+ 00000217
+ 2005
+
+ Fix
+ Normal
+
+
+ 18.365646850099
+ -13.137671565261
+ -1.7304270607264
+
+
+
+
+ 0000021c
+ 2006
+
+ Fix
+ Normal
+
+
+ 10.592167629476
+ -19.762290803864
+ -1.6683801905507
+
+
+
+
+ 00000221
+ 2007
+
+ Fix
+ Normal
+
+
+ 15.303529385227
+ -29.788196973267
+ -1.4971542429163
+
+
+
+
+ 00000226
+ 2008
+
+ Fix
+ Normal
+
+
+ 22.326071545812
+ -20.420911232877
+ -1.7980180617221
+
+
+
+
+ 0000022c
+ 3008
+
+ Fix
+ Normal
+
+
+ 11.080465440224
+ -13.174497113152
+ -0.28046436782415
+
+
+
+
+ 00000231
+ 3009
+
+ Fix
+ Normal
+
+
+ 10.755983235023
+ -13.168359249305
+ 3.7826659825355
+
+
+
+
+ 00000236
+ 3010
+
+ Fix
+ Normal
+
+
+ 4.4805105115382
+ -14.042345835955
+ 1.8356016445747
+
+
+
+
+ 0000023b
+ 3011
+
+ Fix
+ Normal
+
+
+ 13.789665288167
+ -13.166133625903
+ 5.6886831427248
+
+
+
+
+ 00000240
+ 3012
+
+ Fix
+ Normal
+
+
+ 11.191164223575
+ -13.163566302869
+ 7.5580318956072
+
+
+
+
+ 00000245
+ 3013
+
+ Fix
+ Normal
+
+
+ 10.601650294411
+ -13.164383806158
+ 10.921831067232
+
+
+
+
+ 0000024a
+ 2009
+
+ Fix
+ Normal
+
+
+ 12.60136047555
+ -13.143590261055
+ -1.8945292971038
+
+
+
+
+ 0000024f
+ 7002
+
+ Fix
+ Normal
+
+
+ 13.192733660698
+ -7.4870479963707
+ -3.6750645329421
+
+
+
+
+ 00000254
+ 7001
+
+ Fix
+ Normal
+
+
+ 19.746253231187
+ -13.134349252103
+ -0.42373922002883
+
+
+
+
+ 00000259
+ 3014
+
+ Fix
+ Normal
+
+
+ 12.968400129754
+ -10.453965757266
+ -3.5926624199459
+
+
+
+
+ 0000025e
+ 3015
+
+ Fix
+ Normal
+
+
+ 14.318548822387
+ -5.7524558086664
+ -3.5971379095628
+
+
+
+
+ 00000263
+ 3016
+
+ Fix
+ Normal
+
+
+ 12.842068903051
+ -2.1676222064851
+ -3.5975812314352
+
+
+
+
+ 00000268
+ 3017
+
+ Fix
+ Normal
+
+
+ 9.8712003219045
+ -16.959505159435
+ -1.3065366974439
+
+
+
+
+ 0000026d
+ 3018
+
+ Fix
+ Normal
+
+
+ 8.2567271743601
+ -13.14285460747
+ -1.7125097178702
+
+
+
+
+ 00000272
+ 3019
+
+ Fix
+ Normal
+
+
+ 4.4806222192241
+ -21.128508836972
+ -1.1057319209467
+
+
+
+
+ 00000277
+ 3020
+
+ Fix
+ Normal
+
+
+ 9.2528112833281
+ -31.197886281032
+ -2.1284220910878
+
+
+
+
+ 0000027c
+ 3021
+
+ Fix
+ Normal
+
+
+ 16.922754212858
+ -29.609362735703
+ -2.184691734635
+
+
+
+
+ 00000281
+ 3022
+
+ Fix
+ Normal
+
+
+ 21.896143067933
+ -30.145353822899
+ -3.3677237175383
+
+
+
+
+ 00000286
+ 3023
+
+ Fix
+ Normal
+
+
+ 18.942600211925
+ -20.860211240155
+ -3.3758934411401
+
+
+
+
+ 0000028d
+ 6005
+
+ Fix
+ Normal
+
+
+ 20.877871862812
+ -25.632646985461
+ -2.2429698391978
+
+
+
+
+ 000002c9
+ 1003
+
+ KeyedIn
+ Normal
+
+
+ 14.026848589211
+ 23.070360774115
+ -1.9693411966615
+
+
+
+
+ 000002d4
+ 3024
+
+ Fix
+ Normal
+
+
+ 12.85383391328
+ 1.1879032664027
+ 5.6065045108183
+
+
+
+
+ 000002d9
+ 3025
+
+ Fix
+ Normal
+
+
+ 3.9834204403483
+ 1.2132252261094
+ 5.6149430026173
+
+
+
+
+ 000002de
+ 3026
+
+ Fix
+ Normal
+
+
+ 17.400867263385
+ -0.02875174095687
+ 9.3764810734927
+
+
+
+
+ 000002e3
+ 3027
+
+ Fix
+ Normal
+
+
+ 9.4490884907217
+ 0.00164409601749
+ 13.118705496363
+
+
+
+
+ 000002e8
+ 3028
+
+ Fix
+ Normal
+
+
+ 16.758310760205
+ -0.91478461598888
+ 13.727661269529
+
+
+
+
+ 000002ed
+ 3029
+
+ Fix
+ Normal
+
+
+ 3.3743130500475
+ 1.0963002625835
+ 9.9547670634309
+
+
+
+
+ 000003ac
+ 1004
+
+ KeyedIn
+ Normal
+
+
+ 19.765325507995
+ -22.695974411239
+ -1.9656228113547
+
+
+
+
+ 000003b6
+ 6006
+
+ Fix
+ Normal
+
+
+ 24.806039061489
+ -48.152749175759
+ -2.0921906646654
+
+
+
+
+ 000003bb
+ 6007
+
+ Fix
+ Normal
+
+
+ 23.492942987061
+ -48.55055487003
+ -1.9826211955766
+
+
+
+
+ 000003c0
+ 6008
+
+ Fix
+ Normal
+
+
+ 22.585771037031
+ -42.900495759321
+ -2.0955977145299
+
+
+
+
+ 000004a7
+ 1005
+
+ KeyedIn
+ Normal
+
+
+ 23.575239156055
+ -46.031492855337
+ -1.9509489144103
+
+
+
+
+ 000004b2
+ 2010
+
+ Fix
+ Normal
+
+
+ 25.206518436747
+ -40.870720688015
+ -1.8862413852622
+
+
+
+
+ 000004b7
+ 2011
+
+ Fix
+ Normal
+
+
+ 16.007383970361
+ -42.736363611378
+ -1.4383208578166
+
+
+
+
+ 000004c6
+ 2012
+
+ Fix
+ MTA
+
+
+ 10.053737413547
+ -51.007281745349
+ -1.946742287723
+
+
+
+
+ 000004c9
+ 2013
+
+ Fix
+ Normal
+
+
+ 26.450958683429
+ -46.596372546356
+ -1.9270578760413
+
+
+
+
+ 000004cf
+ 3030
+
+ Fix
+ Normal
+
+
+ 20.671232494601
+ -41.62861843492
+ -2.1988124843371
+
+
+
+
+ 000004d4
+ 3031
+
+ Fix
+ Normal
+
+
+ 17.069380932476
+ -42.358276938124
+ -2.2065358808648
+
+
+
+
+ 000004d9
+ 3032
+
+ Fix
+ Normal
+
+
+ 9.5388945163833
+ -43.914644999123
+ -2.2175991488325
+
+
+
+
+ 000004de
+ 3033
+
+ Fix
+ Normal
+
+
+ 22.93203604037
+ -39.002243942933
+ -3.4510472727961
+
+
+
+
+ 00000510
+ 1006
+
+ KeyedIn
+ Normal
+
+
+ 13.878337404905
+ 22.923487154871
+ -1.9035179035898
+
+
+
+
+ 0000051b
+ 3034
+
+ Fix
+ Normal
+
+
+ 19.009925999089
+ -2.2586350170632
+ 16.787529308738
+
+
+
+
+ 00000520
+ 3035
+
+ Fix
+ Normal
+
+
+ 11.679431462851
+ -2.0392398263281
+ 17.155136228059
+
+
+
+
+ 00000525
+ 3036
+
+ Fix
+ Normal
+
+
+ 0.49840873900879
+ -2.4008278824736
+ 16.947295226013
+
+
+
+
+ 00000555
+ 1007
+
+ KeyedIn
+ Normal
+
+
+ 18.968097409704
+ -21.634012659756
+ -1.814920360607
+
+
+
+
+ 00000560
+ 3037
+
+ Fix
+ Normal
+
+
+ 18.141245471115
+ -29.302433587034
+ 1.264642414707
+
+
+
+
+ 00000570
+ 3038
+
+ Fix
+ Normal
+
+
+ 13.473389399443
+ -30.283765514873
+ -0.50151711162876
+
+
+
+
+ 00000575
+ 3039
+
+ Fix
+ Normal
+
+
+ 13.842620254506
+ -30.22313983326
+ 2.9225448797023
+
+
+
+
+ 0000057a
+ 3040
+
+ Fix
+ Normal
+
+
+ 14.113605405631
+ -30.164349829448
+ 6.326259530773
+
+
+
+
+ 0000057f
+ 3041
+
+ Fix
+ Normal
+
+
+ 13.647850929994
+ -30.260881440035
+ 9.536822448919
+
+
+
+
+ 000005af
+ 1008
+
+ KeyedIn
+ Normal
+
+
+ 23.450163260024
+ -46.566866583669
+ -1.9004434389034
+
+
+
+
+ 000005ba
+ 3042
+
+ Fix
+ Normal
+
+
+ 11.396246441837
+ -43.596484024701
+ 4.659160534354
+
+
+
+
+ 000005bf
+ 3043
+
+ Fix
+ Normal
+
+
+ 23.776597635308
+ -41.018910517387
+ 4.6628886413037
+
+
+
+
+ 000005ef
+ 1009
+
+ KeyedIn
+ Normal
+
+
+ 16.548225401963
+ -17.132198309497
+ -1.9001821446618
+
+
+
+
+ 000005fa
+ 3044
+
+ Fix
+ Normal
+
+
+ 22.819825314466
+ -31.755208207535
+ 14.964690894642
+
+
+
+
+ 000005ff
+ 3045
+
+ Fix
+ Normal
+
+
+ 12.83592332051
+ -33.718568442459
+ 14.652697911193
+
+
+
+
+ 00000604
+ 3046
+
+ Fix
+ Normal
+
+
+ 6.875899621791
+ -34.899118309234
+ 14.548737363046
+
+
+
+
+ 00000609
+ 3047
+
+ Fix
+ Normal
+
+
+ 9.3356417163737
+ -31.140381268001
+ 8.0914696173413
+
+
+
+
+ 0000060e
+ 3048
+
+ Fix
+ Normal
+
+
+ 17.086175568129
+ -29.549732816036
+ 8.0716292726975
+
+
+
+
+ 00000613
+ 3049
+
+ Fix
+ Normal
+
+
+ 21.4665039237
+ -28.628668676172
+ 8.0763335012321
+
+
+
+
+ 00000618
+ 3050
+
+ Fix
+ Normal
+
+
+ 11.179735954327
+ -30.749632519485
+ 1.1690640231796
+
+
+
+
+
+
+
+ Metres
+ Metres
+ Gons
+ Azimuth
+ DMSDegrees
+ East-North-Elevation
+ Celsius
+ MilliBar
+ Percentage
+ SquareMetres
+ CubicMetres
+ 1000.0
+
+ DRMS
+ 3
+ 3
+ 3
+ 3
+ 4
+ Inclination
+ Local
+
+
+
+
+
+
+
+
+
+
+
+ ScaleOnly
+ 1
+ false
+ IncreasingNorthEast
+ false
+ 0
+ GroundDistance
+
+
+ Grid
+
+
+
+
+
+ NoDatum
+
+
+ NoAdjustment
+
+
+ NoAdjustment
+
+
+
+
+
+
+
+ 1
+
+
+ Unknown
+
+
+
+
+
+
+
+
+ Unknown
+ false
+
+
+
+
+
+
+ false
+ 0.5
+
+ Weighted
+ false
+
+
+
+ Mitteleuropäische Zeit
+ -1
+
+
+
\ No newline at end of file