Tried googling and checking code, no idea why I get the class 'Queue.Empty': error for the geocoding process or what it even means.
Is it an input or output feature class error? Is it because I am using the geocode script wrong
arcpy.env.workspace = 'C:\\Users\\Admin\Desktop\\Work\\finalproj.gdb'outpath = 'C:\\Users\\Admin\\Desktop\\Work\\finalproj.gdb'StudentData_points = os.path.join(outpath,"Students")StudentData_table ="StudentData"outpath_table = os.path.join(outpath, StudentData_table)Geocoder = os.path.join(outpath, "SacLocator") if arcpy.Exists(outpath_table): arcpy.Delete_management(outpath_table)arcpy.CreateTable_management(outpath, StudentData_table)outpath_table = os.path.join(outpath, StudentData_table)if arcpy.Exists(StudentData_points): arcpy.Delete_management(StudentData_points)arcpy.GeocodeAddresses_geocoding(outpath_table, Geocoder, "Street homeaddr1 VISIBLE NONE; Zip homezip VISIBLE NONE", StudentData_points)
أكثر...
Is it an input or output feature class error? Is it because I am using the geocode script wrong
arcpy.env.workspace = 'C:\\Users\\Admin\Desktop\\Work\\finalproj.gdb'outpath = 'C:\\Users\\Admin\\Desktop\\Work\\finalproj.gdb'StudentData_points = os.path.join(outpath,"Students")StudentData_table ="StudentData"outpath_table = os.path.join(outpath, StudentData_table)Geocoder = os.path.join(outpath, "SacLocator") if arcpy.Exists(outpath_table): arcpy.Delete_management(outpath_table)arcpy.CreateTable_management(outpath, StudentData_table)outpath_table = os.path.join(outpath, StudentData_table)if arcpy.Exists(StudentData_points): arcpy.Delete_management(StudentData_points)arcpy.GeocodeAddresses_geocoding(outpath_table, Geocoder, "Street homeaddr1 VISIBLE NONE; Zip homezip VISIBLE NONE", StudentData_points)
أكثر...