Skip to content

Commit 2f69ac5

Browse files
author
FILHOL Simon
committed
typo
1 parent 3639188 commit 2f69ac5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

TopoPyScale/topoclass.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -450,11 +450,11 @@ def extract_topo_cluster_param(self):
450450

451451
# Build the final cluster map
452452
shape = [self.toposub.ds_param.slope.shape[1], self.toposub.ds_param.slope.shape[0]]
453-
self.toposub.ds_param['cluster_labels'] = (["y", "x"], np.reshape(df_param.point_name.values, shape), order='F')
454-
self.toposub.ds_param['point_name'] = (["y", "x"], np.reshape(df_param.point_name.values, shape), order='F')
455-
self.toposub.ds_param['point_ind'] = (["y", "x"], np.reshape(df_param.point_ind.values, shape), order='F')
453+
self.toposub.ds_param['cluster_labels'] = (["y", "x"], np.reshape(df_param.point_name.values, shape,order='F'))
454+
self.toposub.ds_param['point_name'] = (["y", "x"], np.reshape(df_param.point_name.values, shape,order='F'))
455+
self.toposub.ds_param['point_ind'] = (["y", "x"], np.reshape(df_param.point_ind.values, shape,order='F'))
456456
if split_clustering:
457-
self.toposub.ds_param['cluster_group'] = (["y", "x"], np.reshape(df_param.cluster_group.values, shape), order='F')
457+
self.toposub.ds_param['cluster_group'] = (["y", "x"], np.reshape(df_param.cluster_group.values, shape,order='F'))
458458

459459
# update file
460460
fname = self.config.outputs.path / self.config.outputs.file.ds_param

0 commit comments

Comments
 (0)