I want to be able to use the Auto Georeference tool in Pro in a script. I don't see any documentation for this in the arcpy documentation. Anyone have any ideas ?
Thanks,
Adam
Solved! Go to Solution.
Perhaps you are after the Register Raster Tool
Perhaps you are after the Register Raster Tool
not directly, but as indicated...
Register Raster (Data Management)—ArcGIS Pro | Documentation
then you can use
Warp From File (Data Management)—ArcGIS Pro | Documentation
you can code the access via
arcpy.WarpFromFile_management(....
or even
arcpy.Warp_management(....
Thanks Dan!
I got it working with that tool. What would you use the WarpFromFile for ? Doesn't the register raster do what I need.
Adam