You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
f"All _u_id's in edges should be part of _id's mentioned in nodes, _u_id's not in nodes are: {unmatched}")
107
+
self.errors.append(f"All _u_id's in edges should be part of _id's mentioned in nodes, _u_id's not in nodes are: {unmatched}")
110
108
111
109
# Do all node references in _v_id exist in nodes?
112
110
unmatched=node_ids_edges_v-node_ids
113
111
is_valid=len(unmatched) ==0
114
112
ifnotis_valid:
115
-
self.errors.append(
116
-
f"All _v_id's in edges should be part of _id's mentioned in nodes, _v_id's not in nodes are: {unmatched}")
113
+
self.errors.append(f"All _v_id's in edges should be part of _id's mentioned in nodes, _v_id's not in nodes are: {unmatched}")
117
114
118
115
# Do all node references in _w_id exist in nodes?
119
116
unmatched=node_ids_zones_w-node_ids
120
117
is_valid=len(unmatched) ==0
121
118
ifnotis_valid:
122
-
self.errors.append(
123
-
f"All _w_id's in zones should be part of _id's mentioned in nodes, _w_id's not in nodes are: {unmatched}")
119
+
self.errors.append(f"All _w_id's in zones should be part of _id's mentioned in nodes, _w_id's not in nodes are: {unmatched}")
124
120
125
121
# Geometry validation: check geometry type in each file and test if coordinates make a shape that is reasonable geometric shape according to the Simple Feature Access standard
0 commit comments