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))
Aangemelde leden kunnen berichten plaatsen, updates volgen en meer. Nieuw hier? Registreer een gratis account.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.