You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/docs/03_configurationFile.md
+10-5Lines changed: 10 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,10 +7,15 @@ my_project/
7
7
├── inputs/
8
8
├── dem/
9
9
├── my_dem.tif
10
-
└── pts_list.csv (OPTIONAL: to downscale to specific points)
10
+
├── my_dem_mask.tif (OPTIONAL: to mask part of the DEM)
11
+
├── my_dem_groups.tif (OPTIONAL: to delineate groups of clusters)
12
+
└── pts_list.csv (OPTIONAL: to downscale to specific points)
11
13
└── climate/
12
-
├── PLEV*.nc
13
-
└── SURF*.nc
14
+
├── daily/
15
+
├── ERA5.zarr (OPTIONAL: to downscale with zarr optimization)
16
+
└── yearly/
17
+
├── PLEV*.nc
18
+
└── SURF*.nc
14
19
├── outputs/
15
20
├── tmp/
16
21
└── downscaled/
@@ -116,8 +121,8 @@ sampling:
116
121
n_clusters: 50# number of cluster to segment the DEM
117
122
random_seed: 2# random seed for the K-mean clustering
118
123
clustering_features: { 'x': 1, 'y': 1, 'elevation': 1, 'slope': 1, 'aspect_cos': 1, 'aspect_sin': 1, 'svf': 1 } # dictionnary of the features of choice to use in clustering with their relative importance. Relative importance is a multiplier after scaling
119
-
clustering_mask: clustering/catchment_mask.tif # optional path to tif containing a mask (0/1)
120
-
clustering_groups: clustering/groups.tif # optional path to a tif containing cluster groups (int values), e.g. land cover
124
+
clustering_mask: inputs/dem/catchment_mask.tif# optional path to tif containing a mask (0/1)
125
+
clustering_groups: inputs/dem/groups.tif# optional path to a tif containing cluster groups (int values), e.g. land cover
0 commit comments