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
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}")
109
+
self.errors.append(
110
+
f"All _u_id's in edges should be part of _id's mentioned in nodes, _u_id's not in nodes are: {unmatched}")
108
111
109
112
# Do all node references in _v_id exist in nodes?
110
113
unmatched=node_ids_edges_v-node_ids
111
114
is_valid=len(unmatched) ==0
112
115
ifnotis_valid:
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}")
116
+
self.errors.append(
117
+
f"All _v_id's in edges should be part of _id's mentioned in nodes, _v_id's not in nodes are: {unmatched}")
114
118
115
119
# Do all node references in _w_id exist in nodes?
116
120
unmatched=node_ids_zones_w-node_ids
117
121
is_valid=len(unmatched) ==0
118
122
ifnotis_valid:
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}")
123
+
self.errors.append(
124
+
f"All _w_id's in zones should be part of _id's mentioned in nodes, _w_id's not in nodes are: {unmatched}")
120
125
121
126
# 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