diff --git a/matsim/calibration/analysis.py b/matsim/calibration/analysis.py index dc82a4a..5f25c5f 100644 --- a/matsim/calibration/analysis.py +++ b/matsim/calibration/analysis.py @@ -71,8 +71,8 @@ def read_trips_and_persons(run, transform_persons=None, transform_trips=None) -> trips = glob.glob(run.rstrip("/") + "/*.output_trips.csv.gz")[0] persons = glob.glob(run.rstrip("/") + "/*.output_persons.csv.gz")[0] - df = pd.read_csv(trips, sep=";", dtype={"person": "str"}) - dfp = pd.read_csv(persons, sep=";", dtype={"person": "str"}) + df = pd.read_csv(trips, dtype={"person": "str"}) + dfp = pd.read_csv(persons, dtype={"person": "str"}) gdf = geopandas.GeoDataFrame(dfp, geometry=geopandas.points_from_xy(dfp.first_act_x, dfp.first_act_y)