Is there any way to use the "Auto Georeference" tool in Python ?

1496
3
Jump to solution
04-28-2022 09:02 PM
AdamArcichowski1
New Contributor II

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 ? 

AdamArcichowski1_0-1651204833578.png

Thanks, 

 

Adam 

0 Kudos
1 Solution

Accepted Solutions
LongDinh
Occasional Contributor II
3 Replies
LongDinh
Occasional Contributor II

Perhaps you are after the Register Raster Tool 

DanPatterson
MVP Esteemed Contributor

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(....


... sort of retired...
AdamArcichowski1
New Contributor II

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 

0 Kudos