描述
对镶嵌数据集执行正射映射区域网平差后将生成报告。该报告对于评估正射映射产品的质量和精度来说至关重要。
使用方法
如果包含可选控制点表,则输出报告将包含控制点的精度评估以及区域网平差的精度评估。
语法
arcpy.management.GenerateBlockAdjustmentReport(input_mosaic_dataset, input_solution_table, input_solution_point, output_report, {input_control_point_for_adjustment}, {report_format})
参数 | 说明 | 数据类型 |
input_mosaic_dataset | 输入镶嵌数据集路径。 | Mosaic Dataset; Mosaic Layer |
input_solution_table | 区域网平差后的关联解决方案点表。 | Table View |
input_solution_point | 解决方案点要素类。 | Table View |
output_report | 输出正射映射报告文件路径和名称。网站支持的输出格式为 HTML。 | File |
input_control_point_for_adjustment (可选) | 包含连接点和地面控制点的关联控制点表。 | Table View |
report_format (可选) | 区域网平差报告的输出格式。
| String |
代码示例
GenerateBlockAdjustmentReport 示例 1(Python 窗口)
这是 GenerateBlockAdjustmentReport 工具的 Python 示例。
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")
GenerateBlockAdjustmentReport 示例 2(独立脚本)
这是 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.html",
controlpnt)
环境
许可信息
- Basic: 是
- Standard: 是
- Advanced: 是