Constants.js
890 Bytes
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
Ext.define("treps.Constants",
{
singleton : true,
APP_TITLE : "TREPS - Coordinate and Time Transformations",
APP_DESCRIPTION : "Space physics coordinate transformation tool by CDPP.",
CDPP_URL : "http://cdpp.eu/",
PHP_DIR : "php/",
DIRECT_API : "php/direct/api.php",
SAMP_LIB : "lib/sampjs/samp.js",
WS_DOC : "resources/doc/CDPP-IF-32600-534-GFI_01_00.pdf",
DROP_MAX_FILESIZE : 100000000,
UPLD_MAX_FILESIZE : "100MB",
// 6608 - add max number of records by file
UPLD_MAX_RECORDS_FILE : "1 000 000",
GRID_BUFF_PAGESIZE : 400,
GRID_BUFF_LEADINGZONE : 800,
PLOT_MAX_POINTS : 50,
VECTOR_COMP1_COLOR : '#FFCECE',
VECTOR_COMP2_COLOR : '#D6F8DE',
VECTOR_COMP3_COLOR : '#CACAFF',
VECTOR_COMP1_PLOT_COLOR : '#FF0000',
VECTOR_COMP2_PLOT_COLOR : '#00FF00',
VECTOR_COMP3_PLOT_COLOR : '#0000FF',
TIME_COLOR : '#EEF093'
}
);