Summary
Refines the interior orientation for each image in the mosaic dataset by constructing an affine transformation from a fiducial table.
Usage
The input fiducial table is the output from the Compute Fiducials tool.
This tool can be used to update the film coordinate system of the images in a mosaic dataset, for example, when the images are rotated incorrectly after adding them to a mosaic dataset.
Syntax
arcpy.management.UpdateInteriorOrientation(in_mosaic_dataset, {where_clause}, fiducial_table, film_coordinate_system, {update_footprints})
Parameter | Explanation | Data Type |
in_mosaic_dataset | The mosaic dataset that is created from scanned aerial photos using the scanned raster type or frame camera raster type. | Mosaic Layer |
where_clause (Optional) | A query definition string that defines a subset of rasters for computing fiducials. | SQL Expression |
fiducial_table | The fiducial table created using the Compute Fiducials tool. | Table View |
film_coordinate_system | Defines the film coordinate system of the scanned aerial photograph. It is used in computing fiducial information and affine transformation construction.
| String |
update_footprints (Optional) | Generates or updates the footprints of the digital photos in the mosaic dataset.
| Boolean |
Derived Output
Name | Explanation | Data Type |
out_mosaic_dataset | The updated mosaic dataset. | Mosaic Layer |
Code sample
This is a Python sample for the UpdateInteriorOrientation tool.
import arcpy
arcpy.UpdateInteriorOrientation_management(
"c:\\Test\\ortho.gdb\\orthoMD", "", "c:\\test\\fidducial.csv",
"X_DOWN_Y_RIGHT", "UPDATE")
This is a stand-alone script sample for the UpdateInteriorOrientation tool.
import arcpy
in_mosaic_dataset = "c:\\Test\\ortho.gdb\\orthoMD"
whereClause = ""
fiducialTable = "c:\\test\\fidducial.csv"
film_coordsys = "X_DOWN_Y_RIGHT"
update_footprints = "UPDATE"
arcpy.UpdateInteriorOrientation_management(in_mosaic_dataset, whereClause,
fiducialTable, film_coordsys, update_footprints)
Environments
Licensing information
- Basic: No
- Standard: No
- Advanced: Yes