i didnt really change anything here
Browse files
main.py
CHANGED
@@ -14,7 +14,7 @@ def row_to_feature(row):
|
|
14 |
"species": row['species']
|
15 |
}
|
16 |
return feature
|
17 |
-
|
18 |
def export_geojson(df, filename):
|
19 |
features = [row_to_feature(row) for idx, row in df.iterrows()]
|
20 |
|
|
|
14 |
"species": row['species']
|
15 |
}
|
16 |
return feature
|
17 |
+
# [[first guess, prob],[second guess, prob],[third guess, prob]]
|
18 |
def export_geojson(df, filename):
|
19 |
features = [row_to_feature(row) for idx, row in df.iterrows()]
|
20 |
|