-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.ini
50 lines (41 loc) · 2.46 KB
/
config.ini
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
48
49
50
########################################################################################################################
# This is an example config file. You can create a copy, adjust the parameters and save it in your
# working directory. Once you have installed this package, you can start a processing workflow via the command line:
# `ers_nrb -c /path/to/your/config.ini`
########################################################################################################################
[GENERAL]
# OPTIONS: all | nrb | snap
# Can be used to execute the entire processing chain or only part of it.
mode = all
# NOTE: Only one of the following parameters is required.
# NOTE: [aoi_tiles] can be used to define the area of interest via MGRS tile IDs. IDs must be provided comma-separated,
# e.g.: 32TNS, 32TMT, 32TMS
# NOTE: [aoi_geometry] defines the area of interest via a full path to a vector file supported by
# `spatialist.vector.Vector`. This option will automatically search for overlapping MGRS tiles and use these for processing.
aoi_tiles = 31UFU
aoi_geometry = None
# Allowed formats: %Y-%m-%d | %Y-%m-%dT%H:%M:%S
mindate = 1990-12-31
maxdate = 2022-01-01
# OPTIONS: IMM | IMP | APP | IMS | WSM
acq_mode = IMP
# NOTE: [work_dir] and [scene_dir] must be full paths to existing directories
# NOTE: All parameters ending in '_dir' can either be full paths to existing directories of choice OR directory names
# that will automatically be created as subdirectories of the directory specified with [work_dir].
# NOTE: All parameters ending in '_file' can either be full paths to the existing file OR file names, which are assumed
# to be located in the directory specified with the parameter [work_dir]. The [db_file] is an exception, as it will be
# automatically generated by pyroSAR if it doesn't exist already.
work_dir = /opt/work_envisat/
scene_dir = /opt/work_envisat/
out_dir = proc_out
tmp_dir = proc_in
dem_dir = DEM
wbm_dir = WBM
db_file = scenes.db
kml_file = /opt/work_envisat/S2A_OPER_GIP_TILPAR_MPC__20151209T095117_V20150622T000000_21000101T000000_B00.kml
# OPTIONS: Copernicus 10m EEA DEM | Copernicus 30m Global DEM II | Copernicus 90m Global DEM II | GETASSE30
# NOTE: Water Body Masks are not available for GETASSE30 and will therefore not be included in the product data mask.
dem_type = Copernicus 30m Global DEM II
# dem_type = Copernicus 10m EEA DEM
# Temporarily changes GDAL_NUM_THREADS during processing. Will be reset after processing has finished.
gdal_threads = 4