@@ -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