-
Notifications
You must be signed in to change notification settings - Fork 1
/
snap.properties
60 lines (53 loc) · 2.7 KB
/
snap.properties
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
51
52
53
54
55
56
57
58
59
60
####################################################################################
# Configuration for the SNAP Engine
# All properties described here can also be passed to the VM as system
# properties using the standard Java
# -D<property>=<value>
# syntax. In addition, it is possible to use macros of the form
# ${<property>}
# within a value. Macros will expand to the value of the referred file property,
# system property, or environment variable.
####################################################################################
# SNAP application installation directory.
# Only used in Engine mode. In Desktop mode, setting this property has no effect.
#
snap.versionCheck.interval=NEVER
#snap.home=
snap.log.level=fine
# SNAP application data directory
# Used in Engine and Desktop mode to configure the data directory of SNAP. Its default
# value is ${USER_HOME}/.snap/.
# In Desktop mode this value can also be set by the --userdir option argument passed
# to the snap executable e.g. by adding it to the default_option in
# ${snap-home}/etc/snap.conf file.
#
snap.userdir=/tmp/.snap
#snap.userdir=/srv/conda/envs/env_sar_calibration/snap/.snap
# SNAP Python interpreter executable
# Only used, if Python extensions are used or if you want to use Python to access SNAP code.
# Usually this variable is read from file ${snap.userdir}/snap-python/snappy.properties
# which gets created as a result of the ${snap-home}/bin/snappy-conf command-line tool.
#
#snap.pythonExecutable = ${installer:pythonExecutable}
# tileCache and tileSize jai properties affect graph processing and image rendering
# Tile cache size [Mb]
snap.jai.tileCacheSize=1024
# Default tile size in pixels
snap.jai.defaultTileSize=512
# number of CPU cores used for image rendering and graph processing
# allow this to default to Runtime.getRuntime().availableProcessors()
#snap.parallelism = 1
# Enable or disable the prefetch of tiles. Default is true.
snap.jai.prefetchTiles=true
# Custom color palettes based on band unit
# Palettes must be install in ${ApplicationDataDir}/snap-rcp/auxdata/color_palettes
# Property keys must start with snap.color-palette.unit. and end with the unit value
snap.color-palette.unit.phase=cubehelix_cycle.cpd
snap.color-palette.unit.meters=terrain.cpd
snap.color-palette.unit.m/day=velocity.cpd
snap.color-palette.unit.m^3water/m^3soil=jet.cpd
snap.color-palette.unit.tree_cover_percent=tree_cover_percent.cpd
# Operators unsupported or renamed
snap.gpf.unsupported.CoarseFine-Coregistration = "Operator CoarseFine-Coregistration replaced by Cross-Correlation"
snap.gpf.unsupported.GCP-Selection = "Operator GCP-Selection replaced by Cross-Correlation"
snap.gpf.unsupported.LinearToFromdB = "Operator LinearTodB renamed to LinearToFromdB"