| 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) | Das Ausgabeformat des Blockausgleichungsberichts. 
 | String | 
Zusammenfassung
Erstellt nach der Ortho Mapping-Blockausgleichung für ein Mosaik-Dataset einen Bericht. Der Bericht ist wichtig 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) | Das Ausgabeformat des Blockausgleichungsberichts. 
 | String | 
Codebeispiel
Dies ist ein Python-Beispiel für das Werkzeug GenerateBlockAdjustmentReport.
import arcpy
mdname = "c:/omproject/adjustedcollection.gdb/droneimgs"
solutiontbl = "c:/omproject/adjustedcollection.gdb/droneimgs_solutiontbl"
solutionpnt = "c:/omproject/adjustedcollection.gdb/droneimgs_solutionpnt"
arcpy.GenerateBlockAdjustmentReport_management(
        mdname, solutiontbl, solutionpnt, "c:/omproject/adjustmentreport.html")Dies ist ein Beispiel für ein eigenständiges Skript für das Werkzeug 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.GenerateBlockAdjustmentReport_management(
        mdname, solutiontbl, solutionpnt, "c:/omproject/adjustmentreport.pdf",
controlpnt, report_format="PDF")Lizenzinformationen
- Basic: Erfordert J
- Standard: Erfordert J
- Advanced: Erfordert J