Luecke commited on
Commit
2f43acb
·
1 Parent(s): 0587d81

bugfix - changed filepath

Browse files
Files changed (1) hide show
  1. main.py +1 -1
main.py CHANGED
@@ -93,7 +93,7 @@ def greet(image_path: str):
93
  tif_transform = src.transform
94
 
95
  # Read the GeoJSON file
96
- geojson_data = gpd.read_file(final_output_path)
97
 
98
  # Set the interactive backend to Qt5Agg
99
  plt.switch_backend('Qt5Agg') # You have to install PyQt5
 
93
  tif_transform = src.transform
94
 
95
  # Read the GeoJSON file
96
+ geojson_data = gpd.read_file(final_output_path + '.geojson')
97
 
98
  # Set the interactive backend to Qt5Agg
99
  plt.switch_backend('Qt5Agg') # You have to install PyQt5