Beschriftung | Erläuterung | Datentyp |
Eingabe-Mosaik-Dataset | Der Pfad des Eingabe-Mosaik-Datasets | Mosaic Dataset; Mosaic Layer |
Eingabe-Lösungstabelle | Die zugeordnete Lösungspunktetabelle nach der Blockausgleichung | Table View |
Eingabe-Lösungspunkte | Die Feature-Class für Lösungspunkte | Table View |
Ausgabebericht | Dateipfad und Name des Ortho Mapping-Ausgabeberichts. Das unterstützte Ausgabeformat für eine Website ist HTML. | File |
Eingabe-Passpunkte für Ausgleichung (optional) | Die zugeordnete Passpunkttabelle, die Verknüpfungspunkte und Bodenpasspunkte enthalten kann | Table View |
Berichtsformat (optional) | Gibt das Ausgabeformat des Blockausgleichungsberichts an.
| String |
Zusammenfassung
Erstellt einen Bericht nach der Durchführung einer Ortho-Mapping-Blockausgleichung für ein Mosaik-Dataset. Der Bericht ist nützlich für die Auswertung der Qualität und Genauigkeit der Ortho-Mapping-Produkte.
Verwendung
Bei Einbeziehung der optionalen Passpunkttabelle enthält der Ausgabebericht die Genauigkeitsbewertung der Passpunkte sowie die Genauigkeitsbewertung der Blockausgleichung.
Parameter
arcpy.management.GenerateBlockAdjustmentReport(input_mosaic_dataset, input_solution_table, input_solution_point, output_report, {input_control_point_for_adjustment}, {report_format})
Name | Erläuterung | Datentyp |
input_mosaic_dataset | Der Pfad des Eingabe-Mosaik-Datasets | Mosaic Dataset; Mosaic Layer |
input_solution_table | Die zugeordnete Lösungspunktetabelle nach der Blockausgleichung | Table View |
input_solution_point | Die Feature-Class für Lösungspunkte | Table View |
output_report | Dateipfad und Name des Ortho Mapping-Ausgabeberichts. Das unterstützte Ausgabeformat für eine Website ist HTML. | File |
input_control_point_for_adjustment (optional) | Die zugeordnete Passpunkttabelle, die Verknüpfungspunkte und Bodenpasspunkte enthalten kann | Table View |
report_format (optional) | Gibt das Ausgabeformat des Blockausgleichungsberichts an.
| String |
Codebeispiel
Dies ist ein Python-Beispiel für die Funktion GenerateBlockAdjustmentReport.
import arcpy
arcpy.management.ComputeBlockAdjustment(
"c:/BD/BD.gdb/redQB", "c:/BD/BD.gdb/redQB_tiePoints",
"POLYORDER1", "c:/BD/BD.gdb/redQB_solution")
Dies ist ein Beispiel für ein eigenständiges Skript für die Funktion GenerateBlockAdjustmentReport.
import arcpy
mdname = "c:/omproject/adjustedcollection.gdb/droneimgs"
solutiontbl = "c:/omproject/adjustedcollection.gdb/droneimgs_solutiontbl"
solutionpnt = "c:/omproject/adjustedcollection.gdb/droneimgs_solutionpnt"
controlpnt = "c:/omproject/adjustedcollection.gdb/droneimgs_tiepoints"
arcpy.management.GenerateBlockAdjustmentReport(
mdname, solutiontbl, solutionpnt, "c:/omproject/adjustmentreport.pdf",
controlpnt, report_format="PDF")
Umgebungen
Lizenzinformationen
- Basic: Ja
- Standard: Ja
- Advanced: Ja