-
Notifications
You must be signed in to change notification settings - Fork 2
/
IsisPreferences
118 lines (107 loc) · 3.5 KB
/
IsisPreferences
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
#######################################################
# This file allows the user to customize their Isis
# configuration. See the Isis Preference Dictionary
# on our website isis.astrogeology.usgs.gov for a
# full description of each group.
########################################################
########################################################
# Customize elements of the user interface
#
# ProgressBarPercent = 1 | 2 | 5 | 10
# ProgressBar = On | Off
# GuiStyle = windows | motif | cde | motifplus |
# platinum | sgi | kde | aqua
# GuiHelpBrowser = { your preferred browser, may need path }
# GuiFontName = helvitica | times | charter | any legal font
# GuiFontSize = 10 | 12 | 14 | any font point size
# HistoryPath = { your preferred loaction for the application
# .par files }
# HistoryRecording = On | Off
# HistoryLength = (your preferred count of history entries
# to remember)
########################################################
Group=UserInterface
ProgressBarPercent = 10
ProgressBar = On
GuiStyle = windows
GuiHelpBrowser = firefox
GuiFontName = helvitica
GuiFontSize = 10
GuiWidth = 460
GuiHeight = 600
HistoryPath = $HOME/.Isis/history
HistoryRecording = On
HistoryLength = 10
EndGroup
########################################################
# Customize how errors are reported
#
# FileLine = On | Off
# Format = Standard | Pvl
# StackTrace = On | Off
########################################################
Group = ErrorFacility
FileLine = Off
Format = Standard
StackTrace = Off
EndGroup
########################################################
# Customize how session logging is handled
#
# TerminalOutput = On | Off
# FileOutput = On | Off
# FileName = print.prt | /mydirectory/myfile.prt
# FileAccess = Append | Overwrite
########################################################
Group = SessionLog
TerminalOutput = Off
FileOutput = On
FileName = print.prt
FileAccess = Append
EndGroup
########################################################
# Customize how cubes are created
#
# Overwrite = Error | Allow
# Format = Attached | Detached
# History = On | Off
# MaximumSize = max # of gigabytes
########################################################
Group = CubeCustomization
Overwrite = Allow
Format = Attached
History = On
MaximumSize = 12
EndGroup
########################################################
# Customize the location of mission specific data
# files (calibration and spice kernels). Usually this
# should be left to the Isis administrator
########################################################
Group = DataDirectory
Apollo15 = $ISIS3DATA/apollo15
Apollo16 = $ISIS3DATA/apollo16
Apollo17 = $ISIS3DATA/apollo17
Base = $ISIS3DATA/base
Cassini = $ISIS3DATA/cassini
Chan1 = $ISIS3DATA/chan1
Clementine1 = $ISIS3DATA/clementine1
Galileo = $ISIS3DATA/galileo
Lo = $ISIS3DATA/lo
Lro = $ISIS3DATA/lro
Mariner10 = $ISIS3DATA/mariner10
Mer = $ISIS3DATA/mer
Mex = $ISIS3DATA/mex
Messenger = $ISIS3DATA/messenger
Mgs = $ISIS3DATA/mgs
Mro = $ISIS3DATA/mro
Odyssey = $ISIS3DATA/odyssey
Rolo = $ISIS3DATA/rolo
Smart1 = $ISIS3DATA/smart1
Viking1 = $ISIS3DATA/viking1
Viking2 = $ISIS3DATA/viking2
Voyager1 = $ISIS3DATA/voyager1
Voyager2 = $ISIS3DATA/voyager2
Temporary = .
EndGroup
End