We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 74dd0a0 commit faeb345Copy full SHA for faeb345
openeo_driver/save_result.py
@@ -818,8 +818,6 @@ def _get_geodataframe(self) -> gpd.GeoDataFrame:
818
gdf["feature_index"] = gdf.index
819
stats: pd.DataFrame = pd.read_csv(self._csv_path())
820
gdf = gdf.join(stats.set_index("feature_index"), on="feature_index")
821
- # Convert e.g. avg(band_0) to avg_band_0_
822
- gdf = gdf.rename(columns=lambda col_name: re.sub(r"\W", "_", col_name))
823
return gdf.drop(columns=["feature_index"])
824
825
def to_driver_vector_cube(self) -> DriverVectorCube:
0 commit comments