-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconfig_template.yml
More file actions
34 lines (30 loc) · 1.44 KB
/
Copy pathconfig_template.yml
File metadata and controls
34 lines (30 loc) · 1.44 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
# config_template.yml
# Parameter file for dem_diff.py
# Run with: python dem_diff.py config_template.yml
#
# Copy this file, rename it (ex. config_myrun.yml), fill in your values,
# and run.
#
# DEM2 should be more recent than DEM1
dem1:
path: "/path/to/your/first_dem.tif"
nickname: "ShortName1" # used in output filename and print statements
src_vcrs: "EGM96" # vertical coordinate reference system for DEM1
# options: "Ellipsoid", "EGM96", "NAVD88",
# or any valid EPSG code, see https://epsg.io/
src_hcrs: "EPSG:4326" # horizontal coordinate reference system for DEM1
# options: any valid EPSG code, see https://epsg.io/
nodata: -9999 # common values: 0, -9999, -3.4028235e+038
dem2:
path: "/path/to/your/second_dem.tif"
nickname: "ShortName2"
src_vcrs: "EPSG:1234" # vertical coordinate reference system for DEM2
src_hcrs: "EPSG:12345" # horizontal coordinate reference system for DEM2
nodata: -9999 #
options:
path_dest: "/path/to/output/folder/" # path for the differenced DEM to be
# saved to; trailing slash required
roi: null # path to a vector file that will be used to define the region of
# coverage for the differenced DEM; select null for no clipping
coregister: false # Boolean (true or false) to determine whether or not Nuth
# and Kabb coregistration should be completed