migurski / Dymo

Map label placer with simulated annealing.
148 stars 17 forks source link

allow mixed cased column headings #24

Closed nvkelso closed 12 years ago

nvkelso commented 12 years ago

for internal processing (output should be consistent with input)

for instance, OpenOffice turns all the headings into UPPER casing. ArcMap ignores the casing of column headings.

for place in input:
    place = dict( [ (key.lower(), value) for (key, value) in place.items() ] )