|
@@ -7,6 +7,7 @@ def check_grid_upright(model_list, grid_data_dict):
|
|
|
for model_id, all_grid in grid_data_dict.items():
|
|
|
name_dict = dict()
|
|
|
for data_row in all_grid:
|
|
|
+ # name_dict[data_row.get('name')] = str(data_row.get('location')).replace('\'', '"')
|
|
|
name_dict[data_row.get('name')] = data_row.get('location')
|
|
|
calc_dict[model_id] = name_dict
|
|
|
for model_id, name_location_dict in calc_dict.items():
|
|
@@ -68,7 +69,7 @@ def has_conflict(base, compare):
|
|
|
type2 = location2.get('Type')
|
|
|
if type1 in type2:
|
|
|
if 'Line' in type1:
|
|
|
- if not is_same_line(location.get('Points'), compare.get(name).get('Points')):
|
|
|
+ if not is_same_line(location.get('Points'), location2.get('Points')):
|
|
|
return True
|
|
|
else:
|
|
|
return True
|