diff --git a/main.py b/main.py
index f55bffe..301660b 100644
--- a/main.py
+++ b/main.py
@@ -2,6 +2,7 @@
"""
Trimble Geodesy Tool - Hauptprogramm mit GUI
Geodätische Vermessungsarbeiten mit JXL-Dateien
+Überarbeitet basierend auf Benutzer-Feedback
"""
import sys
@@ -18,10 +19,10 @@ from PyQt5.QtWidgets import (
QSpinBox, QDoubleSpinBox, QCheckBox, QSplitter, QFrame, QScrollArea,
QHeaderView, QListWidget, QListWidgetItem, QDialog, QDialogButtonBox,
QFormLayout, QProgressBar, QStatusBar, QMenuBar, QMenu, QAction,
- QToolBar, QStyle
+ QToolBar, QStyle, QTreeWidget, QTreeWidgetItem, QAbstractItemView
)
from PyQt5.QtCore import Qt, QThread, pyqtSignal
-from PyQt5.QtGui import QFont, QIcon, QPalette, QColor
+from PyQt5.QtGui import QFont, QIcon, QPalette, QColor, QBrush
from modules.jxl_parser import JXLParser
from modules.cor_generator import CORGenerator, CORPoint
@@ -32,11 +33,13 @@ from modules.reference_point_adjuster import ReferencePointAdjuster, Transformat
class JXLAnalysisTab(QWidget):
- """Tab für JXL-Datei Analyse und Bearbeitung"""
+ """Tab für JXL-Datei Analyse und Bearbeitung - Mit TreeView für Stationierungen"""
def __init__(self, parent=None):
super().__init__(parent)
self.main_window = parent
+ self.prism_spin_widgets = {} # {measurement_record_id: QDoubleSpinBox}
+ self.control_point_checkboxes = {} # {(station_id, point_name): QCheckBox}
self.setup_ui()
def setup_ui(self):
@@ -68,18 +71,43 @@ class JXLAnalysisTab(QWidget):
summary_layout = QVBoxLayout(summary_group)
self.summary_text = QTextEdit()
self.summary_text.setReadOnly(True)
- self.summary_text.setMaximumHeight(200)
+ self.summary_text.setMaximumHeight(150)
summary_layout.addWidget(self.summary_text)
splitter.addWidget(summary_group)
- # Punkte-Tabelle
- points_group = QGroupBox("Punkte")
+ # Stationierungen TreeView
+ stations_group = QGroupBox("Stationierungen und Messungen")
+ stations_layout = QVBoxLayout(stations_group)
+
+ self.stations_tree = QTreeWidget()
+ self.stations_tree.setHeaderLabels([
+ "Station/Messung", "Typ", "Prismenkonstante [mm]", "Qualität", "Aktiv"
+ ])
+ self.stations_tree.setColumnCount(5)
+ self.stations_tree.setSelectionMode(QAbstractItemView.SingleSelection)
+ self.stations_tree.header().setSectionResizeMode(0, QHeaderView.Stretch)
+ self.stations_tree.header().setSectionResizeMode(1, QHeaderView.ResizeToContents)
+ self.stations_tree.header().setSectionResizeMode(2, QHeaderView.ResizeToContents)
+ self.stations_tree.header().setSectionResizeMode(3, QHeaderView.ResizeToContents)
+ self.stations_tree.header().setSectionResizeMode(4, QHeaderView.ResizeToContents)
+ stations_layout.addWidget(self.stations_tree)
+
+ # Info-Label
+ info_label = QLabel("💡 Tipp: Prismenkonstanten können direkt in der Spalte 'Prismenkonstante' geändert werden.\n"
+ "Bei freien Stationierungen: Passpunkte mit Checkbox aktivieren/deaktivieren.")
+ info_label.setStyleSheet("color: #666; font-style: italic;")
+ stations_layout.addWidget(info_label)
+
+ splitter.addWidget(stations_group)
+
+ # Punkte-Tabelle (kompaktere Ansicht)
+ points_group = QGroupBox("Alle Punkte")
points_layout = QVBoxLayout(points_group)
self.points_table = QTableWidget()
- self.points_table.setColumnCount(7)
+ self.points_table.setColumnCount(6)
self.points_table.setHorizontalHeaderLabels(
- ["Name", "Code", "East (X)", "North (Y)", "Elevation (Z)", "Methode", "Aktiv"])
+ ["Name", "Code", "East (X)", "North (Y)", "Elevation (Z)", "Methode"])
self.points_table.horizontalHeader().setSectionResizeMode(QHeaderView.Stretch)
points_layout.addWidget(self.points_table)
@@ -95,26 +123,6 @@ class JXLAnalysisTab(QWidget):
splitter.addWidget(points_group)
- # Prismenkonstanten
- prism_group = QGroupBox("Prismenkonstanten")
- prism_layout = QVBoxLayout(prism_group)
-
- self.prism_table = QTableWidget()
- self.prism_table.setColumnCount(4)
- self.prism_table.setHorizontalHeaderLabels(
- ["Target ID", "Prismentyp", "Konstante [mm]", "Neue Konstante [mm]"])
- self.prism_table.horizontalHeader().setSectionResizeMode(QHeaderView.Stretch)
- prism_layout.addWidget(self.prism_table)
-
- prism_actions = QHBoxLayout()
- apply_prism_btn = QPushButton("Prismenkonstanten übernehmen")
- apply_prism_btn.clicked.connect(self.apply_prism_changes)
- prism_actions.addWidget(apply_prism_btn)
- prism_actions.addStretch()
- prism_layout.addLayout(prism_actions)
-
- splitter.addWidget(prism_group)
-
layout.addWidget(splitter)
def browse_file(self):
@@ -146,8 +154,171 @@ class JXLAnalysisTab(QWidget):
# Zusammenfassung
self.summary_text.setText(parser.get_summary())
- # Punkte-Tabelle
- points = parser.get_active_points()
+ # Stationierungen TreeView
+ self.update_stations_tree()
+
+ # Punkte-Tabelle aktualisieren
+ self.update_points_table()
+
+ def update_stations_tree(self):
+ """Aktualisiert den TreeView mit Stationierungen und Messungen"""
+ self.stations_tree.clear()
+ self.prism_spin_widgets.clear()
+ self.control_point_checkboxes.clear()
+
+ if not self.main_window.parser:
+ return
+
+ parser = self.main_window.parser
+
+ # Stationen durchgehen
+ for station_id, station in parser.stations.items():
+ # Station als Hauptknoten
+ station_item = QTreeWidgetItem()
+ station_item.setText(0, f"📍 {station.name}")
+ station_item.setText(1, station.station_type)
+ station_item.setData(0, Qt.UserRole, station_id)
+
+ # Hintergrundfarbe für verschiedene Stationstypen
+ if station.station_type == "ReflineStationSetup":
+ station_item.setBackground(0, QBrush(QColor(200, 230, 200))) # Hellgrün
+ elif station.station_type == "StandardResection":
+ station_item.setBackground(0, QBrush(QColor(200, 200, 230))) # Hellblau
+
+ self.stations_tree.addTopLevelItem(station_item)
+
+ # Messungen von dieser Station
+ measurements = parser.get_measurements_from_station(station_id)
+
+ # Bei freier Stationierung: Qualität der Passpunkte berechnen
+ control_point_residuals = {}
+ if station.station_type == "StandardResection":
+ control_point_residuals = self.calculate_control_point_quality(
+ station_id, station, measurements)
+
+ for meas in measurements:
+ meas_item = QTreeWidgetItem()
+ meas_item.setText(0, f" ↳ {meas.name}")
+
+ # Typ ermitteln
+ if meas.classification == "BackSight":
+ meas_type = "Passpunkt"
+ else:
+ meas_type = "Messung"
+ meas_item.setText(1, meas_type)
+
+ # Prismenkonstante als editierbares SpinBox
+ if meas.target_id and meas.target_id in parser.targets:
+ target = parser.targets[meas.target_id]
+ prism_spin = QDoubleSpinBox()
+ prism_spin.setRange(-100, 100)
+ prism_spin.setDecimals(1)
+ prism_spin.setValue(target.prism_constant * 1000) # m -> mm
+ prism_spin.setSuffix(" mm")
+ prism_spin.setProperty("target_id", meas.target_id)
+ prism_spin.valueChanged.connect(
+ lambda val, tid=meas.target_id: self.on_prism_changed(tid, val))
+
+ self.prism_spin_widgets[meas.record_id] = prism_spin
+ self.stations_tree.setItemWidget(meas_item, 2, prism_spin)
+
+ # Bei freier Stationierung: Passpunkt-Qualität und Checkbox
+ if station.station_type == "StandardResection" and meas.classification == "BackSight":
+ # Qualitätswert anzeigen
+ if meas.name in control_point_residuals:
+ quality_info = control_point_residuals[meas.name]
+ quality_value = quality_info['residual']
+ rank = quality_info['rank']
+ total = quality_info['total']
+
+ # Farbcodierung basierend auf Rang
+ quality_label = QLabel(f"{quality_value:.1f} mm")
+ if rank == 1: # Bester
+ quality_label.setStyleSheet("background-color: #90EE90; padding: 2px;") # Grün
+ elif rank == total: # Schlechtester
+ quality_label.setStyleSheet("background-color: #FFB6C1; padding: 2px;") # Rot
+ else: # Mittlere
+ quality_label.setStyleSheet("background-color: #FFFF99; padding: 2px;") # Gelb
+
+ self.stations_tree.setItemWidget(meas_item, 3, quality_label)
+
+ # Checkbox für Aktivierung/Deaktivierung
+ checkbox = QCheckBox()
+ checkbox.setChecked(not meas.deleted)
+ checkbox.setProperty("station_id", station_id)
+ checkbox.setProperty("point_name", meas.name)
+ checkbox.stateChanged.connect(
+ lambda state, sid=station_id, pn=meas.name:
+ self.on_control_point_toggled(sid, pn, state))
+
+ self.control_point_checkboxes[(station_id, meas.name)] = checkbox
+ self.stations_tree.setItemWidget(meas_item, 4, checkbox)
+
+ station_item.addChild(meas_item)
+
+ station_item.setExpanded(True)
+
+ def calculate_control_point_quality(self, station_id, station, measurements):
+ """
+ Berechnet die Qualität der Passpunkte einer freien Stationierung.
+ Nutzt die Residuen aus der Stationierungsberechnung.
+ """
+ parser = self.main_window.parser
+ control_points = []
+
+ for meas in measurements:
+ if meas.classification == "BackSight" and not meas.deleted:
+ # Residuum berechnen: Differenz zwischen gemessenen und berechneten Koordinaten
+ # Vereinfachte Berechnung basierend auf Streckendifferenz
+ if meas.edm_distance is not None and meas.name in parser.points:
+ target_point = parser.points[meas.name]
+ if target_point.east is not None and target_point.north is not None:
+ if station.east is not None and station.north is not None:
+ # Berechnete Strecke
+ dx = target_point.east - station.east
+ dy = target_point.north - station.north
+ calc_dist = (dx**2 + dy**2)**0.5
+
+ # Residuum (Differenz zur gemessenen Strecke)
+ residual = abs(meas.edm_distance - calc_dist) * 1000 # in mm
+ control_points.append((meas.name, residual))
+
+ # Sortieren und Ränge vergeben
+ if not control_points:
+ return {}
+
+ control_points.sort(key=lambda x: x[1])
+ result = {}
+ for rank, (name, residual) in enumerate(control_points, 1):
+ result[name] = {
+ 'residual': residual,
+ 'rank': rank,
+ 'total': len(control_points)
+ }
+
+ return result
+
+ def on_prism_changed(self, target_id, new_value_mm):
+ """Wird aufgerufen, wenn eine Prismenkonstante geändert wird"""
+ if self.main_window.parser and target_id in self.main_window.parser.targets:
+ new_value_m = new_value_mm / 1000.0
+ self.main_window.parser.modify_prism_constant(target_id, new_value_m)
+ self.main_window.statusBar().showMessage(
+ f"Prismenkonstante für {target_id} auf {new_value_mm:.1f} mm gesetzt")
+
+ def on_control_point_toggled(self, station_id, point_name, state):
+ """Wird aufgerufen, wenn ein Passpunkt aktiviert/deaktiviert wird"""
+ is_active = state == Qt.Checked
+ # Hier könnte man die Stationierung neu berechnen
+ self.main_window.statusBar().showMessage(
+ f"Passpunkt {point_name} {'aktiviert' if is_active else 'deaktiviert'}")
+
+ def update_points_table(self):
+ """Aktualisiert die Punkte-Tabelle"""
+ if not self.main_window.parser:
+ return
+
+ points = self.main_window.parser.get_active_points()
self.points_table.setRowCount(len(points))
for row, (name, point) in enumerate(sorted(points.items())):
@@ -157,22 +328,6 @@ class JXLAnalysisTab(QWidget):
self.points_table.setItem(row, 3, QTableWidgetItem(f"{point.north:.4f}" if point.north else ""))
self.points_table.setItem(row, 4, QTableWidgetItem(f"{point.elevation:.4f}" if point.elevation else ""))
self.points_table.setItem(row, 5, QTableWidgetItem(point.method))
- self.points_table.setItem(row, 6, QTableWidgetItem("Ja" if not point.deleted else "Nein"))
-
- # Prismen-Tabelle
- targets = parser.targets
- self.prism_table.setRowCount(len(targets))
-
- for row, (tid, target) in enumerate(targets.items()):
- self.prism_table.setItem(row, 0, QTableWidgetItem(tid))
- self.prism_table.setItem(row, 1, QTableWidgetItem(target.prism_type))
- self.prism_table.setItem(row, 2, QTableWidgetItem(f"{target.prism_constant * 1000:.1f}"))
-
- spin = QDoubleSpinBox()
- spin.setRange(-100, 100)
- spin.setDecimals(1)
- spin.setValue(target.prism_constant * 1000)
- self.prism_table.setCellWidget(row, 3, spin)
def remove_selected_point(self):
row = self.points_table.currentRow()
@@ -186,19 +341,6 @@ class JXLAnalysisTab(QWidget):
if reply == QMessageBox.Yes:
self.main_window.parser.remove_point(name)
self.update_display()
-
- def apply_prism_changes(self):
- parser = self.main_window.parser
- if not parser:
- return
-
- for row in range(self.prism_table.rowCount()):
- tid = self.prism_table.item(row, 0).text()
- spin = self.prism_table.cellWidget(row, 3)
- new_const = spin.value() / 1000.0 # mm to m
- parser.modify_prism_constant(tid, new_const)
-
- QMessageBox.information(self, "Info", "Prismenkonstanten wurden aktualisiert!")
class CORGeneratorTab(QWidget):
@@ -330,7 +472,7 @@ class CORGeneratorTab(QWidget):
class TransformationTab(QWidget):
- """Tab für Koordinatentransformation"""
+ """Tab für Koordinatentransformation - Überarbeitet"""
def __init__(self, parent=None):
super().__init__(parent)
@@ -402,21 +544,21 @@ class TransformationTab(QWidget):
layout.addWidget(self.manual_group)
- # 2-Punkte-Definition
+ # 2-Punkte-Definition (überarbeitet)
self.twopoint_group = QGroupBox("2-Punkte-Definition")
twopoint_layout = QGridLayout(self.twopoint_group)
- twopoint_layout.addWidget(QLabel("Ursprung (0,0):"), 0, 0)
- self.origin_combo = QComboBox()
- twopoint_layout.addWidget(self.origin_combo, 0, 1)
+ twopoint_layout.addWidget(QLabel("XY-Nullpunkt (0,0):"), 0, 0)
+ self.xy_origin_combo = QComboBox()
+ twopoint_layout.addWidget(self.xy_origin_combo, 0, 1)
twopoint_layout.addWidget(QLabel("Y-Richtung:"), 1, 0)
self.direction_combo = QComboBox()
twopoint_layout.addWidget(self.direction_combo, 1, 1)
- twopoint_layout.addWidget(QLabel("Z-Referenz (0):"), 2, 0)
- self.zref_combo = QComboBox()
- twopoint_layout.addWidget(self.zref_combo, 2, 1)
+ twopoint_layout.addWidget(QLabel("Z-Nullpunkt (0):"), 2, 0)
+ self.z_origin_combo = QComboBox()
+ twopoint_layout.addWidget(self.z_origin_combo, 2, 1)
refresh_btn = QPushButton("Punktliste aktualisieren")
refresh_btn.clicked.connect(self.refresh_point_lists)
@@ -426,10 +568,17 @@ class TransformationTab(QWidget):
layout.addWidget(self.twopoint_group)
# Transformation durchführen
- transform_btn = QPushButton("Transformation durchführen")
+ transform_btn = QPushButton("Transformation berechnen")
transform_btn.clicked.connect(self.execute_transformation)
+ transform_btn.setStyleSheet("background-color: #4CAF50; color: white; font-weight: bold;")
layout.addWidget(transform_btn)
+ # Anwenden Button (NEU - Bug Fix)
+ apply_btn = QPushButton("Transformation anwenden (Punktliste aktualisieren)")
+ apply_btn.clicked.connect(self.apply_transformation)
+ apply_btn.setStyleSheet("background-color: #2196F3; color: white; font-weight: bold;")
+ layout.addWidget(apply_btn)
+
# Ergebnisse
results_group = QGroupBox("Ergebnisse")
results_layout = QVBoxLayout(results_group)
@@ -465,16 +614,40 @@ class TransformationTab(QWidget):
points = list(self.main_window.parser.get_active_points().keys())
- self.origin_combo.clear()
+ self.xy_origin_combo.clear()
self.direction_combo.clear()
- self.zref_combo.clear()
+ self.z_origin_combo.clear()
- self.zref_combo.addItem("(wie Ursprung)")
+ # Standard-Vorschläge: 7001 für XY, 7002 für Z
+ default_xy = None
+ default_direction = None
+ default_z = None
for name in sorted(points):
- self.origin_combo.addItem(name)
+ self.xy_origin_combo.addItem(name)
self.direction_combo.addItem(name)
- self.zref_combo.addItem(name)
+ self.z_origin_combo.addItem(name)
+
+ if name == "7001":
+ default_xy = name
+ if name == "7002":
+ default_z = name
+
+ # Standard-Werte setzen falls vorhanden
+ if default_xy:
+ idx = self.xy_origin_combo.findText(default_xy)
+ if idx >= 0:
+ self.xy_origin_combo.setCurrentIndex(idx)
+
+ if default_z:
+ idx = self.z_origin_combo.findText(default_z)
+ if idx >= 0:
+ self.z_origin_combo.setCurrentIndex(idx)
+
+ # Info anzeigen
+ if default_xy or default_z:
+ self.main_window.statusBar().showMessage(
+ f"Standard-Vorschlag: XY={default_xy or 'nicht gefunden'}, Z={default_z or 'nicht gefunden'}")
def execute_transformation(self):
if not self.main_window.parser:
@@ -504,12 +677,9 @@ class TransformationTab(QWidget):
pivot_y=self.pivot_y_spin.value()
)
elif self.twopoint_radio.isChecked():
- origin = self.origin_combo.currentText()
+ origin = self.xy_origin_combo.currentText()
direction = self.direction_combo.currentText()
- zref = self.zref_combo.currentText()
-
- if zref == "(wie Ursprung)":
- zref = None
+ zref = self.z_origin_combo.currentText()
if not self.transformer.compute_from_two_points(origin, direction, zref):
QMessageBox.warning(self, "Fehler", "Punkte nicht gefunden!")
@@ -523,7 +693,47 @@ class TransformationTab(QWidget):
report += self.transformer.get_comparison_table()
self.results_text.setText(report)
- self.main_window.statusBar().showMessage("Transformation durchgeführt")
+ self.main_window.statusBar().showMessage("Transformation berechnet (noch nicht angewendet)")
+
+ def apply_transformation(self):
+ """Wendet die Transformation auf die Punktliste an (Bug Fix)"""
+ if not self.transformer.transformed_points:
+ QMessageBox.warning(self, "Fehler",
+ "Bitte zuerst 'Transformation berechnen' ausführen!")
+ return
+
+ if not self.main_window.parser:
+ return
+
+ reply = QMessageBox.question(
+ self, "Bestätigung",
+ "Sollen die transformierten Koordinaten auf alle Punkte angewendet werden?\n\n"
+ "Dies ändert die Koordinaten im Speicher.",
+ QMessageBox.Yes | QMessageBox.No)
+
+ if reply == QMessageBox.No:
+ return
+
+ # Transformierte Koordinaten in Parser übernehmen
+ for trans_point in self.transformer.transformed_points:
+ if trans_point.name in self.main_window.parser.points:
+ p = self.main_window.parser.points[trans_point.name]
+ p.east = trans_point.x
+ p.north = trans_point.y
+ p.elevation = trans_point.z
+
+ # GUI aktualisieren
+ # JXL-Tab aktualisieren
+ jxl_tab = self.main_window.tabs.widget(0)
+ if hasattr(jxl_tab, 'update_display'):
+ jxl_tab.update_display()
+
+ # Erfolgsmeldung
+ QMessageBox.information(self, "Erfolg",
+ f"{len(self.transformer.transformed_points)} Punkte wurden transformiert!\n\n"
+ "Die Punktliste wurde aktualisiert.")
+
+ self.main_window.statusBar().showMessage("Transformation angewendet - Punktliste aktualisiert")
def export_report(self):
file_path, _ = QFileDialog.getSaveFileName(
@@ -600,6 +810,7 @@ class GeoreferencingTab(QWidget):
# Transformation berechnen
calc_btn = QPushButton("Transformation berechnen")
calc_btn.clicked.connect(self.calculate_transformation)
+ calc_btn.setStyleSheet("background-color: #4CAF50; color: white; font-weight: bold;")
layout.addWidget(calc_btn)
# Ergebnisse
@@ -782,12 +993,14 @@ class GeoreferencingTab(QWidget):
class NetworkAdjustmentTab(QWidget):
- """Tab für Netzausgleichung"""
+ """Tab für Netzausgleichung - Überarbeitet mit automatischer Punkterkennung"""
def __init__(self, parent=None):
super().__init__(parent)
self.main_window = parent
self.adjustment = None
+ self.fixed_points = set()
+ self.measurement_points = set()
self.setup_ui()
def setup_ui(self):
@@ -819,29 +1032,38 @@ class NetworkAdjustmentTab(QWidget):
layout.addWidget(config_group)
- # Festpunkte
- fixed_group = QGroupBox("Festpunkte")
- fixed_layout = QVBoxLayout(fixed_group)
+ # Automatisch erkannte Punkte
+ points_group = QGroupBox("Automatisch erkannte Punkttypen")
+ points_layout = QVBoxLayout(points_group)
- self.fixed_list = QListWidget()
- self.fixed_list.setSelectionMode(QListWidget.MultiSelection)
- fixed_layout.addWidget(self.fixed_list)
+ # Info-Label
+ info_label = QLabel(
+ "💡 Das Programm erkennt automatisch:\n"
+ " • Festpunkte: Alle Punkte, die in Stationierungen verwendet werden (1000er, 2000er Serie)\n"
+ " • Messpunkte: 3000er Punkte (Detailmessungen)")
+ info_label.setStyleSheet("color: #666; background-color: #f0f0f0; padding: 10px;")
+ points_layout.addWidget(info_label)
- fixed_buttons = QHBoxLayout()
- refresh_btn = QPushButton("Liste aktualisieren")
- refresh_btn.clicked.connect(self.refresh_point_list)
- fixed_buttons.addWidget(refresh_btn)
+ # Tabelle für erkannte Punkte
+ self.points_table = QTableWidget()
+ self.points_table.setColumnCount(4)
+ self.points_table.setHorizontalHeaderLabels(["Punkt", "Typ", "X", "Y"])
+ self.points_table.horizontalHeader().setSectionResizeMode(QHeaderView.Stretch)
+ self.points_table.setMaximumHeight(200)
+ points_layout.addWidget(self.points_table)
- auto_btn = QPushButton("Auto (Referenzpunkte)")
- auto_btn.clicked.connect(self.auto_select_fixed)
- fixed_buttons.addWidget(auto_btn)
+ # Button zum Aktualisieren
+ refresh_btn = QPushButton("Punkte automatisch erkennen")
+ refresh_btn.clicked.connect(self.auto_detect_points)
+ refresh_btn.setStyleSheet("background-color: #FF9800; color: white;")
+ points_layout.addWidget(refresh_btn)
- fixed_layout.addLayout(fixed_buttons)
- layout.addWidget(fixed_group)
+ layout.addWidget(points_group)
# Ausgleichung durchführen
adjust_btn = QPushButton("Netzausgleichung durchführen")
adjust_btn.clicked.connect(self.run_adjustment)
+ adjust_btn.setStyleSheet("background-color: #4CAF50; color: white; font-weight: bold;")
layout.addWidget(adjust_btn)
# Ergebnisse
@@ -867,34 +1089,86 @@ class NetworkAdjustmentTab(QWidget):
results_layout.addLayout(export_layout)
layout.addWidget(results_group)
- def refresh_point_list(self):
- self.fixed_list.clear()
-
+ def auto_detect_points(self):
+ """Erkennt automatisch Festpunkte und Messpunkte"""
if not self.main_window.parser:
+ QMessageBox.warning(self, "Fehler", "Bitte zuerst eine JXL-Datei laden!")
return
- for name in sorted(self.main_window.parser.get_active_points().keys()):
- item = QListWidgetItem(name)
- self.fixed_list.addItem(item)
+ parser = self.main_window.parser
+ self.fixed_points.clear()
+ self.measurement_points.clear()
+
+ # Festpunkte: Punkte die in Stationierungen verwendet werden
+ # Das sind typischerweise 1000er (Stationen) und 2000er (Anschlusspunkte)
+ for station_id, station in parser.stations.items():
+ # Station selbst ist Festpunkt
+ if station.name:
+ self.fixed_points.add(station.name)
+
+ # Anschlusspunkte aus Backbearings
+ for bb_id, bb in parser.backbearings.items():
+ if bb.station_record_id == station_id and bb.backsight:
+ self.fixed_points.add(bb.backsight)
+
+ # Anschlusspunkte aus Messungen (BackSight Classification)
+ measurements = parser.get_measurements_from_station(station_id)
+ for meas in measurements:
+ if meas.classification == "BackSight" and meas.name:
+ self.fixed_points.add(meas.name)
+
+ # Messpunkte: 3000er Serie
+ for name in parser.get_active_points().keys():
+ if name.startswith("3"):
+ self.measurement_points.add(name)
+
+ # Tabelle aktualisieren
+ self.update_points_table()
+
+ self.main_window.statusBar().showMessage(
+ f"Erkannt: {len(self.fixed_points)} Festpunkte, {len(self.measurement_points)} Messpunkte")
- def auto_select_fixed(self):
- if not self.main_window.parser:
+ def update_points_table(self):
+ """Aktualisiert die Tabelle mit erkannten Punkten"""
+ parser = self.main_window.parser
+ if not parser:
return
- self.fixed_list.clearSelection()
+ all_points = list(self.fixed_points) + list(self.measurement_points)
+ self.points_table.setRowCount(len(all_points))
- ref_line = self.main_window.parser.get_reference_line()
- if ref_line:
- for i in range(self.fixed_list.count()):
- item = self.fixed_list.item(i)
- if item.text() in [ref_line.start_point, ref_line.end_point]:
- item.setSelected(True)
+ for row, name in enumerate(sorted(all_points)):
+ # Punkt-Name
+ self.points_table.setItem(row, 0, QTableWidgetItem(name))
+
+ # Typ
+ if name in self.fixed_points:
+ type_item = QTableWidgetItem("Festpunkt")
+ type_item.setBackground(QBrush(QColor(200, 230, 200))) # Hellgrün
+ else:
+ type_item = QTableWidgetItem("Messpunkt")
+ type_item.setBackground(QBrush(QColor(200, 200, 230))) # Hellblau
+ self.points_table.setItem(row, 1, type_item)
+
+ # Koordinaten
+ if name in parser.points:
+ p = parser.points[name]
+ self.points_table.setItem(row, 2, QTableWidgetItem(f"{p.east:.4f}" if p.east else ""))
+ self.points_table.setItem(row, 3, QTableWidgetItem(f"{p.north:.4f}" if p.north else ""))
def run_adjustment(self):
if not self.main_window.parser:
QMessageBox.warning(self, "Fehler", "Bitte zuerst eine JXL-Datei laden!")
return
+ # Automatische Erkennung falls noch nicht geschehen
+ if not self.fixed_points and not self.measurement_points:
+ self.auto_detect_points()
+
+ if not self.fixed_points:
+ QMessageBox.warning(self, "Fehler", "Keine Festpunkte erkannt!")
+ return
+
# Adjustment erstellen
self.adjustment = NetworkAdjustment(self.main_window.parser)
self.adjustment.max_iterations = self.max_iter_spin.value()
@@ -905,16 +1179,15 @@ class NetworkAdjustmentTab(QWidget):
self.adjustment.extract_observations()
self.adjustment.initialize_points()
- # Festpunkte setzen
- for item in self.fixed_list.selectedItems():
- self.adjustment.set_fixed_point(item.text())
-
- if not self.adjustment.fixed_points:
- self.adjustment.set_fixed_points_auto()
+ # Festpunkte setzen (automatisch erkannte)
+ for point_name in self.fixed_points:
+ self.adjustment.set_fixed_point(point_name)
try:
result = self.adjustment.adjust()
- report = self.adjustment.get_adjustment_report()
+
+ # Bericht erstellen mit Festpunkt/Messpunkt-Unterscheidung
+ report = self.create_detailed_report()
self.results_text.setText(report)
status = "konvergiert" if result.converged else "nicht konvergiert"
@@ -926,6 +1199,68 @@ class NetworkAdjustmentTab(QWidget):
import traceback
traceback.print_exc()
+ def create_detailed_report(self):
+ """Erstellt einen detaillierten Bericht mit Festpunkt/Messpunkt-Unterscheidung"""
+ if not self.adjustment or not self.adjustment.result:
+ return "Keine Ergebnisse vorhanden."
+
+ lines = []
+ lines.append("=" * 80)
+ lines.append("NETZAUSGLEICHUNG - ERGEBNISBERICHT")
+ lines.append("=" * 80)
+ lines.append("")
+
+ # Allgemeine Informationen
+ lines.append("ALLGEMEINE INFORMATIONEN")
+ lines.append("-" * 80)
+ lines.append(f"Job: {self.main_window.parser.job_name}")
+ lines.append(f"Anzahl Festpunkte: {len(self.fixed_points)}")
+ lines.append(f"Anzahl Messpunkte: {len(self.measurement_points)}")
+ lines.append(f"Anzahl Beobachtungen: {self.adjustment.result.num_observations}")
+ lines.append(f"Iterationen: {self.adjustment.result.iterations}")
+ lines.append(f"Konvergiert: {'Ja' if self.adjustment.result.converged else 'Nein'}")
+ lines.append("")
+
+ # Qualitätsparameter
+ lines.append("GLOBALE QUALITÄTSPARAMETER")
+ lines.append("-" * 80)
+ lines.append(f"Sigma-0 a-posteriori: {self.adjustment.result.sigma_0_posteriori:.4f}")
+ lines.append(f"RMSE Richtungen: {self.adjustment.result.rmse_directions:.2f} mgon")
+ lines.append(f"RMSE Strecken: {self.adjustment.result.rmse_distances:.2f} mm")
+ lines.append("")
+
+ # Festpunkte
+ lines.append("FESTPUNKTE (Stationspunkte und Anschlusspunkte)")
+ lines.append("-" * 80)
+ lines.append(f"{'Punkt':<12} {'X [m]':>14} {'Y [m]':>14} {'Z [m]':>12} {'σX [mm]':>10} {'σY [mm]':>10}")
+ lines.append("-" * 80)
+
+ for name in sorted(self.fixed_points):
+ if name in self.adjustment.points:
+ p = self.adjustment.points[name]
+ std_x = p.std_x * 1000 if p.std_x else 0
+ std_y = p.std_y * 1000 if p.std_y else 0
+ lines.append(f"{name:<12} {p.x:>14.4f} {p.y:>14.4f} {p.z:>12.4f} {std_x:>10.2f} {std_y:>10.2f}")
+ lines.append("")
+
+ # Messpunkte
+ lines.append("MESSPUNKTE (3000er Serie)")
+ lines.append("-" * 80)
+ lines.append(f"{'Punkt':<12} {'X [m]':>14} {'Y [m]':>14} {'Z [m]':>12} {'σX [mm]':>10} {'σY [mm]':>10}")
+ lines.append("-" * 80)
+
+ for name in sorted(self.measurement_points):
+ if name in self.adjustment.points:
+ p = self.adjustment.points[name]
+ std_x = p.std_x * 1000 if p.std_x else 0
+ std_y = p.std_y * 1000 if p.std_y else 0
+ lines.append(f"{name:<12} {p.x:>14.4f} {p.y:>14.4f} {p.z:>12.4f} {std_x:>10.2f} {std_y:>10.2f}")
+
+ lines.append("")
+ lines.append("=" * 80)
+
+ return "\n".join(lines)
+
def export_report(self):
if not self.adjustment or not self.adjustment.result:
QMessageBox.warning(self, "Fehler", "Keine Ergebnisse vorhanden!")
@@ -934,7 +1269,8 @@ class NetworkAdjustmentTab(QWidget):
file_path, _ = QFileDialog.getSaveFileName(
self, "Bericht speichern", "", "Text Files (*.txt)")
if file_path:
- self.adjustment.export_report(file_path)
+ with open(file_path, 'w', encoding='utf-8') as f:
+ f.write(self.create_detailed_report())
QMessageBox.information(self, "Erfolg", f"Bericht gespeichert: {file_path}")
def export_points(self):
@@ -945,7 +1281,22 @@ class NetworkAdjustmentTab(QWidget):
file_path, _ = QFileDialog.getSaveFileName(
self, "Koordinaten speichern", "", "CSV Files (*.csv)")
if file_path:
- self.adjustment.export_adjusted_points(file_path, 'csv')
+ lines = ["Punkt;Typ;X;Y;Z;Sigma_X;Sigma_Y"]
+
+ for name, p in sorted(self.adjustment.points.items()):
+ if name in self.fixed_points:
+ typ = "Festpunkt"
+ elif name in self.measurement_points:
+ typ = "Messpunkt"
+ else:
+ typ = "Sonstig"
+
+ std_x = p.std_x * 1000 if p.std_x else 0
+ std_y = p.std_y * 1000 if p.std_y else 0
+ lines.append(f"{name};{typ};{p.x:.4f};{p.y:.4f};{p.z:.4f};{std_x:.2f};{std_y:.2f}")
+
+ with open(file_path, 'w', encoding='utf-8') as f:
+ f.write("\n".join(lines))
QMessageBox.information(self, "Erfolg", f"Koordinaten gespeichert: {file_path}")
@@ -1176,6 +1527,11 @@ class ReferencePointAdjusterTab(QWidget):
# Bericht aktualisieren
self.report_text.setText(self.adjuster.get_summary_report())
+ # JXL-Tab aktualisieren
+ jxl_tab = self.main_window.tabs.widget(0)
+ if hasattr(jxl_tab, 'update_display'):
+ jxl_tab.update_display()
+
QMessageBox.information(self, "Erfolg",
"Transformation erfolgreich angewendet!\n\n"
"Die Koordinaten wurden aktualisiert.\n"
@@ -1228,47 +1584,32 @@ class MainWindow(QMainWindow):
def __init__(self):
super().__init__()
- self.parser: JXLParser = None
+ self.parser = None
+ self.setWindowTitle("Trimble Geodesy Tool v2.0")
+ self.setMinimumSize(1000, 700)
self.setup_ui()
+ self.setup_menu()
def setup_ui(self):
- self.setWindowTitle("Trimble Geodesy Tool - Geodätische Vermessungsarbeiten")
- self.setMinimumSize(1200, 800)
-
- # Menüleiste
- self.setup_menu()
-
- # Statusleiste
- self.statusBar().showMessage("Bereit")
-
- # Zentrale Widget mit Tabs
+ # Zentrales Widget
central_widget = QWidget()
self.setCentralWidget(central_widget)
-
- layout = QVBoxLayout(central_widget)
+ main_layout = QVBoxLayout(central_widget)
# Tab-Widget
self.tabs = QTabWidget()
- self.jxl_tab = JXLAnalysisTab(self)
- self.tabs.addTab(self.jxl_tab, "📁 JXL-Analyse")
+ self.tabs.addTab(JXLAnalysisTab(self), "📁 JXL-Analyse")
+ self.tabs.addTab(CORGeneratorTab(self), "📄 COR-Generator")
+ self.tabs.addTab(TransformationTab(self), "🔄 Transformation")
+ self.tabs.addTab(GeoreferencingTab(self), "🌍 Georeferenzierung")
+ self.tabs.addTab(NetworkAdjustmentTab(self), "📐 Netzausgleichung")
+ self.tabs.addTab(ReferencePointAdjusterTab(self), "📍 Referenzpunkt-Anpassung")
- self.cor_tab = CORGeneratorTab(self)
- self.tabs.addTab(self.cor_tab, "📄 COR-Generator")
+ main_layout.addWidget(self.tabs)
- self.transform_tab = TransformationTab(self)
- self.tabs.addTab(self.transform_tab, "🔄 Transformation")
-
- self.georef_tab = GeoreferencingTab(self)
- self.tabs.addTab(self.georef_tab, "🌍 Georeferenzierung")
-
- 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)
+ # Statusleiste
+ self.statusBar().showMessage("Bereit - Bitte JXL-Datei laden")
def setup_menu(self):
menubar = self.menuBar()
@@ -1291,7 +1632,7 @@ class MainWindow(QMainWindow):
# Hilfe-Menü
help_menu = menubar.addMenu("&Hilfe")
- about_action = QAction("&Über", self)
+ about_action = QAction("&Über...", self)
about_action.triggered.connect(self.show_about)
help_menu.addAction(about_action)
@@ -1299,31 +1640,34 @@ class MainWindow(QMainWindow):
file_path, _ = QFileDialog.getOpenFileName(
self, "JXL-Datei öffnen", "", "JXL Files (*.jxl);;All Files (*)")
if file_path:
- self.jxl_tab.file_path_edit.setText(file_path)
- self.jxl_tab.load_file()
+ jxl_tab = self.tabs.widget(0)
+ jxl_tab.file_path_edit.setText(file_path)
+ jxl_tab.load_file()
def show_about(self):
QMessageBox.about(self, "Über Trimble Geodesy Tool",
- "
Trimble Geodesy Tool
"
+ "Trimble Geodesy Tool v2.0
"
"Geodätische Vermessungsarbeiten mit JXL-Dateien
"
"Funktionen:
"
""
- "- JXL-Datei Analyse und Bearbeitung
"
- "- COR-Datei Generierung
"
- "- Koordinatentransformation (Rotation/Translation)
"
+ "- JXL-Datei Analyse mit TreeView für Stationierungen
"
+ "- Prismenkonstanten-Verwaltung bei einzelnen Messungen
"
+ "- Passpunkt-Qualitätsbewertung bei freien Stationierungen
"
+ "- COR-Datei Generierung und Export
"
+ "- Koordinatentransformation mit 2-Punkte-Definition
"
"- Georeferenzierung mit Passpunkten
"
- "- Netzausgleichung nach kleinsten Quadraten
"
+ "- Netzausgleichung mit automatischer Punkterkennung
"
+ "- Referenzpunkt-Anpassung
"
"
"
- "Version 1.0
")
+ "Version 2.0 - Überarbeitet Januar 2026
")
def main():
app = QApplication(sys.argv)
- # Stil setzen
+ # Modernes Styling
app.setStyle('Fusion')
- # Fenster erstellen und anzeigen
window = MainWindow()
window.show()
diff --git a/test_data/Baumschulenstr_93.cor b/test_data/Baumschulenstr_93.cor
new file mode 100644
index 0000000..77361cc
--- /dev/null
+++ b/test_data/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/test_data/Baumschulenstr_93.jxl b/test_data/Baumschulenstr_93.jxl
new file mode 100644
index 0000000..f78e3f3
--- /dev/null
+++ b/test_data/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
+
+
+