Commit 0aecb0d3 authored by Jesse Mapel's avatar Jesse Mapel Committed by GitHub
Browse files

Merge pull request #310 from Kelvinrr/dev

Fix for previous fix
parents fd1e373d 5794bd4b
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -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)

+1 −1
Original line number Diff line number Diff line
@@ -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: