Loading autocnet/graph/edge.py +4 −0 Original line number Diff line number Diff line Loading @@ -701,6 +701,10 @@ class Edge(dict, MutableMapping): def get_match_coordinates(self, clean_keys=[]): matches = self.get_matches(clean_keys=clean_keys) if matches.empty: return pd.DataFrame(), pd.DataFrame() skps = matches[['source_x', 'source_y']].astype(np.float) dkps = matches[['destination_x', 'destination_y']].astype(np.float) Loading autocnet/spatial/overlap.py +1 −1 Original line number Diff line number Diff line Loading @@ -59,7 +59,7 @@ def place_points_in_overlaps(cg, size_threshold=0.0007, reference=None, height=0 overlaps = o.intersections if intersections == None: if overlaps == None: continue if reference is None: Loading Loading
autocnet/graph/edge.py +4 −0 Original line number Diff line number Diff line Loading @@ -701,6 +701,10 @@ class Edge(dict, MutableMapping): def get_match_coordinates(self, clean_keys=[]): matches = self.get_matches(clean_keys=clean_keys) if matches.empty: return pd.DataFrame(), pd.DataFrame() skps = matches[['source_x', 'source_y']].astype(np.float) dkps = matches[['destination_x', 'destination_y']].astype(np.float) Loading
autocnet/spatial/overlap.py +1 −1 Original line number Diff line number Diff line Loading @@ -59,7 +59,7 @@ def place_points_in_overlaps(cg, size_threshold=0.0007, reference=None, height=0 overlaps = o.intersections if intersections == None: if overlaps == None: continue if reference is None: Loading