-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathREADME
More file actions
68 lines (52 loc) · 2.47 KB
/
README
File metadata and controls
68 lines (52 loc) · 2.47 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
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
The SetiQuestInfo Project
This project includes all projects that provide SETI and SETIQuest information
to the general public.
Jon Richards
The SETI Institute
April 10, 2012
Projects included:
*** The Renderer ***
The Renderer is the program that receives data from the Allen Telescope Array
and packages it up and ships it off to the SETILive! project - in real time.
See source code in src/renderer
*** Other Projects ***
Other projects will be added soon. Please stay tuned.
*** Environment Setup ***
This project is developed using the bash shell - but any shell should do. Here
are the setting we placed in our .bashrc:
(note: the project exists in /home/setiquest/proj during our development, but
you may place it anywhere.Just change PROJ_HOME)
export JAVA_HOME=/usr/java/default
export JAVA_BIN=$JAVA_HOME/bin
export JAVA_LIB=$JAVA_HOME/lib
export PROJ_HOME=/home/setiquest/proj
export JARS_DIR=$PROJ_HOME/lib
export LIB_DIR=$PROJ_HOME/lib
COMMONS_CODEC_JAR=$JARS_DIR/commons-codec-1.3.jar
COMMONS_LOGING_JAR=$JARS_DIR/commons-logging-1.1.1.jar
COMMONS_HTTPCLIENT_JAR=$JARS_DIR/commons-httpclient-3.1.jar
COMMONS_MATH_JAR=$JARS_DIR/commons-math-2.1.jar
APACHE_MIME4J_JAR=$JARS_DIR/apache-mime4j-0.6.jar
HTTP_JAR=$JARS_DIR/http.jar
MYSQL_JAR=$JARS_DIR/mysql-connector-java-5.1.13-bin.jar
HTTPCORE_JAR=$JARS_DIR/httpcore-4.1.2.jar
HTTPCLIENT_JAR=$JARS_DIR/httpclient-4.1.2.jar
HTTPMIME_JAR=$JARS_DIR/httpmime-4.1.2.jar
HTTPCLIENT_CACHE_JAR=$JARS_DIR/httpclient-cache-4.1.2.jar
JTRANSFORM_JAR=$JARS_DIR/jtransforms-2.3.jar
JCOMMON_JAR=$JARS_DIR/jcommon-1.0.16.jar
BSON2JACKSON_JAR=$JARS_DIR/bson4jackson-1.1.2.jar
JACKSON_ALL_JAR=$JARS_DIR/jackson-all-1.8.1.jar
JUNIT_JAR=$JARS_DIR/junit-4.9b2.jar
PLOT_JAR=$JARS_DIR/plot.jar
OPENMAP_JAR=$JARS_DIR/openmap.jar
OREKIT_JAR=$JARS_DIR/orekit-5.0.jar
ABSOLTE_LAYOUT_JAR=$JARS_DIR/AbsoluteLayout.jar
MONGO_JAR=$JARS_DIR/mongo-2.6.5.jar
JEDIS_JAR=$JARS_DIR/jedis-2.0.0.jar
RT_JAR=$JARS_DIR/rt.jar
JSAP_JAR=$JARS_DIR/jsap.jar
FILERECEIVER_JAR=$JARS_DIR/FileReceiver.jar
export CLASSPATH=$JAVA_LIB:$COMMONS_CODEC_JAR:$COMMONS_LOGING_JAR:$COMMONS_HTTPCLIENT_JAR:$COMMONS_MATH_JAR:$APACHE_MIME4J_JAR:$HTTP_JAR:$MYSQL_JAR:$HTTPCORE_JAR:$HTTPCLIENT_JAR:$HTTPMIME_JAR:$HTTPCLIENT_CACHE_JAR:$JTRANSFORM_JAR:$JCOMMON_JAR:$BSON2JACKSON_JAR:$JACKSON_ALL_JAR:$JUNIT_JAR:$PLOT_JAR:$OPENMAP_JAR:$OREKIT_JAR:$MONGO_JAR:$JEDIS_JAR:$ABSOLTE_LAYOUT_JAR:$RT_JAR:$JSAP_JAR:$FILERECEIVER_JAR:$LIB_DIR:.
*** JAR FILES ***
All necessary JAR files are located in the "lib" directory.