.:SVNInstall:home
The latest version of the Aircraft Data Processing and Analysis (ADPAA) package can be downloaded from SourceForge using svn. Note that ADPAA has been moved from using cvs to using svn as the version control system. You can also download the binary cplot program if you only need only want to display and analyze data, instead of processing raw aircraft data files.
To download ADPAA source code using svn access.
Create directory /usr/local/ADPAA if necessary Change ownership if necessary, i.e. chown username /usr/local/ADPAA cd /usr/local/ADPAA svn co https://adpaa.svn.sourceforge.net/svnroot/adpaa/trunk cd trunk mv src .svn .. cd .. rmdir trunk
To update ADPAA source code using svn access.
svn update
Define and export variables system (typically in /etc/profile and/or /etc/csh.cshrc).
ADPAA_DIR=/usr/local/ADPAA IDL_PROG=${ADPAA_DIR}/src PYTHONPATH=${ADPAA_DIR}/src/python_lib SVN_EDITOR=vim Add /usr/local/ADPAA/bin to your PATH environmental variable. Export the values ADPAA_DIR IDL_PROG PYTHONPATH SVN_EDITOR.
Build and install executable files by using the following.
Create directory /usr/local/ADPAA/bin Create directory /usr/local/ADPAA/sav Create directory /usr/local/ADPAA/share cd /usr/local/ADPAA/src/build/ && make
Note to compile the modula requires an IDL license.
Test the installation by executing a script such as cplot.
cplot
If you are an ADPAA developer, you can update a file, such as 'INSTALL', in the SVN database. Please provide a comment on what is being changed.
svn commit INSTALL
If the file is new (i.e. somethingnew), you need to add it to the database before committing it.
svn add somethingnew