I have a raster (ras) and a text file (T, DA, etc). When I join both then field names are like following:
ras.vat:T
ras.vat:DA
I have to access these fields using SearchCursor for further processing. Is there a way to avoid these long combined names and simply obtain "T" and "DA" after joining?
arcpy.env.qualifiedFieldNames = Falsein script to retain original names. – Ibe Apr 27 '14 at 04:29arcpy.JoinField_managementbut original names as given in tables will become Field names if usearcpy.env.qualifiedFieldNames = False. You can control it from "Environment/Fields" if running inside ArcGIS. – Ibe Apr 27 '14 at 17:26