-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconfig_batch_toy.yml
More file actions
47 lines (38 loc) · 1.58 KB
/
Copy pathconfig_batch_toy.yml
File metadata and controls
47 lines (38 loc) · 1.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# config_batch_toy.yml
# Parameter file for example datasets to be run with dem_diff_batch.py
# Run with:
# sbatch dem_diff_batch.sh
# DEMs should be listed oldest to most recent for meaningful differences.
dems:
- path: "~/diffDEM/exampleData/toy_IsabelIFSAR_2000.tif"
nickname: "Isabel2000_toy"
src_vcrs: "EGM96"
src_hcrs: "EPSG:32606"
nodata: 0
- path: "~/diffDEM/exampleData/toy_IFSAR_DTM_2010.tif"
nickname: "IFSAR2010_toy"
src_vcrs: "NAVD88"
src_hcrs: "EPSG:3338"
nodata: -9999
- path: "~/diffDEM/exampleData/toy_Lidar2025.tif"
nickname: "Lidar2025_toy"
src_vcrs: "Ellipsoid"
src_hcrs: "EPSG:32606"
nodata: -9999
options:
path_dest: "~/diffDEM/" # trailing slash required
roi: null # path to a vector file, or null for no clipping
coregister: false # global default applied to all pairs unless overridden
# per pair in explicit_pairs below
# Pair mode — choose one:
# sequential: differences consecutive DEMs in list order
# all: differences every possible combination of DEMs
# explicit: user-defined pairs listed below under explicit_pairs
pairs: "explicit"
# Only used when pairs: "explicit"
# Format: [dem1_nickname, dem2_nickname] uses global coregister default
# [dem1_nickname, dem2_nickname, true/false] overrides per pair
explicit_pairs:
- ["Isabel2000_toy", "IFSAR2010_toy", false] # coregister override: true
- ["Isabel2000_toy", "Lidar2025_toy", false] # coregister override: false
- ["IFSAR2010_toy", "Lidar2025_toy", false] # uses global coregister default