Kedro catalog fails when overwriting a GeoJson dataset even though the driver is supported
I have the following catalog item in my kedro project
suggested_routes_table@geopandas: type: geopandas.GeoJSONDataSet filepath: data/04_feature/routes_suggestions_table.geojson load_args: driver: "GeoJSON" mode: "a"
The keyword argument mode: "a" stands for append, meaning that every time the node is run, it should append new rows to the geojson instead of overwriting the file in the path.
As stated in <a...