Hello,I work on a place name entity class with a table containing a field "ABBREVIATION" and another field "FULL_NAME".exampleThe "ABBREVIATION" contains 'Ch.'The fields "FULL_NAME" contains 'Church 'I will receive regular updates. In what way (python script), I know if new entries appear on my table update!Look at the diagram attached.Thanks
import arcpy set_one = set(r[0] for r in arcpy.da.SearchCursor("Table1", "ABBREVIATION")) set_two = set(r[0] for r in arcpy.da.SearchCursor("Table2", "ABBREVIATION")) print "Set2 difference set1: {0}".format(set_two.difference(set_one))
Angemeldete Mitglieder können Beiträge verfassen, Updates folgen und mehr. Neu hier? Registriere ein kostenloses Konto.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.