Skip to content

Instantly share code, notes, and snippets.

View jannefleischer's full-sized avatar

jannefleischer

  • ILS - Institut für Landes- und Stadtentwicklungsforschung gGmbH
  • Dortmund
View GitHub Profile
@jannefleischer
jannefleischer / fouled_up_column.py
Created January 17, 2019 08:53 — forked from steveoh/fouled_up_column.py
RuntimeError: A column was specified that does not exist. How to find which field
#: the fields in the feature class
actual = set([str(x.name) for x in arcpy.ListFields(r'')])
#: the fields you are trying to use
expected = set([])
fouled_up = expected - actual