Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -116,7 +116,8 @@ async def mergeStreams(request: Request):
|
|
| 116 |
df = get_dataframe(stream_data, return_original_df=False)
|
| 117 |
df_B = df.copy()
|
| 118 |
|
| 119 |
-
|
|
|
|
| 120 |
|
| 121 |
|
| 122 |
# additional cleanups, remove geometry and fill na
|
|
|
|
| 116 |
df = get_dataframe(stream_data, return_original_df=False)
|
| 117 |
df_B = df.copy()
|
| 118 |
|
| 119 |
+
excludeCol = ["id","totalChildrenCount", "applicationId", "layer"]
|
| 120 |
+
aggregated_df_b, log_dict = aggregate_data_optimized(df_A.copy(), df_B.copy(), 'uuid', 'graph_geometry_id',excludeCol)
|
| 121 |
|
| 122 |
|
| 123 |
# additional cleanups, remove geometry and fill na
|