Commit 52c0e53c authored by Lukas Eller's avatar Lukas Eller

removed networkx dependency

parent 4d0a9207
import overpy
import geopandas as gpd
from shapely.geometry import LineString, Polygon
import networkx as nx
from scipy.spatial.distance import cdist
import numpy as np
import warnings
......
......@@ -8,7 +8,7 @@ def link_dataframes(A: pd.DataFrame, B: pd.DataFrame, ref_col: str, unique_col=N
:param ref_col: Reference Column to merge dataframes. Has to exist in both frames
:param metric: Metric used to determine matches in ref_col. Default lambda a, b: (a - b).abs()
:param unique_per_index_col: Is needed for scanner where
:param unique_col: Is needed for scanner where indices and timestamps are not unique unique_col="PCI"
:return: Single merged dataframe consisting of a multiindex from A and B
'''
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment